diff options
-rw-r--r-- | featureClass/featureManager.js | 3 | ||||
-rw-r--r-- | features/betterGuis/index.js | 7 | ||||
-rw-r--r-- | features/cosmetics/cosmetic/dragon/dragonWings.js | 132 | ||||
-rw-r--r-- | features/cosmetics/index.js | 11 | ||||
-rw-r--r-- | features/dungeonMap/index.js | 9 | ||||
-rw-r--r-- | features/events/index.js | 7 | ||||
-rw-r--r-- | features/fragBot/index.js | 2 | ||||
-rw-r--r-- | features/hud/index.js | 26 | ||||
-rw-r--r-- | features/mining/index.js | 9 | ||||
-rw-r--r-- | features/settings/settingsCommunicator.js | 4 | ||||
-rw-r--r-- | features/slayers/index.js | 41 | ||||
-rw-r--r-- | features/streamsGUI/index.js | 2 | ||||
-rw-r--r-- | index.js | 7 | ||||
-rw-r--r-- | mappings/data/constructors.txt | 1941 | ||||
-rw-r--r-- | mappings/data/fields.csv | 6586 | ||||
-rw-r--r-- | mappings/data/inheritance.json | 92243 | ||||
-rw-r--r-- | mappings/data/joined.tsrg | 27873 | ||||
-rw-r--r-- | mappings/data/methods.csv | 6731 | ||||
-rw-r--r-- | mappings/data/params.csv | 9061 | ||||
-rw-r--r-- | mappings/mappingCreator.js | 302 | ||||
-rw-r--r-- | mappings/mappings.js | 81545 | ||||
-rw-r--r-- | mappings/mappingsTest.js | 3 | ||||
-rw-r--r-- | socketConnection.js | 1 | ||||
-rw-r--r-- | utils/renderLib2d.js | 30 | ||||
-rw-r--r-- | utils/renderUtils.js | 126 |
25 files changed, 226513 insertions, 189 deletions
diff --git a/featureClass/featureManager.js b/featureClass/featureManager.js index b0da324..ee99199 100644 --- a/featureClass/featureManager.js +++ b/featureClass/featureManager.js @@ -22,6 +22,7 @@ function RequireNoCache(place){ return require(place) //performance optimisation } if(!logger.isDev) return require(place) + StrongCachingModuleScriptProvider = new StrongCachingModuleScriptProviderClass(UrlModuleSourceProviderInstance) CTRequire = new JSLoader.CTRequire(StrongCachingModuleScriptProvider) return CTRequire(place) @@ -60,7 +61,7 @@ class FeatureManager { //PERFORMANCE RECORDING this.recordingPerformanceUsage = false - this.performanceUsage = {} //{moduleName: {event: {time: 0, count: 0}}} + this.performanceUsage = {} //{<moduleName>: {<event>: {time: 0, count: 0}}} this.featureMetas = {} diff --git a/features/betterGuis/index.js b/features/betterGuis/index.js index 2150db2..29a7399 100644 --- a/features/betterGuis/index.js +++ b/features/betterGuis/index.js @@ -2,6 +2,7 @@ /// <reference lib="es2015" /> import Feature from "../../featureClass/class"; import logger from "../../logger"; +import { f } from "../../mappings/mappings"; import ToggleSetting from "../settings/settingThings/toggle"; import MuseumGui from "./museumGui.js"; @@ -16,9 +17,9 @@ class BetterGuis extends Feature { this.museumGui = new MuseumGui() this.replaceSbMenuClicks = new ToggleSetting("Improve Clicks on SBMENU", "This will change clicks to middle clicks, AND use commands where possible (eg /pets)", true, "sbmenu_clicks", this) - this.reliableSbMenuClicks = {getValue: ()=>false}//removed because hypixel fixed may add back later //new ToggleSetting("Make SBMENU clicks reliable", "This will delay clicks on sbmenu to time them so they dont get canceled", true, "sbmenu_time", this) + this.reliableSbMenuClicks = {getValue: ()=>false}//removed because hypixel fixed, code kept incase hypixel adds back bug later //new ToggleSetting("Make SBMENU clicks reliable", "This will delay clicks on sbmenu to time them so they dont get canceled", true, "sbmenu_time", this) - this.museumGuiEnabled = /*{getValue: ()=>false} //Removed because not finished yet*/ new ToggleSetting("Custom Museum GUI", "Custom gui for the Museum", true, "custom_museum_enabled", this) + this.museumGuiEnabled = new ToggleSetting("Custom Museum GUI", "Custom gui for the Museum", true, "custom_museum_enabled", this) this.lastWindowId = 0 this.shouldHold = 10 @@ -108,7 +109,7 @@ class BetterGuis extends Feature { let hoveredSlot = gui.getSlotUnderMouse() if(!hoveredSlot) return - let hoveredSlotId = hoveredSlot.field_75222_d + let hoveredSlotId = hoveredSlot[f.slotNumber] // logger.logMessage(hoveredSlotId, 4) diff --git a/features/cosmetics/cosmetic/dragon/dragonWings.js b/features/cosmetics/cosmetic/dragon/dragonWings.js index cbf2879..4044e85 100644 --- a/features/cosmetics/cosmetic/dragon/dragonWings.js +++ b/features/cosmetics/cosmetic/dragon/dragonWings.js @@ -1,3 +1,4 @@ +import { f, m, m } from "../../../../mappings/mappings.js"; import Cosmetic from "../../cosmetic.js"; const ModelDragon = Java.type("net.minecraft.client.model.ModelDragon") @@ -12,8 +13,8 @@ let textures = {//TODO: dynamicly load textures from server classic: new Image(javax.imageio.ImageIO.read(new java.io.File("./config/ChatTriggers/modules/SoopyV2/features/cosmetics/textures/dragon/classic.png"))), purple: new Image(javax.imageio.ImageIO.read(new java.io.File("./config/ChatTriggers/modules/SoopyV2/features/cosmetics/textures/dragon/purple.png"))) } -let wing = getField(dragon, "field_78225_k") -let wingTip = getField(dragon, "field_78222_l") +let wing = getField(dragon, f.wing) +let wingTip = getField(dragon, f.wingTip) class DragonWings extends Cosmetic { constructor(player, parent) { @@ -28,11 +29,12 @@ class DragonWings extends Cosmetic { onRenderEntity(ticks, isInGui){ - if(this.player.getPlayer().func_98034_c(Player.getPlayer())){ + if(this.player.getPlayer()[m.isInvisibleToPlayer](Player.getPlayer())){ return } - if(!this.parent.firstPersonVisable.getValue() && Client.getMinecraft().field_71474_y.field_74320_O === 0) return + let thirdPersonView = Client.getMinecraft()[f.gameSettings.Minecraft][f.thirdPersonView] + if(!this.parent.firstPersonVisable.getValue() && thirdPersonView === 0) return let isSelfPlayer = this.player.getUUID().toString() === Player.getUUID().toString() let isInInv = isSelfPlayer && ticks === 1 @@ -43,12 +45,12 @@ class DragonWings extends Cosmetic { let timeSince = (Date.now()-this.lastRender)/1000 this.lastRender = Date.now() - let rotation = isInInv?0:this.player.getPlayer().field_70760_ar+(this.player.getPlayer().field_70761_aq-this.player.getPlayer().field_70760_ar)*ticks + let rotation = isInInv?0:this.player.getPlayer()[f.prevRenderYawOffset]+(this.player.getPlayer()[f.renderYawOffset]-this.player.getPlayer()[f.prevRenderYawOffset])*ticks // rotation += entity.field_70761_aq+(entity.field_70761_aq-entity.field_70760_ar)*ticks // console.log(rotation, entity.getEntity().field_70761_aq+(entity.getEntity().field_70761_aq-entity.getEntity().field_70760_ar)*ticks) - let horisontalSpeed = Math.sqrt((this.player.getPlayer().field_70165_t-this.player.getPlayer().field_70142_S)**2+(this.player.getPlayer().field_70161_v-this.player.getPlayer().field_70136_U)**2) + let horisontalSpeed = Math.sqrt((this.player.getPlayer()[f.posX.Entity]-this.player.getPlayer()[f.lastTickPosX])**2+(this.player.getPlayer()[f.posZ.Entity]-this.player.getPlayer()[f.lastTickPosZ])**2) - let verticleSpeed = this.player.getPlayer().field_70163_u-this.player.getPlayer().field_70137_T + let verticleSpeed = this.player.getPlayer()[f.posZ.Entity]-this.player.getPlayer()[f.lastTickPosZ] this.animOffset += Math.min(1, horisontalSpeed)*10*timeSince+1*timeSince @@ -62,18 +64,18 @@ class DragonWings extends Cosmetic { let wingBackAmount = 0 - if(this.player.getPlayer().field_70172_ad > 15){ //damage tick + if(this.player.getPlayer()[f.hurtResistantTime] > 15){ //damage tick this.animOffset += 15*timeSince } // if((this.player === Player &&this.player.getPlayer().field_71075_bZ.field_75100_b) || (this.player !== Player && Math.abs(verticleSpeed)<0.2 && !this.player.getPlayer().field_70122_E)){//playerCapabilities.isFlying - if((verticleSpeed>-0.2) && !this.player.getPlayer().field_70122_E && !isInGui){ //flying + if((verticleSpeed>-0.2) && !this.player.getPlayer()[f.onGround.Entity] && !isInGui){ //flying this.animOffset += 5*timeSince //flap in mid air flapAmountMultiplyer *= 1.75 //flap harder - if(isSelfPlayer && Client.getMinecraft().field_71474_y.field_74320_O === 0){ + if(isSelfPlayer && thirdPersonView === 0){ if(!this.parent.lessFirstPersonVisable.getValue()){ flapAmountMultiplyerNoEnd += 0.4 flapMainOffsetThing = 0.3 @@ -101,14 +103,14 @@ class DragonWings extends Cosmetic { this.animOffset += (verticleSpeed+0.5)*-3*timeSince } - GlStateManager.func_179094_E(); // pushMatrix + GlStateManager[m.pushMatrix](); // pushMatrix Tessellator.colorize(this.settings.color.r, this.settings.color.g, this.settings.color.b); if(!isSelfPlayer){ Tessellator.translate( - (this.player.getPlayer().field_70142_S + (this.player.getPlayer().field_70165_t-this.player.getPlayer().field_70142_S) * ticks) - (Player.getPlayer().field_70142_S + (Player.getPlayer().field_70165_t-Player.getPlayer().field_70142_S) * ticks), - (this.player.getPlayer().field_70137_T + (this.player.getPlayer().field_70163_u-this.player.getPlayer().field_70137_T) * ticks) - (Player.getPlayer().field_70137_T + (Player.getPlayer().field_70163_u-Player.getPlayer().field_70137_T) * ticks), - (this.player.getPlayer().field_70136_U + (this.player.getPlayer().field_70161_v-this.player.getPlayer().field_70136_U) * ticks) - (Player.getPlayer().field_70136_U + (Player.getPlayer().field_70161_v-Player.getPlayer().field_70136_U) * ticks)) + (this.player.getPlayer()[f.lastTickPosX] + (this.player.getPlayer()[f.posX.Entity]-this.player.getPlayer()[f.lastTickPosX]) * ticks) - (Player.getPlayer()[f.lastTickPosX] + (Player.getPlayer()[f.posX.Entity]-Player.getPlayer()[f.lastTickPosX]) * ticks), + (this.player.getPlayer()[f.lastTickPosY] + (this.player.getPlayer()[f.posY.Entity]-this.player.getPlayer()[f.lastTickPosY]) * ticks) - (Player.getPlayer()[f.lastTickPosY] + (Player.getPlayer()[f.posY.Entity]-Player.getPlayer()[f.lastTickPosY]) * ticks), + (this.player.getPlayer()[f.lastTickPosZ] + (this.player.getPlayer()[f.posZ.Entity]-this.player.getPlayer()[f.lastTickPosZ]) * ticks) - (Player.getPlayer()[f.lastTickPosZ] + (Player.getPlayer()[f.posZ.Entity]-Player.getPlayer()[f.lastTickPosZ]) * ticks)) } if(textures[this.settings.texture || "classic"]){ @@ -117,25 +119,25 @@ class DragonWings extends Cosmetic { Tessellator.bindTexture(textures.classic) //bind default texture (classic) } - if(this.player.getPlayer().field_70154_o){ - rotation = this.player.getPlayer().field_70759_as+(this.player.getPlayer().field_70759_as-this.player.getPlayer().field_70758_at)*ticks + if(this.player.getPlayer()[f.ridingEntity.Entity]){ + rotation = this.player.getPlayer()[f.rotationYawHead]+(this.player.getPlayer()[f.rotationYawHead]-this.player.getPlayer()[f.prevRotationYawHead])*ticks } - if(!this.player.getPlayer().func_70608_bn()){ //dont rotate when in bed + if(!this.player.getPlayer()[m.isPlayerSleeping]()){ //dont rotate when in bed Tessellator.rotate((180-rotation),0,1,0) Tessellator.translate(0,1.2,0.1) - if(this.player.getPlayer().func_70093_af()){ //isSneaking + if(this.player.getPlayer()[m.isSneaking.Entity]()){ //isSneaking Tessellator.translate(0, -0.125,0) Tessellator.rotate(-20, 1,0,0) Tessellator.translate(0, 0,0.1) - if(isSelfPlayer && Client.getMinecraft().field_71474_y.field_74320_O === 0){}else{ + if(isSelfPlayer && thirdPersonView === 0){}else{ Tessellator.translate(0, -0.125,0) } } - if(isSelfPlayer && !isInInv && Client.getMinecraft().field_71474_y.field_74320_O === 0){ + if(isSelfPlayer && !isInInv && thirdPersonView === 0){ //Make wings less scuffed when in first person looking down/up Tessellator.translate(0, 0.25, 0.003*(this.player.getPitch())) } @@ -143,14 +145,14 @@ class DragonWings extends Cosmetic { //Higher = more elytra like - wing.field_78796_g = 0.25; //rotateAngleY + wing[f.rotateAngleZ] = 0.25; //rotateAngleY let shouldStandingStillWingThing = false let changeStandingStillWingThing = 0 if(horisontalSpeed < 0.01){ - if(!((verticleSpeed>-0.2) && !this.player.getPlayer().field_70122_E)){ //not flying + if(!((verticleSpeed>-0.2) && !this.player.getPlayer()[f.onGround.Entity])){ //not flying let amt = (this.animOffset+Math.PI/2)%(20*Math.PI) if(amt < 1*Math.PI){ this.animOffset += 2*timeSince*Math.min(1,(amt/(1*Math.PI))*2) @@ -162,22 +164,22 @@ class DragonWings extends Cosmetic { flapAmountMultiplyer += (1-(amt/(1*Math.PI)-1))/2 } } - if(this.player.getPlayer().func_70093_af()){ //isSneaking - if(this.player.getPlayer().field_70125_A > 20){ + if(this.player.getPlayer()[m.isSneaking.Entity]()){ //isSneaking + if(this.player.getPlayer()[f.rotationPitch] > 20){ shouldStandingStillWingThing = true - changeStandingStillWingThing = Math.max(0,this.player.getPlayer().field_70125_A/600) + changeStandingStillWingThing = Math.max(0,this.player.getPlayer()[f.rotationPitch]/600) } } } if(shouldStandingStillWingThing){ - wing.field_78796_g = 0.25+(changeStandingStillWingThing)*3 + wing[f.rotateAngleY] = 0.25+(changeStandingStillWingThing)*3 } - if(this.player.getPlayer().func_70608_bn()){ //player in bed + if(this.player.getPlayer()[m.isPlayerSleeping]()){ //player in bed try{ //try catch incase no bed at that location - let facing = World.getWorld().func_180495_p(this.player.getPlayer().field_71081_bT).func_177229_b(FACING).func_176736_b() //0-3 is S-W-N-E + let facing = World.getWorld().func_180495_p(this.player.getPlayer()[f.playerLocation])[m.getValue.BlockState$StateImplementation](FACING)[m.getHorizontalIndex]() //0-3 is S-W-N-E let rotation = 0 switch(facing){ @@ -203,12 +205,12 @@ class DragonWings extends Cosmetic { Tessellator.translate(0, 0.75-this.settings.scale*100,0) Tessellator.rotate(rotation, 0, 1, 0) - wing.field_78795_f = 0; //rotateAngleX + wing[f.rotateAngleX] = 0; //rotateAngleX - wing.field_78808_h = (-0.5+Math.sin(this.animOffset/5)*0.1)*this.settings.scale*100; //rotateAngleZ + wing[f.rotateAngleZ] = (-0.5+Math.sin(this.animOffset/5)*0.1)*this.settings.scale*100; //rotateAngleZ - wingTip.field_78808_h = -2.20+Math.sin(this.animOffset/5)*0.1 + wingTip[f.rotateAngleZ] = -2.20+Math.sin(this.animOffset/5)*0.1 }catch(e){} }else if(wingBackAmount === 0){ //tilt @@ -219,7 +221,7 @@ class DragonWings extends Cosmetic { wing_tilt_offset += (changeStandingStillWingThing)*4 } - wing.field_78795_f = 0.75 - Math.cos(this.animOffset) * 0.2+wing_tilt_offset; //rotateAngleX + wing[f.rotateAngleX] = 0.75 - Math.cos(this.animOffset) * 0.2+wing_tilt_offset; //rotateAngleX let wing_goback_amount = 0.15/(Math.min(1, horisontalSpeed)*3+0.25) @@ -237,74 +239,74 @@ class DragonWings extends Cosmetic { temp_horis_wingthing = -(changeStandingStillWingThing)*0.75 } - wing.field_78808_h = (Math.sin(this.animOffset)/temp_wing_thing + 0.125) * wing_goback_amount*(1+(flapAmountMultiplyer-1)*1)*flapAmountMultiplyerNoEnd -0.4-wing_tilt_offset/3+temp_horis_wingthing+flapMainOffsetThing; //rotateAngleZ + wing[f.rotateAngleZ] = (Math.sin(this.animOffset)/temp_wing_thing + 0.125) * wing_goback_amount*(1+(flapAmountMultiplyer-1)*1)*flapAmountMultiplyerNoEnd -0.4-wing_tilt_offset/3+temp_horis_wingthing+flapMainOffsetThing; //rotateAngleZ - wingTip.field_78808_h = -((Math.sin((this.animOffset+1.5+(1-temp_wing_thing)/8.5))/(1+(temp_wing_thing-1)/3) + 0.5)) * 0.75*(1+(flapAmountMultiplyer-1)*1)/(1+temp_horis_wingthing) - (1-flapAmountMultiplyer)*2-(1-temp_wing_thing)/10+wingEndOffsetThing; //rotateAngleZ + wingTip[f.rotateAngleZ] = -((Math.sin((this.animOffset+1.5+(1-temp_wing_thing)/8.5))/(1+(temp_wing_thing-1)/3) + 0.5)) * 0.75*(1+(flapAmountMultiplyer-1)*1)/(1+temp_horis_wingthing) - (1-flapAmountMultiplyer)*2-(1-temp_wing_thing)/10+wingEndOffsetThing; //rotateAngleZ }else{ //tilt let wing_tilt_offset = -Math.min(0.8, horisontalSpeed*3) //When go faster tilt wing back so its in direction of wind - wing.field_78795_f = 0.75 - Math.cos(this.animOffset) * 0.2+wing_tilt_offset-wingBackAmount/2; //rotateAngleX + wing[f.rotateAngleX] = 0.75 - Math.cos(this.animOffset) * 0.2+wing_tilt_offset-wingBackAmount/2; //rotateAngleX - wing.field_78808_h = -wingBackAmount; //rotateAngleZ + wing[f.rotateAngleZ] = -wingBackAmount; //rotateAngleZ - wingTip.field_78808_h = -((Math.sin((this.animOffset))*0.5 + 0.3)) + wingTip[f.rotateAngleZ] = -((Math.sin((this.animOffset))*0.5 + 0.3)) } - GlStateManager.func_179129_p() //disable culling + GlStateManager[m.disableCull]() //disable culling let wing_center_dist = ((0-Math.log(1000*this.settings.scale+0.01)-2)-100000*this.settings.scale*this.settings.scale)/1000 // GL11.glDepthMask(GL11.GL_FALSE); Tessellator.translate(-wing_center_dist, 0, 0) Tessellator.scale(this.settings.scale, this.settings.scale, this.settings.scale) - wing.func_78791_b(1) //render left wing + wing[m.renderWithRotation](1) //render left wing Tessellator.translate(2*wing_center_dist/this.settings.scale, 0, 0) Tessellator.scale(-1, 1, 1) - wing.func_78791_b(1) //render right wing + wing[m.renderWithRotation](1) //render right wing - if(this.player.getPlayer().field_70737_aN > 0){ //damage tick - GlStateManager.func_179094_E(); // pushMatrix - GlStateManager.func_179143_c(514); - GlStateManager.func_179090_x(); - GlStateManager.func_179147_l(); - GlStateManager.func_179112_b(770, 771); - GlStateManager.func_179131_c(1, 0, 0, 0.25); + if(this.player.getPlayer()[f.hurtTime] > 0){ //damage tick + GlStateManager[m.pushMatrix](); // pushMatrix + GlStateManager[m.depthFunc](514); + GlStateManager[m.disableTexture2D](); + GlStateManager[m.enableBlend](); + GlStateManager[m.blendFunc](770, 771); + GlStateManager.func_179131_c(1, 0, 0, 0.25); //m.color.glstatemanager.ffff Tessellator.scale(-1, 1, 1) Tessellator.translate(-2*wing_center_dist/this.settings.scale, 0, 0) - wing.func_78791_b(1) //render left wing + wing[m.renderWithRotation](1) //render left wing Tessellator.translate(2*wing_center_dist/this.settings.scale, 0, 0) Tessellator.scale(-1, 1, 1) - wing.func_78791_b(1) //render right wing + wing[m.renderWithRotation](1) //render right wing - GlStateManager.func_179098_w(); - GlStateManager.func_179084_k(); - GlStateManager.func_179143_c(515); - GlStateManager.func_179121_F(); // popMatrix + GlStateManager[m.enableTexture2D](); + GlStateManager[m.disableBlend](); + GlStateManager[m.depthFunc](515); + GlStateManager[m.popMatrix](); // popMatrix } Tessellator.colorize(1, 1, 1) - GlStateManager.func_179089_o() //enable culling - GlStateManager.func_179121_F(); // popMatrix + GlStateManager[m.enableCull]() //enable culling + GlStateManager[m.popMatrix](); // popMatrix } testPlaySound(){ - if(this.player.getPlayer().func_98034_c(Player.getPlayer())){ + if(this.player.getPlayer()[m.isInvisibleToPlayer](Player.getPlayer())){ return } - let horisontalSpeed = Math.sqrt((this.player.getPlayer().field_70165_t-this.player.getPlayer().field_70142_S)**2+(this.player.getPlayer().field_70161_v-this.player.getPlayer().field_70136_U)**2) + let horisontalSpeed = Math.sqrt((this.player.getPlayer()[f.posX.Entity]-this.player.getPlayer()[f.lastTickPosX])**2+(this.player.getPlayer()[f.posZ.Entity]-this.player.getPlayer()[f.lastTickPosZ])**2) - let verticleSpeed = this.player.getPlayer().field_70163_u-this.player.getPlayer().field_70137_T + let verticleSpeed = this.player.getPlayer()[f.posZ.Entity]-this.player.getPlayer()[f.lastTickPosZ] // if((this.player === Player &&this.player.getPlayer().field_71075_bZ.field_75100_b) || (this.player !== Player && Math.abs(verticleSpeed)<0.2 && !this.player.getPlayer().field_70122_E)){//playerCapabilities.isFlying - if((verticleSpeed>-0.2) && !this.player.getPlayer().field_70122_E){ //flying + if((verticleSpeed>-0.2) && !this.player.getPlayer()[f.onGround.Entity]){ //flying if(this.animOffset-this.lastFlapSound > 2*Math.PI){ @@ -316,7 +318,7 @@ class DragonWings extends Cosmetic { } if(horisontalSpeed < 0.01){ - if(!((verticleSpeed>-0.2) && !this.player.getPlayer().field_70122_E)){ //not flying + if(!((verticleSpeed>-0.2) && !this.player.getPlayer()[f.onGround.Entity])){ //not flying let amt = (this.animOffset+Math.PI/2)%(20*Math.PI) if(amt < 1*Math.PI){ if(amt > 0.65*Math.PI && (2*Math.PI+this.animOffset)-this.lastFlapSound > 2*Math.PI){ @@ -367,19 +369,19 @@ class DragonWings extends Cosmetic { this.lastRender = Date.now() - let horisontalSpeed = Math.sqrt((this.player.getPlayer().field_70165_t-this.player.getPlayer().field_70142_S)**2+(this.player.getPlayer().field_70161_v-this.player.getPlayer().field_70136_U)**2) + let horisontalSpeed = Math.sqrt((this.player.getPlayer()[f.posX.Entity]-this.player.getPlayer()[f.lastTickPosX])**2+(this.player.getPlayer()[f.posZ.Entity]-this.player.getPlayer()[f.lastTickPosZ])**2) - let verticleSpeed = this.player.getPlayer().field_70163_u-this.player.getPlayer().field_70137_T + let verticleSpeed = this.player.getPlayer()[f.posZ.Entity]-this.player.getPlayer()[f.lastTickPosZ] this.animOffset += Math.min(1, horisontalSpeed)*10*timeSince+1*timeSince - if(this.player.getPlayer().field_70172_ad > 0){ //damage tick + if(this.player.getPlayer()[f.hurtResistantTime] > 0){ //damage tick this.animOffset += 5*timeSince } // if((this.player === Player &&this.player.getPlayer().field_71075_bZ.field_75100_b) || (this.player !== Player && Math.abs(verticleSpeed)<0.2 && !this.player.getPlayer().field_70122_E)){//playerCapabilities.isFlying - if((verticleSpeed>-0.2) && !this.player.getPlayer().field_70122_E){ //flying + if((verticleSpeed>-0.2) && !this.player.getPlayer()[f.onGround]){ //flying this.animOffset += 5*timeSince //flap in mid air if(verticleSpeed > 0){ @@ -391,7 +393,7 @@ class DragonWings extends Cosmetic { } if(horisontalSpeed < 0.01){ - if(!((verticleSpeed>-0.2) && !this.player.getPlayer().field_70122_E)){ //not flying + if(!((verticleSpeed>-0.2) && !this.player.getPlayer()[f.onGround])){ //not flying let amt = (this.animOffset+Math.PI/2)%(20*Math.PI) if(amt < 1*Math.PI){ this.animOffset += 2*timeSince*Math.min(1,(amt/(1*Math.PI))*2) diff --git a/features/cosmetics/index.js b/features/cosmetics/index.js index 329a7f5..6457be0 100644 --- a/features/cosmetics/index.js +++ b/features/cosmetics/index.js @@ -3,6 +3,7 @@ import Feature from "../../featureClass/class"; import DragonWings from "./cosmetic/dragon/dragonWings" import Toggle from "../settings/settingThings/toggle" +import { f } from "../../mappings/mappings"; class Cosmetics extends Feature { constructor() { @@ -41,14 +42,14 @@ class Cosmetics extends Feature { this.registerStep(false, 60*10, ()=>{ new Thread(()=>{this.loadCosmeticsData.call(this)}).start() }) - // this.registerEvent("renderEntity", this.renderEntity) + this.registerEvent("renderEntity", this.renderEntity) this.loadedRenderEntity = false } renderWorld(ticks){ - this.loadedCosmetics.forEach(cosmetic => { + for(cosmetic of this.loadedCosmetics){ cosmetic.onRenderEntity(ticks, false) - }) + } } renderEntity(entity, pos, ticks, event){ @@ -66,7 +67,7 @@ class Cosmetics extends Feature { this.cosmeticsData = data this.playerHasACosmeticA = !!data[Player.getUUID().toString().replace(/-/g,"")] if(this.playerHasACosmeticA && !this.loadedRenderEntity){ - this.registerEvent("renderEntity", this.renderEntity) + // this.registerEvent("renderEntity", this.renderEntity) this.loadedRenderEntity = true } @@ -157,7 +158,7 @@ class Cosmetics extends Feature { this.loadedCosmetics = this.loadedCosmetics.filter(cosmetic => { if(tick) cosmetic.onTick() if(cosmetic.player.getUUID().toString() === Player.getUUID().toString()) return true - if(cosmetic.player.getPlayer().field_70128_L){ //filter out players that are no longer loaded + if(cosmetic.player.getPlayer()[f.isDead]){ //filter out players that are no longer loaded this.uuidToCosmetic[cosmetic.id][cosmetic.player.getUUID().toString().replace(/-/g,"")] = undefined this.uuidToCosmeticDirect[cosmetic.player.getUUID().toString()] = undefined diff --git a/features/dungeonMap/index.js b/features/dungeonMap/index.js index 12bd471..a57edfc 100644 --- a/features/dungeonMap/index.js +++ b/features/dungeonMap/index.js @@ -1,6 +1,7 @@ /// <reference types="../../../CTAutocomplete" /> /// <reference lib="es2015" /> import Feature from "../../featureClass/class"; +import { f, m } from "../../mappings/mappings"; const BufferedImage = Java.type("java.awt.image.BufferedImage") class DungeonMap extends Feature { @@ -120,11 +121,11 @@ class DungeonMap extends Feature { let mapData try { let item = Player.getInventory().getStackInSlot(8) - mapData = item.getItem().func_77873_a(item.getItemStack(), World.getWorld()); // ItemStack.getItem().getMapData() + mapData = item.getItem()[m.getMapData](item.getItemStack(), World.getWorld()); // ItemStack.getItem().getMapData() } catch (error) { } if(mapData){ - mapData.field_76203_h.forEach((icon, vec4b) => { + mapData[f.mapDecorations].forEach((icon, vec4b) => { let x = vec4b.func_176112_b() let y = vec4b.func_176113_c() let rot = vec4b.func_176111_d() @@ -148,7 +149,7 @@ class DungeonMap extends Feature { }); // console.log("has map data poggies") - let bytes = mapData.field_76198_e + let bytes = mapData[f.colors.MapData] let x = 0 let y = 0 @@ -157,7 +158,7 @@ class DungeonMap extends Feature { if(bytes[i] !== 0){ let j = bytes[i]&255 - let color = net.minecraft.block.material.MapColor.field_76281_a[j>>2].func_151643_b(j & 3); + let color = net.minecraft.block.material.MapColor[f.mapColorArray][j>>2][m.getMapColor](j & 3); mapImage.setRGB(x, y, color) newImage.setRGB(x, y, color) } diff --git a/features/events/index.js b/features/events/index.js index 5586503..6769789 100644 --- a/features/events/index.js +++ b/features/events/index.js @@ -1,6 +1,7 @@ /// <reference types="../../../CTAutocomplete" /> /// <reference lib="es2015" /> import Feature from "../../featureClass/class"; +import { f } from "../../mappings/mappings"; import { drawBoxAtBlock, drawBoxAtBlockNotVisThruWalls, drawLine } from "../../utils/renderUtils"; import { calculateDistance, calculateDistanceQuick, fastestPathThrough } from "../../utils/utils"; import HudTextElement from "../hud/HudTextElement"; @@ -63,9 +64,9 @@ class Events extends Feature { renderWorld(ticks){ if(this.showingWaypoints && this.lastPathCords && this.burrialWaypointsPath.getValue()){ - let startPoint = [Player.getPlayer().field_70142_S+Player.getPlayer().field_70159_w*ticks, - Player.getPlayer().field_70137_T+Player.getPlayer().field_70181_x*ticks, - Player.getPlayer().field_70136_U+Player.getPlayer().field_70179_y*ticks] + let startPoint = [Player.getPlayer()[f.lastTickPosX]+Player.getPlayer()[f.motionX.Entity]*ticks, + Player.getPlayer()[f.lastTickPosY]+Player.getPlayer()[f.motionY.Entity]*ticks, + Player.getPlayer()[f.lastTickPosZ]+Player.getPlayer()[f.motionZ.Entity]*ticks] let lastPoint = startPoint || [0,0,0] diff --git a/features/fragBot/index.js b/features/fragBot/index.js index 48bfd87..c2d2d19 100644 --- a/features/fragBot/index.js +++ b/features/fragBot/index.js @@ -19,7 +19,7 @@ class FragBot extends Feature { new SettingBase("To host a fragbot use /fragbot", "", undefined, "host_fragbot_info", this) new SettingBase("NOTE: All this does atm is accept party invites", "More features for this coming soon", true, "stat_next_to_name_description", this) - this.uploadToWebsite = new ToggleSetting("Advertise fragbot status", "Will show up as a fragbot in other peoples fragbot lists", true, "advertise_fragbot", this) + // this.uploadToWebsite = new ToggleSetting("Advertise fragbot status", "Will show up as a fragbot in other peoples fragbot lists", true, "advertise_fragbot", this) this.registerCommand("fragbot", this.fragbotCommand) diff --git a/features/hud/index.js b/features/hud/index.js index 704c954..8e2b826 100644 --- a/features/hud/index.js +++ b/features/hud/index.js @@ -2,6 +2,7 @@ /// <reference lib="es2015" /> import SoopyNumber from "../../../guimanager/Classes/SoopyNumber"; import Feature from "../../featureClass/class"; +import { m } from "../../mappings/mappings"; import LocationSetting from "../settings/settingThings/location"; import ToggleSetting from "../settings/settingThings/toggle"; import HudTextElement from "./HudTextElement"; @@ -113,6 +114,8 @@ class Hud extends Feature { this.lastframe = 0 this.slowestFrameTime = 0 + this.lastSwappedPet = 0 + this.lastWitherImpact = 0 this.aup = 0 this.lastTickEventEpochTimestamp = 0 @@ -137,23 +140,33 @@ class Hud extends Feature { this.registerChat("&cAutopet &eequipped your ${pet}&e! &a&lVIEW RULE&r", (pet)=>{ this.petElement.setText("&6Pet&7> "+pet) this.petText = "&6Pet&7> "+pet + + this.lastSwappedPet = Date.now() }) this.registerChat("&r&aYou summoned your &r${pet}&r&a!&r", (pet)=>{ this.petElement.setText("&6Pet&7> &7[Lvl " + this.petLevels[pet.replace("&", "§")] +"] "+pet) this.petText = "&6Pet&7> &7[Lvl " + this.petLevels[pet.replace("&", "§")] +"] "+pet + + this.lastSwappedPet = Date.now() }) this.registerChat("&r&aYou despawned your &r${*}&r&a!&r", ()=>{ this.petElement.setText("&6Pet&7> &cNone") this.petText = "&6Pet&7> &cNone" + + this.lastSwappedPet = Date.now() }) this.registerChat("&r&aYour &r${pet} &r&alevelled up to level &r&9${level}&r&a!&r", (pet, level)=>{ this.petElement.setText("&6Pet&7> &7[Lvl " + level +"] "+pet) this.petText = "&6Pet&7> &7[Lvl " + level +"] "+pet + + this.lastSwappedPet = Date.now() }) this.registerSoopy("apiLoad", this.apiLoad) if(this.FeatureManager.features["dataLoader"].class.lastApiData.skyblock){ this.apiLoad(this.FeatureManager.features["dataLoader"].class.lastApiData.skyblock, "skyblock", true, true) + + this.lastSwappedPet = Date.now() } this.registerActionBar("${m}", this.actionbarMessage) @@ -262,11 +275,20 @@ class Hud extends Feature { if(inv[i]!=null && inv[i].getName().includes("[Lvl ")){ let level = inv[i].getName().split(" ")[1].replace("]", "") if(!this.petLevels[inv[i].getName().split("] ")[1]] || this.petLevels[inv[i].getName().split("] ")[1]] < level)this.petLevels[inv[i].getName().split("] ")[1]] = level + + if(Date.now()-this.lastSwappedPet > 1000){ + inv[i].getLore().forEach(line => { + if(line.includes("Click to despawn.")){ + this.petElement.setText("&6Pet&7> &7" + inv[i].getName().split("(")[0]) + this.petText = "&6Pet&7> &7" + inv[i].getName().split("(")[0] + } + }) + } } } } - if(Player.getPlayer().func_110139_bj() > this.lastAbsorbtion){ + if(Player.getPlayer()[m.getAbsorptionAmount]() > this.lastAbsorbtion){ if(Date.now()-this.impactTest < 750){ this.lastWitherImpact = Date.now() this.impactTest = 0 @@ -274,7 +296,7 @@ class Hud extends Feature { this.aup = Date.now() } } - this.lastAbsorbtion = Player.getPlayer().func_110139_bj() + this.lastAbsorbtion = Player.getPlayer()[m.getAbsorptionAmount]() } step_5second(){ diff --git a/features/mining/index.js b/features/mining/index.js index 214ffa7..b89d8e6 100644 --- a/features/mining/index.js +++ b/features/mining/index.js @@ -1,6 +1,7 @@ /// <reference types="../../../CTAutocomplete" /> /// <reference lib="es2015" /> import Feature from "../../featureClass/class"; +import { m } from "../../mappings/mappings"; import * as stringUtils from "../../utils/stringUtils"; import * as utils from "../../utils/utils" import HudTextElement from "../hud/HudTextElement"; @@ -76,13 +77,13 @@ class Mining extends Feature { if(unlockedGems){ - if(unlockedGems.func_74745_c() === 0){ + if(unlockedGems[m.tagCount]() === 0){ utils.addLore(item, ChatLib.addColor("&d&lGemstones Unlocked: &f"), ChatLib.addColor("&cNone!")) }else{ let gemstoneString = "" - for(let i = 0; i < unlockedGems.func_74745_c(); i++){ - let gem = String(unlockedGems.func_150307_f(i)).split("_") + for(let i = 0; i < unlockedGems[m.tagCount](); i++){ + let gem = String(unlockedGems[m.getStringTagAt](i)).split("_") let name = stringUtils.firstLetterCapital(gem[0].toLowerCase()) @@ -132,7 +133,7 @@ class Mining extends Feature { if(this.FeatureManager.features["dataLoader"].class.area === "Crystal Hollows" && this.FeatureManager.features["dataLoader"].class.areaFine === "Khazad-dm"){ this.balEntity = undefined - World.getAllEntities().filter(a=>a.getName()==="Magma Cube").filter(a=>a.getEntity().func_70809_q() > 10).forEach((bal)=>{ + World.getAllEntities().filter(a=>a.getName()==="Magma Cube").filter(a=>a.getEntity()[m.getSlimeSize]() > 10).forEach((bal)=>{ //Bal found this.balEntity = bal }) diff --git a/features/settings/settingsCommunicator.js b/features/settings/settingsCommunicator.js index b54b1c1..d0a55fc 100644 --- a/features/settings/settingsCommunicator.js +++ b/features/settings/settingsCommunicator.js @@ -24,6 +24,6 @@ class SettingsCommunicator { } } -const settingsCommunicator = new SettingsCommunicator() +if(!global.soopyv2SettingsCommunicator) global.soopyv2SettingsCommunicator = new SettingsCommunicator() -export default settingsCommunicator
\ No newline at end of file +export default global.soopyv2SettingsCommunicator
\ No newline at end of file diff --git a/features/slayers/index.js b/features/slayers/index.js index 3c3b517..0be4e57 100644 --- a/features/slayers/index.js +++ b/features/slayers/index.js @@ -1,6 +1,7 @@ /// <reference types="../../../CTAutocomplete" /> /// <reference lib="es2015" /> import Feature from "../../featureClass/class"; +import { f, m } from "../../mappings/mappings"; import { numberWithCommas } from "../../utils/numberUtils"; import { drawBoxAtBlock, drawBoxAtEntity, drawFilledBox, drawLine } from "../../utils/renderUtils"; import HudTextElement from "../hud/HudTextElement"; @@ -107,7 +108,7 @@ class Slayers extends Feature { World.getAllEntitiesOfType(net.minecraft.entity.item.EntityArmorStand).forEach(e=>{ if(e.getName().includes("Voidgloom Seraph")){ //if distance from e to event.entity < 5 - if((e.getX() - event.entity.field_70165_t)**2 + (e.getY() - event.entity.field_70163_u)**2 + (e.getZ() - event.entity.field_70161_v)**2 < 25){ + if((e.getX() - event.entity[f.posX.Entity])**2 + (e.getY() - event.entity[f.posY.Entity])**2 + (e.getZ() - event.entity[f.posZ.Entity])**2 < 25){ this.emanBoss = e } } @@ -205,15 +206,15 @@ class Slayers extends Feature { this.todoE.forEach(e=>{ try{ - if(e instanceof net.minecraft.entity.item.EntityArmorStand && e.func_71124_b(4)){ - if(e.func_71124_b(4).func_82833_r() === "Beacon"){ + if(e instanceof net.minecraft.entity.item.EntityArmorStand && e[m.getEquipmentInSlot](4)){ + if(e[m.getEquipmentInSlot](4)[m.getDisplayName.ItemStack]() === "Beacon"){ let closestEIsGaming = false let closestDist = Infinity World.getAllEntitiesOfType(net.minecraft.entity.item.EntityArmorStand).forEach(e2=>{ if(e2.getName().includes("Voidgloom Seraph")){ - if((e2.getX() - e.field_70165_t)**2 + (e2.getY() - e.field_70163_u)**2 + (e2.getZ() - e.field_70161_v)**2 < closestDist){ - closestDist = (e2.getX() - e.field_70165_t)**2 + (e2.getY() - e.field_70163_u)**2 + (e2.getZ() - e.field_70161_v)**2 + if((e2.getX() - e[f.posX.Entity])**2 + (e2.getY() - e[f.posY.Entity])**2 + (e2.getZ() - e[f.posZ.Entity])**2 < closestDist){ + closestDist = (e2.getX() - e[f.posX.Entity])**2 + (e2.getY() - e[f.posY.Entity])**2 + (e2.getZ() - e[f.posZ.Entity])**2 closestEIsGaming = this.emanBoss?e2.getUUID().toString()===this.emanBoss.getUUID().toString():false } } @@ -222,27 +223,27 @@ class Slayers extends Feature { this.beaconE.push(e) } } - if(e.func_71124_b(4).func_82833_r().startsWith("§a")){ + if(e[m.getEquipmentInSlot](4)[m.getDisplayName.ItemStack]().startsWith("§a")){ let closestEIsGaming = false let closestDist = Infinity World.getAllEntitiesOfType(net.minecraft.entity.item.EntityArmorStand).forEach(e2=>{ if(e2.getName().includes("Voidgloom Seraph")){ - if((e2.getX() - e.field_70165_t)**2 + (e2.getY() - e.field_70163_u)**2 + (e2.getZ() - e.field_70161_v)**2 < closestDist){ - closestDist = (e2.getX() - e.field_70165_t)**2 + (e2.getY() - e.field_70163_u)**2 + (e2.getZ() - e.field_70161_v)**2 + if((e2.getX() - e[f.posX.Entity])**2 + (e2.getY() - e[f.posY.Entity])**2 + (e2.getZ() - e[f.posZ.Entity])**2 < closestDist){ + closestDist = (e2.getX() - e[f.posX.Entity])**2 + (e2.getY() - e[f.posY.Entity])**2 + (e2.getZ() - e[f.posZ.Entity])**2 closestEIsGaming = this.emanBoss?e2.getUUID().toString()===this.emanBoss.getUUID().toString():false } } }) - if(closestEIsGaming && new Item(e.func_71124_b(4)).getNBT().getCompoundTag("tag").getCompoundTag("SkullOwner").getCompoundTag("Properties").getRawNBT().func_150295_c("textures", 10).func_150305_b(0).func_74779_i("Value") === "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWIwNzU5NGUyZGYyNzM5MjFhNzdjMTAxZDBiZmRmYTExMTVhYmVkNWI5YjIwMjllYjQ5NmNlYmE5YmRiYjRiMyJ9fX0="){ + if(closestEIsGaming && new Item(e[m.getEquipmentInSlot](4)).getNBT().getCompoundTag("tag").getCompoundTag("SkullOwner").getCompoundTag("Properties").getRawNBT()[m.getTagList]("textures", 10)[m.getCompoundTagAt](0)[m.getString.NBTTagCompound]("Value") === "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWIwNzU5NGUyZGYyNzM5MjFhNzdjMTAxZDBiZmRmYTExMTVhYmVkNWI5YjIwMjllYjQ5NmNlYmE5YmRiYjRiMyJ9fX0="){ this.eyeE.push(new Entity(e)) } - // console.log(":" + new Item(e.func_71124_b(4)).getNBT().getCompoundTag("tag").getCompoundTag("SkullOwner").getCompoundTag("Properties").getRawNBT().func_150295_c("textures", 10).func_150305_b(0).func_74779_i("Value")) + // console.log(":" + new Item(e[m.getEquipmentInSlot](4)).getNBT().getCompoundTag("tag").getCompoundTag("SkullOwner").getCompoundTag("Properties").getRawNBT().func_150295_c("textures", 10).func_150305_b(0).func_74779_i("Value")) } } - if(e.func_95999_t() && e.func_95999_t().includes("Voidgloom Seraph")){ + if(e[m.getCustomNameTag]() && e[m.getCustomNameTag]().includes("Voidgloom Seraph")){ if(Date.now()-this.nextIsBoss < 3000){ this.emanBoss = new Entity(e) this.nextIsBoss = false @@ -253,25 +254,25 @@ class Slayers extends Feature { this.todoE = this.todoE2 this.todoE2 = [] - if(this.emanBoss && this.emanBoss.getEntity().field_70128_L) this.emanBoss = undefined - this.eyeE = this.eyeE.filter(e=>!e.getEntity().field_70128_L) + if(this.emanBoss && this.emanBoss.getEntity()[f.isDead]) this.emanBoss = undefined + this.eyeE = this.eyeE.filter(e=>!e.getEntity()[f.isDead]) this.beaconE = this.beaconE.filter((e)=>{ - if(e.field_70128_L){ - this.deadE.push([Date.now(), e.func_110124_au().toString()]) + if(e[f.isDead]){ + this.deadE.push([Date.now(), e[m.getUniqueID.Entity]().toString()]) - let pos = [e.field_70165_t+0.5, e.field_70163_u+0.7, e.field_70161_v+0.5] + let pos = [e[f.posX.Entity]+0.5, e[f.posY.Entity]+0.7, e[f.posZ.Entity]+0.5] //check for a beacon block within 5 blocks of pos for(let x = pos[0] - 5; x <= pos[0] + 5; x++){ for(let y = pos[1] - 5; y <= pos[1] + 5; y++){ for(let z = pos[2] - 5; z <= pos[2] + 5; z++){ if(World.getBlockAt(Math.floor(x), Math.floor(y), Math.floor(z)).getID() === 138){ - this.beaconLocations[e.func_110124_au().toString()] = [Math.floor(x), Math.floor(y), Math.floor(z)] + this.beaconLocations[e[m.getUniqueID.Entity]().toString()] = [Math.floor(x), Math.floor(y), Math.floor(z)] } } } } - // if(!this.beaconLocations[e.func_110124_au().toString()]){ + // if(!this.beaconLocations[e[m.getUniqueID.Entity]().toString()]){ // console.log("Diddnt find beacon wtf?????") // } @@ -281,9 +282,9 @@ class Slayers extends Feature { }) this.beaconE.forEach((e)=>{ - if(!this.beaconPoints[e.func_110124_au().toString()])this.beaconPoints[e.func_110124_au().toString()] = [] + if(!this.beaconPoints[e[m.getUniqueID.Entity]().toString()])this.beaconPoints[e[m.getUniqueID.Entity]().toString()] = [] - this.beaconPoints[e.func_110124_au().toString()].push([e.field_70165_t+0.5, e.field_70163_u+0.7, e.field_70161_v+0.5])//x, y, z + this.beaconPoints[e[m.getUniqueID.Entity]().toString()].push([e[f.posX.Entity]+0.5, e[f.posY.Entity]+0.7, e[f.posZ.Entity]+0.5])//x, y, z }) this.deadE = this.deadE.filter(e=>{ diff --git a/features/streamsGUI/index.js b/features/streamsGUI/index.js index f452806..366fbcd 100644 --- a/features/streamsGUI/index.js +++ b/features/streamsGUI/index.js @@ -10,6 +10,7 @@ import SoopyGuiElement from "../../../guimanager/GuiElement/SoopyGuiElement"; import SoopyMouseClickEvent from "../../../guimanager/EventListener/SoopyMouseClickEvent"; import ButtonWithArrow from "../../../guimanager/GuiElement/ButtonWithArrow"; import BoxWithText from "../../../guimanager/GuiElement/BoxWithText"; +import { drawBoxAtBlock } from "../../utils/renderUtils"; class StreamsGui extends Feature { constructor() { @@ -20,6 +21,7 @@ class StreamsGui extends Feature { this.initVariables() this.GuiPage = new StreamPage() + } initVariables(){ @@ -2,11 +2,14 @@ /// <reference lib="es2015" /> class SoopyAddons { - constructor(){ + constructor() { this.FeatureManager = require("./featureClass/featureManager.js") this.FeatureManager.parent = this } } +register("command", ()=>{ + require("./mappings/mappingCreator.js") +}).setName("soopyreloadmappingsfile") -new SoopyAddons()
\ No newline at end of file +new SoopyAddons() diff --git a/mappings/data/constructors.txt b/mappings/data/constructors.txt new file mode 100644 index 0000000..ff51a91 --- /dev/null +++ b/mappings/data/constructors.txt @@ -0,0 +1,1941 @@ +1005 net/minecraft/client/Minecraft$12 (Lnet/minecraft/client/Minecraft;)V +1006 net/minecraft/client/stream/NullStream (Ljava/lang/Throwable;)V +1007 net/minecraft/client/Minecraft$3 (Lnet/minecraft/client/Minecraft;)V +1008 net/minecraft/client/Minecraft$4 (Lnet/minecraft/client/Minecraft;)V +1009 net/minecraft/client/Minecraft$5 (Lnet/minecraft/client/Minecraft;)V +1010 net/minecraft/client/Minecraft$6 (Lnet/minecraft/client/Minecraft;)V +1011 net/minecraft/client/Minecraft$7 (Lnet/minecraft/client/Minecraft;)V +1012 net/minecraft/client/Minecraft$8 (Lnet/minecraft/client/Minecraft;)V +1013 net/minecraft/client/Minecraft$9 (Lnet/minecraft/client/Minecraft;)V +1014 net/minecraft/client/stream/IStream$AuthFailureReason (Ljava/lang/String;I)V +1015 net/minecraft/client/settings/GameSettings$Options (Ljava/lang/String;ILjava/lang/String;ZZ)V +1016 net/minecraft/client/stream/IngestServerTester$IngestTestState (Ljava/lang/String;I)V +1017 net/minecraft/client/LoadingScreenRenderer (Lnet/minecraft/client/Minecraft;)V +1018 net/minecraft/util/Timer (F)V +1019 net/minecraft/client/stream/IngestServerTester (Ltv/twitch/broadcast/Stream;Ltv/twitch/broadcast/IngestList;)V +1020 net/minecraft/client/gui/GuiButton (IIILjava/lang/String;)V +1021 net/minecraft/client/stream/ChatController$ChatState (Ljava/lang/String;I)V +1022 net/minecraft/client/gui/GuiNewChat (Lnet/minecraft/client/Minecraft;)V +1023 net/minecraft/client/gui/ScreenChatOptions (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V +1024 net/minecraft/client/gui/GuiChat (Ljava/lang/String;)V +1025 net/minecraft/client/stream/BroadcastController$BroadcastState (Ljava/lang/String;I)V +1027 net/minecraft/client/gui/GuiControls (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V +1029 net/minecraft/client/gui/GuiCreateFlatWorld (Lnet/minecraft/client/gui/GuiCreateWorld;Ljava/lang/String;)V +1030 net/minecraft/client/stream/Metadata (Ljava/lang/String;)V +1031 net/minecraft/client/gui/GuiScreenServerList (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/multiplayer/ServerData;)V +1032 net/minecraft/client/stream/MetadataAchievement (Lnet/minecraft/stats/Achievement;)V +1033 net/minecraft/client/gui/GuiScreenAddServer (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/multiplayer/ServerData;)V +1034 net/minecraft/client/resources/data/PackMetadataSection (Lnet/minecraft/util/IChatComponent;I)V +1035 net/minecraft/client/gui/FontRenderer (Lnet/minecraft/client/settings/GameSettings;Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/client/renderer/texture/TextureManager;Z)V +1036 net/minecraft/client/resources/SkinManager$3$1 (Lnet/minecraft/client/resources/SkinManager$3;Ljava/util/Map;)V +1038 net/minecraft/client/resources/SkinManager$3 (Lnet/minecraft/client/resources/SkinManager;Lcom/mojang/authlib/GameProfile;ZLnet/minecraft/client/resources/SkinManager$SkinAvailableCallback;)V +1040 net/minecraft/client/gui/GuiMultiplayer (Lnet/minecraft/client/gui/GuiScreen;)V +1041 net/minecraft/client/gui/GuiButtonLanguage (III)V +1042 net/minecraft/client/resources/SkinManager$1 (Lnet/minecraft/client/resources/SkinManager;)V +1043 net/minecraft/client/gui/GuiLanguage (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;Lnet/minecraft/client/resources/LanguageManager;)V +1044 net/minecraft/client/resources/SkinManager (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/io/File;Lcom/mojang/authlib/minecraft/MinecraftSessionService;)V +1046 net/minecraft/client/gui/GuiOptions (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V +1047 net/minecraft/client/resources/ResourceIndex (Ljava/io/File;Ljava/lang/String;)V +1048 net/minecraft/client/gui/GuiFlatPresets$ListSlot (Lnet/minecraft/client/gui/GuiFlatPresets;)V +1049 net/minecraft/client/renderer/ThreadDownloadImageData (Ljava/io/File;Ljava/lang/String;Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/client/renderer/IImageBuffer;)V +1052 net/minecraft/client/gui/GuiSlot (Lnet/minecraft/client/Minecraft;IIIII)V +1053 net/minecraft/client/multiplayer/ServerData$ServerResourceMode (Ljava/lang/String;ILjava/lang/String;)V +1054 net/minecraft/client/gui/GuiSelectWorld (Lnet/minecraft/client/gui/GuiScreen;)V +1055 net/minecraft/client/gui/GuiShareToLan (Lnet/minecraft/client/gui/GuiScreen;)V +1056 net/minecraft/realms/RealmsSliderButton (IIIIII)V +1057 net/minecraft/realms/RealmsSliderButton (IIIIIIFF)V +1060 net/minecraft/client/gui/GuiSnooper$List (Lnet/minecraft/client/gui/GuiSnooper;)V +1061 net/minecraft/client/gui/GuiSnooper (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V +1062 net/minecraft/client/gui/GuiVideoSettings (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V +1063 net/minecraft/client/gui/achievement/GuiAchievement (Lnet/minecraft/client/Minecraft;)V +1064 net/minecraft/client/gui/stream/GuiTwitchUserMode (Lnet/minecraft/client/stream/IStream;Ltv/twitch/chat/ChatUserInfo;)V +1065 net/minecraft/client/gui/achievement/GuiStats$StatsBlock$1 (Lnet/minecraft/client/gui/achievement/GuiStats$StatsBlock;Lnet/minecraft/client/gui/achievement/GuiStats;)V +1066 net/minecraft/client/gui/stream/GuiStreamUnavailable$Reason (Ljava/lang/String;ILnet/minecraft/util/IChatComponent;)V +1067 net/minecraft/client/gui/stream/GuiStreamUnavailable$Reason (Ljava/lang/String;ILnet/minecraft/util/IChatComponent;Lnet/minecraft/util/IChatComponent;)V +1068 net/minecraft/client/gui/achievement/GuiStats$StatsItem$1 (Lnet/minecraft/client/gui/achievement/GuiStats$StatsItem;Lnet/minecraft/client/gui/achievement/GuiStats;)V +1070 net/minecraft/client/gui/stream/GuiStreamUnavailable (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/gui/stream/GuiStreamUnavailable$Reason;)V +1071 net/minecraft/client/gui/achievement/GuiStats (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/stats/StatFileWriter;)V +1072 net/minecraft/client/gui/inventory/GuiContainer (Lnet/minecraft/inventory/Container;)V +1073 net/minecraft/client/gui/stream/GuiStreamOptions (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V +1074 net/minecraft/client/gui/inventory/GuiBeacon$CancelButton (Lnet/minecraft/client/gui/inventory/GuiBeacon;III)V +1075 net/minecraft/client/gui/inventory/GuiBeacon$ConfirmButton (Lnet/minecraft/client/gui/inventory/GuiBeacon;III)V +1076 net/minecraft/client/gui/inventory/GuiBeacon$PowerButton (Lnet/minecraft/client/gui/inventory/GuiBeacon;IIIII)V +1077 net/minecraft/client/gui/inventory/GuiBeacon$Button (IIILnet/minecraft/util/ResourceLocation;II)V +1079 net/minecraft/realms/RealmsConnect (Lnet/minecraft/realms/RealmsScreen;)V +1080 net/minecraft/client/gui/GuiScreenBook (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/item/ItemStack;Z)V +1082 net/minecraft/client/gui/GuiYesNo (Lnet/minecraft/client/gui/GuiYesNoCallback;Ljava/lang/String;Ljava/lang/String;I)V +1083 net/minecraft/client/gui/GuiYesNo (Lnet/minecraft/client/gui/GuiYesNoCallback;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V +1084 net/minecraft/client/gui/GuiConfirmOpenLink (Lnet/minecraft/client/gui/GuiYesNoCallback;Ljava/lang/String;IZ)V +1085 net/minecraft/client/gui/GuiSlotRealmsProxy (Lnet/minecraft/realms/RealmsScrolledSelectionList;IIIII)V +1086 net/minecraft/client/gui/inventory/GuiContainerCreative$ContainerCreative (Lnet/minecraft/entity/player/EntityPlayer;)V +1087 net/minecraft/client/gui/GuiScreenRealmsProxy (Lnet/minecraft/realms/RealmsScreen;)V +1088 net/minecraft/client/gui/inventory/GuiContainerCreative (Lnet/minecraft/entity/player/EntityPlayer;)V +1089 net/minecraft/client/renderer/InventoryEffectRenderer (Lnet/minecraft/inventory/Container;)V +1090 net/minecraft/client/gui/GuiButtonRealmsProxy (Lnet/minecraft/realms/RealmsButton;IIILjava/lang/String;II)V +1092 net/minecraft/client/gui/GuiHopper (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +1093 net/minecraft/client/gui/inventory/GuiScreenHorseInventory (Lnet/minecraft/inventory/IInventory;Lnet/minecraft/inventory/IInventory;Lnet/minecraft/entity/passive/EntityHorse;)V +1094 net/minecraft/client/gui/inventory/GuiInventory (Lnet/minecraft/entity/player/EntityPlayer;)V +1095 net/minecraft/client/gui/GuiMerchant$MerchantButton (IIIZ)V +1096 net/minecraft/util/Session$Type (Ljava/lang/String;ILjava/lang/String;)V +1097 net/minecraft/client/gui/inventory/GuiEditSign (Lnet/minecraft/tileentity/TileEntitySign;)V +1098 net/minecraft/util/Session (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +1099 net/minecraft/client/Minecraft$16 (Lnet/minecraft/client/Minecraft;)V +1101 net/minecraft/client/Minecraft$15 (Lnet/minecraft/client/Minecraft;)V +1106 net/minecraft/realms/RealmsAnvilLevelStorageSource (Lnet/minecraft/world/storage/ISaveFormat;)V +1108 net/minecraft/util/Vec3 (DDD)V +1109 net/minecraft/realms/RealmsLevelSummary (Lnet/minecraft/world/storage/SaveFormatComparator;)V +1116 net/minecraft/world/biome/BiomeGenForest$2 (Lnet/minecraft/world/biome/BiomeGenForest;ILnet/minecraft/world/biome/BiomeGenBase;)V +1119 net/minecraft/realms/RealmsScrolledSelectionList (IIIII)V +1121 net/minecraft/realms/RealmsServerAddress (Ljava/lang/String;I)V +1126 net/minecraft/util/ThreadSafeBoundList (Ljava/lang/Class;I)V +1129 net/minecraft/server/management/UserListWhitelistEntry (Lcom/mojang/authlib/GameProfile;)V +1130 net/minecraft/server/management/UserListWhitelistEntry (Lcom/google/gson/JsonObject;)V +1132 net/minecraft/server/management/UserListWhitelist (Ljava/io/File;)V +1134 net/minecraft/server/management/UserListBansEntry (Lcom/mojang/authlib/GameProfile;)V +1135 net/minecraft/server/management/UserListBansEntry (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V +1136 net/minecraft/server/management/UserListBansEntry (Lcom/google/gson/JsonObject;)V +1138 net/minecraft/server/management/UserListBans (Ljava/io/File;)V +1140 net/minecraft/server/management/UserList$Serializer (Lnet/minecraft/server/management/UserList;)V +1141 net/minecraft/server/management/UserList$Serializer (Lnet/minecraft/server/management/UserList;Lnet/minecraft/server/management/UserList$1;)V +1144 net/minecraft/server/management/UserList (Ljava/io/File;)V +1146 net/minecraft/server/management/UserListEntry (Ljava/lang/Object;)V +1147 net/minecraft/server/management/UserListEntry (Ljava/lang/Object;Lcom/google/gson/JsonObject;)V +1148 net/minecraft/client/model/ModelBiped (F)V +1149 net/minecraft/client/model/ModelBiped (FFII)V +1150 net/minecraft/server/management/UserListOpsEntry (Lcom/google/gson/JsonObject;)V +1151 net/minecraft/client/model/ModelPig (F)V +1152 net/minecraft/server/management/UserListOps (Ljava/io/File;)V +1153 net/minecraft/client/model/TexturedQuad ([Lnet/minecraft/client/model/PositionTextureVertex;IIIIFF)V +1154 net/minecraft/client/model/ModelQuadruped (IF)V +1155 net/minecraft/client/model/ModelSkeletonHead (IIII)V +1157 net/minecraft/client/model/ModelSlime (I)V +1158 net/minecraft/client/model/PositionTextureVertex (FFFFF)V +1159 net/minecraft/server/management/IPBanEntry (Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V +1160 net/minecraft/client/model/PositionTextureVertex (Lnet/minecraft/util/Vec3;FF)V +1161 net/minecraft/client/model/ModelIronGolem (F)V +1162 net/minecraft/server/management/PlayerProfileCache$Serializer (Lnet/minecraft/server/management/PlayerProfileCache;)V +1163 net/minecraft/client/model/ModelVillager (F)V +1164 net/minecraft/client/model/ModelVillager (FFII)V +1165 net/minecraft/client/model/ModelZombieVillager (FFZ)V +1166 net/minecraft/server/management/PlayerProfileCache$ProfileEntry (Lnet/minecraft/server/management/PlayerProfileCache;Lcom/mojang/authlib/GameProfile;Ljava/util/Date;Lnet/minecraft/server/management/PlayerProfileCache$1;)V +1167 net/minecraft/client/model/ModelZombie (FFII)V +1168 net/minecraft/client/model/ModelZombie (FZ)V +1169 net/minecraft/server/management/PlayerProfileCache$1 ([Lcom/mojang/authlib/GameProfile;)V +1170 net/minecraft/client/model/ModelEnderCrystal (FZ)V +1171 net/minecraft/server/management/PlayerProfileCache (Lnet/minecraft/server/MinecraftServer;Ljava/io/File;)V +1172 net/minecraft/client/model/ModelRenderer (Lnet/minecraft/client/model/ModelBase;Ljava/lang/String;)V +1173 net/minecraft/client/model/ModelRenderer (Lnet/minecraft/client/model/ModelBase;)V +1174 net/minecraft/server/management/BanEntry (Ljava/lang/Object;Lcom/google/gson/JsonObject;)V +1175 net/minecraft/client/model/TextureOffset (II)V +1176 net/minecraft/server/management/PlayerManager (Lnet/minecraft/world/WorldServer;)V +1177 net/minecraft/realms/RealmsButton (IIILjava/lang/String;)V +1178 net/minecraft/realms/RealmsButton (IIIIILjava/lang/String;)V +1181 net/minecraft/client/multiplayer/GuiConnecting (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ServerData;)V +1182 net/minecraft/client/multiplayer/GuiConnecting (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/Minecraft;Ljava/lang/String;I)V +1184 net/minecraft/client/multiplayer/ChunkProviderClient (Lnet/minecraft/world/World;)V +1186 net/minecraft/client/multiplayer/WorldClient$1 (Lnet/minecraft/client/multiplayer/WorldClient;)V +1187 net/minecraft/client/multiplayer/WorldClient$2 (Lnet/minecraft/client/multiplayer/WorldClient;)V +1192 net/minecraft/client/multiplayer/ServerAddress (Ljava/lang/String;I)V +1194 net/minecraft/client/multiplayer/ServerList (Lnet/minecraft/client/Minecraft;)V +1195 net/minecraft/client/particle/EntityBreakingFX (Lnet/minecraft/world/World;DDDLnet/minecraft/item/Item;)V +1196 net/minecraft/client/particle/EntityBreakingFX (Lnet/minecraft/world/World;DDDLnet/minecraft/item/Item;I)V +1197 net/minecraft/client/particle/EntityBreakingFX (Lnet/minecraft/world/World;DDDDDDLnet/minecraft/item/Item;I)V +1198 net/minecraft/client/particle/EntityBubbleFX (Lnet/minecraft/world/World;DDDDDD)V +1201 net/minecraft/client/particle/EntityCritFX (Lnet/minecraft/world/World;DDDDDD)V +1203 net/minecraft/client/particle/EntityDropParticleFX (Lnet/minecraft/world/World;DDDLnet/minecraft/block/material/Material;)V +1204 net/minecraft/client/particle/EntityEnchantmentTableParticleFX (Lnet/minecraft/world/World;DDDDDD)V +1205 net/minecraft/client/particle/EntityExplodeFX (Lnet/minecraft/world/World;DDDDDD)V +1206 net/minecraft/server/management/PreYggdrasilConverter$ConversionError (Ljava/lang/String;Ljava/lang/Throwable;)V +1207 net/minecraft/server/management/PreYggdrasilConverter$ConversionError (Ljava/lang/String;)V +1208 net/minecraft/server/management/PreYggdrasilConverter$ConversionError (Ljava/lang/String;Lnet/minecraft/server/management/PreYggdrasilConverter$1;)V +1209 net/minecraft/client/particle/EntityFlameFX (Lnet/minecraft/world/World;DDDDDD)V +1210 net/minecraft/client/particle/EntityFootStepFX (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/world/World;DDD)V +1211 net/minecraft/client/particle/EntityHeartFX (Lnet/minecraft/world/World;DDDDDD)V +1212 net/minecraft/server/management/PreYggdrasilConverter$6 (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/io/File;Ljava/io/File;Ljava/io/File;[Ljava/lang/String;)V +1213 net/minecraft/client/particle/EntityLargeExplodeFX (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/world/World;DDDDDD)V +1214 net/minecraft/client/particle/EntityHugeExplodeFX (Lnet/minecraft/world/World;DDDDDD)V +1215 net/minecraft/client/particle/EntityLavaFX (Lnet/minecraft/world/World;DDD)V +1216 net/minecraft/server/management/PreYggdrasilConverter$3 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/management/UserListOps;)V +1217 net/minecraft/client/particle/EntityNoteFX (Lnet/minecraft/world/World;DDDDDDF)V +1218 net/minecraft/server/management/PreYggdrasilConverter$2 (Lnet/minecraft/server/MinecraftServer;Ljava/util/Map;Lnet/minecraft/server/management/UserListBans;)V +1219 net/minecraft/client/particle/EntityFX (Lnet/minecraft/world/World;DDDDDD)V +1220 net/minecraft/client/particle/EffectRenderer (Lnet/minecraft/world/World;Lnet/minecraft/client/renderer/texture/TextureManager;)V +1221 net/minecraft/client/particle/EntityCloudFX (Lnet/minecraft/world/World;DDDDDD)V +1222 net/minecraft/server/gui/MinecraftServerGui$2 (Lnet/minecraft/server/gui/MinecraftServerGui;Ljavax/swing/JTextField;)V +1223 net/minecraft/server/gui/MinecraftServerGui$1 (Lnet/minecraft/server/dedicated/DedicatedServer;)V +1224 net/minecraft/server/dedicated/DedicatedServer$3 (Lnet/minecraft/server/dedicated/DedicatedServer;)V +1225 net/minecraft/server/dedicated/DedicatedServer$1 (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/lang/String;)V +1226 net/minecraft/server/MinecraftServer$2 (Ljava/lang/String;Lnet/minecraft/server/dedicated/DedicatedServer;)V +1227 net/minecraft/client/particle/EntitySnowShovelFX (Lnet/minecraft/world/World;DDDDDD)V +1228 net/minecraft/client/particle/EntitySnowShovelFX (Lnet/minecraft/world/World;DDDDDDF)V +1229 net/minecraft/client/particle/EntitySpellParticleFX (Lnet/minecraft/world/World;DDDDDD)V +1230 net/minecraft/client/particle/EntitySplashFX (Lnet/minecraft/world/World;DDDDDD)V +1231 net/minecraft/client/particle/EntitySuspendFX (Lnet/minecraft/world/World;DDDDDD)V +1232 net/minecraft/client/particle/EntityAuraFX (Lnet/minecraft/world/World;DDDDDD)V +1233 net/minecraft/client/particle/EntityPickupFX (Lnet/minecraft/world/World;Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;F)V +1235 net/minecraft/client/particle/EntityRainFX (Lnet/minecraft/world/World;DDD)V +1237 net/minecraft/util/MovementInputFromOptions (Lnet/minecraft/client/settings/GameSettings;)V +1243 net/minecraft/client/renderer/EntityRenderer$1 (Lnet/minecraft/client/renderer/EntityRenderer;)V +1247 net/minecraft/client/renderer/ItemRenderer (Lnet/minecraft/client/Minecraft;)V +1248 net/minecraft/client/renderer/RenderGlobal$1 (Lnet/minecraft/client/renderer/RenderGlobal;DDD)V +1249 net/minecraft/client/renderer/RenderGlobal (Lnet/minecraft/client/Minecraft;)V +1250 net/minecraft/client/renderer/Tessellator (I)V +1270 net/minecraft/client/renderer/texture/DynamicTexture (Ljava/awt/image/BufferedImage;)V +1271 net/minecraft/client/renderer/texture/DynamicTexture (II)V +1274 net/minecraft/client/renderer/texture/LayeredTexture ([Ljava/lang/String;)V +1275 net/minecraft/client/renderer/texture/SimpleTexture (Lnet/minecraft/util/ResourceLocation;)V +1277 net/minecraft/client/renderer/texture/Stitcher$Slot (IIII)V +1282 net/minecraft/client/renderer/texture/TextureAtlasSprite (Ljava/lang/String;)V +1283 net/minecraft/client/renderer/texture/TextureManager$1 (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/renderer/texture/ITextureObject;)V +1284 net/minecraft/client/renderer/texture/TextureManager (Lnet/minecraft/client/resources/IResourceManager;)V +1285 net/minecraft/client/renderer/texture/TextureClock (Ljava/lang/String;)V +1286 net/minecraft/client/renderer/texture/TextureCompass (Ljava/lang/String;)V +1287 net/minecraft/client/resources/AbstractResourcePack (Ljava/io/File;)V +1289 net/minecraft/client/resources/FallbackResourceManager (Lnet/minecraft/client/resources/data/IMetadataSerializer;)V +1290 net/minecraft/client/resources/FileResourcePack (Ljava/io/File;)V +1291 net/minecraft/client/resources/FolderResourcePack (Ljava/io/File;)V +1292 net/minecraft/util/ResourceLocation (Ljava/lang/String;Ljava/lang/String;)V +1293 net/minecraft/util/ResourceLocation (Ljava/lang/String;)V +1294 net/minecraft/client/resources/ResourcePackFileNotFoundException (Ljava/io/File;Ljava/lang/String;)V +1295 net/minecraft/client/resources/ResourcePackRepository$Entry (Lnet/minecraft/client/resources/ResourcePackRepository;Ljava/io/File;)V +1296 net/minecraft/client/resources/ResourcePackRepository$Entry (Lnet/minecraft/client/resources/ResourcePackRepository;Ljava/io/File;Lnet/minecraft/client/resources/ResourcePackRepository$1;)V +1298 net/minecraft/client/resources/SimpleReloadableResourceManager$1 (Lnet/minecraft/client/resources/SimpleReloadableResourceManager;)V +1299 net/minecraft/client/resources/SimpleReloadableResourceManager (Lnet/minecraft/client/resources/data/IMetadataSerializer;)V +1303 net/minecraft/client/resources/Language (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V +1304 net/minecraft/client/resources/LanguageManager (Lnet/minecraft/client/resources/data/IMetadataSerializer;Ljava/lang/String;)V +1305 net/minecraft/client/resources/data/IMetadataSerializer$Registration (Lnet/minecraft/client/resources/data/IMetadataSerializer;Lnet/minecraft/client/resources/data/IMetadataSectionSerializer;Ljava/lang/Class;)V +1306 net/minecraft/client/resources/data/IMetadataSerializer$Registration (Lnet/minecraft/client/resources/data/IMetadataSerializer;Lnet/minecraft/client/resources/data/IMetadataSectionSerializer;Ljava/lang/Class;Lnet/minecraft/client/resources/data/IMetadataSerializer$1;)V +1307 net/minecraft/client/resources/data/AnimationFrame (I)V +1308 net/minecraft/client/resources/data/AnimationFrame (II)V +1310 net/minecraft/client/resources/data/FontMetadataSection ([F[F[F)V +1311 net/minecraft/client/resources/data/LanguageMetadataSection (Ljava/util/Collection;)V +1314 net/minecraft/server/integrated/IntegratedPlayerList (Lnet/minecraft/server/integrated/IntegratedServer;)V +1315 net/minecraft/server/integrated/IntegratedServer$1 (Lnet/minecraft/server/integrated/IntegratedServer;)V +1316 net/minecraft/server/integrated/IntegratedServer$2 (Lnet/minecraft/server/integrated/IntegratedServer;)V +1317 net/minecraft/server/integrated/IntegratedServer (Lnet/minecraft/client/Minecraft;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/WorldSettings;)V +1319 net/minecraft/client/network/LanServerDetector$LanServer (Ljava/lang/String;Ljava/lang/String;)V +1324 net/minecraft/client/audio/SoundManager$1 (Lnet/minecraft/client/audio/SoundManager;)V +1338 net/minecraft/crash/CrashReport$1 (Lnet/minecraft/crash/CrashReport;)V +1339 net/minecraft/crash/CrashReport$2 (Lnet/minecraft/crash/CrashReport;)V +1340 net/minecraft/crash/CrashReport$3 (Lnet/minecraft/crash/CrashReport;)V +1341 net/minecraft/crash/CrashReport$4 (Lnet/minecraft/crash/CrashReport;)V +1342 net/minecraft/crash/CrashReport$5 (Lnet/minecraft/crash/CrashReport;)V +1343 net/minecraft/crash/CrashReport$6 (Lnet/minecraft/crash/CrashReport;)V +1344 net/minecraft/crash/CrashReport$7 (Lnet/minecraft/crash/CrashReport;)V +1348 net/minecraft/crash/CrashReport (Ljava/lang/String;Ljava/lang/Throwable;)V +1350 net/minecraft/crash/CrashReportCategory$2 (I)V +1352 net/minecraft/crash/CrashReportCategory$Entry (Ljava/lang/String;Ljava/lang/Object;)V +1353 net/minecraft/crash/CrashReportCategory (Lnet/minecraft/crash/CrashReport;Ljava/lang/String;)V +1356 net/minecraft/util/ReportedException (Lnet/minecraft/crash/CrashReport;)V +1357 net/minecraft/util/Util$EnumOS (Ljava/lang/String;I)V +1358 net/minecraft/command/CommandSpreadPlayers$Position (DD)V +1359 net/minecraft/command/CommandException (Ljava/lang/String;[Ljava/lang/Object;)V +1360 net/minecraft/command/NumberInvalidException (Ljava/lang/String;[Ljava/lang/Object;)V +1361 net/minecraft/command/SyntaxErrorException (Ljava/lang/String;[Ljava/lang/Object;)V +1362 net/minecraft/command/PlayerNotFoundException (Ljava/lang/String;[Ljava/lang/Object;)V +1363 net/minecraft/command/CommandNotFoundException (Ljava/lang/String;[Ljava/lang/Object;)V +1364 net/minecraft/command/WrongUsageException (Ljava/lang/String;[Ljava/lang/Object;)V +1366 net/minecraft/util/RegistryDefaulted (Ljava/lang/Object;)V +1368 net/minecraft/dispenser/PositionImpl (DDD)V +1373 net/minecraft/nbt/NBTTagCompound$1 (Lnet/minecraft/nbt/NBTTagCompound;Ljava/lang/String;)V +1374 net/minecraft/nbt/NBTTagCompound$2 (Lnet/minecraft/nbt/NBTTagCompound;I)V +1389 net/minecraft/nbt/NBTTagString (Ljava/lang/String;)V +1490 net/minecraft/server/management/BanList (Ljava/io/File;)V +1491 net/minecraft/command/ServerCommand (Ljava/lang/String;Lnet/minecraft/command/ICommandSender;)V +1493 net/minecraft/server/MinecraftServer$1 (Lnet/minecraft/server/MinecraftServer;)V +1495 net/minecraft/server/MinecraftServer$4 (Lnet/minecraft/server/MinecraftServer;)V +1500 net/minecraft/server/management/ServerConfigurationManager (Lnet/minecraft/server/MinecraftServer;)V +1501 net/minecraft/scoreboard/ServerScoreboard (Lnet/minecraft/server/MinecraftServer;)V +1503 net/minecraft/server/dedicated/DedicatedPlayerList (Lnet/minecraft/server/dedicated/DedicatedServer;)V +1507 net/minecraft/server/dedicated/DedicatedServer$4 (Lnet/minecraft/server/dedicated/DedicatedServer;)V +1508 net/minecraft/server/dedicated/DedicatedServer (Ljava/io/File;)V +1513 net/minecraft/world/demo/DemoWorldManager (Lnet/minecraft/world/World;)V +1515 net/minecraft/entity/EntityTracker$1 (Lnet/minecraft/entity/EntityTracker;I)V +1516 net/minecraft/entity/EntityTracker (Lnet/minecraft/world/WorldServer;)V +1517 net/minecraft/world/WorldManager (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/WorldServer;)V +1518 net/minecraft/server/management/PlayerManager$PlayerInstance (Lnet/minecraft/server/management/PlayerManager;II)V +1520 net/minecraft/world/gen/ChunkProviderServer (Lnet/minecraft/world/WorldServer;Lnet/minecraft/world/chunk/storage/IChunkLoader;Lnet/minecraft/world/chunk/IChunkProvider;)V +1521 net/minecraft/world/WorldServer$ServerBlockEventList (Lnet/minecraft/world/WorldServer$1;)V +1524 net/minecraft/server/management/ItemInWorldManager (Lnet/minecraft/world/World;)V +1525 net/minecraft/entity/EntityTrackerEntry (Lnet/minecraft/entity/Entity;IIZ)V +1530 net/minecraft/network/NetHandlerPlayServer (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/NetworkManager;Lnet/minecraft/entity/player/EntityPlayerMP;)V +1533 net/minecraft/network/rcon/RConOutputStream (I)V +1535 net/minecraft/network/rcon/RConThreadQuery$Auth (Lnet/minecraft/network/rcon/RConThreadQuery;Ljava/net/DatagramPacket;)V +1536 net/minecraft/network/rcon/RConThreadQuery (Lnet/minecraft/network/rcon/IServer;)V +1537 net/minecraft/network/rcon/RConThreadClient (Lnet/minecraft/network/rcon/IServer;Ljava/net/Socket;)V +1538 net/minecraft/network/rcon/RConThreadMain (Lnet/minecraft/network/rcon/IServer;)V +1552 net/minecraft/util/IntHashMap$Entry (IILjava/lang/Object;Lnet/minecraft/util/IntHashMap$Entry;)V +1553 net/minecraft/util/LongHashMap$Entry (IJLjava/lang/Object;Lnet/minecraft/util/LongHashMap$Entry;)V +1554 net/minecraft/profiler/Profiler$Result (Ljava/lang/String;DD)V +1555 net/minecraft/util/Tuple (Ljava/lang/Object;Ljava/lang/Object;)V +1556 net/minecraft/util/WeightedRandom$Item (I)V +1558 net/minecraft/util/WeightedRandomChestContent (Lnet/minecraft/item/ItemStack;III)V +1561 net/minecraft/inventory/InventoryBasic (Ljava/lang/String;ZI)V +1562 net/minecraft/profiler/PlayerUsageSnooper$1 (Lnet/minecraft/profiler/PlayerUsageSnooper;)V +1563 net/minecraft/profiler/PlayerUsageSnooper (Ljava/lang/String;Lnet/minecraft/profiler/IPlayerUsage;J)V +1564 net/minecraft/util/CombatEntry (Lnet/minecraft/util/DamageSource;IFFLjava/lang/String;F)V +1565 net/minecraft/util/CombatTracker (Lnet/minecraft/entity/EntityLivingBase;)V +1566 net/minecraft/util/DamageSource (Ljava/lang/String;)V +1567 net/minecraft/util/EntityDamageSource (Ljava/lang/String;Lnet/minecraft/entity/Entity;)V +1568 net/minecraft/util/EntityDamageSourceIndirect (Ljava/lang/String;Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;)V +1574 net/minecraft/potion/PotionEffect (II)V +1575 net/minecraft/potion/PotionEffect (III)V +1577 net/minecraft/potion/PotionEffect (Lnet/minecraft/potion/PotionEffect;)V +1578 net/minecraft/entity/EntityAgeable (Lnet/minecraft/world/World;)V +1579 net/minecraft/entity/Entity$1 (Lnet/minecraft/entity/Entity;)V +1580 net/minecraft/entity/Entity$2 (Lnet/minecraft/entity/Entity;)V +1582 net/minecraft/entity/Entity (Lnet/minecraft/world/World;)V +1583 net/minecraft/entity/EntityList$EntityEggInfo (III)V +1584 net/minecraft/util/EntitySelectors$ArmoredMob (Lnet/minecraft/item/ItemStack;)V +1585 net/minecraft/entity/item/EntityXPOrb (Lnet/minecraft/world/World;DDDI)V +1586 net/minecraft/entity/item/EntityXPOrb (Lnet/minecraft/world/World;)V +1587 net/minecraft/entity/EntityFlying (Lnet/minecraft/world/World;)V +1588 net/minecraft/entity/EntityHanging (Lnet/minecraft/world/World;)V +1590 net/minecraft/entity/item/EntityItemFrame (Lnet/minecraft/world/World;)V +1592 net/minecraft/entity/EntityLeashKnot (Lnet/minecraft/world/World;)V +1594 net/minecraft/entity/EntityLivingBase (Lnet/minecraft/world/World;)V +1595 net/minecraft/entity/EntityLiving (Lnet/minecraft/world/World;)V +1596 net/minecraft/entity/EnumCreatureType (Ljava/lang/String;ILjava/lang/Class;ILnet/minecraft/block/material/Material;ZZ)V +1597 net/minecraft/entity/EnumCreatureAttribute (Ljava/lang/String;I)V +1598 net/minecraft/entity/item/EntityPainting$EnumArt (Ljava/lang/String;ILjava/lang/String;IIII)V +1599 net/minecraft/entity/item/EntityPainting (Lnet/minecraft/world/World;)V +1602 net/minecraft/entity/EntityCreature (Lnet/minecraft/world/World;)V +1603 net/minecraft/entity/DataWatcher$WatchableObject (IILjava/lang/Object;)V +1604 net/minecraft/entity/passive/EntityTameable (Lnet/minecraft/world/World;)V +1605 net/minecraft/entity/ai/attributes/AttributeModifier (Ljava/lang/String;DI)V +1606 net/minecraft/entity/ai/attributes/AttributeModifier (Ljava/util/UUID;Ljava/lang/String;DI)V +1608 net/minecraft/entity/ai/attributes/ModifiableAttributeInstance (Lnet/minecraft/entity/ai/attributes/BaseAttributeMap;Lnet/minecraft/entity/ai/attributes/IAttribute;)V +1611 net/minecraft/entity/EntityBodyHelper (Lnet/minecraft/entity/EntityLivingBase;)V +1612 net/minecraft/entity/ai/EntityJumpHelper (Lnet/minecraft/entity/EntityLiving;)V +1613 net/minecraft/entity/ai/EntityLookHelper (Lnet/minecraft/entity/EntityLiving;)V +1614 net/minecraft/entity/ai/EntityMoveHelper (Lnet/minecraft/entity/EntityLiving;)V +1615 net/minecraft/entity/ai/EntityAIAvoidEntity$1 (Lnet/minecraft/entity/ai/EntityAIAvoidEntity;)V +1617 net/minecraft/entity/ai/EntityAIBeg (Lnet/minecraft/entity/passive/EntityWolf;F)V +1618 net/minecraft/entity/ai/EntityAIBreakDoor (Lnet/minecraft/entity/EntityLiving;)V +1619 net/minecraft/entity/ai/EntityAIMate (Lnet/minecraft/entity/passive/EntityAnimal;D)V +1620 net/minecraft/entity/ai/EntityAIControlledByPlayer (Lnet/minecraft/entity/EntityLiving;F)V +1621 net/minecraft/entity/ai/EntityAIDoorInteract (Lnet/minecraft/entity/EntityLiving;)V +1623 net/minecraft/entity/ai/EntityAIFleeSun (Lnet/minecraft/entity/EntityCreature;D)V +1624 net/minecraft/entity/ai/EntityAISwimming (Lnet/minecraft/entity/EntityLiving;)V +1625 net/minecraft/entity/ai/EntityAIFollowOwner (Lnet/minecraft/entity/passive/EntityTameable;DFF)V +1626 net/minecraft/entity/ai/EntityAIFollowParent (Lnet/minecraft/entity/passive/EntityAnimal;D)V +1627 net/minecraft/entity/ai/EntityAITasks$EntityAITaskEntry (Lnet/minecraft/entity/ai/EntityAITasks;ILnet/minecraft/entity/ai/EntityAIBase;)V +1628 net/minecraft/entity/ai/EntityAITasks (Lnet/minecraft/profiler/Profiler;)V +1629 net/minecraft/entity/ai/EntityAIWatchClosest2 (Lnet/minecraft/entity/EntityLiving;Ljava/lang/Class;FF)V +1630 net/minecraft/entity/ai/EntityAILeapAtTarget (Lnet/minecraft/entity/EntityLiving;F)V +1631 net/minecraft/entity/ai/EntityAIWatchClosest (Lnet/minecraft/entity/EntityLiving;Ljava/lang/Class;F)V +1632 net/minecraft/entity/ai/EntityAIWatchClosest (Lnet/minecraft/entity/EntityLiving;Ljava/lang/Class;FF)V +1633 net/minecraft/entity/ai/EntityAILookAtTradePlayer (Lnet/minecraft/entity/passive/EntityVillager;)V +1634 net/minecraft/entity/ai/EntityAIVillagerMate (Lnet/minecraft/entity/passive/EntityVillager;)V +1635 net/minecraft/entity/ai/EntityAIAttackOnCollide (Lnet/minecraft/entity/EntityCreature;Ljava/lang/Class;DZ)V +1636 net/minecraft/entity/ai/EntityAIAttackOnCollide (Lnet/minecraft/entity/EntityCreature;DZ)V +1637 net/minecraft/entity/ai/EntityAIMoveIndoors (Lnet/minecraft/entity/EntityCreature;)V +1638 net/minecraft/entity/ai/EntityAIMoveThroughVillage (Lnet/minecraft/entity/EntityCreature;DZ)V +1640 net/minecraft/entity/ai/EntityAIMoveTowardsTarget (Lnet/minecraft/entity/EntityCreature;DF)V +1641 net/minecraft/entity/ai/EntityAIOcelotAttack (Lnet/minecraft/entity/EntityLiving;)V +1643 net/minecraft/entity/ai/EntityAILookAtVillager (Lnet/minecraft/entity/monster/EntityIronGolem;)V +1644 net/minecraft/entity/ai/EntityAIOpenDoor (Lnet/minecraft/entity/EntityLiving;Z)V +1645 net/minecraft/entity/ai/EntityAIPanic (Lnet/minecraft/entity/EntityCreature;D)V +1646 net/minecraft/entity/ai/EntityAIPlay (Lnet/minecraft/entity/passive/EntityVillager;D)V +1647 net/minecraft/entity/ai/EntityAILookIdle (Lnet/minecraft/entity/EntityLiving;)V +1648 net/minecraft/entity/ai/EntityAIWander (Lnet/minecraft/entity/EntityCreature;D)V +1649 net/minecraft/entity/ai/EntityAIArrowAttack (Lnet/minecraft/entity/IRangedAttackMob;DIF)V +1650 net/minecraft/entity/ai/EntityAIArrowAttack (Lnet/minecraft/entity/IRangedAttackMob;DIIF)V +1651 net/minecraft/entity/ai/EntityAIRestrictOpenDoor (Lnet/minecraft/entity/EntityCreature;)V +1652 net/minecraft/entity/ai/EntityAIRestrictSun (Lnet/minecraft/entity/EntityCreature;)V +1653 net/minecraft/entity/ai/EntityAIRunAroundLikeCrazy (Lnet/minecraft/entity/passive/EntityHorse;D)V +1654 net/minecraft/entity/ai/EntityAISit (Lnet/minecraft/entity/passive/EntityTameable;)V +1655 net/minecraft/entity/ai/EntityAICreeperSwell (Lnet/minecraft/entity/monster/EntityCreeper;)V +1656 net/minecraft/entity/ai/EntityAIFollowGolem (Lnet/minecraft/entity/passive/EntityVillager;)V +1658 net/minecraft/entity/ai/EntityAITradePlayer (Lnet/minecraft/entity/passive/EntityVillager;)V +1659 net/minecraft/entity/ai/EntityAIDefendVillage (Lnet/minecraft/entity/monster/EntityIronGolem;)V +1662 net/minecraft/entity/ai/EntityAINearestAttackableTarget$Sorter (Lnet/minecraft/entity/Entity;)V +1667 net/minecraft/entity/ai/EntityAIOwnerHurtByTarget (Lnet/minecraft/entity/passive/EntityTameable;)V +1668 net/minecraft/entity/ai/EntityAIOwnerHurtTarget (Lnet/minecraft/entity/passive/EntityTameable;)V +1669 net/minecraft/entity/ai/EntityAITarget (Lnet/minecraft/entity/EntityCreature;Z)V +1670 net/minecraft/entity/ai/EntityAITarget (Lnet/minecraft/entity/EntityCreature;ZZ)V +1671 net/minecraft/pathfinding/PathNavigate (Lnet/minecraft/entity/EntityLiving;Lnet/minecraft/world/World;)V +1672 net/minecraft/entity/ai/EntitySenses (Lnet/minecraft/entity/EntityLiving;)V +1674 net/minecraft/village/Village$VillageAggressor (Lnet/minecraft/village/Village;Lnet/minecraft/entity/EntityLivingBase;I)V +1675 net/minecraft/village/Village (Lnet/minecraft/world/World;)V +1676 net/minecraft/village/VillageSiege (Lnet/minecraft/world/World;)V +1677 net/minecraft/village/VillageCollection (Ljava/lang/String;)V +1678 net/minecraft/village/VillageCollection (Lnet/minecraft/world/World;)V +1679 net/minecraft/entity/passive/EntityAmbientCreature (Lnet/minecraft/world/World;)V +1680 net/minecraft/entity/passive/EntityBat (Lnet/minecraft/world/World;)V +1681 net/minecraft/entity/passive/EntityAnimal (Lnet/minecraft/world/World;)V +1682 net/minecraft/entity/passive/EntityChicken (Lnet/minecraft/world/World;)V +1683 net/minecraft/entity/passive/EntityCow (Lnet/minecraft/world/World;)V +1684 net/minecraft/entity/passive/EntityHorse$GroupData (II)V +1685 net/minecraft/entity/passive/EntityHorse (Lnet/minecraft/world/World;)V +1686 net/minecraft/entity/monster/EntityGolem (Lnet/minecraft/world/World;)V +1687 net/minecraft/entity/passive/EntityMooshroom (Lnet/minecraft/world/World;)V +1688 net/minecraft/entity/passive/EntityOcelot (Lnet/minecraft/world/World;)V +1689 net/minecraft/entity/passive/EntityPig (Lnet/minecraft/world/World;)V +1690 net/minecraft/entity/passive/EntitySheep$1 (Lnet/minecraft/entity/passive/EntitySheep;)V +1691 net/minecraft/entity/passive/EntitySheep (Lnet/minecraft/world/World;)V +1692 net/minecraft/entity/monster/EntitySnowman (Lnet/minecraft/world/World;)V +1693 net/minecraft/entity/passive/EntitySquid (Lnet/minecraft/world/World;)V +1694 net/minecraft/entity/monster/EntityIronGolem (Lnet/minecraft/world/World;)V +1695 net/minecraft/entity/passive/EntityWaterMob (Lnet/minecraft/world/World;)V +1696 net/minecraft/entity/passive/EntityWolf (Lnet/minecraft/world/World;)V +1697 net/minecraft/entity/boss/EntityDragonPart (Lnet/minecraft/entity/IEntityMultiPart;Ljava/lang/String;FF)V +1698 net/minecraft/entity/item/EntityEnderCrystal (Lnet/minecraft/world/World;)V +1699 net/minecraft/entity/item/EntityEnderCrystal (Lnet/minecraft/world/World;DDD)V +1700 net/minecraft/entity/boss/EntityDragon (Lnet/minecraft/world/World;)V +1701 net/minecraft/entity/boss/EntityWither (Lnet/minecraft/world/World;)V +1702 net/minecraft/entity/effect/EntityWeatherEffect (Lnet/minecraft/world/World;)V +1703 net/minecraft/entity/effect/EntityLightningBolt (Lnet/minecraft/world/World;DDD)V +1704 net/minecraft/entity/item/EntityBoat (Lnet/minecraft/world/World;)V +1705 net/minecraft/entity/item/EntityBoat (Lnet/minecraft/world/World;DDD)V +1706 net/minecraft/entity/item/EntityFallingBlock (Lnet/minecraft/world/World;)V +1709 net/minecraft/entity/item/EntityItem (Lnet/minecraft/world/World;DDD)V +1710 net/minecraft/entity/item/EntityItem (Lnet/minecraft/world/World;DDDLnet/minecraft/item/ItemStack;)V +1711 net/minecraft/entity/item/EntityItem (Lnet/minecraft/world/World;)V +1712 net/minecraft/entity/item/EntityMinecart (Lnet/minecraft/world/World;)V +1713 net/minecraft/entity/item/EntityMinecart (Lnet/minecraft/world/World;DDD)V +1714 net/minecraft/entity/item/EntityMinecartChest (Lnet/minecraft/world/World;)V +1715 net/minecraft/entity/item/EntityMinecartChest (Lnet/minecraft/world/World;DDD)V +1716 net/minecraft/entity/item/EntityMinecartContainer (Lnet/minecraft/world/World;)V +1717 net/minecraft/entity/item/EntityMinecartContainer (Lnet/minecraft/world/World;DDD)V +1718 net/minecraft/entity/item/EntityMinecartFurnace (Lnet/minecraft/world/World;)V +1719 net/minecraft/entity/item/EntityMinecartFurnace (Lnet/minecraft/world/World;DDD)V +1720 net/minecraft/entity/item/EntityMinecartHopper (Lnet/minecraft/world/World;)V +1721 net/minecraft/entity/item/EntityMinecartHopper (Lnet/minecraft/world/World;DDD)V +1722 net/minecraft/entity/item/EntityMinecartEmpty (Lnet/minecraft/world/World;)V +1723 net/minecraft/entity/item/EntityMinecartEmpty (Lnet/minecraft/world/World;DDD)V +1724 net/minecraft/entity/ai/EntityMinecartMobSpawner$1 (Lnet/minecraft/entity/ai/EntityMinecartMobSpawner;)V +1725 net/minecraft/entity/ai/EntityMinecartMobSpawner (Lnet/minecraft/world/World;)V +1726 net/minecraft/entity/ai/EntityMinecartMobSpawner (Lnet/minecraft/world/World;DDD)V +1727 net/minecraft/entity/item/EntityMinecartTNT (Lnet/minecraft/world/World;)V +1728 net/minecraft/entity/item/EntityMinecartTNT (Lnet/minecraft/world/World;DDD)V +1729 net/minecraft/entity/item/EntityTNTPrimed (Lnet/minecraft/world/World;)V +1730 net/minecraft/entity/item/EntityTNTPrimed (Lnet/minecraft/world/World;DDDLnet/minecraft/entity/EntityLivingBase;)V +1731 net/minecraft/entity/monster/EntityBlaze (Lnet/minecraft/world/World;)V +1732 net/minecraft/entity/monster/EntityCaveSpider (Lnet/minecraft/world/World;)V +1733 net/minecraft/entity/monster/EntityCreeper (Lnet/minecraft/world/World;)V +1734 net/minecraft/entity/monster/EntityEnderman (Lnet/minecraft/world/World;)V +1735 net/minecraft/entity/monster/EntityGhast (Lnet/minecraft/world/World;)V +1736 net/minecraft/entity/monster/EntityGiantZombie (Lnet/minecraft/world/World;)V +1737 net/minecraft/entity/monster/EntityMagmaCube (Lnet/minecraft/world/World;)V +1738 net/minecraft/entity/monster/EntityMob (Lnet/minecraft/world/World;)V +1739 net/minecraft/entity/monster/EntityPigZombie (Lnet/minecraft/world/World;)V +1740 net/minecraft/entity/monster/EntitySilverfish (Lnet/minecraft/world/World;)V +1741 net/minecraft/entity/monster/EntitySkeleton (Lnet/minecraft/world/World;)V +1742 net/minecraft/entity/monster/EntitySlime (Lnet/minecraft/world/World;)V +1743 net/minecraft/entity/monster/EntitySpider (Lnet/minecraft/world/World;)V +1744 net/minecraft/entity/monster/EntityWitch (Lnet/minecraft/world/World;)V +1745 net/minecraft/entity/monster/EntityZombie (Lnet/minecraft/world/World;)V +1747 net/minecraft/entity/passive/EntityVillager (Lnet/minecraft/world/World;)V +1748 net/minecraft/entity/passive/EntityVillager (Lnet/minecraft/world/World;I)V +1749 net/minecraft/entity/player/InventoryPlayer$1 (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/item/ItemStack;)V +1750 net/minecraft/entity/player/InventoryPlayer (Lnet/minecraft/entity/player/EntityPlayer;)V +1751 net/minecraft/entity/player/EntityPlayer$EnumStatus (Ljava/lang/String;I)V +1753 net/minecraft/entity/projectile/EntityArrow (Lnet/minecraft/world/World;)V +1754 net/minecraft/entity/projectile/EntityArrow (Lnet/minecraft/world/World;DDD)V +1755 net/minecraft/entity/projectile/EntityArrow (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;Lnet/minecraft/entity/EntityLivingBase;FF)V +1756 net/minecraft/entity/projectile/EntityArrow (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;F)V +1757 net/minecraft/entity/item/EntityEnderEye (Lnet/minecraft/world/World;)V +1758 net/minecraft/entity/item/EntityEnderEye (Lnet/minecraft/world/World;DDD)V +1759 net/minecraft/entity/projectile/EntityFireball (Lnet/minecraft/world/World;)V +1760 net/minecraft/entity/projectile/EntityFireball (Lnet/minecraft/world/World;DDDDDD)V +1761 net/minecraft/entity/projectile/EntityFireball (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;DDD)V +1762 net/minecraft/entity/item/EntityFireworkRocket (Lnet/minecraft/world/World;)V +1763 net/minecraft/entity/item/EntityFireworkRocket (Lnet/minecraft/world/World;DDDLnet/minecraft/item/ItemStack;)V +1764 net/minecraft/entity/projectile/EntityFishHook (Lnet/minecraft/world/World;)V +1765 net/minecraft/entity/projectile/EntityFishHook (Lnet/minecraft/world/World;DDDLnet/minecraft/entity/player/EntityPlayer;)V +1766 net/minecraft/entity/projectile/EntityFishHook (Lnet/minecraft/world/World;Lnet/minecraft/entity/player/EntityPlayer;)V +1767 net/minecraft/entity/projectile/EntityLargeFireball (Lnet/minecraft/world/World;)V +1768 net/minecraft/entity/projectile/EntityLargeFireball (Lnet/minecraft/world/World;DDDDDD)V +1769 net/minecraft/entity/projectile/EntityLargeFireball (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;DDD)V +1770 net/minecraft/entity/projectile/EntitySmallFireball (Lnet/minecraft/world/World;)V +1771 net/minecraft/entity/projectile/EntitySmallFireball (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;DDD)V +1772 net/minecraft/entity/projectile/EntitySmallFireball (Lnet/minecraft/world/World;DDDDDD)V +1773 net/minecraft/entity/projectile/EntitySnowball (Lnet/minecraft/world/World;)V +1774 net/minecraft/entity/projectile/EntitySnowball (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;)V +1775 net/minecraft/entity/projectile/EntitySnowball (Lnet/minecraft/world/World;DDD)V +1776 net/minecraft/entity/projectile/EntityThrowable (Lnet/minecraft/world/World;)V +1777 net/minecraft/entity/projectile/EntityThrowable (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;)V +1778 net/minecraft/entity/projectile/EntityThrowable (Lnet/minecraft/world/World;DDD)V +1779 net/minecraft/entity/projectile/EntityEgg (Lnet/minecraft/world/World;)V +1780 net/minecraft/entity/projectile/EntityEgg (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;)V +1781 net/minecraft/entity/projectile/EntityEgg (Lnet/minecraft/world/World;DDD)V +1783 net/minecraft/entity/item/EntityEnderPearl (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;)V +1784 net/minecraft/entity/item/EntityEnderPearl (Lnet/minecraft/world/World;DDD)V +1785 net/minecraft/entity/item/EntityExpBottle (Lnet/minecraft/world/World;)V +1786 net/minecraft/entity/item/EntityExpBottle (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;)V +1787 net/minecraft/entity/item/EntityExpBottle (Lnet/minecraft/world/World;DDD)V +1788 net/minecraft/entity/projectile/EntityPotion (Lnet/minecraft/world/World;)V +1789 net/minecraft/entity/projectile/EntityPotion (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;I)V +1790 net/minecraft/entity/projectile/EntityPotion (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;Lnet/minecraft/item/ItemStack;)V +1791 net/minecraft/entity/projectile/EntityPotion (Lnet/minecraft/world/World;DDDI)V +1792 net/minecraft/entity/projectile/EntityPotion (Lnet/minecraft/world/World;DDDLnet/minecraft/item/ItemStack;)V +1793 net/minecraft/entity/projectile/EntityWitherSkull (Lnet/minecraft/world/World;)V +1794 net/minecraft/entity/projectile/EntityWitherSkull (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;DDD)V +1795 net/minecraft/entity/projectile/EntityWitherSkull (Lnet/minecraft/world/World;DDDDDD)V +1796 net/minecraft/inventory/AnimalChest (Ljava/lang/String;I)V +1798 net/minecraft/inventory/ContainerRepair$1 (Lnet/minecraft/inventory/ContainerRepair;Ljava/lang/String;ZI)V +1801 net/minecraft/inventory/ContainerBeacon$BeaconSlot (Lnet/minecraft/inventory/ContainerBeacon;Lnet/minecraft/inventory/IInventory;III)V +1803 net/minecraft/inventory/ContainerBrewingStand$Ingredient (Lnet/minecraft/inventory/ContainerBrewingStand;Lnet/minecraft/inventory/IInventory;III)V +1804 net/minecraft/inventory/ContainerBrewingStand$Potion (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/inventory/IInventory;III)V +1807 net/minecraft/inventory/InventoryCrafting (Lnet/minecraft/inventory/Container;II)V +1809 net/minecraft/inventory/ContainerEnchantment$1 (Lnet/minecraft/inventory/ContainerEnchantment;Ljava/lang/String;ZI)V +1810 net/minecraft/inventory/ContainerEnchantment$2 (Lnet/minecraft/inventory/ContainerEnchantment;Lnet/minecraft/inventory/IInventory;III)V +1815 net/minecraft/inventory/ContainerHorseInventory$1 (Lnet/minecraft/inventory/ContainerHorseInventory;Lnet/minecraft/inventory/IInventory;III)V +1816 net/minecraft/inventory/ContainerHorseInventory$2 (Lnet/minecraft/inventory/ContainerHorseInventory;Lnet/minecraft/inventory/IInventory;IIILnet/minecraft/entity/passive/EntityHorse;)V +1818 net/minecraft/inventory/ContainerPlayer$1 (Lnet/minecraft/inventory/ContainerPlayer;Lnet/minecraft/inventory/IInventory;IIII)V +1819 net/minecraft/inventory/ContainerPlayer (Lnet/minecraft/entity/player/InventoryPlayer;ZLnet/minecraft/entity/player/EntityPlayer;)V +1820 net/minecraft/inventory/InventoryMerchant (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/entity/IMerchant;)V +1821 net/minecraft/inventory/ContainerMerchant (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/entity/IMerchant;Lnet/minecraft/world/World;)V +1822 net/minecraft/inventory/SlotMerchantResult (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/entity/IMerchant;Lnet/minecraft/inventory/InventoryMerchant;III)V +1824 net/minecraft/inventory/Slot (Lnet/minecraft/inventory/IInventory;III)V +1826 net/minecraft/item/ItemAnvilBlock (Lnet/minecraft/block/Block;)V +1841 net/minecraft/creativetab/CreativeTabs$2 (ILjava/lang/String;)V +1842 net/minecraft/creativetab/CreativeTabs$11 (ILjava/lang/String;)V +1843 net/minecraft/creativetab/CreativeTabs$12 (ILjava/lang/String;)V +1844 net/minecraft/creativetab/CreativeTabs$1 (ILjava/lang/String;)V +1845 net/minecraft/creativetab/CreativeTabs$3 (ILjava/lang/String;)V +1846 net/minecraft/creativetab/CreativeTabs$4 (ILjava/lang/String;)V +1847 net/minecraft/creativetab/CreativeTabs$5 (ILjava/lang/String;)V +1848 net/minecraft/creativetab/CreativeTabs$6 (ILjava/lang/String;)V +1849 net/minecraft/creativetab/CreativeTabs$7 (ILjava/lang/String;)V +1850 net/minecraft/creativetab/CreativeTabs$8 (ILjava/lang/String;)V +1851 net/minecraft/creativetab/CreativeTabs$9 (ILjava/lang/String;)V +1852 net/minecraft/creativetab/CreativeTabs$10 (ILjava/lang/String;)V +1853 net/minecraft/creativetab/CreativeTabs (ILjava/lang/String;)V +1874 net/minecraft/item/Item$ToolMaterial (Ljava/lang/String;IIIFFI)V +1876 net/minecraft/item/ItemStack (Lnet/minecraft/block/Block;)V +1877 net/minecraft/item/ItemStack (Lnet/minecraft/block/Block;I)V +1878 net/minecraft/item/ItemStack (Lnet/minecraft/block/Block;II)V +1879 net/minecraft/item/ItemStack (Lnet/minecraft/item/Item;)V +1880 net/minecraft/item/ItemStack (Lnet/minecraft/item/Item;I)V +1881 net/minecraft/item/ItemStack (Lnet/minecraft/item/Item;II)V +1910 net/minecraft/item/EnumAction (Ljava/lang/String;I)V +1916 net/minecraft/item/crafting/CraftingManager$1 (Lnet/minecraft/item/crafting/CraftingManager;)V +1917 net/minecraft/item/crafting/ShapedRecipes (II[Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V +1918 net/minecraft/item/crafting/ShapelessRecipes (Lnet/minecraft/item/ItemStack;Ljava/util/List;)V +1927 net/minecraft/enchantment/EnumEnchantmentType (Ljava/lang/String;I)V +1928 net/minecraft/enchantment/EnchantmentHelper$ModifierLiving (Lnet/minecraft/enchantment/EnchantmentHelper$1;)V +1929 net/minecraft/enchantment/EnchantmentHelper$ModifierDamage (Lnet/minecraft/enchantment/EnchantmentHelper$1;)V +1930 net/minecraft/enchantment/EnchantmentData (Lnet/minecraft/enchantment/Enchantment;I)V +1940 net/minecraft/village/MerchantRecipe (Lnet/minecraft/nbt/NBTTagCompound;)V +1941 net/minecraft/village/MerchantRecipe (Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V +1942 net/minecraft/village/MerchantRecipe (Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V +1943 net/minecraft/village/MerchantRecipe (Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/Item;)V +1944 net/minecraft/village/MerchantRecipeList (Lnet/minecraft/nbt/NBTTagCompound;)V +1945 net/minecraft/tileentity/MobSpawnerBaseLogic$WeightedRandomMinecart (Lnet/minecraft/tileentity/MobSpawnerBaseLogic;Lnet/minecraft/nbt/NBTTagCompound;)V +1946 net/minecraft/tileentity/MobSpawnerBaseLogic$WeightedRandomMinecart (Lnet/minecraft/tileentity/MobSpawnerBaseLogic;Lnet/minecraft/nbt/NBTTagCompound;Ljava/lang/String;)V +1947 net/minecraft/world/ChunkCoordIntPair (II)V +1952 net/minecraft/world/World$3 (Lnet/minecraft/world/World;)V +1955 net/minecraft/world/MinecraftException (Ljava/lang/String;)V +1956 net/minecraft/world/WorldSettings$GameType (Ljava/lang/String;IILjava/lang/String;)V +1957 net/minecraft/world/WorldSettings (JLnet/minecraft/world/WorldSettings$GameType;ZZLnet/minecraft/world/WorldType;)V +1958 net/minecraft/world/WorldSettings (Lnet/minecraft/world/storage/WorldInfo;)V +1959 net/minecraft/world/WorldType (ILjava/lang/String;)V +1960 net/minecraft/world/WorldType (ILjava/lang/String;I)V +1961 net/minecraft/world/EnumSkyBlock (Ljava/lang/String;II)V +1963 net/minecraft/world/Teleporter (Lnet/minecraft/world/WorldServer;)V +1969 net/minecraft/world/biome/BiomeGenBeach (I)V +1970 net/minecraft/world/biome/BiomeGenBase$SpawnListEntry (Ljava/lang/Class;III)V +1971 net/minecraft/world/biome/BiomeGenBase (I)V +1972 net/minecraft/world/biome/BiomeCache$Block (Lnet/minecraft/world/biome/BiomeCache;II)V +1973 net/minecraft/world/biome/BiomeCache (Lnet/minecraft/world/biome/WorldChunkManager;)V +1976 net/minecraft/world/biome/WorldChunkManager (Lnet/minecraft/world/World;)V +1977 net/minecraft/world/biome/BiomeGenDesert (I)V +1981 net/minecraft/world/biome/BiomeGenHell (I)V +1984 net/minecraft/world/biome/BiomeGenMushroomIsland (I)V +1985 net/minecraft/world/biome/BiomeGenOcean (I)V +1986 net/minecraft/world/biome/BiomeGenPlains (I)V +1987 net/minecraft/world/biome/BiomeGenRiver (I)V +1988 net/minecraft/world/biome/BiomeGenSwamp (I)V +1990 net/minecraft/world/biome/BiomeGenEnd (I)V +1994 net/minecraft/world/chunk/EmptyChunk (Lnet/minecraft/world/World;II)V +1995 net/minecraft/world/chunk/Chunk (Lnet/minecraft/world/World;II)V +1997 net/minecraft/world/chunk/storage/ExtendedBlockStorage (IZ)V +1998 net/minecraft/world/chunk/storage/NibbleArrayReader ([BI)V +1999 net/minecraft/world/chunk/storage/ChunkLoader$AnvilConverterData (II)V +2000 net/minecraft/world/chunk/storage/RegionFile$ChunkBuffer (Lnet/minecraft/world/chunk/storage/RegionFile;II)V +2001 net/minecraft/world/chunk/storage/RegionFile (Ljava/io/File;)V +2003 net/minecraft/world/chunk/storage/AnvilChunkLoader (Ljava/io/File;)V +2004 net/minecraft/world/gen/ChunkProviderFlat (Lnet/minecraft/world/World;JZLjava/lang/String;)V +2007 net/minecraft/world/gen/ChunkProviderEnd (Lnet/minecraft/world/World;J)V +2008 net/minecraft/world/gen/feature/WorldGenBigTree (Z)V +2011 net/minecraft/world/gen/feature/WorldGenClay (I)V +2013 net/minecraft/world/gen/feature/WorldGenerator (Z)V +2025 net/minecraft/world/gen/feature/WorldGenTaiga2 (Z)V +2027 net/minecraft/world/gen/feature/WorldGenTrees (Z)V +2031 net/minecraft/world/gen/structure/StructureBoundingBox (Lnet/minecraft/world/gen/structure/StructureBoundingBox;)V +2032 net/minecraft/world/gen/structure/StructureBoundingBox (IIIIII)V +2033 net/minecraft/world/gen/structure/StructureBoundingBox (IIII)V +2034 net/minecraft/world/gen/structure/MapGenMineshaft (Ljava/util/Map;)V +2037 net/minecraft/world/gen/structure/StructureMineshaftPieces$Room (ILjava/util/Random;II)V +2039 net/minecraft/world/gen/structure/StructureMineshaftStart (Lnet/minecraft/world/World;Ljava/util/Random;II)V +2040 net/minecraft/world/gen/structure/MapGenNetherBridge$Start (Lnet/minecraft/world/World;Ljava/util/Random;II)V +2042 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing3 (Ljava/util/Random;II)V +2054 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Piece (I)V +2055 net/minecraft/world/gen/structure/StructureNetherBridgePieces$PieceWeight (Ljava/lang/Class;IIZ)V +2056 net/minecraft/world/gen/structure/StructureNetherBridgePieces$PieceWeight (Ljava/lang/Class;II)V +2059 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Start (Ljava/util/Random;II)V +2060 net/minecraft/world/gen/structure/MapGenScatteredFeature$Start (Lnet/minecraft/world/World;Ljava/util/Random;II)V +2061 net/minecraft/world/gen/structure/MapGenScatteredFeature (Ljava/util/Map;)V +2062 net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$DesertPyramid (Ljava/util/Random;II)V +2064 net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$JunglePyramid (Ljava/util/Random;II)V +2065 net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$Feature (Ljava/util/Random;IIIIII)V +2066 net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$SwampHut (Ljava/util/Random;II)V +2067 net/minecraft/world/gen/structure/MapGenStronghold$Start (Lnet/minecraft/world/World;Ljava/util/Random;II)V +2068 net/minecraft/world/gen/structure/MapGenStronghold (Ljava/util/Map;)V +2069 net/minecraft/world/gen/structure/StructureStrongholdPieces$1 (Ljava/lang/Class;II)V +2070 net/minecraft/world/gen/structure/StructureStrongholdPieces$2 (Ljava/lang/Class;II)V +2076 net/minecraft/world/gen/structure/StructureStrongholdPieces$PieceWeight (Ljava/lang/Class;II)V +2080 net/minecraft/world/gen/structure/StructureStrongholdPieces$Stones (Lnet/minecraft/world/gen/structure/StructureStrongholdPieces$1;)V +2081 net/minecraft/world/gen/structure/StructureStrongholdPieces$Stairs (ILjava/util/Random;II)V +2083 net/minecraft/world/gen/structure/StructureStrongholdPieces$Stairs2 (ILjava/util/Random;II)V +2086 net/minecraft/world/gen/structure/StructureStrongholdPieces$Stronghold$Door (Ljava/lang/String;I)V +2087 net/minecraft/world/gen/structure/StructureStrongholdPieces$Stronghold (I)V +2088 net/minecraft/world/gen/structure/MapGenStructure$1 (Lnet/minecraft/world/gen/structure/MapGenStructure;II)V +2089 net/minecraft/world/gen/structure/MapGenStructure$2 (Lnet/minecraft/world/gen/structure/MapGenStructure;II)V +2090 net/minecraft/world/gen/structure/MapGenStructure$3 (Lnet/minecraft/world/gen/structure/MapGenStructure;)V +2091 net/minecraft/world/gen/structure/StructureComponent (I)V +2092 net/minecraft/world/gen/structure/MapGenVillage$Start (Lnet/minecraft/world/World;Ljava/util/Random;III)V +2093 net/minecraft/world/gen/structure/MapGenVillage (Ljava/util/Map;)V +2098 net/minecraft/world/gen/structure/StructureVillagePieces$PieceWeight (Ljava/lang/Class;II)V +2104 net/minecraft/world/gen/structure/StructureVillagePieces$Start (Lnet/minecraft/world/biome/WorldChunkManager;ILjava/util/Random;IILjava/util/List;I)V +2107 net/minecraft/world/gen/structure/StructureVillagePieces$Village (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;I)V +2108 net/minecraft/world/gen/structure/StructureVillagePieces$Road (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;I)V +2109 net/minecraft/world/gen/structure/StructureVillagePieces$Well (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;II)V +2111 net/minecraft/world/gen/NoiseGeneratorOctaves (Ljava/util/Random;I)V +2112 net/minecraft/block/material/MaterialLogic (Lnet/minecraft/block/material/MapColor;)V +2113 net/minecraft/block/material/MaterialTransparent (Lnet/minecraft/block/material/MapColor;)V +2114 net/minecraft/block/material/MaterialLiquid (Lnet/minecraft/block/material/MapColor;)V +2115 net/minecraft/block/material/Material$1 (Lnet/minecraft/block/material/MapColor;)V +2116 net/minecraft/block/material/Material (Lnet/minecraft/block/material/MapColor;)V +2117 net/minecraft/block/material/MapColor (II)V +2118 net/minecraft/block/material/MaterialPortal (Lnet/minecraft/block/material/MapColor;)V +2119 net/minecraft/world/gen/layer/GenLayerAddIsland (JLnet/minecraft/world/gen/layer/GenLayer;)V +2120 net/minecraft/world/gen/layer/GenLayerAddMushroomIsland (JLnet/minecraft/world/gen/layer/GenLayer;)V +2121 net/minecraft/world/gen/layer/GenLayerAddSnow (JLnet/minecraft/world/gen/layer/GenLayer;)V +2123 net/minecraft/world/gen/layer/GenLayerFuzzyZoom (JLnet/minecraft/world/gen/layer/GenLayer;)V +2124 net/minecraft/world/gen/layer/GenLayerIsland (J)V +2125 net/minecraft/world/gen/layer/GenLayer (J)V +2127 net/minecraft/world/gen/layer/GenLayerRiverInit (JLnet/minecraft/world/gen/layer/GenLayer;)V +2128 net/minecraft/world/gen/layer/GenLayerRiver (JLnet/minecraft/world/gen/layer/GenLayer;)V +2129 net/minecraft/world/gen/layer/GenLayerRiverMix (JLnet/minecraft/world/gen/layer/GenLayer;Lnet/minecraft/world/gen/layer/GenLayer;)V +2130 net/minecraft/world/gen/layer/GenLayerShore (JLnet/minecraft/world/gen/layer/GenLayer;)V +2131 net/minecraft/world/gen/layer/GenLayerSmooth (JLnet/minecraft/world/gen/layer/GenLayer;)V +2133 net/minecraft/world/gen/layer/GenLayerVoronoiZoom (JLnet/minecraft/world/gen/layer/GenLayer;)V +2134 net/minecraft/world/gen/layer/GenLayerZoom (JLnet/minecraft/world/gen/layer/GenLayer;)V +2135 net/minecraft/pathfinding/PathPoint (III)V +2136 net/minecraft/pathfinding/PathEntity ([Lnet/minecraft/pathfinding/PathPoint;)V +2138 net/minecraft/world/storage/MapData$MapInfo (Lnet/minecraft/world/storage/MapData;Lnet/minecraft/entity/player/EntityPlayer;)V +2140 net/minecraft/world/storage/MapData (Ljava/lang/String;)V +2141 net/minecraft/world/WorldSavedData (Ljava/lang/String;)V +2142 net/minecraft/world/chunk/storage/AnvilSaveHandler (Ljava/io/File;Ljava/lang/String;Z)V +2143 net/minecraft/world/chunk/storage/AnvilSaveConverter$1 (Lnet/minecraft/world/chunk/storage/AnvilSaveConverter;)V +2144 net/minecraft/world/chunk/storage/AnvilSaveConverter (Ljava/io/File;)V +2145 net/minecraft/world/storage/DerivedWorldInfo (Lnet/minecraft/world/storage/WorldInfo;)V +2146 net/minecraft/world/storage/SaveHandler (Ljava/io/File;Ljava/lang/String;Z)V +2147 net/minecraft/world/storage/SaveFormatOld (Ljava/io/File;)V +2148 net/minecraft/world/storage/WorldInfo$1 (Lnet/minecraft/world/storage/WorldInfo;)V +2149 net/minecraft/world/storage/WorldInfo$2 (Lnet/minecraft/world/storage/WorldInfo;)V +2150 net/minecraft/world/storage/WorldInfo$3 (Lnet/minecraft/world/storage/WorldInfo;)V +2151 net/minecraft/world/storage/WorldInfo$4 (Lnet/minecraft/world/storage/WorldInfo;)V +2152 net/minecraft/world/storage/WorldInfo$5 (Lnet/minecraft/world/storage/WorldInfo;)V +2153 net/minecraft/world/storage/WorldInfo$6 (Lnet/minecraft/world/storage/WorldInfo;)V +2154 net/minecraft/world/storage/WorldInfo$7 (Lnet/minecraft/world/storage/WorldInfo;)V +2155 net/minecraft/world/storage/WorldInfo$8 (Lnet/minecraft/world/storage/WorldInfo;)V +2156 net/minecraft/world/storage/WorldInfo$9 (Lnet/minecraft/world/storage/WorldInfo;)V +2157 net/minecraft/world/storage/WorldInfo (Lnet/minecraft/nbt/NBTTagCompound;)V +2158 net/minecraft/world/storage/WorldInfo (Lnet/minecraft/world/WorldSettings;Ljava/lang/String;)V +2159 net/minecraft/world/storage/WorldInfo (Lnet/minecraft/world/storage/WorldInfo;)V +2160 net/minecraft/client/AnvilConverterException (Ljava/lang/String;)V +2161 net/minecraft/world/storage/SaveFormatComparator (Ljava/lang/String;Ljava/lang/String;JJLnet/minecraft/world/WorldSettings$GameType;ZZZ)V +2162 net/minecraft/world/storage/MapStorage (Lnet/minecraft/world/storage/ISaveHandler;)V +2292 net/minecraft/tileentity/TileEntityMobSpawner$1 (Lnet/minecraft/tileentity/TileEntityMobSpawner;)V +2300 net/minecraft/util/AxisAlignedBB (DDDDDD)V +2302 net/minecraft/util/MovingObjectPosition$MovingObjectType (Ljava/lang/String;I)V +2304 net/minecraft/util/MovingObjectPosition (Lnet/minecraft/entity/Entity;)V +2307 net/minecraft/scoreboard/ScoreObjective (Lnet/minecraft/scoreboard/Scoreboard;Ljava/lang/String;Lnet/minecraft/scoreboard/IScoreObjectiveCriteria;)V +2308 net/minecraft/scoreboard/ScorePlayerTeam (Lnet/minecraft/scoreboard/Scoreboard;Ljava/lang/String;)V +2309 net/minecraft/scoreboard/Score (Lnet/minecraft/scoreboard/Scoreboard;Lnet/minecraft/scoreboard/ScoreObjective;Ljava/lang/String;)V +2310 net/minecraft/scoreboard/ScoreboardSaveData (Ljava/lang/String;)V +2311 net/minecraft/scoreboard/ScoreDummyCriteria (Ljava/lang/String;)V +2312 net/minecraft/scoreboard/ScoreHealthCriteria (Ljava/lang/String;)V +2341 net/minecraft/client/Minecraft$13 (Lnet/minecraft/client/Minecraft;)V +2342 net/minecraft/client/multiplayer/WorldClient$3 (Lnet/minecraft/client/multiplayer/WorldClient;)V +2343 net/minecraft/client/multiplayer/WorldClient$4 (Lnet/minecraft/client/multiplayer/WorldClient;)V +2344 net/minecraft/client/renderer/StitcherException (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;Ljava/lang/String;)V +2347 net/minecraft/entity/ai/EntityAIMoveTowardsRestriction (Lnet/minecraft/entity/EntityCreature;D)V +2348 net/minecraft/entity/monster/EntityZombie$GroupData (Lnet/minecraft/entity/monster/EntityZombie;ZZ)V +2349 net/minecraft/entity/monster/EntityZombie$GroupData (Lnet/minecraft/entity/monster/EntityZombie;ZZLnet/minecraft/entity/monster/EntityZombie$1;)V +2350 net/minecraft/tileentity/TileEntityChest (I)V +2362 net/minecraft/server/gui/MinecraftServerGui (Lnet/minecraft/server/dedicated/DedicatedServer;)V +2366 net/minecraft/server/gui/PlayerListComponent (Lnet/minecraft/server/MinecraftServer;)V +2367 net/minecraft/server/gui/StatsComponent (Lnet/minecraft/server/MinecraftServer;)V +2368 net/minecraft/server/gui/StatsComponent$1 (Lnet/minecraft/server/gui/StatsComponent;)V +43000 net/minecraft/world/gen/structure/StructureBoundingBox ([I)V +43001 net/minecraft/world/gen/structure/MapGenStructureData (Ljava/lang/String;)V +43002 net/minecraft/world/gen/structure/StructureStart (II)V +45000 net/minecraft/client/gui/ChatLine (ILnet/minecraft/util/IChatComponent;I)V +45001 net/minecraft/client/settings/KeyBinding (Ljava/lang/String;ILjava/lang/String;)V +45002 net/minecraft/client/Minecraft$14 (Lnet/minecraft/client/Minecraft;)V +45004 net/minecraft/client/settings/GameSettings$Options (Ljava/lang/String;ILjava/lang/String;ZZFFF)V +45007 net/minecraft/client/gui/MapItemRenderer$Instance (Lnet/minecraft/client/gui/MapItemRenderer;Lnet/minecraft/world/storage/MapData;)V +45008 net/minecraft/client/gui/MapItemRenderer$Instance (Lnet/minecraft/client/gui/MapItemRenderer;Lnet/minecraft/world/storage/MapData;Lnet/minecraft/client/gui/MapItemRenderer$1;)V +45009 net/minecraft/client/gui/MapItemRenderer (Lnet/minecraft/client/renderer/texture/TextureManager;)V +45010 net/minecraft/client/gui/GuiListExtended (Lnet/minecraft/client/Minecraft;IIIII)V +45011 net/minecraft/client/gui/GuiOptionButton (IIILjava/lang/String;)V +45012 net/minecraft/client/gui/GuiOptionButton (IIIIILjava/lang/String;)V +45013 net/minecraft/client/gui/GuiOptionButton (IIILnet/minecraft/client/settings/GameSettings$Options;Ljava/lang/String;)V +45014 net/minecraft/client/gui/GuiOptionsRowList$Row (Lnet/minecraft/client/gui/GuiButton;Lnet/minecraft/client/gui/GuiButton;)V +45015 net/minecraft/client/gui/GuiOptionsRowList (Lnet/minecraft/client/Minecraft;IIIII[Lnet/minecraft/client/settings/GameSettings$Options;)V +45016 net/minecraft/client/gui/GuiOptionSlider (IIILnet/minecraft/client/settings/GameSettings$Options;)V +45017 net/minecraft/client/gui/GuiOptionSlider (IIILnet/minecraft/client/settings/GameSettings$Options;FF)V +45018 net/minecraft/client/multiplayer/GuiConnecting$1 (Lnet/minecraft/client/multiplayer/GuiConnecting;Ljava/lang/String;Ljava/lang/String;I)V +45019 net/minecraft/client/gui/GuiCreateFlatWorld$Details (Lnet/minecraft/client/gui/GuiCreateFlatWorld;)V +45020 net/minecraft/client/gui/GuiDisconnected (Lnet/minecraft/client/gui/GuiScreen;Ljava/lang/String;Lnet/minecraft/util/IChatComponent;)V +45021 net/minecraft/client/gui/GuiOptions$1 (Lnet/minecraft/client/gui/GuiOptions;IIIIILjava/lang/String;)V +45023 net/minecraft/client/gui/GuiDownloadTerrain (Lnet/minecraft/client/network/NetHandlerPlayClient;)V +45024 net/minecraft/client/gui/GuiScreenOptionsSounds$Button (Lnet/minecraft/client/gui/GuiScreenOptionsSounds;IIILnet/minecraft/client/audio/SoundCategory;Z)V +45025 net/minecraft/client/gui/GuiScreenOptionsSounds (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V +45026 net/minecraft/client/gui/achievement/GuiAchievements (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/stats/StatFileWriter;)V +45028 net/minecraft/client/gui/GuiKeyBindingList$CategoryEntry (Lnet/minecraft/client/gui/GuiKeyBindingList;Ljava/lang/String;)V +45029 net/minecraft/client/gui/GuiKeyBindingList$KeyEntry (Lnet/minecraft/client/gui/GuiKeyBindingList;Lnet/minecraft/client/settings/KeyBinding;)V +45030 net/minecraft/client/gui/GuiKeyBindingList$KeyEntry (Lnet/minecraft/client/gui/GuiKeyBindingList;Lnet/minecraft/client/settings/KeyBinding;Lnet/minecraft/client/gui/GuiKeyBindingList$1;)V +45031 net/minecraft/client/gui/GuiKeyBindingList (Lnet/minecraft/client/gui/GuiControls;Lnet/minecraft/client/Minecraft;)V +45032 net/minecraft/client/gui/GuiCommandBlock (Lnet/minecraft/command/server/CommandBlockLogic;)V +45046 net/minecraft/client/gui/ServerListEntryLanDetected (Lnet/minecraft/client/gui/GuiMultiplayer;Lnet/minecraft/client/network/LanServerDetector$LanServer;)V +45047 net/minecraft/client/gui/ServerListEntryNormal$1 (Lnet/minecraft/client/gui/ServerListEntryNormal;)V +45048 net/minecraft/client/gui/ServerListEntryNormal (Lnet/minecraft/client/gui/GuiMultiplayer;Lnet/minecraft/client/multiplayer/ServerData;)V +45049 net/minecraft/client/gui/ServerSelectionList (Lnet/minecraft/client/gui/GuiMultiplayer;Lnet/minecraft/client/Minecraft;IIIII)V +45050 net/minecraft/client/gui/GuiScreenResourcePacks (Lnet/minecraft/client/gui/GuiScreen;)V +45051 net/minecraft/client/resources/ResourcePackListEntry (Lnet/minecraft/client/gui/GuiScreenResourcePacks;)V +45052 net/minecraft/client/resources/ResourcePackListEntryDefault (Lnet/minecraft/client/gui/GuiScreenResourcePacks;)V +45053 net/minecraft/client/resources/ResourcePackListEntryFound (Lnet/minecraft/client/gui/GuiScreenResourcePacks;Lnet/minecraft/client/resources/ResourcePackRepository$Entry;)V +45054 net/minecraft/client/gui/GuiResourcePackAvailable (Lnet/minecraft/client/Minecraft;IILjava/util/List;)V +45055 net/minecraft/client/gui/GuiResourcePackList (Lnet/minecraft/client/Minecraft;IILjava/util/List;)V +45056 net/minecraft/client/gui/GuiResourcePackSelected (Lnet/minecraft/client/Minecraft;IILjava/util/List;)V +45058 net/minecraft/client/network/NetHandlerLoginClient$1 (Lnet/minecraft/client/network/NetHandlerLoginClient;Ljavax/crypto/SecretKey;)V +45059 net/minecraft/client/network/NetHandlerLoginClient (Lnet/minecraft/network/NetworkManager;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/GuiScreen;)V +45060 net/minecraft/client/network/NetHandlerPlayClient$1 (Lnet/minecraft/client/network/NetHandlerPlayClient;Ljava/lang/String;)V +45062 net/minecraft/client/multiplayer/PlayerControllerMP (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/network/NetHandlerPlayClient;)V +45063 net/minecraft/client/multiplayer/WorldClient (Lnet/minecraft/client/network/NetHandlerPlayClient;Lnet/minecraft/world/WorldSettings;ILnet/minecraft/world/EnumDifficulty;Lnet/minecraft/profiler/Profiler;)V +45066 net/minecraft/client/network/OldServerPinger$2$1 (Lnet/minecraft/client/network/OldServerPinger$2;)V +45067 net/minecraft/client/network/OldServerPinger$2 (Lnet/minecraft/client/network/OldServerPinger;Lnet/minecraft/client/multiplayer/ServerAddress;Lnet/minecraft/client/multiplayer/ServerData;)V +45068 net/minecraft/client/particle/EffectRenderer$1 (Lnet/minecraft/client/particle/EffectRenderer;Lnet/minecraft/client/particle/EntityFX;)V +45069 net/minecraft/client/particle/EffectRenderer$2 (Lnet/minecraft/client/particle/EffectRenderer;I)V +45070 net/minecraft/client/particle/EffectRenderer$3 (Lnet/minecraft/client/particle/EffectRenderer;Lnet/minecraft/client/particle/EntityFX;)V +45071 net/minecraft/client/particle/EffectRenderer$4 (Lnet/minecraft/client/particle/EffectRenderer;I)V +45073 net/minecraft/client/particle/EntityFishWakeFX (Lnet/minecraft/world/World;DDDDDD)V +45074 net/minecraft/client/entity/AbstractClientPlayer (Lnet/minecraft/world/World;Lcom/mojang/authlib/GameProfile;)V +45075 net/minecraft/client/entity/EntityOtherPlayerMP (Lnet/minecraft/world/World;Lcom/mojang/authlib/GameProfile;)V +45076 net/minecraft/client/renderer/EntityRenderer (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/resources/IResourceManager;)V +45078 net/minecraft/client/shader/Framebuffer (IIZ)V +45080 net/minecraft/client/renderer/entity/RenderItem$1 (Lnet/minecraft/client/renderer/entity/RenderItem;Lnet/minecraft/item/ItemStack;)V +45081 net/minecraft/client/renderer/entity/RenderItem$2 (Lnet/minecraft/client/renderer/entity/RenderItem;Lnet/minecraft/item/ItemStack;)V +45082 net/minecraft/client/renderer/entity/RenderItem$3 (Lnet/minecraft/client/renderer/entity/RenderItem;Lnet/minecraft/item/ItemStack;)V +45083 net/minecraft/client/renderer/entity/RenderItem$4 (Lnet/minecraft/client/renderer/entity/RenderItem;Lnet/minecraft/item/ItemStack;)V +45084 net/minecraft/client/util/JsonBlendingMode (ZZIIIII)V +45085 net/minecraft/client/util/JsonBlendingMode (III)V +45086 net/minecraft/client/util/JsonBlendingMode (IIIII)V +45090 net/minecraft/client/shader/ShaderLoader$ShaderType (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;I)V +45091 net/minecraft/client/shader/ShaderLoader (Lnet/minecraft/client/shader/ShaderLoader$ShaderType;ILjava/lang/String;)V +45092 net/minecraft/client/shader/ShaderUniform (Ljava/lang/String;IILnet/minecraft/client/shader/ShaderManager;)V +45093 net/minecraft/client/renderer/ThreadDownloadImageData$1 (Lnet/minecraft/client/renderer/ThreadDownloadImageData;Ljava/lang/String;)V +45094 net/minecraft/client/renderer/texture/Stitcher$Holder (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;I)V +45095 net/minecraft/client/renderer/texture/Stitcher (IIZII)V +45096 net/minecraft/client/renderer/texture/TextureMap$1 (Lnet/minecraft/client/renderer/texture/TextureMap;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +45097 net/minecraft/client/renderer/texture/TextureMap$2 (Lnet/minecraft/client/renderer/texture/TextureMap;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +45098 net/minecraft/client/renderer/texture/TextureMap$3 (Lnet/minecraft/client/renderer/texture/TextureMap;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +45099 net/minecraft/client/renderer/texture/TextureAtlasSprite$1 (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;[[I)V +45101 net/minecraft/client/resources/ResourcePackRepository (Ljava/io/File;Ljava/io/File;Lnet/minecraft/client/resources/IResourcePack;Lnet/minecraft/client/resources/data/IMetadataSerializer;Lnet/minecraft/client/settings/GameSettings;)V +45102 net/minecraft/client/resources/data/TextureMetadataSection (ZZLjava/util/List;)V +45103 net/minecraft/client/audio/PositionedSound (Lnet/minecraft/util/ResourceLocation;)V +45104 net/minecraft/client/audio/MovingSound (Lnet/minecraft/util/ResourceLocation;)V +45105 net/minecraft/client/audio/MovingSoundMinecart (Lnet/minecraft/entity/item/EntityMinecart;)V +45106 net/minecraft/client/audio/MovingSoundMinecartRiding (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/entity/item/EntityMinecart;)V +45107 net/minecraft/client/audio/PositionedSoundRecord (Lnet/minecraft/util/ResourceLocation;FFFFF)V +45108 net/minecraft/client/audio/PositionedSoundRecord (Lnet/minecraft/util/ResourceLocation;FFZILnet/minecraft/client/audio/ISound$AttenuationType;FFF)V +45109 net/minecraft/client/audio/SoundList$SoundEntry$Type (Ljava/lang/String;ILjava/lang/String;)V +45110 net/minecraft/client/audio/ISound$AttenuationType (Ljava/lang/String;II)V +45111 net/minecraft/client/audio/MusicTicker$MusicType (Ljava/lang/String;ILnet/minecraft/util/ResourceLocation;II)V +45112 net/minecraft/client/audio/MusicTicker (Lnet/minecraft/client/Minecraft;)V +45113 net/minecraft/client/audio/SoundPoolEntry (Lnet/minecraft/util/ResourceLocation;DDZ)V +45114 net/minecraft/client/audio/SoundPoolEntry (Lnet/minecraft/client/audio/SoundPoolEntry;)V +45115 net/minecraft/client/audio/SoundManager$2$1 (Lnet/minecraft/client/audio/SoundManager$2;Ljava/net/URL;)V +45116 net/minecraft/client/audio/SoundManager$2 (Lnet/minecraft/util/ResourceLocation;)V +45117 net/minecraft/client/audio/SoundManager$SoundSystemStarterThread (Lnet/minecraft/client/audio/SoundManager;)V +45118 net/minecraft/client/audio/SoundManager$SoundSystemStarterThread (Lnet/minecraft/client/audio/SoundManager;Lnet/minecraft/client/audio/SoundManager$1;)V +45119 net/minecraft/client/audio/SoundManager (Lnet/minecraft/client/audio/SoundHandler;Lnet/minecraft/client/settings/GameSettings;)V +45120 net/minecraft/client/audio/SoundEventAccessorComposite (Lnet/minecraft/util/ResourceLocation;DDLnet/minecraft/client/audio/SoundCategory;)V +45121 net/minecraft/client/audio/SoundHandler$2 (Lnet/minecraft/client/audio/SoundHandler;Ljava/lang/String;Lnet/minecraft/client/audio/SoundList$SoundEntry;)V +45122 net/minecraft/client/audio/SoundHandler (Lnet/minecraft/client/resources/IResourceManager;Lnet/minecraft/client/settings/GameSettings;)V +45123 net/minecraft/client/audio/SoundEventAccessor (Lnet/minecraft/client/audio/SoundPoolEntry;I)V +45125 net/minecraft/crash/CrashReportCategory$1 (ILnet/minecraft/block/Block;)V +45126 net/minecraft/client/audio/SoundCategory (Ljava/lang/String;ILjava/lang/String;I)V +45128 net/minecraft/nbt/NBTTagByteArray ([B)V +45129 net/minecraft/nbt/NBTTagByte (B)V +45130 net/minecraft/nbt/NBTTagDouble (D)V +45131 net/minecraft/nbt/NBTTagFloat (F)V +45132 net/minecraft/nbt/NBTTagIntArray ([I)V +45133 net/minecraft/nbt/NBTTagInt (I)V +45134 net/minecraft/nbt/NBTTagLong (J)V +45135 net/minecraft/nbt/NBTTagShort (S)V +45136 net/minecraft/nbt/NBTException (Ljava/lang/String;)V +45137 net/minecraft/nbt/JsonToNBT$Compound (Ljava/lang/String;)V +45138 net/minecraft/nbt/JsonToNBT$List (Ljava/lang/String;)V +45139 net/minecraft/nbt/JsonToNBT$Primitive (Ljava/lang/String;Ljava/lang/String;)V +45140 net/minecraft/network/NettyEncryptionTranslator (Ljavax/crypto/Cipher;)V +45141 net/minecraft/network/NettyEncryptingDecoder (Ljavax/crypto/Cipher;)V +45142 net/minecraft/network/NettyEncryptingEncoder (Ljavax/crypto/Cipher;)V +45146 net/minecraft/network/NetworkManager$InboundHandlerTuplePacketListener (Lnet/minecraft/network/Packet;[Lio/netty/util/concurrent/GenericFutureListener;)V +45152 net/minecraft/network/EnumConnectionState (Ljava/lang/String;II)V +45154 net/minecraft/network/PacketBuffer (Lio/netty/buffer/ByteBuf;)V +45155 net/minecraft/event/ClickEvent$Action (Ljava/lang/String;ILjava/lang/String;Z)V +45156 net/minecraft/event/ClickEvent (Lnet/minecraft/event/ClickEvent$Action;Ljava/lang/String;)V +45157 net/minecraft/event/HoverEvent$Action (Ljava/lang/String;ILjava/lang/String;Z)V +45158 net/minecraft/event/HoverEvent (Lnet/minecraft/event/HoverEvent$Action;Lnet/minecraft/util/IChatComponent;)V +45159 net/minecraft/util/ChatComponentText (Ljava/lang/String;)V +45160 net/minecraft/util/ChatComponentTranslation (Ljava/lang/String;[Ljava/lang/Object;)V +45161 net/minecraft/util/ChatComponentTranslationFormatException (Lnet/minecraft/util/ChatComponentTranslation;Ljava/lang/String;)V +45162 net/minecraft/util/ChatComponentTranslationFormatException (Lnet/minecraft/util/ChatComponentTranslation;I)V +45163 net/minecraft/util/ChatComponentTranslationFormatException (Lnet/minecraft/util/ChatComponentTranslation;Ljava/lang/Throwable;)V +45165 net/minecraft/network/play/server/S0EPacketSpawnObject (Lnet/minecraft/entity/Entity;I)V +45166 net/minecraft/network/play/server/S0EPacketSpawnObject (Lnet/minecraft/entity/Entity;II)V +45167 net/minecraft/network/play/server/S11PacketSpawnExperienceOrb (Lnet/minecraft/entity/item/EntityXPOrb;)V +45170 net/minecraft/network/play/server/S10PacketSpawnPainting (Lnet/minecraft/entity/item/EntityPainting;)V +45171 net/minecraft/network/play/server/S0CPacketSpawnPlayer (Lnet/minecraft/entity/player/EntityPlayer;)V +45172 net/minecraft/network/play/server/S0BPacketAnimation (Lnet/minecraft/entity/Entity;I)V +45173 net/minecraft/network/play/server/S37PacketStatistics (Ljava/util/Map;)V +45178 net/minecraft/network/play/server/S3APacketTabComplete ([Ljava/lang/String;)V +45179 net/minecraft/network/play/server/S02PacketChat (Lnet/minecraft/util/IChatComponent;)V +45181 net/minecraft/network/play/server/S22PacketMultiBlockChange (I[SLnet/minecraft/world/chunk/Chunk;)V +45182 net/minecraft/network/play/server/S32PacketConfirmTransaction (ISZ)V +45183 net/minecraft/network/play/server/S2EPacketCloseWindow (I)V +45186 net/minecraft/network/play/server/S30PacketWindowItems (ILjava/util/List;)V +45187 net/minecraft/network/play/server/S31PacketWindowProperty (III)V +45188 net/minecraft/network/play/server/S2FPacketSetSlot (IILnet/minecraft/item/ItemStack;)V +45191 net/minecraft/network/play/server/S2CPacketSpawnGlobalEntity (Lnet/minecraft/entity/Entity;)V +45192 net/minecraft/network/play/server/S0FPacketSpawnMob (Lnet/minecraft/entity/EntityLivingBase;)V +45193 net/minecraft/network/play/server/S27PacketExplosion (DDDFLjava/util/List;Lnet/minecraft/util/Vec3;)V +45194 net/minecraft/network/play/server/S2BPacketChangeGameState (IF)V +45195 net/minecraft/network/play/server/S00PacketKeepAlive (I)V +45196 net/minecraft/network/play/server/S21PacketChunkData (Lnet/minecraft/world/chunk/Chunk;ZI)V +45197 net/minecraft/network/play/server/S26PacketMapChunkBulk (Ljava/util/List;)V +45200 net/minecraft/network/play/server/S29PacketSoundEffect (Ljava/lang/String;DDDFF)V +45206 net/minecraft/network/play/server/S14PacketEntity (I)V +45208 net/minecraft/network/play/server/S39PacketPlayerAbilities (Lnet/minecraft/entity/player/PlayerCapabilities;)V +45211 net/minecraft/network/play/server/S13PacketDestroyEntities ([I)V +45212 net/minecraft/network/play/server/S1EPacketRemoveEntityEffect (ILnet/minecraft/potion/PotionEffect;)V +45213 net/minecraft/network/play/server/S07PacketRespawn (ILnet/minecraft/world/EnumDifficulty;Lnet/minecraft/world/WorldType;Lnet/minecraft/world/WorldSettings$GameType;)V +45214 net/minecraft/network/play/server/S19PacketEntityHeadLook (Lnet/minecraft/entity/Entity;B)V +45215 net/minecraft/network/play/server/S09PacketHeldItemChange (I)V +45216 net/minecraft/network/play/server/S3DPacketDisplayScoreboard (ILnet/minecraft/scoreboard/ScoreObjective;)V +45217 net/minecraft/network/play/server/S1CPacketEntityMetadata (ILnet/minecraft/entity/DataWatcher;Z)V +45218 net/minecraft/network/play/server/S1BPacketEntityAttach (ILnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;)V +45219 net/minecraft/network/play/server/S12PacketEntityVelocity (Lnet/minecraft/entity/Entity;)V +45220 net/minecraft/network/play/server/S12PacketEntityVelocity (IDDD)V +45221 net/minecraft/network/play/server/S04PacketEntityEquipment (IILnet/minecraft/item/ItemStack;)V +45222 net/minecraft/network/play/server/S1FPacketSetExperience (FII)V +45223 net/minecraft/network/play/server/S06PacketUpdateHealth (FIF)V +45224 net/minecraft/network/play/server/S3BPacketScoreboardObjective (Lnet/minecraft/scoreboard/ScoreObjective;I)V +45225 net/minecraft/network/play/server/S3EPacketTeams (Lnet/minecraft/scoreboard/ScorePlayerTeam;I)V +45226 net/minecraft/network/play/server/S3EPacketTeams (Lnet/minecraft/scoreboard/ScorePlayerTeam;Ljava/util/Collection;I)V +45228 net/minecraft/network/play/server/S3CPacketUpdateScore (Ljava/lang/String;)V +45230 net/minecraft/network/play/server/S03PacketTimeUpdate (JJZ)V +45232 net/minecraft/network/play/server/S0DPacketCollectItem (II)V +45233 net/minecraft/network/play/server/S18PacketEntityTeleport (Lnet/minecraft/entity/Entity;)V +45235 net/minecraft/network/play/server/S20PacketEntityProperties$Snapshot (Lnet/minecraft/network/play/server/S20PacketEntityProperties;Ljava/lang/String;DLjava/util/Collection;)V +45236 net/minecraft/network/play/server/S20PacketEntityProperties (ILjava/util/Collection;)V +45237 net/minecraft/network/play/server/S1DPacketEntityEffect (ILnet/minecraft/potion/PotionEffect;)V +45239 net/minecraft/network/play/client/C14PacketTabComplete (Ljava/lang/String;)V +45240 net/minecraft/network/play/client/C01PacketChatMessage (Ljava/lang/String;)V +45242 net/minecraft/network/play/client/C16PacketClientStatus (Lnet/minecraft/network/play/client/C16PacketClientStatus$EnumState;)V +45244 net/minecraft/network/play/client/C0FPacketConfirmTransaction (ISZ)V +45245 net/minecraft/network/play/client/C11PacketEnchantItem (II)V +45246 net/minecraft/network/play/client/C0EPacketClickWindow (IIIILnet/minecraft/item/ItemStack;S)V +45247 net/minecraft/network/play/client/C0DPacketCloseWindow (I)V +45251 net/minecraft/network/play/client/C02PacketUseEntity (Lnet/minecraft/entity/Entity;Lnet/minecraft/network/play/client/C02PacketUseEntity$Action;)V +45252 net/minecraft/network/play/client/C00PacketKeepAlive (I)V +45255 net/minecraft/network/play/client/C03PacketPlayer$C05PacketPlayerLook (FFZ)V +45256 net/minecraft/network/play/client/C03PacketPlayer (Z)V +45257 net/minecraft/network/play/client/C13PacketPlayerAbilities (Lnet/minecraft/entity/player/PlayerCapabilities;)V +45261 net/minecraft/network/play/client/C0CPacketInput (FFZZ)V +45262 net/minecraft/network/play/client/C09PacketHeldItemChange (I)V +45263 net/minecraft/network/play/client/C10PacketCreativeInventoryAction (ILnet/minecraft/item/ItemStack;)V +45266 net/minecraft/network/handshake/client/C00Handshake (ILjava/lang/String;ILnet/minecraft/network/EnumConnectionState;)V +45267 net/minecraft/network/login/server/S02PacketLoginSuccess (Lcom/mojang/authlib/GameProfile;)V +45268 net/minecraft/network/login/server/S01PacketEncryptionRequest (Ljava/lang/String;Ljava/security/PublicKey;[B)V +45269 net/minecraft/network/login/server/S00PacketDisconnect (Lnet/minecraft/util/IChatComponent;)V +45270 net/minecraft/network/login/client/C00PacketLoginStart (Lcom/mojang/authlib/GameProfile;)V +45271 net/minecraft/network/login/client/C01PacketEncryptionResponse (Ljavax/crypto/SecretKey;Ljava/security/PublicKey;[B)V +45272 net/minecraft/network/status/server/S01PacketPong (J)V +45273 net/minecraft/network/status/server/S00PacketServerInfo (Lnet/minecraft/network/ServerStatusResponse;)V +45274 net/minecraft/network/ServerStatusResponse$PlayerCountData (II)V +45275 net/minecraft/network/ServerStatusResponse$MinecraftProtocolVersionIdentifier (Ljava/lang/String;I)V +45276 net/minecraft/network/status/client/C01PacketPing (J)V +45278 net/minecraft/client/util/JsonException$Entry (Lnet/minecraft/client/util/JsonException$1;)V +45279 net/minecraft/client/util/JsonException (Ljava/lang/String;)V +45280 net/minecraft/client/util/JsonException (Ljava/lang/String;Ljava/lang/Throwable;)V +45281 net/minecraft/server/gui/MinecraftServerGui$4 (Lnet/minecraft/server/gui/MinecraftServerGui;Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;)V +45285 net/minecraft/entity/player/EntityPlayerMP (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/WorldServer;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/server/management/ItemInWorldManager;)V +45286 net/minecraft/network/PingResponseHandler (Lnet/minecraft/network/NetworkSystem;)V +45287 net/minecraft/client/network/NetHandlerHandshakeMemory (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/NetworkManager;)V +45292 net/minecraft/network/NetworkSystem (Lnet/minecraft/server/MinecraftServer;)V +45293 net/minecraft/network/NetHandlerPlayServer$1 (Lnet/minecraft/network/NetHandlerPlayServer;Lnet/minecraft/util/ChatComponentText;)V +45295 net/minecraft/server/network/NetHandlerHandshakeTCP (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/NetworkManager;)V +45297 net/minecraft/server/network/NetHandlerLoginServer$LoginState (Ljava/lang/String;I)V +45298 net/minecraft/server/network/NetHandlerLoginServer (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/NetworkManager;)V +45299 net/minecraft/server/network/NetHandlerStatusServer (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/NetworkManager;)V +45300 net/minecraft/network/rcon/RConThreadBase (Lnet/minecraft/network/rcon/IServer;Ljava/lang/String;)V +45301 net/minecraft/stats/Achievement (Ljava/lang/String;Ljava/lang/String;IILnet/minecraft/block/Block;Lnet/minecraft/stats/Achievement;)V +45302 net/minecraft/stats/Achievement (Ljava/lang/String;Ljava/lang/String;IILnet/minecraft/item/ItemStack;Lnet/minecraft/stats/Achievement;)V +45303 net/minecraft/stats/StatBasic (Ljava/lang/String;Lnet/minecraft/util/IChatComponent;Lnet/minecraft/stats/IStatType;)V +45304 net/minecraft/stats/StatBasic (Ljava/lang/String;Lnet/minecraft/util/IChatComponent;)V +45306 net/minecraft/stats/StatisticsFile (Lnet/minecraft/server/MinecraftServer;Ljava/io/File;)V +45307 net/minecraft/stats/StatBase (Ljava/lang/String;Lnet/minecraft/util/IChatComponent;Lnet/minecraft/stats/IStatType;)V +45308 net/minecraft/stats/StatBase (Ljava/lang/String;Lnet/minecraft/util/IChatComponent;)V +45310 net/minecraft/util/EnumTypeAdapterFactory$1 (Lnet/minecraft/util/EnumTypeAdapterFactory;Ljava/util/Map;)V +45311 net/minecraft/util/WeightedRandomChestContent (Lnet/minecraft/item/Item;IIII)V +45312 net/minecraft/world/EnumDifficulty (Ljava/lang/String;IILjava/lang/String;)V +45313 net/minecraft/entity/DataWatcher (Lnet/minecraft/entity/Entity;)V +45314 net/minecraft/entity/ai/EntityAIEatGrass (Lnet/minecraft/entity/EntityLiving;)V +45315 net/minecraft/entity/ai/EntityAIOcelotSit (Lnet/minecraft/entity/passive/EntityOcelot;D)V +45316 net/minecraft/entity/ai/EntityAITempt (Lnet/minecraft/entity/EntityCreature;DLnet/minecraft/item/Item;Z)V +45317 net/minecraft/util/WeightedRandomFishable (Lnet/minecraft/item/ItemStack;I)V +45320 net/minecraft/entity/EntityMinecartCommandBlock$1 (Lnet/minecraft/entity/EntityMinecartCommandBlock;)V +45321 net/minecraft/entity/EntityMinecartCommandBlock (Lnet/minecraft/world/World;)V +45322 net/minecraft/entity/EntityMinecartCommandBlock (Lnet/minecraft/world/World;DDD)V +45323 net/minecraft/entity/player/EntityPlayer$EnumChatVisibility (Ljava/lang/String;IILjava/lang/String;)V +45324 net/minecraft/entity/player/EntityPlayer (Lnet/minecraft/world/World;Lcom/mojang/authlib/GameProfile;)V +45325 net/minecraft/item/ItemArmor (Lnet/minecraft/item/ItemArmor$ArmorMaterial;II)V +45327 net/minecraft/item/ItemAxe (Lnet/minecraft/item/Item$ToolMaterial;)V +45328 net/minecraft/item/ItemBlock (Lnet/minecraft/block/Block;)V +45329 net/minecraft/item/ItemReed (Lnet/minecraft/block/Block;)V +45330 net/minecraft/item/ItemSoup (I)V +45331 net/minecraft/item/ItemBucket (Lnet/minecraft/block/Block;)V +45332 net/minecraft/item/ItemColored (Lnet/minecraft/block/Block;Z)V +45333 net/minecraft/item/ItemTool (FLnet/minecraft/item/Item$ToolMaterial;Ljava/util/Set;)V +45336 net/minecraft/item/ItemFishFood$FishType (Ljava/lang/String;IILjava/lang/String;IFIF)V +45337 net/minecraft/item/ItemFishFood$FishType (Ljava/lang/String;IILjava/lang/String;IF)V +45338 net/minecraft/item/ItemFishFood (Z)V +45339 net/minecraft/item/ItemFood (IFZ)V +45340 net/minecraft/item/ItemFood (IZ)V +45341 net/minecraft/item/ItemAppleGold (IFZ)V +45342 net/minecraft/item/ItemHangingEntity (Ljava/lang/Class;)V +45343 net/minecraft/item/ItemHoe (Lnet/minecraft/item/Item$ToolMaterial;)V +45344 net/minecraft/item/ItemLeaves (Lnet/minecraft/block/BlockLeaves;)V +45346 net/minecraft/item/ItemMultiTexture (Lnet/minecraft/block/Block;Lnet/minecraft/block/Block;[Ljava/lang/String;)V +45347 net/minecraft/item/ItemPickaxe (Lnet/minecraft/item/Item$ToolMaterial;)V +45348 net/minecraft/item/ItemPiston (Lnet/minecraft/block/Block;)V +45349 net/minecraft/item/EnumRarity (Ljava/lang/String;ILnet/minecraft/util/EnumChatFormatting;Ljava/lang/String;)V +45350 net/minecraft/item/ItemRecord (Ljava/lang/String;)V +45351 net/minecraft/item/ItemSeedFood (IFLnet/minecraft/block/Block;Lnet/minecraft/block/Block;)V +45352 net/minecraft/item/ItemSeeds (Lnet/minecraft/block/Block;Lnet/minecraft/block/Block;)V +45353 net/minecraft/item/ItemSpade (Lnet/minecraft/item/Item$ToolMaterial;)V +45356 net/minecraft/item/ItemSword (Lnet/minecraft/item/Item$ToolMaterial;)V +45357 net/minecraft/item/ItemLilyPad (Lnet/minecraft/block/Block;)V +45358 net/minecraft/item/ItemCloth (Lnet/minecraft/block/Block;)V +45359 net/minecraft/enchantment/EnchantmentHelper$DamageIterator (Lnet/minecraft/enchantment/EnchantmentHelper$1;)V +45360 net/minecraft/enchantment/EnchantmentHelper$HurtIterator (Lnet/minecraft/enchantment/EnchantmentHelper$1;)V +45366 net/minecraft/world/World$2 (Lnet/minecraft/world/World;Lnet/minecraft/block/Block;)V +45367 net/minecraft/world/World$4 (Lnet/minecraft/world/World;)V +45371 net/minecraft/world/biome/BiomeGenBase$Height (FF)V +45372 net/minecraft/world/biome/BiomeGenBase$TempCategory (Ljava/lang/String;I)V +45373 net/minecraft/world/biome/BiomeGenHills (IZ)V +45374 net/minecraft/world/biome/WorldChunkManagerHell (Lnet/minecraft/world/biome/BiomeGenBase;F)V +45376 net/minecraft/world/biome/BiomeGenForest$1 (Lnet/minecraft/world/biome/BiomeGenForest;ILnet/minecraft/world/biome/BiomeGenBase;)V +45377 net/minecraft/world/biome/BiomeGenForest (II)V +45378 net/minecraft/world/biome/BiomeGenSnow (IZ)V +45379 net/minecraft/world/biome/BiomeGenJungle (IZ)V +45380 net/minecraft/world/biome/BiomeGenMesa (IZZ)V +45381 net/minecraft/world/biome/BiomeGenMutated (ILnet/minecraft/world/biome/BiomeGenBase;)V +45382 net/minecraft/world/biome/BiomeGenSavanna$Mutated (ILnet/minecraft/world/biome/BiomeGenBase;)V +45383 net/minecraft/world/biome/BiomeGenSavanna (I)V +45384 net/minecraft/world/biome/BiomeGenStoneBeach (I)V +45385 net/minecraft/world/biome/BiomeGenTaiga (II)V +45386 net/minecraft/block/BlockContainer (Lnet/minecraft/block/material/Material;)V +45389 net/minecraft/block/BlockRailBase (Z)V +45390 net/minecraft/block/Block$1 (Ljava/lang/String;FF)V +45391 net/minecraft/block/Block$2 (Ljava/lang/String;FF)V +45392 net/minecraft/block/Block$3 (Ljava/lang/String;FF)V +45393 net/minecraft/block/Block$SoundType (Ljava/lang/String;FF)V +45394 net/minecraft/block/Block (Lnet/minecraft/block/material/Material;)V +45395 net/minecraft/block/BlockBush (Lnet/minecraft/block/material/Material;)V +45396 net/minecraft/block/BlockButton (Z)V +45397 net/minecraft/block/BlockChest (I)V +45398 net/minecraft/block/BlockColored (Lnet/minecraft/block/material/Material;)V +45399 net/minecraft/block/BlockRedstoneComparator (Z)V +45400 net/minecraft/block/BlockRedstoneDiode (Z)V +45401 net/minecraft/block/BlockDirectional (Lnet/minecraft/block/material/Material;)V +45402 net/minecraft/block/BlockDoor (Lnet/minecraft/block/material/Material;)V +45403 net/minecraft/block/BlockDynamicLiquid (Lnet/minecraft/block/material/Material;)V +45404 net/minecraft/block/BlockEndPortal (Lnet/minecraft/block/material/Material;)V +45405 net/minecraft/block/BlockFalling (Lnet/minecraft/block/material/Material;)V +45407 net/minecraft/block/BlockFurnace (Z)V +45408 net/minecraft/block/BlockGlass (Lnet/minecraft/block/material/Material;Z)V +45409 net/minecraft/block/BlockGlowstone (Lnet/minecraft/block/material/Material;)V +45413 net/minecraft/block/BlockLiquid (Lnet/minecraft/block/material/Material;)V +45417 net/minecraft/block/BlockPressurePlate$Sensitivity (Ljava/lang/String;I)V +45420 net/minecraft/block/BlockRedstoneOre (Z)V +45421 net/minecraft/block/BlockRedstoneLight (Z)V +45423 net/minecraft/block/BlockRedstoneTorch (Z)V +45424 net/minecraft/block/BlockRedstoneRepeater (Z)V +45425 net/minecraft/block/BlockRotatedPillar (Lnet/minecraft/block/material/Material;)V +45427 net/minecraft/block/BlockStainedGlass (Lnet/minecraft/block/material/Material;)V +45429 net/minecraft/block/BlockStaticLiquid (Lnet/minecraft/block/material/Material;)V +45430 net/minecraft/block/BlockStem (Lnet/minecraft/block/Block;)V +45433 net/minecraft/block/BlockLeavesBase (Lnet/minecraft/block/material/Material;Z)V +45434 net/minecraft/block/BlockTrapDoor (Lnet/minecraft/block/material/Material;)V +45435 net/minecraft/block/BlockWall (Lnet/minecraft/block/Block;)V +45438 net/minecraft/tileentity/TileEntity$1 (Lnet/minecraft/tileentity/TileEntity;)V +45439 net/minecraft/tileentity/TileEntity$2 (Lnet/minecraft/tileentity/TileEntity;)V +45440 net/minecraft/tileentity/TileEntity$3 (Lnet/minecraft/tileentity/TileEntity;)V +45441 net/minecraft/tileentity/TileEntityCommandBlock$1 (Lnet/minecraft/tileentity/TileEntityCommandBlock;)V +45442 net/minecraft/tileentity/TileEntityFlowerPot (Lnet/minecraft/item/Item;I)V +45443 net/minecraft/block/BlockPistonBase (Z)V +45445 net/minecraft/world/chunk/Chunk$1 (Lnet/minecraft/world/chunk/Chunk;III)V +45448 net/minecraft/world/gen/feature/WorldGenAbstractTree (Z)V +45449 net/minecraft/world/gen/feature/WorldGenForest (ZZ)V +45450 net/minecraft/world/gen/feature/WorldGenBlockBlob (Lnet/minecraft/block/Block;I)V +45453 net/minecraft/world/gen/feature/WorldGenHellLava (Lnet/minecraft/block/Block;Z)V +45454 net/minecraft/world/gen/feature/WorldGenIcePath (I)V +45455 net/minecraft/world/gen/feature/WorldGenLakes (Lnet/minecraft/block/Block;)V +45457 net/minecraft/world/gen/feature/WorldGenMegaPineTree (ZZ)V +45461 net/minecraft/world/gen/feature/WorldGenCanopyTree (Z)V +45462 net/minecraft/world/gen/feature/WorldGenSand (Lnet/minecraft/block/Block;I)V +45463 net/minecraft/world/gen/feature/WorldGenSavannaTree (Z)V +45464 net/minecraft/world/gen/feature/WorldGenSpikes (Lnet/minecraft/block/Block;)V +45465 net/minecraft/world/gen/feature/WorldGenLiquids (Lnet/minecraft/block/Block;)V +45467 net/minecraft/world/gen/FlatLayerInfo (ILnet/minecraft/block/Block;)V +45469 net/minecraft/world/gen/NoiseGeneratorImproved (Ljava/util/Random;)V +45470 net/minecraft/world/gen/NoiseGeneratorPerlin (Ljava/util/Random;I)V +45471 net/minecraft/world/gen/NoiseGeneratorSimplex (Ljava/util/Random;)V +45472 net/minecraft/world/gen/layer/GenLayerDeepOcean (JLnet/minecraft/world/gen/layer/GenLayer;)V +45473 net/minecraft/world/gen/layer/GenLayerEdge$Mode (Ljava/lang/String;I)V +45474 net/minecraft/world/gen/layer/GenLayerEdge (JLnet/minecraft/world/gen/layer/GenLayer;Lnet/minecraft/world/gen/layer/GenLayerEdge$Mode;)V +45475 net/minecraft/world/gen/layer/GenLayerBiomeEdge (JLnet/minecraft/world/gen/layer/GenLayer;)V +45478 net/minecraft/world/gen/layer/GenLayerRareBiome (JLnet/minecraft/world/gen/layer/GenLayer;)V +45479 net/minecraft/world/gen/layer/GenLayerHills (JLnet/minecraft/world/gen/layer/GenLayer;Lnet/minecraft/world/gen/layer/GenLayer;)V +45480 net/minecraft/world/gen/layer/GenLayerRemoveTooMuchOcean (JLnet/minecraft/world/gen/layer/GenLayer;)V +45482 net/minecraft/util/MovingObjectPosition (Lnet/minecraft/entity/Entity;Lnet/minecraft/util/Vec3;)V +45483 net/minecraft/stats/ObjectiveStat (Lnet/minecraft/stats/StatBase;)V +45484 net/minecraft/client/main/Main$2 (Ljava/lang/String;)V +45485 net/minecraft/client/main/Main$1 (Ljava/lang/String;Ljava/lang/String;)V +45487 net/minecraft/client/main/GameConfiguration$ServerInformation (Ljava/lang/String;I)V +45488 net/minecraft/client/main/GameConfiguration$GameInformation (ZLjava/lang/String;)V +45489 net/minecraft/client/main/GameConfiguration$FolderInformation (Ljava/io/File;Ljava/io/File;Ljava/io/File;Ljava/lang/String;)V +45490 net/minecraft/client/main/GameConfiguration$DisplayInformation (IIZZ)V +45491 net/minecraft/client/main/GameConfiguration (Lnet/minecraft/client/main/GameConfiguration$UserInformation;Lnet/minecraft/client/main/GameConfiguration$DisplayInformation;Lnet/minecraft/client/main/GameConfiguration$FolderInformation;Lnet/minecraft/client/main/GameConfiguration$GameInformation;Lnet/minecraft/client/main/GameConfiguration$ServerInformation;)V +45492 net/minecraft/client/gui/spectator/categories/TeleportToTeam$TeamSelectionObject (Lnet/minecraft/client/gui/spectator/categories/TeleportToTeam;Lnet/minecraft/scoreboard/ScorePlayerTeam;)V +45493 net/minecraft/client/gui/spectator/categories/TeleportToPlayer (Ljava/util/Collection;)V +45494 net/minecraft/client/gui/spectator/categories/SpectatorDetails (Lnet/minecraft/client/gui/spectator/ISpectatorMenuView;Ljava/util/List;I)V +45495 net/minecraft/client/gui/spectator/SpectatorMenu$MoveMenuObject (IZ)V +45496 net/minecraft/client/gui/spectator/SpectatorMenu$EndSpectatorObject (Lnet/minecraft/client/gui/spectator/SpectatorMenu$1;)V +45497 net/minecraft/client/gui/spectator/SpectatorMenu (Lnet/minecraft/client/gui/spectator/ISpectatorMenuRecipient;)V +45498 net/minecraft/client/gui/spectator/PlayerMenuObject (Lcom/mojang/authlib/GameProfile;)V +45499 net/minecraft/client/gui/stream/GuiIngestServers$ServerList (Lnet/minecraft/client/gui/stream/GuiIngestServers;Lnet/minecraft/client/Minecraft;)V +45500 net/minecraft/client/gui/GuiMerchant (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/entity/IMerchant;Lnet/minecraft/world/World;)V +45501 net/minecraft/client/gui/inventory/GuiFurnace (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +45502 net/minecraft/client/gui/GuiEnchantment (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;Lnet/minecraft/world/IWorldNameable;)V +45503 net/minecraft/client/gui/inventory/GuiDispenser (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +45504 net/minecraft/client/gui/inventory/GuiCrafting (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;)V +45505 net/minecraft/client/gui/inventory/GuiCrafting (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;)V +45506 net/minecraft/client/gui/inventory/GuiBrewingStand (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +45507 net/minecraft/client/gui/inventory/GuiBeacon (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +45508 net/minecraft/client/gui/GuiRepair (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;)V +45509 net/minecraft/client/gui/achievement/GuiStats$Stats (Lnet/minecraft/client/gui/achievement/GuiStats;Lnet/minecraft/client/Minecraft;)V +45510 net/minecraft/client/gui/achievement/GuiStats$StatsMobsList (Lnet/minecraft/client/gui/achievement/GuiStats;Lnet/minecraft/client/Minecraft;)V +45511 net/minecraft/client/gui/achievement/GuiStats$StatsItem (Lnet/minecraft/client/gui/achievement/GuiStats;Lnet/minecraft/client/Minecraft;)V +45512 net/minecraft/client/gui/achievement/GuiStats$StatsGeneral (Lnet/minecraft/client/gui/achievement/GuiStats;Lnet/minecraft/client/Minecraft;)V +45513 net/minecraft/client/gui/achievement/GuiStats$StatsBlock (Lnet/minecraft/client/gui/achievement/GuiStats;Lnet/minecraft/client/Minecraft;)V +45514 net/minecraft/client/gui/GuiCustomizeSkin$ButtonPart (Lnet/minecraft/client/gui/GuiCustomizeSkin;IIIIILnet/minecraft/entity/player/EnumPlayerModelParts;)V +45515 net/minecraft/client/gui/GuiCustomizeSkin$ButtonPart (Lnet/minecraft/client/gui/GuiCustomizeSkin;IIIIILnet/minecraft/entity/player/EnumPlayerModelParts;Lnet/minecraft/client/gui/GuiCustomizeSkin$1;)V +45516 net/minecraft/client/gui/GuiCustomizeSkin (Lnet/minecraft/client/gui/GuiScreen;)V +45517 net/minecraft/client/gui/GuiSelectWorld$List (Lnet/minecraft/client/gui/GuiSelectWorld;Lnet/minecraft/client/Minecraft;)V +45518 net/minecraft/client/gui/GuiFlatPresets$LayerItem (Lnet/minecraft/item/Item;ILjava/lang/String;Ljava/lang/String;)V +45519 net/minecraft/client/gui/GuiLanguage$List (Lnet/minecraft/client/gui/GuiLanguage;Lnet/minecraft/client/Minecraft;)V +45520 net/minecraft/client/gui/GuiCustomizeWorldScreen$1 (Lnet/minecraft/client/gui/GuiCustomizeWorldScreen;)V +45521 net/minecraft/client/gui/GuiCustomizeWorldScreen (Lnet/minecraft/client/gui/GuiScreen;Ljava/lang/String;)V +45522 net/minecraft/client/gui/GuiScreenCustomizePresets$ListPreset (Lnet/minecraft/client/gui/GuiScreenCustomizePresets;)V +45523 net/minecraft/client/gui/GuiScreenCustomizePresets$Info (Ljava/lang/String;Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/world/gen/ChunkProviderSettings$Factory;)V +45524 net/minecraft/client/gui/GuiScreenCustomizePresets (Lnet/minecraft/client/gui/GuiCustomizeWorldScreen;)V +45525 net/minecraft/client/gui/GuiSimpleScrolledSelectionListProxy (Lnet/minecraft/realms/RealmsSimpleScrolledSelectionList;IIIII)V +45526 net/minecraft/client/gui/GuiClickableScrolledSelectionListProxy (Lnet/minecraft/realms/RealmsClickableScrolledSelectionList;IIIII)V +45527 net/minecraft/client/gui/GuiSpectator (Lnet/minecraft/client/Minecraft;)V +45528 net/minecraft/client/gui/GuiPlayerTabOverlay$PlayerComparator (Lnet/minecraft/client/gui/GuiPlayerTabOverlay$1;)V +45529 net/minecraft/client/gui/GuiPlayerTabOverlay (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/GuiIngame;)V +45530 net/minecraft/client/gui/GuiPageButtonList$GuiSlideEntry (ILjava/lang/String;ZLnet/minecraft/client/gui/GuiSlider$FormatHelper;FFF)V +45531 net/minecraft/client/gui/GuiPageButtonList$GuiListEntry (ILjava/lang/String;Z)V +45532 net/minecraft/client/gui/GuiPageButtonList$GuiLabelEntry (ILjava/lang/String;Z)V +45533 net/minecraft/client/gui/GuiPageButtonList$GuiEntry (Lnet/minecraft/client/gui/Gui;Lnet/minecraft/client/gui/Gui;)V +45534 net/minecraft/client/gui/GuiPageButtonList$EditBoxEntry (ILjava/lang/String;ZLcom/google/common/base/Predicate;)V +45535 net/minecraft/client/gui/GuiPageButtonList$GuiButtonEntry (ILjava/lang/String;ZZ)V +45536 net/minecraft/client/gui/GuiPageButtonList (Lnet/minecraft/client/Minecraft;IIIIILnet/minecraft/client/gui/GuiPageButtonList$GuiResponder;[[Lnet/minecraft/client/gui/GuiPageButtonList$GuiListEntry;)V +45537 net/minecraft/client/gui/GuiLockIconButton$Icon (Ljava/lang/String;III)V +45538 net/minecraft/client/gui/GuiLockIconButton (III)V +45539 net/minecraft/client/gui/GuiListButton (Lnet/minecraft/client/gui/GuiPageButtonList$GuiResponder;IIILjava/lang/String;Z)V +45540 net/minecraft/client/gui/GuiLabel (Lnet/minecraft/client/gui/FontRenderer;IIIIII)V +45541 net/minecraft/client/gui/GuiSlider (Lnet/minecraft/client/gui/GuiPageButtonList$GuiResponder;IIILjava/lang/String;FFFLnet/minecraft/client/gui/GuiSlider$FormatHelper;)V +45542 net/minecraft/client/gui/GuiTextField (ILnet/minecraft/client/gui/FontRenderer;IIII)V +45543 net/minecraft/client/gui/GuiOverlayDebug (Lnet/minecraft/client/Minecraft;)V +45544 net/minecraft/client/gui/GuiIngame$1 (Lnet/minecraft/client/gui/GuiIngame;)V +45546 net/minecraft/client/Minecraft$1 (Lnet/minecraft/client/Minecraft;)V +45547 net/minecraft/client/Minecraft (Lnet/minecraft/client/main/GameConfiguration;)V +45548 net/minecraft/scoreboard/IScoreObjectiveCriteria$EnumRenderType (Ljava/lang/String;ILjava/lang/String;)V +45549 net/minecraft/scoreboard/GoalColor (Ljava/lang/String;Lnet/minecraft/util/EnumChatFormatting;)V +45550 net/minecraft/scoreboard/Team$EnumVisible (Ljava/lang/String;ILjava/lang/String;I)V +45551 net/minecraft/util/MovingObjectPosition (Lnet/minecraft/util/Vec3;Lnet/minecraft/util/EnumFacing;Lnet/minecraft/util/BlockPos;)V +45552 net/minecraft/util/MovingObjectPosition (Lnet/minecraft/util/Vec3;Lnet/minecraft/util/EnumFacing;)V +45553 net/minecraft/util/MovingObjectPosition (Lnet/minecraft/util/MovingObjectPosition$MovingObjectType;Lnet/minecraft/util/Vec3;Lnet/minecraft/util/EnumFacing;Lnet/minecraft/util/BlockPos;)V +45554 net/minecraft/util/AxisAlignedBB (Lnet/minecraft/util/BlockPos;Lnet/minecraft/util/BlockPos;)V +45555 net/minecraft/util/Vec4b (BBBB)V +45556 net/minecraft/util/Vec4b (Lnet/minecraft/util/Vec4b;)V +45557 net/minecraft/pathfinding/PathFinder (Lnet/minecraft/world/pathfinder/NodeProcessor;)V +45558 net/minecraft/world/gen/layer/GenLayer$2 (Lnet/minecraft/world/biome/BiomeGenBase;)V +45559 net/minecraft/world/gen/layer/GenLayer$1 (Lnet/minecraft/world/biome/BiomeGenBase;)V +45560 net/minecraft/world/gen/layer/GenLayerBiome (JLnet/minecraft/world/gen/layer/GenLayer;Lnet/minecraft/world/WorldType;Ljava/lang/String;)V +45561 net/minecraft/world/gen/structure/StructureVillagePieces$House3 (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45562 net/minecraft/world/gen/structure/StructureVillagePieces$Path (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45563 net/minecraft/world/gen/structure/StructureVillagePieces$House2 (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45564 net/minecraft/world/gen/structure/StructureVillagePieces$Church (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45565 net/minecraft/world/gen/structure/StructureVillagePieces$WoodHut (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45566 net/minecraft/world/gen/structure/StructureVillagePieces$House4Garden (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45567 net/minecraft/world/gen/structure/StructureVillagePieces$Hall (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45568 net/minecraft/world/gen/structure/StructureVillagePieces$Torch (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45569 net/minecraft/world/gen/structure/StructureVillagePieces$Field2 (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45570 net/minecraft/world/gen/structure/StructureVillagePieces$Field1 (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45571 net/minecraft/world/gen/structure/StructureVillagePieces$House1 (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45572 net/minecraft/world/gen/structure/StructureStrongholdPieces$StairsStraight (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45573 net/minecraft/world/gen/structure/StructureStrongholdPieces$Straight (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45574 net/minecraft/world/gen/structure/StructureStrongholdPieces$Stairs (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45575 net/minecraft/world/gen/structure/StructureStrongholdPieces$RoomCrossing (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45576 net/minecraft/world/gen/structure/StructureStrongholdPieces$Prison (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45577 net/minecraft/world/gen/structure/StructureStrongholdPieces$PortalRoom (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45578 net/minecraft/world/gen/structure/StructureStrongholdPieces$Library (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45579 net/minecraft/world/gen/structure/StructureStrongholdPieces$LeftTurn (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45580 net/minecraft/world/gen/structure/StructureStrongholdPieces$Crossing (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45581 net/minecraft/world/gen/structure/StructureStrongholdPieces$Corridor (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45582 net/minecraft/world/gen/structure/StructureStrongholdPieces$ChestCorridor (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45584 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition (I)V +45585 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$WingRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureBoundingBox;I)V +45586 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$SimpleTopRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45587 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$SimpleRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45588 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$Piece (I)V +45589 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$Piece (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureBoundingBox;)V +45590 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$Piece (ILnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;III)V +45591 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$Penthouse (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureBoundingBox;)V +45592 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$EntryRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;)V +45593 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleZRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45594 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleYZRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45595 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleYRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45596 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleXYRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45597 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleXRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45598 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$MonumentCoreRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45599 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$MonumentBuilding (Ljava/util/Random;IILnet/minecraft/util/EnumFacing;)V +45607 net/minecraft/world/gen/structure/StructureOceanMonument$StartMonument (Lnet/minecraft/world/World;Ljava/util/Random;II)V +45608 net/minecraft/world/gen/structure/StructureOceanMonument (Ljava/util/Map;)V +45609 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Stairs (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45610 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45611 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Throne (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45612 net/minecraft/world/gen/structure/StructureNetherBridgePieces$NetherStalkRoom (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45613 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor2 (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45614 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor5 (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45615 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45616 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing2 (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45617 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Entrance (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45618 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor4 (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45619 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor3 (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45620 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Straight (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45621 net/minecraft/world/gen/structure/StructureNetherBridgePieces$End (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45622 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing3 (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45623 net/minecraft/world/gen/structure/StructureMineshaftPieces$Stairs (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45624 net/minecraft/world/gen/structure/StructureMineshaftPieces$Cross (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45625 net/minecraft/world/gen/structure/StructureMineshaftPieces$Corridor (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45626 net/minecraft/world/gen/structure/StructureBoundingBox (Lnet/minecraft/util/Vec3i;Lnet/minecraft/util/Vec3i;)V +45627 net/minecraft/world/gen/FlatLayerInfo (IILnet/minecraft/block/Block;)V +45628 net/minecraft/world/gen/FlatLayerInfo (IILnet/minecraft/block/Block;I)V +45629 net/minecraft/world/gen/feature/WorldGenTallGrass (Lnet/minecraft/block/BlockTallGrass$EnumType;)V +45630 net/minecraft/world/gen/feature/WorldGenMinable (Lnet/minecraft/block/state/IBlockState;I)V +45631 net/minecraft/world/gen/feature/WorldGenMinable (Lnet/minecraft/block/state/IBlockState;ILcom/google/common/base/Predicate;)V +45632 net/minecraft/world/gen/feature/WorldGenFlowers (Lnet/minecraft/block/BlockFlower;Lnet/minecraft/block/BlockFlower$EnumFlowerType;)V +45633 net/minecraft/world/gen/GeneratorBushFeature (Lnet/minecraft/block/BlockBush;)V +45634 net/minecraft/world/gen/feature/WorldGeneratorBonusChest (Ljava/util/List;I)V +45635 net/minecraft/world/gen/feature/WorldGenBigTree$FoliageCoordinates (Lnet/minecraft/util/BlockPos;I)V +45636 net/minecraft/world/gen/ChunkProviderGenerate (Lnet/minecraft/world/World;JZLjava/lang/String;)V +45637 net/minecraft/world/gen/ChunkProviderHell (Lnet/minecraft/world/World;ZJ)V +45638 net/minecraft/world/gen/ChunkProviderDebug (Lnet/minecraft/world/World;)V +45639 net/minecraft/world/gen/ChunkProviderSettings (Lnet/minecraft/world/gen/ChunkProviderSettings$Factory;)V +45640 net/minecraft/world/gen/ChunkProviderSettings (Lnet/minecraft/world/gen/ChunkProviderSettings$Factory;Lnet/minecraft/world/gen/ChunkProviderSettings$1;)V +45641 net/minecraft/world/WorldProviderHell$1 (Lnet/minecraft/world/WorldProviderHell;)V +45642 net/minecraft/world/chunk/Chunk$EnumCreateEntityType (Ljava/lang/String;I)V +45643 net/minecraft/world/chunk/Chunk$3 (Lnet/minecraft/world/chunk/Chunk;Lnet/minecraft/util/BlockPos;)V +45644 net/minecraft/world/chunk/Chunk$2 (Lnet/minecraft/world/chunk/Chunk;Lnet/minecraft/util/BlockPos;)V +45645 net/minecraft/world/chunk/Chunk (Lnet/minecraft/world/World;Lnet/minecraft/world/chunk/ChunkPrimer;II)V +45646 net/minecraft/world/chunk/NibbleArray ([B)V +45647 net/minecraft/world/border/EnumBorderStatus (Ljava/lang/String;II)V +45648 net/minecraft/block/properties/PropertyInteger (Ljava/lang/String;II)V +45649 net/minecraft/block/properties/PropertyEnum (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)V +45650 net/minecraft/block/properties/PropertyDirection (Ljava/lang/String;Ljava/util/Collection;)V +45651 net/minecraft/block/properties/PropertyBool (Ljava/lang/String;)V +45652 net/minecraft/block/properties/PropertyHelper (Ljava/lang/String;Ljava/lang/Class;)V +45653 net/minecraft/block/state/pattern/BlockStateHelper (Lnet/minecraft/block/state/BlockState;)V +45654 net/minecraft/block/state/pattern/BlockHelper (Lnet/minecraft/block/Block;)V +45657 net/minecraft/block/state/pattern/BlockPattern ([[[Lcom/google/common/base/Predicate;)V +45658 net/minecraft/block/state/BlockWorldState$1 (Lcom/google/common/base/Predicate;)V +45660 net/minecraft/block/state/BlockState$StateImplementation (Lnet/minecraft/block/Block;Lcom/google/common/collect/ImmutableMap;)V +45661 net/minecraft/block/state/BlockState$StateImplementation (Lnet/minecraft/block/Block;Lcom/google/common/collect/ImmutableMap;Lnet/minecraft/block/state/BlockState$1;)V +45662 net/minecraft/block/state/BlockState$2 (Lnet/minecraft/block/state/BlockState;)V +45663 net/minecraft/block/state/BlockState (Lnet/minecraft/block/Block;[Lnet/minecraft/block/properties/IProperty;)V +45664 net/minecraft/block/state/BlockPistonStructureHelper (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;Lnet/minecraft/util/EnumFacing;Z)V +45665 net/minecraft/tileentity/TileEntityPiston (Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/util/EnumFacing;ZZ)V +45666 net/minecraft/block/BlockPistonExtension$EnumPistonType (Ljava/lang/String;ILjava/lang/String;)V +45667 net/minecraft/tileentity/TileEntitySign$2 (Lnet/minecraft/tileentity/TileEntitySign;Lnet/minecraft/entity/player/EntityPlayer;)V +45668 net/minecraft/tileentity/TileEntitySign$1 (Lnet/minecraft/tileentity/TileEntitySign;)V +45669 net/minecraft/tileentity/TileEntityBeacon$BeamSegment ([F)V +45670 net/minecraft/tileentity/TileEntityBanner$EnumBannerPattern (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V +45671 net/minecraft/tileentity/TileEntityBanner$EnumBannerPattern (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Lnet/minecraft/item/ItemStack;)V +45672 net/minecraft/tileentity/TileEntityBanner$EnumBannerPattern (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +45673 net/minecraft/block/BlockWall$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45674 net/minecraft/block/BlockTrapDoor$DoorHalf (Ljava/lang/String;ILjava/lang/String;)V +45675 net/minecraft/block/BlockPane (Lnet/minecraft/block/material/Material;Z)V +45676 net/minecraft/block/BlockTallGrass$EnumType (Ljava/lang/String;IILjava/lang/String;)V +45679 net/minecraft/block/BlockStoneBrick$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45682 net/minecraft/block/BlockStairs$EnumShape (Ljava/lang/String;ILjava/lang/String;)V +45683 net/minecraft/block/BlockStairs$EnumHalf (Ljava/lang/String;ILjava/lang/String;)V +45684 net/minecraft/block/BlockStairs (Lnet/minecraft/block/state/IBlockState;)V +45685 net/minecraft/block/BlockSeaLantern (Lnet/minecraft/block/material/Material;)V +45686 net/minecraft/block/BlockSandStone$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45687 net/minecraft/block/BlockSand$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Lnet/minecraft/block/material/MapColor;)V +45688 net/minecraft/block/BlockRedstoneTorch$Toggle (Lnet/minecraft/util/BlockPos;J)V +45689 net/minecraft/block/BlockRedstoneWire$EnumAttachPosition (Ljava/lang/String;ILjava/lang/String;)V +45690 net/minecraft/block/BlockRedSandstone$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45691 net/minecraft/block/BlockQuartz$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45692 net/minecraft/block/BlockPrismarine$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45693 net/minecraft/block/BlockPressurePlate (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/BlockPressurePlate$Sensitivity;)V +45694 net/minecraft/block/BlockPortal$Size (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;Lnet/minecraft/util/EnumFacing$Axis;)V +45698 net/minecraft/block/BlockSilverfish$EnumType$6 (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45699 net/minecraft/block/BlockSilverfish$EnumType$5 (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45700 net/minecraft/block/BlockSilverfish$EnumType$4 (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45701 net/minecraft/block/BlockSilverfish$EnumType$3 (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45702 net/minecraft/block/BlockSilverfish$EnumType$2 (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45703 net/minecraft/block/BlockSilverfish$EnumType$1 (Ljava/lang/String;IILjava/lang/String;)V +45704 net/minecraft/block/BlockSilverfish$EnumType (Ljava/lang/String;IILjava/lang/String;)V +45705 net/minecraft/block/BlockSilverfish$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45708 net/minecraft/block/BlockLog$EnumAxis (Ljava/lang/String;ILjava/lang/String;)V +45709 net/minecraft/block/BlockLever$EnumOrientation (Ljava/lang/String;IILjava/lang/String;Lnet/minecraft/util/EnumFacing;)V +45710 net/minecraft/block/BlockHugeMushroom$EnumType (Ljava/lang/String;IILjava/lang/String;)V +45712 net/minecraft/block/BlockBreakable (Lnet/minecraft/block/material/Material;Z)V +45713 net/minecraft/block/BlockSlab$EnumBlockHalf (Ljava/lang/String;ILjava/lang/String;)V +45714 net/minecraft/block/BlockSlab (Lnet/minecraft/block/material/Material;)V +45715 net/minecraft/block/BlockFlowerPot$EnumFlowerType (Ljava/lang/String;ILjava/lang/String;)V +45716 net/minecraft/block/BlockFlower$EnumFlowerColor (Ljava/lang/String;I)V +45717 net/minecraft/block/BlockFlower$EnumFlowerType$1 (Lnet/minecraft/block/BlockFlower$EnumFlowerColor;)V +45718 net/minecraft/block/BlockFlower$EnumFlowerType (Ljava/lang/String;ILnet/minecraft/block/BlockFlower$EnumFlowerColor;ILjava/lang/String;)V +45719 net/minecraft/block/BlockFlower$EnumFlowerType (Ljava/lang/String;ILnet/minecraft/block/BlockFlower$EnumFlowerColor;ILjava/lang/String;Ljava/lang/String;)V +45720 net/minecraft/block/BlockFlower$1 (Lnet/minecraft/block/BlockFlower;)V +45721 net/minecraft/block/BlockFence (Lnet/minecraft/block/material/Material;)V +45722 net/minecraft/block/BlockDoublePlant$EnumPlantType (Ljava/lang/String;IILjava/lang/String;)V +45723 net/minecraft/block/BlockDoublePlant$EnumPlantType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45724 net/minecraft/block/BlockDoublePlant$EnumBlockHalf (Ljava/lang/String;I)V +45725 net/minecraft/block/BlockDoor$EnumHingePosition (Ljava/lang/String;I)V +45726 net/minecraft/block/BlockDoor$EnumDoorHalf (Ljava/lang/String;I)V +45729 net/minecraft/block/BlockDaylightDetector (Z)V +45730 net/minecraft/block/BlockWorkbench$InterfaceCraftingTable (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;)V +45731 net/minecraft/block/BlockRedstoneComparator$Mode (Ljava/lang/String;ILjava/lang/String;)V +45732 net/minecraft/block/BlockRedstoneComparator$1 (Lnet/minecraft/block/BlockRedstoneComparator;Lnet/minecraft/util/EnumFacing;)V +45733 net/minecraft/block/Block$EnumOffsetType (Ljava/lang/String;I)V +45734 net/minecraft/block/Block$4 (Ljava/lang/String;FF)V +45735 net/minecraft/block/BlockBed$EnumPartType (Ljava/lang/String;ILjava/lang/String;)V +45736 net/minecraft/block/BlockBeacon$1$1 (Lnet/minecraft/block/BlockBeacon$1;Lnet/minecraft/util/BlockPos;)V +45737 net/minecraft/block/BlockBeacon$1 (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;)V +45738 net/minecraft/block/BlockRailBase$EnumRailDirection (Ljava/lang/String;IILjava/lang/String;)V +45739 net/minecraft/block/BlockRailBase$Rail (Lnet/minecraft/block/BlockRailBase;Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;Lnet/minecraft/block/state/IBlockState;)V +45740 net/minecraft/block/BlockBasePressurePlate (Lnet/minecraft/block/material/Material;)V +45741 net/minecraft/block/BlockAnvil$Anvil (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;)V +45742 net/minecraft/realms/DisconnectedRealmsScreen (Lnet/minecraft/realms/RealmsScreen;Ljava/lang/String;Lnet/minecraft/util/IChatComponent;)V +45743 net/minecraft/realms/RealmsEditBox (IIIII)V +45744 net/minecraft/world/biome/WorldChunkManager (JLnet/minecraft/world/WorldType;Ljava/lang/String;)V +45745 net/minecraft/world/NextTickListEntry (Lnet/minecraft/util/BlockPos;Lnet/minecraft/block/Block;)V +45746 net/minecraft/world/ChunkCache (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;Lnet/minecraft/util/BlockPos;I)V +45747 net/minecraft/world/Teleporter$PortalPosition (Lnet/minecraft/world/Teleporter;Lnet/minecraft/util/BlockPos;J)V +45748 net/minecraft/world/World$1 (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;)V +45749 net/minecraft/world/World (Lnet/minecraft/world/storage/ISaveHandler;Lnet/minecraft/world/storage/WorldInfo;Lnet/minecraft/world/WorldProvider;Lnet/minecraft/profiler/Profiler;Z)V +45750 net/minecraft/world/GameRules$ValueType (Ljava/lang/String;I)V +45751 net/minecraft/world/GameRules$Value (Ljava/lang/String;Lnet/minecraft/world/GameRules$ValueType;)V +45752 net/minecraft/world/Explosion (Lnet/minecraft/world/World;Lnet/minecraft/entity/Entity;DDDFLjava/util/List;)V +45753 net/minecraft/world/Explosion (Lnet/minecraft/world/World;Lnet/minecraft/entity/Entity;DDDFZZLjava/util/List;)V +45754 net/minecraft/world/Explosion (Lnet/minecraft/world/World;Lnet/minecraft/entity/Entity;DDDFZZ)V +45755 net/minecraft/util/EnumWorldBlockLayer (Ljava/lang/String;ILjava/lang/String;)V +45756 net/minecraft/block/BlockEventData (Lnet/minecraft/util/BlockPos;Lnet/minecraft/block/Block;II)V +45757 net/minecraft/tileentity/MobSpawnerBaseLogic$WeightedRandomMinecart (Lnet/minecraft/tileentity/MobSpawnerBaseLogic;Lnet/minecraft/nbt/NBTTagCompound;Ljava/lang/String;I)V +45758 net/minecraft/command/server/CommandBlockLogic$2 (Lnet/minecraft/command/server/CommandBlockLogic;)V +45759 net/minecraft/command/server/CommandBlockLogic$1 (Lnet/minecraft/command/server/CommandBlockLogic;)V +45760 net/minecraft/village/MerchantRecipe (Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;II)V +45761 net/minecraft/enchantment/EnchantmentWaterWorker (ILnet/minecraft/util/ResourceLocation;I)V +45762 net/minecraft/enchantment/EnchantmentWaterWalker (ILnet/minecraft/util/ResourceLocation;I)V +45763 net/minecraft/enchantment/EnchantmentUntouching (ILnet/minecraft/util/ResourceLocation;I)V +45764 net/minecraft/enchantment/EnchantmentThorns (ILnet/minecraft/util/ResourceLocation;I)V +45765 net/minecraft/enchantment/EnchantmentProtection (ILnet/minecraft/util/ResourceLocation;II)V +45766 net/minecraft/enchantment/EnchantmentOxygen (ILnet/minecraft/util/ResourceLocation;I)V +45767 net/minecraft/enchantment/EnchantmentLootBonus (ILnet/minecraft/util/ResourceLocation;ILnet/minecraft/enchantment/EnumEnchantmentType;)V +45768 net/minecraft/enchantment/EnchantmentKnockback (ILnet/minecraft/util/ResourceLocation;I)V +45769 net/minecraft/enchantment/EnchantmentFishingSpeed (ILnet/minecraft/util/ResourceLocation;ILnet/minecraft/enchantment/EnumEnchantmentType;)V +45770 net/minecraft/enchantment/EnchantmentFireAspect (ILnet/minecraft/util/ResourceLocation;I)V +45771 net/minecraft/enchantment/Enchantment (ILnet/minecraft/util/ResourceLocation;ILnet/minecraft/enchantment/EnumEnchantmentType;)V +45772 net/minecraft/enchantment/EnchantmentDigging (ILnet/minecraft/util/ResourceLocation;I)V +45773 net/minecraft/enchantment/EnchantmentDurability (ILnet/minecraft/util/ResourceLocation;I)V +45774 net/minecraft/enchantment/EnchantmentDamage (ILnet/minecraft/util/ResourceLocation;II)V +45775 net/minecraft/enchantment/EnchantmentArrowKnockback (ILnet/minecraft/util/ResourceLocation;I)V +45776 net/minecraft/enchantment/EnchantmentArrowInfinite (ILnet/minecraft/util/ResourceLocation;I)V +45777 net/minecraft/enchantment/EnchantmentArrowFire (ILnet/minecraft/util/ResourceLocation;I)V +45778 net/minecraft/enchantment/EnchantmentArrowDamage (ILnet/minecraft/util/ResourceLocation;I)V +45779 net/minecraft/item/crafting/RecipesBanners$RecipeDuplicatePattern (Lnet/minecraft/item/crafting/RecipesBanners$1;)V +45780 net/minecraft/item/crafting/RecipesBanners$RecipeAddPattern (Lnet/minecraft/item/crafting/RecipesBanners$1;)V +45781 net/minecraft/item/ItemSnow (Lnet/minecraft/block/Block;)V +45782 net/minecraft/item/ItemSlab (Lnet/minecraft/block/Block;Lnet/minecraft/block/BlockSlab;Lnet/minecraft/block/BlockSlab;)V +45783 net/minecraft/item/ItemMultiTexture$1 ([Ljava/lang/String;)V +45784 net/minecraft/item/ItemMultiTexture (Lnet/minecraft/block/Block;Lnet/minecraft/block/Block;Lcom/google/common/base/Function;)V +45785 net/minecraft/item/ItemMinecart (Lnet/minecraft/entity/item/EntityMinecart$EnumMinecartType;)V +45786 net/minecraft/item/EnumDyeColor (Ljava/lang/String;IIILjava/lang/String;Ljava/lang/String;Lnet/minecraft/block/material/MapColor;Lnet/minecraft/util/EnumChatFormatting;)V +45787 net/minecraft/item/ItemDoublePlant (Lnet/minecraft/block/Block;Lnet/minecraft/block/Block;Lcom/google/common/base/Function;)V +45788 net/minecraft/item/ItemDoor (Lnet/minecraft/block/Block;)V +45789 net/minecraft/item/ItemArmor$ArmorMaterial (Ljava/lang/String;ILjava/lang/String;I[II)V +45790 net/minecraft/inventory/SlotCrafting (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/inventory/InventoryCrafting;Lnet/minecraft/inventory/IInventory;III)V +45791 net/minecraft/inventory/ContainerHorseInventory (Lnet/minecraft/inventory/IInventory;Lnet/minecraft/inventory/IInventory;Lnet/minecraft/entity/passive/EntityHorse;Lnet/minecraft/entity/player/EntityPlayer;)V +45792 net/minecraft/inventory/ContainerHopper (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;Lnet/minecraft/entity/player/EntityPlayer;)V +45793 net/minecraft/inventory/SlotFurnaceOutput (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/inventory/IInventory;III)V +45794 net/minecraft/inventory/ContainerFurnace (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +45795 net/minecraft/inventory/SlotFurnaceFuel (Lnet/minecraft/inventory/IInventory;III)V +45796 net/minecraft/inventory/ContainerEnchantment$3 (Lnet/minecraft/inventory/ContainerEnchantment;Lnet/minecraft/inventory/IInventory;III)V +45797 net/minecraft/inventory/ContainerEnchantment (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;)V +45798 net/minecraft/inventory/ContainerEnchantment (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;)V +45799 net/minecraft/inventory/ContainerDispenser (Lnet/minecraft/inventory/IInventory;Lnet/minecraft/inventory/IInventory;)V +45800 net/minecraft/inventory/ContainerWorkbench (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;)V +45801 net/minecraft/inventory/ContainerChest (Lnet/minecraft/inventory/IInventory;Lnet/minecraft/inventory/IInventory;Lnet/minecraft/entity/player/EntityPlayer;)V +45802 net/minecraft/inventory/ContainerBrewingStand (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +45803 net/minecraft/realms/RealmsSimpleScrolledSelectionList (IIIII)V +45804 net/minecraft/inventory/ContainerBeacon (Lnet/minecraft/inventory/IInventory;Lnet/minecraft/inventory/IInventory;)V +45805 net/minecraft/inventory/ContainerRepair$2 (Lnet/minecraft/inventory/ContainerRepair;Lnet/minecraft/inventory/IInventory;IIILnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;)V +45806 net/minecraft/inventory/ContainerRepair (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;Lnet/minecraft/entity/player/EntityPlayer;)V +45807 net/minecraft/inventory/ContainerRepair (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;Lnet/minecraft/entity/player/EntityPlayer;)V +45808 net/minecraft/inventory/AnimalChest (Lnet/minecraft/util/IChatComponent;I)V +45809 net/minecraft/entity/player/EnumPlayerModelParts (Ljava/lang/String;IILjava/lang/String;)V +45810 net/minecraft/entity/passive/EntityVillager$PriceInfo (II)V +45811 net/minecraft/entity/passive/EntityVillager$ListItemForEmeralds (Lnet/minecraft/item/Item;Lnet/minecraft/entity/passive/EntityVillager$PriceInfo;)V +45812 net/minecraft/entity/passive/EntityVillager$ListItemForEmeralds (Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/passive/EntityVillager$PriceInfo;)V +45813 net/minecraft/entity/passive/EntityVillager$ItemAndEmeraldToItem (Lnet/minecraft/item/Item;Lnet/minecraft/entity/passive/EntityVillager$PriceInfo;Lnet/minecraft/item/Item;Lnet/minecraft/entity/passive/EntityVillager$PriceInfo;)V +45814 net/minecraft/entity/passive/EntityVillager$ListEnchantedItemForEmeralds (Lnet/minecraft/item/Item;Lnet/minecraft/entity/passive/EntityVillager$PriceInfo;)V +45815 net/minecraft/entity/passive/EntityVillager$EmeraldForItems (Lnet/minecraft/item/Item;Lnet/minecraft/entity/passive/EntityVillager$PriceInfo;)V +45817 net/minecraft/entity/NpcMerchant (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/util/IChatComponent;)V +45818 net/minecraft/entity/monster/EntitySpider$AISpiderTarget (Lnet/minecraft/entity/monster/EntitySpider;Ljava/lang/Class;)V +45819 net/minecraft/entity/monster/EntitySpider$AISpiderAttack (Lnet/minecraft/entity/monster/EntitySpider;Ljava/lang/Class;)V +45820 net/minecraft/entity/monster/EntitySlime$AISlimeFaceRandom (Lnet/minecraft/entity/monster/EntitySlime;)V +45821 net/minecraft/entity/monster/EntitySlime$SlimeMoveHelper (Lnet/minecraft/entity/monster/EntitySlime;)V +45822 net/minecraft/entity/monster/EntitySlime$AISlimeHop (Lnet/minecraft/entity/monster/EntitySlime;)V +45823 net/minecraft/entity/monster/EntitySlime$AISlimeFloat (Lnet/minecraft/entity/monster/EntitySlime;)V +45824 net/minecraft/entity/monster/EntitySlime$AISlimeAttack (Lnet/minecraft/entity/monster/EntitySlime;)V +45826 net/minecraft/entity/monster/EntitySilverfish$AISummonSilverfish (Lnet/minecraft/entity/monster/EntitySilverfish;)V +45827 net/minecraft/entity/monster/EntitySilverfish$AIHideInStone (Lnet/minecraft/entity/monster/EntitySilverfish;)V +45828 net/minecraft/entity/monster/EntityPigZombie$AIHurtByAggressor (Lnet/minecraft/entity/monster/EntityPigZombie;)V +45829 net/minecraft/entity/monster/EntityPigZombie$AITargetAggressor (Lnet/minecraft/entity/monster/EntityPigZombie;)V +45831 net/minecraft/entity/monster/EntityGuardian$GuardianMoveHelper (Lnet/minecraft/entity/monster/EntityGuardian;)V +45832 net/minecraft/entity/monster/EntityGuardian$GuardianTargetSelector (Lnet/minecraft/entity/monster/EntityGuardian;)V +45833 net/minecraft/entity/monster/EntityGuardian$AIGuardianAttack (Lnet/minecraft/entity/monster/EntityGuardian;)V +45834 net/minecraft/entity/monster/EntityGuardian$1 (Lnet/minecraft/entity/monster/EntityGuardian;)V +45835 net/minecraft/entity/monster/EntityGuardian (Lnet/minecraft/world/World;)V +45836 net/minecraft/entity/monster/EntityGhast$AIRandomFly (Lnet/minecraft/entity/monster/EntityGhast;)V +45837 net/minecraft/entity/monster/EntityGhast$AIFireballAttack (Lnet/minecraft/entity/monster/EntityGhast;)V +45838 net/minecraft/entity/monster/EntityGhast$GhastMoveHelper (Lnet/minecraft/entity/monster/EntityGhast;)V +45839 net/minecraft/entity/monster/EntityGhast$AILookAround (Lnet/minecraft/entity/monster/EntityGhast;)V +45840 net/minecraft/entity/monster/EntityEndermite (Lnet/minecraft/world/World;)V +45841 net/minecraft/entity/monster/EntityEnderman$AITakeBlock (Lnet/minecraft/entity/monster/EntityEnderman;)V +45842 net/minecraft/entity/monster/EntityEnderman$AIFindPlayer (Lnet/minecraft/entity/monster/EntityEnderman;)V +45843 net/minecraft/entity/monster/EntityEnderman$AIPlaceBlock (Lnet/minecraft/entity/monster/EntityEnderman;)V +45844 net/minecraft/entity/monster/EntityEnderman$1 (Lnet/minecraft/entity/monster/EntityEnderman;)V +45846 net/minecraft/entity/monster/EntityBlaze$AIFireballAttack (Lnet/minecraft/entity/monster/EntityBlaze;)V +45847 net/minecraft/entity/item/EntityMinecart$EnumMinecartType (Ljava/lang/String;IILjava/lang/String;)V +45848 net/minecraft/entity/item/EntityFallingBlock (Lnet/minecraft/world/World;DDDLnet/minecraft/block/state/IBlockState;)V +45849 net/minecraft/entity/item/EntityPainting (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;Lnet/minecraft/util/EnumFacing;)V +45850 net/minecraft/entity/item/EntityPainting (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;Lnet/minecraft/util/EnumFacing;Ljava/lang/String;)V +45851 net/minecraft/entity/EntityLeashKnot (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;)V +45852 net/minecraft/entity/item/EntityItemFrame (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;Lnet/minecraft/util/EnumFacing;)V +45853 net/minecraft/entity/EntityHanging (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;)V +45854 net/minecraft/entity/item/EntityArmorStand (Lnet/minecraft/world/World;)V +45855 net/minecraft/entity/item/EntityArmorStand (Lnet/minecraft/world/World;DDD)V +45856 net/minecraft/entity/passive/EntityWolf$1 (Lnet/minecraft/entity/passive/EntityWolf;)V +45857 net/minecraft/entity/monster/EntityIronGolem$AINearestAttackableTargetNonCreeper$1 (Lnet/minecraft/entity/monster/EntityIronGolem$AINearestAttackableTargetNonCreeper;Lcom/google/common/base/Predicate;Lnet/minecraft/entity/EntityCreature;)V +45858 net/minecraft/entity/monster/EntityIronGolem$AINearestAttackableTargetNonCreeper (Lnet/minecraft/entity/EntityCreature;Ljava/lang/Class;IZZLcom/google/common/base/Predicate;)V +45859 net/minecraft/entity/passive/EntitySquid$AIMoveRandom (Lnet/minecraft/entity/passive/EntitySquid;)V +45860 net/minecraft/entity/passive/EntityRabbit$AIRaidFarm (Lnet/minecraft/entity/passive/EntityRabbit;)V +45861 net/minecraft/entity/passive/EntityRabbit$AIPanic (Lnet/minecraft/entity/passive/EntityRabbit;D)V +45862 net/minecraft/entity/passive/EntityRabbit$RabbitMoveHelper (Lnet/minecraft/entity/passive/EntityRabbit;)V +45863 net/minecraft/entity/passive/EntityRabbit$RabbitJumpHelper (Lnet/minecraft/entity/passive/EntityRabbit;Lnet/minecraft/entity/passive/EntityRabbit;)V +45864 net/minecraft/entity/passive/EntityRabbit$RabbitTypeData (I)V +45866 net/minecraft/entity/passive/EntityRabbit$EnumMoveType (Ljava/lang/String;IFFII)V +45867 net/minecraft/entity/passive/EntityRabbit$AIEvilAttack (Lnet/minecraft/entity/passive/EntityRabbit;)V +45869 net/minecraft/entity/passive/EntityRabbit (Lnet/minecraft/world/World;)V +45871 net/minecraft/village/VillageDoorInfo (Lnet/minecraft/util/BlockPos;III)V +45872 net/minecraft/village/VillageDoorInfo (Lnet/minecraft/util/BlockPos;Lnet/minecraft/util/EnumFacing;I)V +45873 net/minecraft/pathfinding/PathNavigateSwimmer (Lnet/minecraft/entity/EntityLiving;Lnet/minecraft/world/World;)V +45874 net/minecraft/pathfinding/PathNavigateClimber (Lnet/minecraft/entity/EntityLiving;Lnet/minecraft/world/World;)V +45875 net/minecraft/pathfinding/PathNavigateGround (Lnet/minecraft/entity/EntityLiving;Lnet/minecraft/world/World;)V +45876 net/minecraft/entity/ai/EntityAITargetNonTamed (Lnet/minecraft/entity/passive/EntityTameable;Ljava/lang/Class;ZLcom/google/common/base/Predicate;)V +45877 net/minecraft/entity/ai/EntityAINearestAttackableTarget$1 (Lnet/minecraft/entity/ai/EntityAINearestAttackableTarget;Lcom/google/common/base/Predicate;)V +45878 net/minecraft/entity/ai/EntityAINearestAttackableTarget (Lnet/minecraft/entity/EntityCreature;Ljava/lang/Class;Z)V +45879 net/minecraft/entity/ai/EntityAINearestAttackableTarget (Lnet/minecraft/entity/EntityCreature;Ljava/lang/Class;ZZ)V +45880 net/minecraft/entity/ai/EntityAINearestAttackableTarget (Lnet/minecraft/entity/EntityCreature;Ljava/lang/Class;IZZLcom/google/common/base/Predicate;)V +45881 net/minecraft/entity/ai/EntityAIFindEntityNearestPlayer$1 (Lnet/minecraft/entity/ai/EntityAIFindEntityNearestPlayer;)V +45882 net/minecraft/entity/ai/EntityAIFindEntityNearestPlayer (Lnet/minecraft/entity/EntityLiving;)V +45883 net/minecraft/entity/ai/EntityAIFindEntityNearest$1 (Lnet/minecraft/entity/ai/EntityAIFindEntityNearest;)V +45884 net/minecraft/entity/ai/EntityAIFindEntityNearest (Lnet/minecraft/entity/EntityLiving;Ljava/lang/Class;)V +45885 net/minecraft/entity/ai/EntityAIHurtByTarget (Lnet/minecraft/entity/EntityCreature;Z[Ljava/lang/Class;)V +45886 net/minecraft/entity/ai/EntityAIVillagerInteract (Lnet/minecraft/entity/passive/EntityVillager;)V +45887 net/minecraft/entity/ai/EntityAIWander (Lnet/minecraft/entity/EntityCreature;DI)V +45888 net/minecraft/entity/ai/EntityAIMoveToBlock (Lnet/minecraft/entity/EntityCreature;DI)V +45889 net/minecraft/entity/ai/EntityAIHarvestFarmland (Lnet/minecraft/entity/passive/EntityVillager;D)V +45891 net/minecraft/entity/ai/attributes/RangedAttribute (Lnet/minecraft/entity/ai/attributes/IAttribute;Ljava/lang/String;DDD)V +45892 net/minecraft/entity/ai/attributes/BaseAttribute (Lnet/minecraft/entity/ai/attributes/IAttribute;Ljava/lang/String;D)V +45893 net/minecraft/entity/EntityLiving$SpawnPlacementType (Ljava/lang/String;I)V +45894 net/minecraft/entity/Entity$4 (Lnet/minecraft/entity/Entity;)V +45895 net/minecraft/entity/Entity$3 (Lnet/minecraft/entity/Entity;)V +45896 net/minecraft/potion/PotionEffect (IIIZZ)V +45897 net/minecraft/potion/Potion (ILnet/minecraft/util/ResourceLocation;ZI)V +45898 net/minecraft/potion/PotionHealth (ILnet/minecraft/util/ResourceLocation;ZI)V +45899 net/minecraft/potion/PotionHealthBoost (ILnet/minecraft/util/ResourceLocation;ZI)V +45900 net/minecraft/potion/PotionAttackDamage (ILnet/minecraft/util/ResourceLocation;ZI)V +45901 net/minecraft/potion/PotionAbsorption (ILnet/minecraft/util/ResourceLocation;ZI)V +45902 net/minecraft/inventory/InventoryBasic (Lnet/minecraft/util/IChatComponent;I)V +45903 net/minecraft/world/LockCode (Ljava/lang/String;)V +45904 net/minecraft/world/DifficultyInstance (Lnet/minecraft/world/EnumDifficulty;JJF)V +45905 net/minecraft/inventory/InventoryLargeChest (Ljava/lang/String;Lnet/minecraft/world/ILockableContainer;Lnet/minecraft/world/ILockableContainer;)V +45906 net/minecraft/util/HttpUtil$1 (Lnet/minecraft/util/IProgressUpdate;Ljava/lang/String;Ljava/net/Proxy;Ljava/util/Map;Ljava/io/File;I)V +45908 net/minecraft/util/ClassInheritanceMultiMap$1 (Lnet/minecraft/util/ClassInheritanceMultiMap;Ljava/lang/Class;)V +45909 net/minecraft/util/ClassInheritanceMultiMap (Ljava/lang/Class;)V +45910 net/minecraft/stats/StatCrafting (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/util/IChatComponent;Lnet/minecraft/item/Item;)V +45911 net/minecraft/server/management/ServerConfigurationManager$1 (Lnet/minecraft/server/management/ServerConfigurationManager;)V +45912 net/minecraft/server/network/NetHandlerLoginServer$2 (Lnet/minecraft/server/network/NetHandlerLoginServer;Ljava/lang/String;)V +45913 net/minecraft/server/network/NetHandlerLoginServer$1 (Lnet/minecraft/server/network/NetHandlerLoginServer;)V +45914 net/minecraft/network/NetHandlerPlayServer$3 (Lnet/minecraft/network/NetHandlerPlayServer;Lnet/minecraft/network/Packet;)V +45915 net/minecraft/network/NetHandlerPlayServer$2 (Lnet/minecraft/network/NetHandlerPlayServer;)V +45918 net/minecraft/network/NetworkSystem$4 (Lnet/minecraft/network/NetworkSystem;)V +45920 net/minecraft/world/WorldServer$1 (Lnet/minecraft/world/WorldServer;)V +45921 net/minecraft/world/WorldServer (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/storage/ISaveHandler;Lnet/minecraft/world/storage/WorldInfo;ILnet/minecraft/profiler/Profiler;)V +45922 net/minecraft/world/WorldServerMulti$1 (Lnet/minecraft/world/WorldServerMulti;)V +45923 net/minecraft/world/WorldServerMulti (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/storage/ISaveHandler;ILnet/minecraft/world/WorldServer;Lnet/minecraft/profiler/Profiler;)V +45924 net/minecraft/world/demo/DemoWorldServer (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/storage/ISaveHandler;Lnet/minecraft/world/storage/WorldInfo;ILnet/minecraft/profiler/Profiler;)V +45925 net/minecraft/client/renderer/DestroyBlockProgress (ILnet/minecraft/util/BlockPos;)V +45926 net/minecraft/server/MinecraftServer$3 (Lnet/minecraft/server/MinecraftServer;)V +45927 net/minecraft/util/LoggingPrintStream (Ljava/lang/String;Ljava/io/OutputStream;)V +45928 net/minecraft/util/ResourceLocation (I[Ljava/lang/String;)V +45929 net/minecraft/network/login/server/S03PacketEnableCompression (I)V +45930 net/minecraft/network/play/client/C08PacketPlayerBlockPlacement (Lnet/minecraft/item/ItemStack;)V +45931 net/minecraft/network/play/client/C08PacketPlayerBlockPlacement (Lnet/minecraft/util/BlockPos;ILnet/minecraft/item/ItemStack;FFF)V +45932 net/minecraft/network/play/client/C18PacketSpectate (Ljava/util/UUID;)V +45933 net/minecraft/network/play/client/C12PacketUpdateSign (Lnet/minecraft/util/BlockPos;[Lnet/minecraft/util/IChatComponent;)V +45934 net/minecraft/network/play/client/C19PacketResourcePackStatus$Action (Ljava/lang/String;I)V +45935 net/minecraft/network/play/client/C19PacketResourcePackStatus (Ljava/lang/String;Lnet/minecraft/network/play/client/C19PacketResourcePackStatus$Action;)V +45936 net/minecraft/network/play/client/C0BPacketEntityAction$Action (Ljava/lang/String;I)V +45937 net/minecraft/network/play/client/C0BPacketEntityAction (Lnet/minecraft/entity/Entity;Lnet/minecraft/network/play/client/C0BPacketEntityAction$Action;)V +45938 net/minecraft/network/play/client/C0BPacketEntityAction (Lnet/minecraft/entity/Entity;Lnet/minecraft/network/play/client/C0BPacketEntityAction$Action;I)V +45939 net/minecraft/network/play/client/C07PacketPlayerDigging$Action (Ljava/lang/String;I)V +45940 net/minecraft/network/play/client/C07PacketPlayerDigging (Lnet/minecraft/network/play/client/C07PacketPlayerDigging$Action;Lnet/minecraft/util/BlockPos;Lnet/minecraft/util/EnumFacing;)V +45941 net/minecraft/network/play/client/C03PacketPlayer$C06PacketPlayerPosLook (DDDFFZ)V +45942 net/minecraft/network/play/client/C03PacketPlayer$C04PacketPlayerPosition (DDDZ)V +45943 net/minecraft/network/play/client/C02PacketUseEntity$Action (Ljava/lang/String;I)V +45944 net/minecraft/network/play/client/C02PacketUseEntity (Lnet/minecraft/entity/Entity;Lnet/minecraft/util/Vec3;)V +45945 net/minecraft/network/play/client/C17PacketCustomPayload (Ljava/lang/String;Lnet/minecraft/network/PacketBuffer;)V +45946 net/minecraft/network/play/client/C15PacketClientSettings (Ljava/lang/String;ILnet/minecraft/entity/player/EntityPlayer$EnumChatVisibility;ZI)V +45947 net/minecraft/network/play/client/C16PacketClientStatus$EnumState (Ljava/lang/String;I)V +45948 net/minecraft/network/play/client/C14PacketTabComplete (Ljava/lang/String;Lnet/minecraft/util/BlockPos;)V +45949 net/minecraft/network/play/server/S18PacketEntityTeleport (IIIIBBZ)V +45950 net/minecraft/network/play/server/S47PacketPlayerListHeaderFooter (Lnet/minecraft/util/IChatComponent;)V +45951 net/minecraft/network/play/server/S33PacketUpdateSign (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;[Lnet/minecraft/util/IChatComponent;)V +45952 net/minecraft/network/play/server/S45PacketTitle$Type (Ljava/lang/String;I)V +45953 net/minecraft/network/play/server/S45PacketTitle (Lnet/minecraft/network/play/server/S45PacketTitle$Type;Lnet/minecraft/util/IChatComponent;)V +45954 net/minecraft/network/play/server/S45PacketTitle (III)V +45955 net/minecraft/network/play/server/S45PacketTitle (Lnet/minecraft/network/play/server/S45PacketTitle$Type;Lnet/minecraft/util/IChatComponent;III)V +45956 net/minecraft/network/play/server/S05PacketSpawnPosition (Lnet/minecraft/util/BlockPos;)V +45957 net/minecraft/network/play/server/S3CPacketUpdateScore$Action (Ljava/lang/String;I)V +45958 net/minecraft/network/play/server/S3CPacketUpdateScore (Lnet/minecraft/scoreboard/Score;)V +45959 net/minecraft/network/play/server/S3CPacketUpdateScore (Ljava/lang/String;Lnet/minecraft/scoreboard/ScoreObjective;)V +45960 net/minecraft/network/play/server/S43PacketCamera (Lnet/minecraft/entity/Entity;)V +45961 net/minecraft/network/play/server/S44PacketWorldBorder$Action (Ljava/lang/String;I)V +45962 net/minecraft/network/play/server/S44PacketWorldBorder (Lnet/minecraft/world/border/WorldBorder;Lnet/minecraft/network/play/server/S44PacketWorldBorder$Action;)V +45963 net/minecraft/network/play/server/S48PacketResourcePackSend (Ljava/lang/String;Ljava/lang/String;)V +45964 net/minecraft/network/play/server/S0APacketUseBed (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/util/BlockPos;)V +45965 net/minecraft/network/play/server/S38PacketPlayerListItem$AddPlayerData (Lnet/minecraft/network/play/server/S38PacketPlayerListItem;Lcom/mojang/authlib/GameProfile;ILnet/minecraft/world/WorldSettings$GameType;Lnet/minecraft/util/IChatComponent;)V +45966 net/minecraft/network/play/server/S38PacketPlayerListItem$Action (Ljava/lang/String;I)V +45967 net/minecraft/network/play/server/S38PacketPlayerListItem (Lnet/minecraft/network/play/server/S38PacketPlayerListItem$Action;[Lnet/minecraft/entity/player/EntityPlayerMP;)V +45968 net/minecraft/network/play/server/S38PacketPlayerListItem (Lnet/minecraft/network/play/server/S38PacketPlayerListItem$Action;Ljava/lang/Iterable;)V +45969 net/minecraft/network/play/server/S42PacketCombatEvent$Event (Ljava/lang/String;I)V +45970 net/minecraft/network/play/server/S42PacketCombatEvent (Lnet/minecraft/util/CombatTracker;Lnet/minecraft/network/play/server/S42PacketCombatEvent$Event;)V +45971 net/minecraft/network/play/server/S36PacketSignEditorOpen (Lnet/minecraft/util/BlockPos;)V +45972 net/minecraft/network/play/server/S14PacketEntity$S16PacketEntityLook (IBBZ)V +45973 net/minecraft/network/play/server/S14PacketEntity$S17PacketEntityLookMove (IBBBBBZ)V +45974 net/minecraft/network/play/server/S14PacketEntity$S15PacketEntityRelMove (IBBBZ)V +45975 net/minecraft/network/play/server/S34PacketMaps (IBLjava/util/Collection;[BIIII)V +45976 net/minecraft/network/play/server/S01PacketJoinGame (ILnet/minecraft/world/WorldSettings$GameType;ZILnet/minecraft/world/EnumDifficulty;ILnet/minecraft/world/WorldType;Z)V +45977 net/minecraft/network/play/server/S2APacketParticles (Lnet/minecraft/util/EnumParticleTypes;ZFFFFFFFI[I)V +45978 net/minecraft/network/play/server/S28PacketEffect (ILnet/minecraft/util/BlockPos;IZ)V +45979 net/minecraft/network/play/server/S49PacketUpdateEntityNBT (ILnet/minecraft/nbt/NBTTagCompound;)V +45980 net/minecraft/network/play/server/S3FPacketCustomPayload (Ljava/lang/String;Lnet/minecraft/network/PacketBuffer;)V +45981 net/minecraft/network/play/server/S2DPacketOpenWindow (ILjava/lang/String;Lnet/minecraft/util/IChatComponent;)V +45982 net/minecraft/network/play/server/S2DPacketOpenWindow (ILjava/lang/String;Lnet/minecraft/util/IChatComponent;I)V +45983 net/minecraft/network/play/server/S2DPacketOpenWindow (ILjava/lang/String;Lnet/minecraft/util/IChatComponent;II)V +45984 net/minecraft/network/play/server/S22PacketMultiBlockChange$BlockUpdateData (Lnet/minecraft/network/play/server/S22PacketMultiBlockChange;SLnet/minecraft/block/state/IBlockState;)V +45985 net/minecraft/network/play/server/S22PacketMultiBlockChange$BlockUpdateData (Lnet/minecraft/network/play/server/S22PacketMultiBlockChange;SLnet/minecraft/world/chunk/Chunk;)V +45986 net/minecraft/network/play/server/S02PacketChat (Lnet/minecraft/util/IChatComponent;B)V +45987 net/minecraft/network/play/server/S41PacketServerDifficulty (Lnet/minecraft/world/EnumDifficulty;Z)V +45988 net/minecraft/network/play/server/S23PacketBlockChange (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;)V +45989 net/minecraft/network/play/server/S24PacketBlockAction (Lnet/minecraft/util/BlockPos;Lnet/minecraft/block/Block;II)V +45990 net/minecraft/network/play/server/S35PacketUpdateTileEntity (Lnet/minecraft/util/BlockPos;ILnet/minecraft/nbt/NBTTagCompound;)V +45991 net/minecraft/network/play/server/S25PacketBlockBreakAnim (ILnet/minecraft/util/BlockPos;I)V +45992 net/minecraft/network/play/server/S08PacketPlayerPosLook$EnumFlags (Ljava/lang/String;II)V +45993 net/minecraft/network/play/server/S08PacketPlayerPosLook (DDDFFLjava/util/Set;)V +45994 net/minecraft/network/PacketThreadUtil$1 (Lnet/minecraft/network/Packet;Lnet/minecraft/network/INetHandler;)V +45995 net/minecraft/network/EnumPacketDirection (Ljava/lang/String;I)V +45996 net/minecraft/util/ChatComponentSelector (Ljava/lang/String;)V +45997 net/minecraft/util/ChatComponentScore (Ljava/lang/String;Ljava/lang/String;)V +45998 net/minecraft/util/MessageSerializer (Lnet/minecraft/network/EnumPacketDirection;)V +45999 net/minecraft/util/MessageDeserializer (Lnet/minecraft/network/EnumPacketDirection;)V +46001 net/minecraft/network/NetworkManager$5 (Lnet/minecraft/network/NetworkManager;)V +46004 net/minecraft/network/NetworkManager (Lnet/minecraft/network/EnumPacketDirection;)V +46005 net/minecraft/network/NettyCompressionEncoder (I)V +46006 net/minecraft/network/NettyCompressionDecoder (I)V +46007 net/minecraft/util/Vec3i (III)V +46008 net/minecraft/util/Vec3i (DDD)V +46009 net/minecraft/util/Rotations (FFF)V +46010 net/minecraft/util/Rotations (Lnet/minecraft/nbt/NBTTagList;)V +46011 net/minecraft/util/EnumParticleTypes (Ljava/lang/String;ILjava/lang/String;IZI)V +46012 net/minecraft/util/EnumParticleTypes (Ljava/lang/String;ILjava/lang/String;IZ)V +46013 net/minecraft/util/EnumFacing$Plane (Ljava/lang/String;I)V +46014 net/minecraft/util/EnumFacing$AxisDirection (Ljava/lang/String;IILjava/lang/String;)V +46015 net/minecraft/util/EnumFacing$Axis (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/util/EnumFacing$Plane;)V +46016 net/minecraft/util/EnumFacing (Ljava/lang/String;IIIILjava/lang/String;Lnet/minecraft/util/EnumFacing$AxisDirection;Lnet/minecraft/util/EnumFacing$Axis;Lnet/minecraft/util/Vec3i;)V +46017 net/minecraft/util/RegistryNamespacedDefaultedByKey (Ljava/lang/Object;)V +46018 net/minecraft/util/Cartesian$Product$ProductIterator (Ljava/lang/Class;[Ljava/lang/Iterable;)V +46019 net/minecraft/util/Cartesian$Product$ProductIterator (Ljava/lang/Class;[Ljava/lang/Iterable;Lnet/minecraft/util/Cartesian$1;)V +46020 net/minecraft/util/Cartesian$Product (Ljava/lang/Class;[Ljava/lang/Iterable;)V +46021 net/minecraft/util/Cartesian$Product (Ljava/lang/Class;[Ljava/lang/Iterable;Lnet/minecraft/util/Cartesian$1;)V +46022 net/minecraft/util/Cartesian$GetList (Lnet/minecraft/util/Cartesian$1;)V +46023 net/minecraft/block/BlockSourceImpl (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;)V +46024 net/minecraft/util/BlockPos$MutableBlockPos (III)V +46026 net/minecraft/util/BlockPos$2$1 (Lnet/minecraft/util/BlockPos$2;)V +46027 net/minecraft/util/BlockPos$2 (Lnet/minecraft/util/BlockPos;Lnet/minecraft/util/BlockPos;)V +46028 net/minecraft/util/BlockPos$1$1 (Lnet/minecraft/util/BlockPos$1;)V +46029 net/minecraft/util/BlockPos$1 (Lnet/minecraft/util/BlockPos;Lnet/minecraft/util/BlockPos;)V +46030 net/minecraft/util/BlockPos (III)V +46031 net/minecraft/util/BlockPos (DDD)V +46032 net/minecraft/util/BlockPos (Lnet/minecraft/entity/Entity;)V +46033 net/minecraft/util/BlockPos (Lnet/minecraft/util/Vec3;)V +46034 net/minecraft/util/BlockPos (Lnet/minecraft/util/Vec3i;)V +46035 net/minecraft/command/EntityNotFoundException (Ljava/lang/String;[Ljava/lang/Object;)V +46037 net/minecraft/command/CommandClone$StaticCloneData (Lnet/minecraft/util/BlockPos;Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/nbt/NBTTagCompound;)V +46038 net/minecraft/command/server/CommandAchievement$1 (Lnet/minecraft/command/server/CommandAchievement;Lnet/minecraft/entity/player/EntityPlayerMP;Lnet/minecraft/stats/StatBase;)V +46049 net/minecraft/command/PlayerSelector$1 (Ljava/lang/String;Z)V +46050 net/minecraft/command/CommandResultStats$Type (Ljava/lang/String;IILjava/lang/String;)V +46051 net/minecraft/command/CommandBase$CoordinateArg (DDZ)V +46052 net/minecraft/realms/RealmsClickableScrolledSelectionList (IIIII)V +46053 net/minecraft/server/MinecraftServer (Ljava/net/Proxy;Ljava/io/File;)V +46054 net/minecraft/server/MinecraftServer (Ljava/io/File;Ljava/net/Proxy;Ljava/io/File;)V +46055 net/minecraft/realms/RealmsServerStatusPinger$1 (Lnet/minecraft/realms/RealmsServerStatusPinger;Lnet/minecraft/realms/RealmsServerPing;Lnet/minecraft/network/NetworkManager;Ljava/lang/String;)V +46056 net/minecraft/client/stream/TwitchStream$1 (Lnet/minecraft/client/stream/TwitchStream;Ljava/lang/String;Lcom/mojang/authlib/properties/Property;)V +46057 net/minecraft/client/stream/TwitchStream (Lnet/minecraft/client/Minecraft;Lcom/mojang/authlib/properties/Property;)V +46058 net/minecraft/client/stream/IngestServerTester$2 (Lnet/minecraft/client/stream/IngestServerTester;)V +46059 net/minecraft/client/stream/IngestServerTester$1 (Lnet/minecraft/client/stream/IngestServerTester;)V +46060 net/minecraft/client/stream/ChatController$EnumEmoticonMode (Ljava/lang/String;I)V +46061 net/minecraft/client/stream/ChatController$ChatChannelListener (Lnet/minecraft/client/stream/ChatController;Ljava/lang/String;)V +46062 net/minecraft/client/stream/ChatController$EnumChannelState (Ljava/lang/String;I)V +46063 net/minecraft/client/stream/ChatController$1 (Lnet/minecraft/client/stream/ChatController;)V +46064 net/minecraft/client/stream/BroadcastController$2 (Lnet/minecraft/client/stream/BroadcastController;)V +46065 net/minecraft/client/stream/BroadcastController$1 (Lnet/minecraft/client/stream/BroadcastController;)V +46066 net/minecraft/client/stream/MetadataPlayerDeath (Lnet/minecraft/entity/EntityLivingBase;Lnet/minecraft/entity/EntityLivingBase;)V +46067 net/minecraft/client/stream/MetadataCombat (Lnet/minecraft/entity/EntityLivingBase;Lnet/minecraft/entity/EntityLivingBase;)V +46068 net/minecraft/client/audio/SoundManager$1$1 (Lnet/minecraft/client/audio/SoundManager$1;)V +46069 net/minecraft/server/integrated/IntegratedServer$3 (Lnet/minecraft/server/integrated/IntegratedServer;)V +46070 net/minecraft/server/integrated/IntegratedServer (Lnet/minecraft/client/Minecraft;)V +46071 net/minecraft/client/audio/GuardianSound (Lnet/minecraft/entity/monster/EntityGuardian;)V +46072 net/minecraft/client/resources/model/WeightedBakedModel$MyWeighedRandomItem (Lnet/minecraft/client/resources/model/IBakedModel;I)V +46073 net/minecraft/client/resources/model/WeightedBakedModel (Ljava/util/List;)V +46074 net/minecraft/client/resources/model/SimpleBakedModel$Builder (Lnet/minecraft/client/renderer/block/model/ModelBlock;)V +46075 net/minecraft/client/resources/model/SimpleBakedModel$Builder (Lnet/minecraft/client/resources/model/IBakedModel;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +46076 net/minecraft/client/resources/model/SimpleBakedModel$Builder (ZZLnet/minecraft/client/renderer/block/model/ItemCameraTransforms;)V +46077 net/minecraft/client/resources/model/SimpleBakedModel (Ljava/util/List;Ljava/util/List;ZZLnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/block/model/ItemCameraTransforms;)V +46078 net/minecraft/client/resources/model/ModelResourceLocation (I[Ljava/lang/String;)V +46079 net/minecraft/client/resources/model/ModelResourceLocation (Ljava/lang/String;)V +46080 net/minecraft/client/resources/model/ModelResourceLocation (Lnet/minecraft/util/ResourceLocation;Ljava/lang/String;)V +46081 net/minecraft/client/resources/model/ModelResourceLocation (Ljava/lang/String;Ljava/lang/String;)V +46082 net/minecraft/client/resources/model/ModelManager (Lnet/minecraft/client/renderer/texture/TextureMap;)V +46083 net/minecraft/client/resources/model/ModelBakery$2 (Lnet/minecraft/client/resources/model/ModelBakery;Ljava/util/Set;)V +46084 net/minecraft/client/resources/model/ModelBakery$1 (Lnet/minecraft/client/resources/model/ModelBakery;)V +46085 net/minecraft/client/resources/model/ModelBakery (Lnet/minecraft/client/resources/IResourceManager;Lnet/minecraft/client/renderer/texture/TextureMap;Lnet/minecraft/client/renderer/BlockModelShapes;)V +46086 net/minecraft/client/resources/model/BuiltInModel (Lnet/minecraft/client/renderer/block/model/ItemCameraTransforms;)V +46087 net/minecraft/client/resources/model/ModelRotation (Ljava/lang/String;III)V +46088 net/minecraft/client/resources/data/AnimationMetadataSection (Ljava/util/List;IIIZ)V +46089 net/minecraft/client/resources/SkinManager$2 (Lnet/minecraft/client/resources/SkinManager;Lnet/minecraft/client/renderer/IImageBuffer;Lnet/minecraft/client/resources/SkinManager$SkinAvailableCallback;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/util/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V +46090 net/minecraft/client/resources/SimpleResource (Ljava/lang/String;Lnet/minecraft/util/ResourceLocation;Ljava/io/InputStream;Ljava/io/InputStream;Lnet/minecraft/client/resources/data/IMetadataSerializer;)V +46091 net/minecraft/client/resources/ResourcePackRepository$3 (Lnet/minecraft/client/resources/ResourcePackRepository;Ljava/io/File;Lcom/google/common/util/concurrent/SettableFuture;)V +46092 net/minecraft/client/resources/ResourcePackRepository$2 (Lnet/minecraft/client/resources/ResourcePackRepository;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/GuiScreenWorking;)V +46093 net/minecraft/client/resources/FallbackResourceManager$InputStreamLeakedResourceLogger (Ljava/io/InputStream;Lnet/minecraft/util/ResourceLocation;Ljava/lang/String;)V +46094 net/minecraft/client/renderer/vertex/VertexFormatElement$EnumUsage (Ljava/lang/String;ILjava/lang/String;)V +46095 net/minecraft/client/renderer/vertex/VertexFormatElement$EnumType (Ljava/lang/String;IILjava/lang/String;I)V +46096 net/minecraft/client/renderer/vertex/VertexFormatElement (ILnet/minecraft/client/renderer/vertex/VertexFormatElement$EnumType;Lnet/minecraft/client/renderer/vertex/VertexFormatElement$EnumUsage;I)V +46097 net/minecraft/client/renderer/vertex/VertexFormat (Lnet/minecraft/client/renderer/vertex/VertexFormat;)V +46098 net/minecraft/client/renderer/vertex/VertexBuffer (Lnet/minecraft/client/renderer/vertex/VertexFormat;)V +46099 net/minecraft/client/renderer/texture/TextureMap (Ljava/lang/String;)V +46100 net/minecraft/client/renderer/texture/TextureMap (Ljava/lang/String;Lnet/minecraft/client/renderer/texture/IIconCreator;)V +46101 net/minecraft/client/renderer/texture/LayeredColorMaskTexture (Lnet/minecraft/util/ResourceLocation;Ljava/util/List;Ljava/util/List;)V +46102 net/minecraft/client/renderer/entity/RenderPlayer (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46103 net/minecraft/client/renderer/entity/RenderPlayer (Lnet/minecraft/client/renderer/entity/RenderManager;Z)V +46104 net/minecraft/client/renderer/entity/layers/LayerWolfCollar (Lnet/minecraft/client/renderer/entity/RenderWolf;)V +46105 net/minecraft/client/renderer/entity/layers/LayerWitherAura (Lnet/minecraft/client/renderer/entity/RenderWither;)V +46106 net/minecraft/client/renderer/entity/layers/LayerHeldItemWitch (Lnet/minecraft/client/renderer/entity/RenderWitch;)V +46107 net/minecraft/client/renderer/entity/layers/LayerIronGolemFlower (Lnet/minecraft/client/renderer/entity/RenderIronGolem;)V +46108 net/minecraft/client/renderer/entity/layers/LayerVillagerArmor (Lnet/minecraft/client/renderer/entity/RendererLivingEntity;)V +46109 net/minecraft/client/renderer/entity/layers/LayerSpiderEyes (Lnet/minecraft/client/renderer/entity/RenderSpider;)V +46110 net/minecraft/client/renderer/entity/layers/LayerSnowmanHead (Lnet/minecraft/client/renderer/entity/RenderSnowMan;)V +46111 net/minecraft/client/renderer/entity/layers/LayerSlimeGel (Lnet/minecraft/client/renderer/entity/RenderSlime;)V +46112 net/minecraft/client/renderer/entity/layers/LayerSheepWool (Lnet/minecraft/client/renderer/entity/RenderSheep;)V +46113 net/minecraft/client/renderer/entity/layers/LayerSaddle (Lnet/minecraft/client/renderer/entity/RenderPig;)V +46114 net/minecraft/client/renderer/entity/layers/LayerMooshroomMushroom (Lnet/minecraft/client/renderer/entity/RenderMooshroom;)V +46115 net/minecraft/client/renderer/entity/layers/LayerHeldItem (Lnet/minecraft/client/renderer/entity/RendererLivingEntity;)V +46116 net/minecraft/client/renderer/entity/layers/LayerBipedArmor (Lnet/minecraft/client/renderer/entity/RendererLivingEntity;)V +46117 net/minecraft/client/renderer/entity/layers/LayerEndermanEyes (Lnet/minecraft/client/renderer/entity/RenderEnderman;)V +46118 net/minecraft/client/renderer/entity/layers/LayerEnderDragonEyes (Lnet/minecraft/client/renderer/entity/RenderDragon;)V +46119 net/minecraft/client/renderer/entity/layers/LayerDeadmau5Head (Lnet/minecraft/client/renderer/entity/RenderPlayer;)V +46120 net/minecraft/client/renderer/entity/layers/LayerCustomHead (Lnet/minecraft/client/model/ModelRenderer;)V +46121 net/minecraft/client/renderer/entity/layers/LayerCreeperCharge (Lnet/minecraft/client/renderer/entity/RenderCreeper;)V +46122 net/minecraft/client/renderer/entity/layers/LayerHeldBlock (Lnet/minecraft/client/renderer/entity/RenderEnderman;)V +46123 net/minecraft/client/renderer/entity/layers/LayerCape (Lnet/minecraft/client/renderer/entity/RenderPlayer;)V +46124 net/minecraft/client/renderer/entity/layers/LayerArrow (Lnet/minecraft/client/renderer/entity/RendererLivingEntity;)V +46125 net/minecraft/client/renderer/entity/layers/LayerArmorBase (Lnet/minecraft/client/renderer/entity/RendererLivingEntity;)V +46126 net/minecraft/client/renderer/entity/RenderZombie$1 (Lnet/minecraft/client/renderer/entity/RenderZombie;Lnet/minecraft/client/renderer/entity/RendererLivingEntity;)V +46127 net/minecraft/client/renderer/entity/RenderZombie (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46128 net/minecraft/client/renderer/entity/RenderWolf (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46129 net/minecraft/client/renderer/tileentity/RenderWitherSkull (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46130 net/minecraft/client/renderer/entity/RenderWither (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46131 net/minecraft/client/renderer/entity/RenderWitch (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46132 net/minecraft/client/renderer/entity/RenderVillager (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46133 net/minecraft/client/renderer/entity/RenderIronGolem (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46134 net/minecraft/client/renderer/entity/RenderTNTPrimed (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46135 net/minecraft/client/renderer/entity/RenderTntMinecart (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46136 net/minecraft/client/renderer/entity/RenderPotion (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/renderer/entity/RenderItem;)V +46137 net/minecraft/client/renderer/entity/RenderSnowball (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/item/Item;Lnet/minecraft/client/renderer/entity/RenderItem;)V +46138 net/minecraft/client/renderer/entity/RenderSquid (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46139 net/minecraft/client/renderer/entity/RenderSpider (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46140 net/minecraft/client/renderer/entity/RenderSnowMan (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46141 net/minecraft/client/renderer/entity/RenderSlime (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46142 net/minecraft/client/renderer/entity/RenderSkeleton$1 (Lnet/minecraft/client/renderer/entity/RenderSkeleton;Lnet/minecraft/client/renderer/entity/RendererLivingEntity;)V +46143 net/minecraft/client/renderer/entity/RenderSkeleton (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46144 net/minecraft/client/renderer/entity/RenderSilverfish (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46145 net/minecraft/client/renderer/entity/RenderSheep (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46146 net/minecraft/client/renderer/entity/RenderRabbit (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46147 net/minecraft/client/renderer/entity/RenderPigZombie$1 (Lnet/minecraft/client/renderer/entity/RenderPigZombie;Lnet/minecraft/client/renderer/entity/RendererLivingEntity;)V +46148 net/minecraft/client/renderer/entity/RenderPigZombie (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46149 net/minecraft/client/renderer/entity/RenderPig (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46150 net/minecraft/client/renderer/entity/RenderPainting (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46151 net/minecraft/client/renderer/entity/RenderOcelot (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46152 net/minecraft/client/renderer/entity/RenderMooshroom (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46153 net/minecraft/client/renderer/entity/RenderLiving (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46154 net/minecraft/client/renderer/entity/RenderMinecartMobSpawner (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46155 net/minecraft/client/renderer/entity/RenderMinecart (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46156 net/minecraft/client/renderer/entity/RendererLivingEntity (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46157 net/minecraft/client/renderer/entity/RenderLightningBolt (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46158 net/minecraft/client/renderer/entity/RenderLeashKnot (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46159 net/minecraft/client/renderer/entity/RenderMagmaCube (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46160 net/minecraft/client/renderer/entity/RenderItem$9 (Lnet/minecraft/client/renderer/entity/RenderItem;)V +46161 net/minecraft/client/renderer/entity/RenderItem$8 (Lnet/minecraft/client/renderer/entity/RenderItem;)V +46162 net/minecraft/client/renderer/entity/RenderItem$7 (Lnet/minecraft/client/renderer/entity/RenderItem;)V +46163 net/minecraft/client/renderer/entity/RenderItem$6 (Lnet/minecraft/client/renderer/entity/RenderItem;)V +46164 net/minecraft/client/renderer/entity/RenderItem$5 (Lnet/minecraft/client/renderer/entity/RenderItem;)V +46165 net/minecraft/client/renderer/entity/RenderItem (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/resources/model/ModelManager;)V +46166 net/minecraft/client/renderer/tileentity/RenderItemFrame (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/renderer/entity/RenderItem;)V +46167 net/minecraft/client/renderer/entity/RenderEntityItem (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/renderer/entity/RenderItem;)V +46168 net/minecraft/client/renderer/entity/RenderBiped (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBiped;F)V +46169 net/minecraft/client/renderer/entity/RenderBiped (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBiped;FF)V +46170 net/minecraft/client/renderer/entity/RenderHorse (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelHorse;F)V +46171 net/minecraft/client/renderer/entity/RenderGuardian (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46172 net/minecraft/client/renderer/entity/RenderGiantZombie$1 (Lnet/minecraft/client/renderer/entity/RenderGiantZombie;Lnet/minecraft/client/renderer/entity/RendererLivingEntity;)V +46173 net/minecraft/client/renderer/entity/RenderGiantZombie (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;FF)V +46174 net/minecraft/client/renderer/entity/RenderGhast (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46175 net/minecraft/client/renderer/entity/RenderFish (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46176 net/minecraft/client/renderer/entity/RenderFireball (Lnet/minecraft/client/renderer/entity/RenderManager;F)V +46177 net/minecraft/client/renderer/entity/RenderFallingBlock (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46178 net/minecraft/client/renderer/entity/RenderXPOrb (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46179 net/minecraft/client/renderer/entity/Render (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46180 net/minecraft/client/renderer/entity/RenderManager (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/renderer/entity/RenderItem;)V +46181 net/minecraft/client/renderer/entity/RenderEndermite (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46182 net/minecraft/client/renderer/entity/RenderEnderman (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46183 net/minecraft/client/renderer/entity/RenderDragon (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46184 net/minecraft/client/renderer/tileentity/RenderEnderCrystal (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46185 net/minecraft/client/renderer/entity/RenderEntity (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46186 net/minecraft/client/renderer/entity/RenderCreeper (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46187 net/minecraft/client/renderer/entity/RenderCow (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46188 net/minecraft/client/renderer/entity/RenderChicken (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46189 net/minecraft/client/renderer/entity/RenderCaveSpider (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46190 net/minecraft/client/renderer/entity/RenderBoat (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46191 net/minecraft/client/renderer/entity/RenderBlaze (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46192 net/minecraft/client/renderer/entity/RenderBat (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46193 net/minecraft/client/renderer/entity/RenderArrow (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46194 net/minecraft/client/renderer/entity/ArmorStandRenderer$1 (Lnet/minecraft/client/renderer/entity/ArmorStandRenderer;Lnet/minecraft/client/renderer/entity/RendererLivingEntity;)V +46195 net/minecraft/client/renderer/entity/ArmorStandRenderer (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46196 net/minecraft/client/renderer/culling/Frustum (Lnet/minecraft/client/renderer/culling/ClippingHelper;)V +46197 net/minecraft/client/renderer/chunk/RenderChunk (Lnet/minecraft/world/World;Lnet/minecraft/client/renderer/RenderGlobal;Lnet/minecraft/util/BlockPos;I)V +46198 net/minecraft/client/renderer/chunk/ListedRenderChunk (Lnet/minecraft/world/World;Lnet/minecraft/client/renderer/RenderGlobal;Lnet/minecraft/util/BlockPos;I)V +46199 net/minecraft/client/renderer/chunk/ChunkRenderWorker$2 (Lnet/minecraft/client/renderer/chunk/ChunkRenderWorker;Lnet/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator;Lnet/minecraft/client/renderer/chunk/CompiledChunk;)V +46200 net/minecraft/client/renderer/chunk/ChunkRenderWorker$1 (Lnet/minecraft/client/renderer/chunk/ChunkRenderWorker;Lcom/google/common/util/concurrent/ListenableFuture;)V +46201 net/minecraft/client/renderer/chunk/ChunkRenderWorker (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;)V +46202 net/minecraft/client/renderer/chunk/ChunkRenderWorker (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/client/renderer/RegionRenderCacheBuilder;)V +46203 net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$3 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/util/EnumWorldBlockLayer;Lnet/minecraft/client/renderer/WorldRenderer;Lnet/minecraft/client/renderer/chunk/RenderChunk;Lnet/minecraft/client/renderer/chunk/CompiledChunk;)V +46204 net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$2 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator;)V +46205 net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$1 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator;)V +46206 net/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator$Type (Ljava/lang/String;I)V +46207 net/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator$Status (Ljava/lang/String;I)V +46208 net/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator (Lnet/minecraft/client/renderer/chunk/RenderChunk;Lnet/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator$Type;)V +46209 net/minecraft/client/renderer/tileentity/TileEntityBannerRenderer$TimedBannerTexture (Lnet/minecraft/client/renderer/tileentity/TileEntityBannerRenderer$1;)V +46210 net/minecraft/client/renderer/block/statemap/StateMap (Lnet/minecraft/block/properties/IProperty;Ljava/lang/String;Ljava/util/List;)V +46211 net/minecraft/client/renderer/block/statemap/StateMap (Lnet/minecraft/block/properties/IProperty;Ljava/lang/String;Ljava/util/List;Lnet/minecraft/client/renderer/block/statemap/StateMap$1;)V +46212 net/minecraft/client/renderer/block/model/ItemCameraTransforms$TransformType (Ljava/lang/String;I)V +46214 net/minecraft/client/renderer/block/model/ItemTransformVec3f (Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;)V +46215 net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing (Ljava/lang/String;ILnet/minecraft/util/EnumFacing;II)V +46216 net/minecraft/client/renderer/block/model/ItemModelGenerator$Span (Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;II)V +46217 net/minecraft/client/renderer/block/model/BreakingFour (Lnet/minecraft/client/renderer/block/model/BakedQuad;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +46218 net/minecraft/client/renderer/block/model/ModelBlockDefinition$Variants (Ljava/lang/String;Ljava/util/List;)V +46219 net/minecraft/client/renderer/block/model/ModelBlockDefinition$Variant (Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/client/resources/model/ModelRotation;ZI)V +46220 net/minecraft/client/renderer/block/model/ModelBlockDefinition$MissingVariantException (Lnet/minecraft/client/renderer/block/model/ModelBlockDefinition;)V +46221 net/minecraft/client/renderer/block/model/ModelBlockDefinition (Ljava/util/Collection;)V +46222 net/minecraft/client/renderer/block/model/ModelBlockDefinition (Ljava/util/List;)V +46223 net/minecraft/client/renderer/block/model/ModelBlock$Bookkeep (Lnet/minecraft/client/renderer/block/model/ModelBlock;)V +46224 net/minecraft/client/renderer/block/model/ModelBlock$Bookkeep (Lnet/minecraft/client/renderer/block/model/ModelBlock;Lnet/minecraft/client/renderer/block/model/ModelBlock$1;)V +46225 net/minecraft/client/renderer/block/model/ModelBlock (Ljava/util/List;Ljava/util/Map;ZZLnet/minecraft/client/renderer/block/model/ItemCameraTransforms;)V +46226 net/minecraft/client/renderer/block/model/ModelBlock (Lnet/minecraft/util/ResourceLocation;Ljava/util/Map;ZZLnet/minecraft/client/renderer/block/model/ItemCameraTransforms;)V +46227 net/minecraft/client/renderer/block/model/ModelBlock (Lnet/minecraft/util/ResourceLocation;Ljava/util/List;Ljava/util/Map;ZZLnet/minecraft/client/renderer/block/model/ItemCameraTransforms;)V +46228 net/minecraft/client/renderer/block/model/BlockFaceUV ([FI)V +46229 net/minecraft/client/renderer/block/model/BlockPartRotation (Lorg/lwjgl/util/vector/Vector3f;Lnet/minecraft/util/EnumFacing$Axis;FZ)V +46230 net/minecraft/client/renderer/block/model/BlockPartFace (Lnet/minecraft/util/EnumFacing;ILjava/lang/String;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;)V +46231 net/minecraft/client/renderer/block/model/BlockPart (Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/BlockPartRotation;Z)V +46232 net/minecraft/client/renderer/block/model/BakedQuad ([IILnet/minecraft/util/EnumFacing;)V +46233 net/minecraft/client/renderer/BlockModelRenderer$Orientation (Ljava/lang/String;ILnet/minecraft/util/EnumFacing;Z)V +46234 net/minecraft/client/renderer/BlockModelRenderer$VertexTranslations (Ljava/lang/String;IIIII)V +46235 net/minecraft/client/renderer/BlockModelRenderer$AmbientOcclusionFace (Lnet/minecraft/client/renderer/BlockModelRenderer;)V +46236 net/minecraft/client/renderer/BlockModelRenderer$EnumNeighborInfo (Ljava/lang/String;I[Lnet/minecraft/util/EnumFacing;FZ[Lnet/minecraft/client/renderer/BlockModelRenderer$Orientation;[Lnet/minecraft/client/renderer/BlockModelRenderer$Orientation;[Lnet/minecraft/client/renderer/BlockModelRenderer$Orientation;[Lnet/minecraft/client/renderer/BlockModelRenderer$Orientation;)V +46237 net/minecraft/client/renderer/BlockRendererDispatcher (Lnet/minecraft/client/renderer/BlockModelShapes;Lnet/minecraft/client/settings/GameSettings;)V +46238 net/minecraft/client/renderer/BlockModelShapes$7 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46239 net/minecraft/client/renderer/BlockModelShapes$6 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46240 net/minecraft/client/renderer/BlockModelShapes$5 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46241 net/minecraft/client/renderer/BlockModelShapes$4 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46242 net/minecraft/client/renderer/BlockModelShapes$3 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46243 net/minecraft/client/renderer/BlockModelShapes$2 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46244 net/minecraft/client/renderer/BlockModelShapes$1 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46245 net/minecraft/client/renderer/BlockModelShapes (Lnet/minecraft/client/resources/model/ModelManager;)V +46246 net/minecraft/client/renderer/ViewFrustum (Lnet/minecraft/world/World;ILnet/minecraft/client/renderer/RenderGlobal;Lnet/minecraft/client/renderer/chunk/IRenderChunkFactory;)V +46248 net/minecraft/client/renderer/RenderGlobal$ContainerLocalRenderInformation (Lnet/minecraft/client/renderer/RenderGlobal;Lnet/minecraft/client/renderer/chunk/RenderChunk;Lnet/minecraft/util/EnumFacing;I)V +46249 net/minecraft/client/renderer/RenderGlobal$ContainerLocalRenderInformation (Lnet/minecraft/client/renderer/RenderGlobal;Lnet/minecraft/client/renderer/chunk/RenderChunk;Lnet/minecraft/util/EnumFacing;ILnet/minecraft/client/renderer/RenderGlobal$1;)V +46250 net/minecraft/client/renderer/ItemModelMesher (Lnet/minecraft/client/resources/model/ModelManager;)V +46254 net/minecraft/client/renderer/GlStateManager$TexGenCoord (II)V +46255 net/minecraft/client/renderer/GlStateManager$TexGen (Ljava/lang/String;I)V +46265 net/minecraft/client/renderer/GlStateManager$Color (FFFF)V +46267 net/minecraft/client/renderer/GlStateManager$BooleanState (I)V +46270 net/minecraft/client/renderer/EnumFaceDirection$VertexInformation (III)V +46271 net/minecraft/client/renderer/EnumFaceDirection$VertexInformation (IIILnet/minecraft/client/renderer/EnumFaceDirection$1;)V +46272 net/minecraft/client/renderer/EnumFaceDirection (Ljava/lang/String;I[Lnet/minecraft/client/renderer/EnumFaceDirection$VertexInformation;)V +46273 net/minecraft/client/renderer/RegionRenderCache (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;Lnet/minecraft/util/BlockPos;I)V +46275 net/minecraft/client/renderer/WorldRenderer (I)V +46276 net/minecraft/client/player/inventory/ContainerLocalMenu (Ljava/lang/String;Lnet/minecraft/util/IChatComponent;I)V +46277 net/minecraft/client/player/inventory/LocalBlockIntercommunication (Ljava/lang/String;Lnet/minecraft/util/IChatComponent;)V +46278 net/minecraft/client/entity/EntityPlayerSP (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/World;Lnet/minecraft/client/network/NetHandlerPlayClient;Lnet/minecraft/stats/StatFileWriter;)V +46279 net/minecraft/client/particle/EntityParticleEmitter (Lnet/minecraft/world/World;Lnet/minecraft/entity/Entity;Lnet/minecraft/util/EnumParticleTypes;)V +46280 net/minecraft/client/particle/EntityDiggingFX (Lnet/minecraft/world/World;DDDDDDLnet/minecraft/block/state/IBlockState;)V +46281 net/minecraft/client/particle/EntityBlockDustFX (Lnet/minecraft/world/World;DDDDDDLnet/minecraft/block/state/IBlockState;)V +46282 net/minecraft/client/particle/EntitySmokeFX (Lnet/minecraft/world/World;DDDDDDLnet/minecraft/client/particle/EntitySmokeFX$1;)V +46283 net/minecraft/client/particle/MobAppearance (Lnet/minecraft/world/World;DDD)V +46284 net/minecraft/client/particle/EntityCrit2FX (Lnet/minecraft/world/World;DDDDDD)V +46285 net/minecraft/client/particle/EntityCrit2FX (Lnet/minecraft/world/World;DDDDDDF)V +46286 net/minecraft/client/particle/Barrier (Lnet/minecraft/world/World;DDDLnet/minecraft/item/Item;)V +46289 net/minecraft/crash/CrashReportCategory$3 (Lnet/minecraft/util/BlockPos;)V +46290 net/minecraft/client/network/NetworkPlayerInfo$1 (Lnet/minecraft/client/network/NetworkPlayerInfo;)V +46291 net/minecraft/util/EnumChatFormatting (Ljava/lang/String;ILjava/lang/String;CI)V +46292 net/minecraft/util/EnumChatFormatting (Ljava/lang/String;ILjava/lang/String;CZ)V +46293 net/minecraft/util/EnumChatFormatting (Ljava/lang/String;ILjava/lang/String;CZI)V +46294 net/minecraft/client/network/NetworkPlayerInfo (Lcom/mojang/authlib/GameProfile;)V +46295 net/minecraft/client/network/NetworkPlayerInfo (Lnet/minecraft/network/play/server/S38PacketPlayerListItem$AddPlayerData;)V +46296 net/minecraft/client/network/NetHandlerPlayClient$3$1$1 (Lnet/minecraft/client/network/NetHandlerPlayClient$3$1;)V +46297 net/minecraft/client/network/NetHandlerPlayClient$3$1 (Lnet/minecraft/client/network/NetHandlerPlayClient$3;)V +46298 net/minecraft/client/network/NetHandlerPlayClient$3 (Lnet/minecraft/client/network/NetHandlerPlayClient;Ljava/lang/String;Ljava/lang/String;)V +46299 net/minecraft/client/network/NetHandlerPlayClient$2 (Lnet/minecraft/client/network/NetHandlerPlayClient;Ljava/lang/String;)V +46300 net/minecraft/client/network/NetHandlerPlayClient (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/network/NetworkManager;Lcom/mojang/authlib/GameProfile;)V +46301 net/minecraft/client/model/ModelBox (Lnet/minecraft/client/model/ModelRenderer;IIFFFIIIFZ)V +46302 net/minecraft/client/model/ModelWither (F)V +46303 net/minecraft/client/model/ModelSkeleton (FZ)V +46304 net/minecraft/client/model/ModelPlayer (FZ)V +46305 net/minecraft/client/model/ModelEnderman (F)V +46306 net/minecraft/client/model/ModelArmorStand (F)V +46307 net/minecraft/client/model/ModelArmorStandArmor (F)V +46308 net/minecraft/client/model/ModelArmorStandArmor (FII)V +46309 net/minecraft/server/dedicated/ServerHangWatchdog$1 (Lnet/minecraft/server/dedicated/ServerHangWatchdog;)V +46310 net/minecraft/server/dedicated/ServerHangWatchdog (Lnet/minecraft/server/dedicated/DedicatedServer;)V +46311 net/minecraft/client/gui/stream/GuiStreamUnavailable (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/gui/stream/GuiStreamUnavailable$Reason;Ljava/util/List;)V +46312 net/minecraft/client/gui/stream/GuiIngestServers (Lnet/minecraft/client/gui/GuiScreen;)V +46313 net/minecraft/client/gui/inventory/GuiContainerCreative$CreativeSlot (Lnet/minecraft/client/gui/inventory/GuiContainerCreative;Lnet/minecraft/inventory/Slot;I)V +46314 net/minecraft/client/gui/inventory/CreativeCrafting (Lnet/minecraft/client/Minecraft;)V +46315 net/minecraft/client/gui/inventory/GuiChest (Lnet/minecraft/inventory/IInventory;Lnet/minecraft/inventory/IInventory;)V +46316 net/minecraft/client/gui/GuiScreenBook$NextPageButton (IIIZ)V +46317 net/minecraft/client/gui/GuiRenameWorld (Lnet/minecraft/client/gui/GuiScreen;Ljava/lang/String;)V +46318 net/minecraft/client/gui/GuiFlatPresets (Lnet/minecraft/client/gui/GuiCreateFlatWorld;)V +46319 net/minecraft/client/gui/GuiErrorScreen (Ljava/lang/String;Ljava/lang/String;)V +46320 net/minecraft/client/gui/GuiCreateWorld (Lnet/minecraft/client/gui/GuiScreen;)V +46321 net/minecraft/client/gui/GuiButtonRealmsProxy (Lnet/minecraft/realms/RealmsButton;IIILjava/lang/String;)V +46322 net/minecraft/client/gui/GuiStreamIndicator (Lnet/minecraft/client/Minecraft;)V +46323 net/minecraft/client/gui/GuiButton (IIIIILjava/lang/String;)V +46325 net/minecraft/client/gui/GuiIngame (Lnet/minecraft/client/Minecraft;)V +46326 net/minecraft/client/settings/GameSettings (Lnet/minecraft/client/Minecraft;Ljava/io/File;)V +46327 net/minecraft/stats/Achievement (Ljava/lang/String;Ljava/lang/String;IILnet/minecraft/item/Item;Lnet/minecraft/stats/Achievement;)V +46329 net/minecraft/server/management/PreYggdrasilConverter$5 (Lnet/minecraft/server/MinecraftServer;Ljava/util/List;)V +46330 net/minecraft/server/management/IPBanEntry (Ljava/lang/String;)V +46331 net/minecraft/server/management/IPBanEntry (Lcom/google/gson/JsonObject;)V +46332 net/minecraft/server/management/PlayerProfileCache$Serializer (Lnet/minecraft/server/management/PlayerProfileCache;Lnet/minecraft/server/management/PlayerProfileCache$1;)V +46333 net/minecraft/server/management/PlayerProfileCache$ProfileEntry (Lnet/minecraft/server/management/PlayerProfileCache;Lcom/mojang/authlib/GameProfile;Ljava/util/Date;)V +46334 net/minecraft/server/management/BanEntry (Ljava/lang/Object;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V +46335 net/minecraft/network/play/server/S19PacketEntityStatus (Lnet/minecraft/entity/Entity;B)V +46336 net/minecraft/network/play/server/S40PacketDisconnect (Lnet/minecraft/util/IChatComponent;)V +46337 net/minecraft/network/EnumConnectionState$1 (Ljava/lang/String;II)V +46338 net/minecraft/network/EnumConnectionState$2 (Ljava/lang/String;II)V +46339 net/minecraft/network/EnumConnectionState$4 (Ljava/lang/String;II)V +46340 net/minecraft/network/EnumConnectionState$3 (Ljava/lang/String;II)V +46341 net/minecraft/nbt/NBTSizeTracker$1 (J)V +46342 net/minecraft/nbt/NBTSizeTracker (J)V +46343 net/minecraft/realms/RealmsConnect$1 (Lnet/minecraft/realms/RealmsConnect;Ljava/lang/String;Ljava/lang/String;I)V +46344 net/minecraft/client/stream/TwitchStream$1$1 (Lnet/minecraft/client/stream/TwitchStream$1;Ljava/lang/String;)V +46345 net/minecraft/client/stream/Metadata (Ljava/lang/String;Ljava/lang/String;)V +46346 net/minecraft/client/resources/DefaultResourcePack (Ljava/util/Map;)V +46347 net/minecraft/client/particle/EntitySmokeFX (Lnet/minecraft/world/World;DDDDDD)V +46348 net/minecraft/client/particle/EntitySmokeFX (Lnet/minecraft/world/World;DDDDDDF)V +46349 net/minecraft/client/particle/EntityReddustFX (Lnet/minecraft/world/World;DDDFFF)V +46350 net/minecraft/client/particle/EntityReddustFX (Lnet/minecraft/world/World;DDDFFFF)V +46351 net/minecraft/client/particle/EntityPortalFX (Lnet/minecraft/world/World;DDDDDD)V +46352 net/minecraft/client/particle/EntityFX (Lnet/minecraft/world/World;DDD)V +46353 net/minecraft/client/particle/EntityNoteFX (Lnet/minecraft/world/World;DDDDDD)V +46354 net/minecraft/client/particle/EntityHeartFX (Lnet/minecraft/world/World;DDDDDDF)V +46358 net/minecraft/client/model/ModelRenderer (Lnet/minecraft/client/model/ModelBase;II)V +46359 net/minecraft/client/model/ModelBox (Lnet/minecraft/client/model/ModelRenderer;IIFFFIIIF)V +46360 net/minecraft/client/model/ModelDragon (F)V +46361 net/minecraft/client/model/ModelWitch (F)V +46362 net/minecraft/client/model/ModelIronGolem (FF)V +46363 net/minecraft/client/model/PositionTextureVertex (Lnet/minecraft/client/model/PositionTextureVertex;FF)V +46364 net/minecraft/client/model/TexturedQuad ([Lnet/minecraft/client/model/PositionTextureVertex;)V +46365 net/minecraft/client/model/ModelLeashKnot (IIII)V +46366 net/minecraft/client/model/ModelCreeper (F)V +46367 net/minecraft/server/management/PreYggdrasilConverter$ConversionError (Ljava/lang/String;Ljava/lang/Throwable;Lnet/minecraft/server/management/PreYggdrasilConverter$1;)V +46368 net/minecraft/server/management/PreYggdrasilConverter$4 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/management/UserListWhitelist;)V +46369 net/minecraft/server/gui/MinecraftServerGui$5 (Lnet/minecraft/server/gui/MinecraftServerGui;Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V +46370 net/minecraft/server/gui/MinecraftServerGui$3 (Lnet/minecraft/server/gui/MinecraftServerGui;)V +46371 net/minecraft/server/dedicated/DedicatedServer$2 (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/lang/String;)V +46372 net/minecraft/server/dedicated/PropertyManager (Ljava/io/File;)V +46373 net/minecraft/server/ServerEula (Ljava/io/File;)V +46374 net/minecraft/command/CommandExecuteAt$1 (Lnet/minecraft/command/CommandExecuteAt;Lnet/minecraft/entity/Entity;Lnet/minecraft/command/ICommandSender;Lnet/minecraft/util/BlockPos;DDD)V +46375 net/minecraft/client/main/GameConfiguration$UserInformation (Lnet/minecraft/util/Session;Lcom/mojang/authlib/properties/PropertyMap;Lcom/mojang/authlib/properties/PropertyMap;Ljava/net/Proxy;)V +46376 net/minecraft/client/gui/GuiScreenAddServer$1 (Lnet/minecraft/client/gui/GuiScreenAddServer;)V +46377 net/minecraft/util/Vec3 (Lnet/minecraft/util/Vec3i;)V +46378 net/minecraft/block/state/pattern/BlockPattern$PatternHelper (Lnet/minecraft/util/BlockPos;Lnet/minecraft/util/EnumFacing;Lnet/minecraft/util/EnumFacing;Lcom/google/common/cache/LoadingCache;III)V +46379 net/minecraft/block/BlockPressurePlateWeighted (Lnet/minecraft/block/material/Material;I)V +46380 net/minecraft/block/BlockPressurePlateWeighted (Lnet/minecraft/block/material/Material;ILnet/minecraft/block/material/MapColor;)V +46381 net/minecraft/block/BlockStoneSlab$EnumType (Ljava/lang/String;IILnet/minecraft/block/material/MapColor;Ljava/lang/String;)V +46382 net/minecraft/block/BlockStoneSlab$EnumType (Ljava/lang/String;IILnet/minecraft/block/material/MapColor;Ljava/lang/String;Ljava/lang/String;)V +46383 net/minecraft/block/BlockStone$EnumType (Ljava/lang/String;IILnet/minecraft/block/material/MapColor;Ljava/lang/String;)V +46384 net/minecraft/block/BlockStone$EnumType (Ljava/lang/String;IILnet/minecraft/block/material/MapColor;Ljava/lang/String;Ljava/lang/String;)V +46385 net/minecraft/block/BlockRotatedPillar (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46386 net/minecraft/block/BlockCompressedPowered (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46388 net/minecraft/block/BlockPlanks$EnumType (Ljava/lang/String;IILjava/lang/String;Lnet/minecraft/block/material/MapColor;)V +46389 net/minecraft/block/BlockPlanks$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Lnet/minecraft/block/material/MapColor;)V +46390 net/minecraft/block/BlockOre (Lnet/minecraft/block/material/MapColor;)V +46391 net/minecraft/block/BlockStoneSlabNew$EnumType (Ljava/lang/String;IILjava/lang/String;Lnet/minecraft/block/material/MapColor;)V +46392 net/minecraft/block/BlockHugeMushroom (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;Lnet/minecraft/block/Block;)V +46393 net/minecraft/block/BlockBreakable (Lnet/minecraft/block/material/Material;ZLnet/minecraft/block/material/MapColor;)V +46394 net/minecraft/block/BlockFenceGate (Lnet/minecraft/block/BlockPlanks$EnumType;)V +46395 net/minecraft/block/BlockFence (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46396 net/minecraft/block/BlockDirt$DirtType (Ljava/lang/String;IILjava/lang/String;Lnet/minecraft/block/material/MapColor;)V +46397 net/minecraft/block/BlockDirt$DirtType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Lnet/minecraft/block/material/MapColor;)V +46398 net/minecraft/block/BlockDirectional (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46399 net/minecraft/block/Block (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46401 net/minecraft/block/BlockBasePressurePlate (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46402 net/minecraft/block/BlockContainer (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46403 net/minecraft/entity/passive/EntityRabbit$AIAvoidEntity (Lnet/minecraft/entity/passive/EntityRabbit;Ljava/lang/Class;FDD)V +46404 net/minecraft/entity/ai/EntityAIAvoidEntity (Lnet/minecraft/entity/EntityCreature;Ljava/lang/Class;FDD)V +46405 net/minecraft/entity/ai/EntityAIAvoidEntity (Lnet/minecraft/entity/EntityCreature;Ljava/lang/Class;Lcom/google/common/base/Predicate;FDD)V +46406 net/minecraft/entity/EntityLivingBase$1 (Lnet/minecraft/entity/EntityLivingBase;)V +46407 net/minecraft/network/NetworkSystem$7 (Lnet/minecraft/network/NetworkSystem;Lnet/minecraft/network/NetworkManager;Lnet/minecraft/util/ChatComponentText;)V +46408 net/minecraft/network/NetworkSystem$6 (Lnet/minecraft/network/NetworkSystem;Lnet/minecraft/network/NetworkManager;)V +46409 net/minecraft/network/NetworkSystem$5 (Lnet/minecraft/network/NetworkSystem;)V +46411 net/minecraft/network/NetworkManager$6 (Lnet/minecraft/network/NetworkManager;)V +46412 net/minecraft/network/NetworkManager$4 (Lnet/minecraft/network/NetworkManager;Lnet/minecraft/network/EnumConnectionState;Lnet/minecraft/network/EnumConnectionState;Lnet/minecraft/network/Packet;[Lio/netty/util/concurrent/GenericFutureListener;)V +46413 net/minecraft/util/Matrix4f ([F)V +46417 net/minecraft/client/renderer/EntityRenderer$4 (Lnet/minecraft/client/renderer/EntityRenderer;Lnet/minecraft/client/gui/ScaledResolution;)V +46418 net/minecraft/client/renderer/EntityRenderer$3 (Lnet/minecraft/client/renderer/EntityRenderer;II)V +46419 net/minecraft/client/renderer/EntityRenderer$2 (Lnet/minecraft/client/renderer/EntityRenderer;)V +46420 net/minecraft/client/multiplayer/ServerData (Ljava/lang/String;Ljava/lang/String;Z)V +46442 net/minecraft/realms/RealmsBufferBuilder (Lnet/minecraft/client/renderer/WorldRenderer;)V +46443 net/minecraft/client/renderer/block/model/ItemCameraTransforms (Lnet/minecraft/client/renderer/block/model/ItemCameraTransforms;)V +46444 net/minecraft/client/renderer/block/model/ItemCameraTransforms (Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;)V +46445 net/minecraft/client/gui/ScaledResolution (Lnet/minecraft/client/Minecraft;)V +46446 net/minecraft/world/gen/feature/WorldGenTrees (ZILnet/minecraft/block/state/IBlockState;Lnet/minecraft/block/state/IBlockState;Z)V +46447 net/minecraft/world/gen/feature/WorldGenHugeTrees (ZIILnet/minecraft/block/state/IBlockState;Lnet/minecraft/block/state/IBlockState;)V +46448 net/minecraft/world/gen/feature/WorldGenMegaJungle (ZIILnet/minecraft/block/state/IBlockState;Lnet/minecraft/block/state/IBlockState;)V +46449 net/minecraft/world/gen/feature/WorldGenBigMushroom (Lnet/minecraft/block/Block;)V +46450 net/minecraft/world/gen/feature/WorldGenShrub (Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/block/state/IBlockState;)V +46451 net/minecraft/block/state/BlockWorldState (Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;Z)V +46452 net/minecraft/block/BlockBush (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46453 net/minecraft/client/renderer/WorldRenderer$State (Lnet/minecraft/client/renderer/WorldRenderer;[ILnet/minecraft/client/renderer/vertex/VertexFormat;)V +46455 net/minecraft/entity/item/EntityEnderPearl (Lnet/minecraft/world/World;)V +46456 net/minecraft/realms/RealmsVertexFormat (Lnet/minecraft/client/renderer/vertex/VertexFormat;)V +46457 net/minecraft/command/CommandResultStats$1 (Lnet/minecraft/command/CommandResultStats;Lnet/minecraft/command/ICommandSender;)V +46460 net/minecraft/block/state/pattern/BlockPattern$CacheLoader (Lnet/minecraft/world/World;Z)V +46463 net/minecraft/realms/RealmsVertexFormatElement (Lnet/minecraft/client/renderer/vertex/VertexFormatElement;)V +46464 net/minecraft/client/particle/EntityFirework$StarterFX (Lnet/minecraft/world/World;DDDDDDLnet/minecraft/client/particle/EffectRenderer;Lnet/minecraft/nbt/NBTTagCompound;)V +46465 net/minecraft/client/particle/EntityFirework$SparkFX (Lnet/minecraft/world/World;DDDDDDLnet/minecraft/client/particle/EffectRenderer;)V +46466 net/minecraft/client/particle/EntityFirework$OverlayFX (Lnet/minecraft/world/World;DDD)V +46467 net/minecraft/client/Minecraft$2 (Lnet/minecraft/client/Minecraft;)V +46468 net/minecraft/init/Bootstrap$12$1 (Lnet/minecraft/init/Bootstrap$12;Lnet/minecraft/item/ItemStack;)V +46469 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$FitSimpleRoomTopHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46470 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$FitSimpleRoomHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46471 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$ZDoubleRoomFitHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46472 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$YZDoubleRoomFitHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46473 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$YDoubleRoomFitHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46474 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$XYDoubleRoomFitHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46475 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$XDoubleRoomFitHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46476 net/minecraft/client/renderer/GlStateManager$TextureState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46477 net/minecraft/client/renderer/GlStateManager$TexGenState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46478 net/minecraft/client/renderer/GlStateManager$StencilState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46479 net/minecraft/client/renderer/GlStateManager$StencilFunc (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46480 net/minecraft/client/renderer/GlStateManager$PolygonOffsetState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46481 net/minecraft/client/renderer/GlStateManager$FogState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46482 net/minecraft/client/renderer/GlStateManager$DepthState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46483 net/minecraft/client/renderer/GlStateManager$CullState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46484 net/minecraft/client/renderer/GlStateManager$ColorMaterialState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46485 net/minecraft/client/renderer/GlStateManager$ColorMask (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46486 net/minecraft/client/renderer/GlStateManager$ColorLogicState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46487 net/minecraft/client/renderer/GlStateManager$ClearState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46488 net/minecraft/client/renderer/GlStateManager$BlendState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46489 net/minecraft/client/renderer/GlStateManager$AlphaState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46490 net/minecraft/crash/CrashReportCategory$7 (Lnet/minecraft/util/BlockPos;)V +46491 net/minecraft/crash/CrashReportCategory$6 (Lnet/minecraft/block/state/IBlockState;)V +46492 net/minecraft/server/management/UserListOpsEntry (Lcom/mojang/authlib/GameProfile;IZ)V +46493 net/minecraft/command/PlayerSelector$9 (Ljava/util/Map;)V +46494 net/minecraft/command/PlayerSelector$8 (Ljava/lang/String;Z)V +46495 net/minecraft/command/PlayerSelector$7 (I)V +46496 net/minecraft/command/PlayerSelector$6 (II)V +46497 net/minecraft/command/PlayerSelector$4 (Lnet/minecraft/util/BlockPos;)V +46498 net/minecraft/command/PlayerSelector$3 (Lnet/minecraft/util/AxisAlignedBB;)V +46499 net/minecraft/command/PlayerSelector$2 (II)V +46500 net/minecraft/client/renderer/WorldRenderer$1 (Lnet/minecraft/client/renderer/WorldRenderer;[F)V +46501 net/minecraft/network/EnumConnectionState (Ljava/lang/String;IILnet/minecraft/network/EnumConnectionState$1;)V +46502 net/minecraft/block/BlockSilverfish$EnumType (Ljava/lang/String;IILjava/lang/String;Lnet/minecraft/block/BlockSilverfish$1;)V +46503 net/minecraft/block/BlockSilverfish$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Lnet/minecraft/block/BlockSilverfish$1;)V +46504 net/minecraft/client/network/OldServerPinger$1 (Lnet/minecraft/client/network/OldServerPinger;Lnet/minecraft/network/NetworkManager;Lnet/minecraft/client/multiplayer/ServerData;)V +46505 net/minecraft/command/PlayerSelector$12 (II)V +46506 net/minecraft/command/PlayerSelector$11 (Lnet/minecraft/util/BlockPos;IIII)V +46507 net/minecraft/command/PlayerSelector$10 (Ljava/lang/String;Z)V +46508 net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$JunglePyramid$Stones (Lnet/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$1;)V +46509 net/minecraft/client/resources/ResourcePackListEntry$1 (Lnet/minecraft/client/resources/ResourcePackListEntry;)V +46510 net/minecraft/client/Minecraft$18 (Lnet/minecraft/client/Minecraft;)V +46511 net/minecraft/client/Minecraft$17 (Lnet/minecraft/client/Minecraft;)V +46512 net/minecraft/client/Minecraft$11 (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V diff --git a/mappings/data/fields.csv b/mappings/data/fields.csv new file mode 100644 index 0000000..d385c7c --- /dev/null +++ b/mappings/data/fields.csv @@ -0,0 +1,6586 @@ +searge,name,side,desc +field_100013_f,isPotionDurationMax,0,"True if potion effect duration is at maximum, false otherwise." +field_104003_g,isAggressive,2, +field_104024_v,openGLWarningLink,0,Link to the Mojang Support about minimum requirements +field_104025_t,threadLock,0,The Object object utilized as a thread lock when performing non thread-safe operations +field_104057_T,isGamemodeForced,2, +field_110126_a,FOOTPRINT_TEXTURE,0, +field_110127_a,EXPLOSION_TEXTURE,0, +field_110150_bn,lastAttacker,2, +field_110151_bq,absorptionAmount,2, +field_110152_bk,newPosZ,2, +field_110153_bc,lastDamage,2,Damage taken in the last hit. Mobs are resistant to damage less than this for a short time after taking damage. +field_110154_aX,onGroundSpeedFactor,2, +field_110155_d,attributeMap,2, +field_110156_b,sprintingSpeedBoostModifierUUID,2, +field_110157_c,sprintingSpeedBoostModifier,2, +field_110158_av,swingProgressInt,2, +field_110168_bw,leashedToEntity,2, +field_110169_bv,isLeashed,2, +field_110170_bx,leashNBTTag,2, +field_110178_bs,aiBase,2, +field_110179_h,FLEEING_SPEED_MODIFIER_UUID,2, +field_110180_bt,isMovementAITaskSet,2, +field_110181_i,FLEEING_SPEED_MODIFIER,2, +field_110184_bp,MODIFIER_UUID,2, +field_110185_bq,MODIFIER,2, +field_110186_bp,reinforcementChance,2,The attribute which determines the chance that this mob will spawn reinforcements +field_110187_bq,babySpeedBoostUUID,2, +field_110188_br,babySpeedBoostModifier,2, +field_110189_bq,ATTACK_SPEED_BOOST_MODIFIER_UUID,2, +field_110190_br,ATTACK_SPEED_BOOST_MODIFIER,2, +field_110192_bp,attackingSpeedBoostModifierUUID,2, +field_110193_bq,attackingSpeedBoostModifier,2, +field_110268_bz,horseTextures,2, +field_110269_bA,HORSE_TEXTURES_ABBR,2, +field_110270_bw,horseArmorTextures,2, +field_110271_bv,horseJumpStrength,2, +field_110272_by,armorValues,2, +field_110273_bx,HORSE_ARMOR_TEXTURES_ABBR,2, +field_110274_bs,temper,2,"""The higher this value, the more likely the horse is to be tamed next time a player rides it.""" +field_110275_br,horseJumping,2, +field_110276_bu,horseBreedingSelector,2, +field_110277_bt,jumpPower,2, +field_110280_bR,horseTexturesArray,2, +field_110281_bL,rearingAmount,2, +field_110282_bM,prevRearingAmount,2, +field_110283_bJ,headLean,2, +field_110284_bK,prevHeadLean,2, +field_110285_bP,gallopTime,2,Used to determine the sound that the horse should make when it steps +field_110286_bQ,texturePrefix,2, +field_110287_bN,mouthOpenness,2, +field_110288_bO,prevMouthOpenness,2, +field_110289_bD,eatingHaystackCounter,2, +field_110290_bE,openMouthCounter,2, +field_110291_bB,horseMarkingTextures,2, +field_110292_bC,HORSE_MARKING_TEXTURES_ABBR,2, +field_110293_bH,hasReproduced,2, +field_110295_bF,jumpRearingCounter,2, +field_110296_bG,horseChest,2, +field_110320_a,horseJumpPowerCounter,0, +field_110321_bQ,horseJumpPower,0, +field_110323_l,statIcons,0, +field_110324_m,icons,0, +field_110325_k,optionsBackground,0, +field_110328_d,pumpkinBlurTexPath,0, +field_110329_b,vignetteTexPath,0, +field_110330_c,widgetsTexPath,0, +field_110351_G,backgroundTexture,0, +field_110352_y,minecraftTitleTextures,0, +field_110353_x,splashTexts,0, +field_110444_H,locationMojangPng,0, +field_110445_I,macDisplayModes,0, +field_110446_Y,fileAssets,0, +field_110447_Z,launchedVersion,0, +field_110448_aq,mcResourcePackRepository,0, +field_110449_ao,defaultResourcePacks,0, +field_110450_ap,mcDefaultResourcePack,0, +field_110451_am,mcResourceManager,0, +field_110452_an,metadataSerializer_,0, +field_110453_aa,proxy,0, +field_110456_c,serverProxy,2, +field_110463_b,packFormat,0, +field_110464_a,packDescription,0, +field_110465_b,charLefts,0, +field_110466_c,charSpacings,0, +field_110467_a,charWidths,0, +field_110475_d,frameTime,0, +field_110476_b,frameWidth,0, +field_110477_c,frameHeight,0, +field_110478_a,animationFrames,0, +field_110481_b,textureClamp,0, +field_110482_a,textureBlur,0, +field_110498_b,frameTime,0, +field_110499_a,frameIndex,0, +field_110500_b,clazz,0,The class registered +field_110502_a,section,0,The IMetadataSectionSerializer associated with the class registered +field_110506_b,gsonBuilder,0, +field_110507_c,gson,0,"Cached Gson instance. Set to null when more sections are registered, and then re-created from the builder." +field_110508_a,metadataSectionSerializerRegistry,0, +field_110520_f,locationTexturePackIcon,0, +field_110521_d,rePackMetadataSection,0, +field_110522_e,texturePackIcon,0, +field_110523_b,resourcePackFile,0, +field_110524_c,reResourcePack,0, +field_110529_f,mcmetaJsonChecked,0, +field_110530_g,mcmetaJson,0, +field_110531_d,mcmetaInputStream,0, +field_110532_e,srMetadataSerializer,0, +field_110533_b,srResourceLocation,0, +field_110534_c,resourceInputStream,0, +field_110535_a,mapMetadataSections,0, +field_110539_b,frmMetadataSerializer,0, +field_110540_a,resourcePacks,0, +field_110546_b,reloadListeners,0, +field_110547_c,rmMetadataSerializer,0, +field_110548_a,domainResourceManagers,0, +field_110553_a,glTextureId,0, +field_110559_g,textureUploaded,0, +field_110560_d,bufferedImage,0, +field_110561_e,imageThread,0, +field_110562_b,imageUrl,0, +field_110563_c,imageBuffer,0, +field_110566_b,dynamicTextureData,0, +field_110567_b,layeredTextureNames,0, +field_110568_b,textureLocation,0, +field_110574_e,mapRegisteredSprites,0, +field_110575_b,locationBlocksTexture,0, +field_110582_d,theResourceManager,0, +field_110583_b,listTickables,0, +field_110584_c,mapTextureCounters,0, +field_110585_a,mapTextureObjects,0, +field_110597_b,resourcePackFile,0, +field_110598_a,resourceLog,0, +field_110600_d,resourcePackZipFile,0, +field_110601_c,entryNameSplitter,0, +field_110608_a,defaultResourceDomains,0, +field_110617_f,repositoryEntries,0, +field_110618_d,dirResourcepacks,0, +field_110619_e,repositoryEntriesAll,0, +field_110620_b,rprDefaultResourcePack,0, +field_110621_c,rprMetadataSerializer,0, +field_110622_a,resourcePackFilter,0, +field_110625_b,resourcePath,2, +field_110626_a,resourceDomain,2, +field_110684_D,frontRightLeg,0, +field_110685_E,frontRightShin,0, +field_110686_F,frontRightHoof,0, +field_110687_G,muleLeftChest,0,The left chest box on the mule model. +field_110688_A,frontLeftLeg,0, +field_110689_B,frontLeftShin,0, +field_110690_C,frontLeftHoof,0, +field_110691_L,horseLeftSaddleRope,0, +field_110692_M,horseLeftSaddleMetal,0, +field_110693_N,horseRightSaddleRope,0, +field_110694_O,horseRightSaddleMetal,0, +field_110695_H,muleRightChest,0,The right chest box on the mule model. +field_110696_I,horseSaddleBottom,0, +field_110697_J,horseSaddleFront,0, +field_110698_K,horseSaddleBack,0, +field_110699_Q,horseRightFaceMetal,0,The right metal connected to the horse's face ropes. +field_110700_P,horseLeftFaceMetal,0,The left metal connected to the horse's face ropes. +field_110701_S,horseRightRein,0, +field_110702_R,horseLeftRein,0, +field_110703_f,muleLeftEar,0,The left ear box for the mule model. +field_110704_g,muleRightEar,0,The right ear box for the mule model. +field_110705_d,horseLeftEar,0, +field_110706_e,horseRightEar,0, +field_110709_a,head,0, +field_110710_n,tailTip,0, +field_110711_o,backLeftLeg,0, +field_110712_l,tailBase,0, +field_110713_m,tailMiddle,0, +field_110714_j,mane,0, +field_110715_k,body,0, +field_110716_h,neck,0, +field_110717_i,horseFaceRopes,0,The box for the horse's ropes on its face. +field_110718_w,backLeftHoof,0, +field_110719_v,backLeftShin,0, +field_110720_z,backRightHoof,0, +field_110721_y,backRightShin,0, +field_110722_x,backRightLeg,0, +field_110737_b,particleTextures,0, +field_110778_a,shadowTextures,0, +field_110780_a,arrowTextures,0, +field_110782_f,boatTextures,0, +field_110785_a,experienceOrbTextures,0, +field_110787_a,enderCrystalTextures,0, +field_110789_a,mapBackgroundTextures,0, +field_110792_a,FISH_PARTICLES,0, +field_110798_h,RES_ITEM_GLINT,0, +field_110801_f,leashKnotModel,0, +field_110802_a,leashKnotTextures,0, +field_110804_g,minecartTextures,0, +field_110807_a,KRISTOFFER_PAINTING_TEXTURE,0, +field_110810_f,witherTextures,0, +field_110811_a,invulnerableWitherTextures,0, +field_110830_f,creeperTextures,0, +field_110833_a,cowTextures,0, +field_110835_a,batTextures,0, +field_110837_a,blazeTextures,0, +field_110839_f,endermanTextures,0, +field_110842_f,enderDragonExplodingTextures,0, +field_110843_g,enderDragonCrystalBeamTextures,0, +field_110844_k,enderDragonTextures,0, +field_110850_f,whiteHorseTextures,0, +field_110851_g,muleTextures,0, +field_110853_l,skeletonHorseTextures,0, +field_110854_k,zombieHorseTextures,0, +field_110855_h,donkeyTextures,0, +field_110861_l,witherSkeletonTextures,0, +field_110862_k,skeletonTextures,0, +field_110864_q,zombieVillagerTextures,0, +field_110865_p,zombieTextures,0, +field_110868_f,ghastShootingTextures,0, +field_110869_a,ghastTextures,0, +field_110871_a,zombieTextures,0, +field_110873_a,magmaCubeTextures,0, +field_110875_f,ocelotTextures,0, +field_110876_g,redOcelotTextures,0, +field_110877_a,blackOcelotTextures,0, +field_110878_h,siameseOcelotTextures,0, +field_110880_a,mooshroomTextures,0, +field_110882_a,silverfishTextures,0, +field_110884_f,shearedSheepTextures,0, +field_110887_f,pigTextures,0, +field_110890_f,spiderTextures,0, +field_110893_a,caveSpiderTextures,0, +field_110895_a,snowManTextures,0, +field_110897_a,slimeTextures,0, +field_110899_a,ironGolemTextures,0, +field_110901_a,squidTextures,0, +field_110903_f,villagerTextures,0, +field_110904_g,farmerVillagerTextures,0, +field_110905_l,smithVillagerTextures,0, +field_110906_m,butcherVillagerTextures,0, +field_110907_k,priestVillagerTextures,0, +field_110908_h,librarianVillagerTextures,0, +field_110910_a,witchTextures,0, +field_110912_f,witherTextures,0, +field_110913_a,invulnerableWitherTextures,0, +field_110915_f,tamedWolfTextures,0, +field_110916_g,anrgyWolfTextures,0, +field_110917_a,wolfTextures,0, +field_110920_a,chickenTextures,0, +field_110922_T,locationLightMap,0, +field_110923_r,locationSnowPng,0, +field_110924_q,locationRainPng,0, +field_110925_j,locationCloudsPng,0, +field_110926_k,locationEndSkyPng,0, +field_110927_h,locationMoonPhasesPng,0, +field_110928_i,locationSunPng,0, +field_110929_d,RES_UNDERWATER_OVERLAY,0, +field_110931_c,RES_MAP_BACKGROUND,0, +field_110973_g,frameCounter,0, +field_110974_d,originY,0, +field_110975_c,originX,0, +field_110976_a,framesTextureData,0, +field_110977_n,minV,0, +field_110978_o,maxV,0, +field_110979_l,minU,0, +field_110980_m,maxU,0, +field_110982_k,animationMetadata,0, +field_110983_h,tickCounter,0, +field_110984_i,iconName,0, +field_110999_b,missingTextureData,0, +field_111000_c,dataBuffer,0, +field_111001_a,missingTexture,0, +field_111053_a,numericVariablePattern,2,"Pattern that matches numeric variable placeholders in a resource string, such as ""%d"", ""%3$d"", ""%.2f""" +field_111105_a,potionEffectId,2, +field_111106_b,horseVariant,2, +field_111107_a,horseType,2, +field_111113_b,defaultValue,2, +field_111114_c,shouldWatch,2, +field_111115_a,unlocalizedName,2, +field_111118_b,maximumValue,2, +field_111119_c,description,2, +field_111120_a,minimumValue,2, +field_111132_f,baseValue,2, +field_111133_g,needsUpdate,2, +field_111134_d,mapByName,2, +field_111135_e,mapByUUID,2, +field_111136_b,genericAttribute,2,The Attribute this is an instance of +field_111137_c,mapByOperation,2, +field_111138_a,attributeMap,2,The BaseAttributeMap this attributeInstance can be found in +field_111139_h,cachedValue,2, +field_111153_b,attributesByName,2, +field_111154_a,attributes,2, +field_111162_d,attributeInstanceSet,2, +field_111163_c,descriptionToAttributeInstanceMap,2, +field_111170_d,id,2, +field_111171_e,isSaved,2,"If false, this modifier is not saved in NBT. Used for ""natural"" modifiers like speed boost from sprinting" +field_111172_b,operation,2, +field_111173_c,name,2, +field_111174_a,amount,2, +field_111176_d,targetY,2, +field_111177_e,targetZ,2, +field_111178_b,speed,2, +field_111179_c,targetX,2, +field_111180_a,horseHost,2, +field_111188_I,attributeModifierMap,2,Contains a Map of the AttributeModifiers registered by potions +field_111192_g,previousTotalWorldTime,2,time what is using to check if InhabitedTime should be calculated +field_111193_e,playerInstanceList,2,This field is using when chunk should be processed (every 8000 ticks) +field_111198_g,previousWorldTime,2,time what is using when chunk InhabitedTime is being calculated +field_111203_a,moonPhaseFactors,2, +field_111204_q,inhabitedTime,2,the cumulative number of ticks players have been in this chunk +field_111210_e,itemModifierUUID,2, +field_111230_s,enchantmentTypes,2, +field_111242_f,theHorse,2, +field_111243_a,horseInventory,2, +field_111263_d,movementSpeed,2, +field_111264_e,attackDamage,2, +field_111265_b,followRange,2, +field_111266_c,knockbackResistance,2, +field_111267_a,maxHealth,2, +field_111273_g,locationFontTexture,0, +field_111274_c,unicodePageLocations,0, +field_111284_a,DECIMALFORMAT,2, +field_120014_b,ticks,1, +field_120015_a,server,1, +field_120021_b,server,1, +field_120037_e,server,1, +field_130068_bO,combinedHealth,2,"the total health of the player, includes actual health and absorption health. Updated every tick." +field_130070_K,fileResourcepacks,0, +field_130074_a,joinerResourcePacks,0, +field_130078_a,LOC_GRASS_PNG,0, +field_130079_a,LOC_FOLIAGE_PNG,0, +field_130222_e,rotated,0, +field_130223_c,width,0, +field_130224_d,height,0, +field_135017_as,mcLanguageManager,0, +field_135019_a,languages,0, +field_135029_d,unicode,0, +field_135030_b,splitter,0,"Splits on ""=""" +field_135031_c,pattern,0, +field_135032_a,properties,0, +field_135036_d,bidirectional,0, +field_135037_b,region,0, +field_135038_c,name,0, +field_135039_a,languageCode,0, +field_135046_d,languageMap,0, +field_135047_b,theMetadataSerializer,0, +field_135048_c,currentLanguage,0, +field_135049_a,currentLocale,0, +field_135054_a,i18nLocale,0, +field_135057_d,setResourceDomains,0, +field_135065_b,equalSignSplitter,2,"A Splitter that splits a string on the first ""="". For example, ""a=b=c"" would split into [""a"", ""b=c""]." +field_142016_bo,lastAttackerTime,2,Holds the value of ticksExisted when setLastAttacker was last called. +field_142022_ce,clientBrand,0, +field_142025_a,isRunningOnMac,0, +field_142046_b,isVillager,2, +field_142048_a,isChild,2, +field_142052_b,revengeTimerOld,2,Store the previous revengeTimer value +field_143005_bX,playerLastActiveTime,2, +field_143008_E,maxPlayerIdleMinutes,2, +field_143014_b,isDesertVillage,2, +field_143023_d,chunkPosZ,2, +field_143024_c,chunkPosX,2, +field_143029_e,structureData,2, +field_143037_d,componentClassToNameMap,2, +field_143038_b,startClassToNameMap,2, +field_143039_c,componentNameToClassMap,2, +field_143040_a,startNameToClassMap,2, +field_143044_a,tagCompound,2, +field_145761_f,customName,2,"The custom name of the command block. (defaults to ""@"")" +field_145762_d,lastOutput,2,The previously run command. +field_145763_e,commandStored,2,The command stored in the command block. +field_145764_b,successCount,2,The number of successful commands run. (used for redstone output) +field_145765_c,trackOutput,2, +field_145766_a,timestampFormat,2,The formatting for the timestamp on commands run. +field_145783_c,entityId,2, +field_145786_d,yTile,2, +field_145787_e,zTile,2, +field_145788_c,xTile,2, +field_145789_f,zTile,2, +field_145790_g,inTile,2, +field_145791_d,xTile,2, +field_145792_e,yTile,2, +field_145793_f,yTile,2, +field_145794_g,zTile,2, +field_145795_e,xTile,2, +field_145796_h,inTile,2, +field_145801_f,thrower,2, +field_145802_g,owner,2, +field_145803_d,logger,2, +field_145804_b,delayBeforeCanPickup,2, +field_145808_f,canSetAsBlock,2, +field_145809_g,hurtEntities,2, +field_145810_d,tileEntityData,2, +field_145812_b,fallTime,2, +field_145813_c,shouldDropItem,2, +field_145815_h,fallHurtMax,2, +field_145816_i,fallHurtAmount,2, +field_145823_b,activatorRailCooldown,2,Cooldown before command block logic runs again in ticks +field_145824_a,commandBlockLogic,2, +field_145846_f,tileEntityInvalid,2, +field_145847_g,blockMetadata,2, +field_145850_b,worldObj,2,the instance of the world the tile entity is in. +field_145852_a,logger,2, +field_145853_j,classToNameMap,2,A HashMap storing the classes and mapping to the string names (reverse of nameToClassMap). +field_145854_h,blockType,2,the Block type that this TileEntity is contained within +field_145855_i,nameToClassMap,2,A HashMap storing string names of classes mapping to the actual java.lang.Class type. +field_145858_a,record,2, +field_145870_n,lastProgress,2,the progress in (de)extending +field_145872_l,shouldHeadBeRendered,2, +field_145873_m,progress,2, +field_145875_k,extending,2,if this piston is extending or not +field_145879_a,note,2,Note to play +field_145880_i,previousRedstoneState,2,stores the latest redstone state +field_145882_a,spawnerLogic,2, +field_145900_a,inventory,2, +field_145901_j,transferCooldown,2, +field_145902_i,customName,2, +field_145908_a,skullType,2, +field_145910_i,skullRotation,2, +field_145915_a,signText,2, +field_145916_j,isEditable,2, +field_145917_k,player,2, +field_145918_i,lineBeingEdited,2,"The index of the line currently being edited. Only used on client side, but defined on both. Note this is only really used when the > < are going to be visible." +field_145922_s,customName,2, +field_145923_r,rand,2, +field_145925_p,bookRotationPrev,2, +field_145926_a,tickCount,2, +field_145927_n,bookSpreadPrev,2, +field_145928_o,bookRotation,2, +field_145930_m,bookSpread,2, +field_145931_j,pageFlipPrev,2, +field_145933_i,pageFlip,2, +field_145941_a,inputSlots,2,an array of the input slot indices +field_145942_n,customName,2, +field_145943_l,filledSlots,2,an integer with each bit specifying whether that slot of the stand contains a potion +field_145944_m,ingredientID,2,used to check if the current ingredient has been removed from the brewing stand during brewing +field_145945_j,brewingItemStacks,2,The ItemStacks currently placed in the slots of the brewing stand +field_145946_k,brewTime,2, +field_145947_i,outputSlots,2,an array of the output slot indices +field_145956_a,furnaceBurnTime,2,The number of ticks that the furnace will keep burning +field_145957_n,furnaceItemStacks,2,The ItemStacks that hold the items currently being used in the furnace +field_145958_o,furnaceCustomName,2, +field_145959_l,slotsBottom,2, +field_145960_m,slotsSides,2, +field_145962_k,slotsTop,2, +field_145963_i,currentItemBurnTime,2,The number of ticks that a fresh copy of the currently-burning item would keep the furnace burning for +field_145967_a,flowerPotItem,2, +field_145968_i,flowerPotData,2, +field_145972_a,lidAngle,2, +field_145973_j,numPlayersUsing,2, +field_145974_k,ticksSinceSync,2, +field_145975_i,prevLidAngle,2,The angle of the ender chest lid last tick +field_145981_s,customName,2, +field_145982_r,cachedChestType,2, +field_145983_q,ticksSinceSync,2,Server sync counter (once per 20 ticks) +field_145984_a,adjacentChestChecked,2,Determines if the check for adjacent chests has taken place. +field_145985_p,chestContents,2, +field_145986_n,prevLidAngle,2,The angle of the lid last tick +field_145987_o,numPlayersUsing,2,The number of players currently using this chest +field_145988_l,adjacentChestZPos,2,Contains the chest tile located adjacent to this one (if any) +field_145989_m,lidAngle,2,The current angle of the lid (between 0 and 1) +field_145990_j,adjacentChestXPos,2,Contains the chest tile located adjacent to this one (if any) +field_145991_k,adjacentChestXNeg,2,Contains the chest tile located adjacent to this one (if any) +field_145992_i,adjacentChestZNeg,2,Contains the chest tile located adjacent to this one (if any) +field_145994_a,commandBlockLogic,2, +field_145997_a,outputSignal,2, +field_146008_p,customName,2, +field_146009_a,effectsList,2,List of effects that Beacon can apply +field_146010_n,secondaryEffect,2,Secondary potion effect given by this beacon. +field_146011_o,payment,2,Item given to this beacon as payment. +field_146012_l,levels,2,Level of this beacon's pyramid. +field_146013_m,primaryEffect,2,Primary potion effect given by this beacon. +field_146015_k,isComplete,2, +field_146016_i,beamRenderCounter,0, +field_146020_a,customName,2, +field_146022_i,stacks,2, +field_146032_b,partName,2, +field_146036_f,FISH,2, +field_146037_g,xTile,2, +field_146038_az,ticksCatchableDelay,2, +field_146039_d,JUNK,2, +field_146040_ay,ticksCaughtDelay,2, +field_146041_e,TREASURE,2, +field_146042_b,angler,2, +field_146043_c,caughtEntity,2, +field_146044_a,shake,2, +field_146045_ax,ticksCatchable,2, +field_146046_j,inTile,2, +field_146047_aw,ticksInAir,2, +field_146048_h,yTile,2, +field_146049_av,ticksInGround,2, +field_146050_i,zTile,2, +field_146051_au,inGround,2, +field_146052_aI,clientMotionY,0, +field_146053_aJ,clientMotionZ,0, +field_146054_aA,fishApproachAngle,2, +field_146055_aB,fishPosRotationIncrements,2, +field_146056_aC,fishX,2, +field_146057_aD,fishY,2, +field_146058_aE,fishZ,2, +field_146059_aF,fishYaw,2, +field_146060_aG,fishPitch,2, +field_146061_aH,clientMotionX,0, +field_146073_bw,zombieHeight,2,The height of the the entity. +field_146074_bv,zombieWidth,2,The width of the entity +field_146075_bs,breakDoor,2, +field_146076_bu,isBreakDoorsTaskSet,2, +field_146084_br,playerInLove,2, +field_146087_bs,entityAIEatGrass,2, +field_146106_i,gameProfile,2,The player's unique game profile +field_146108_bO,statWriter,0, +field_146109_a,mc,0, +field_146120_f,width,0,Button width in pixels +field_146121_g,height,0,Button height in pixels +field_146122_a,buttonTextures,0, +field_146123_n,hovered,0, +field_146124_l,enabled,0,"True if this control is enabled, false to disable." +field_146125_m,visible,0,Hides the button completely if false. +field_146126_j,displayString,0,The string displayed on this control. +field_146127_k,id,0, +field_146128_h,xPosition,0,The x position of this control. +field_146129_i,yPosition,0,The y position of this control. +field_146133_q,options,0, +field_146134_p,sliderValue,0, +field_146135_o,dragging,0, +field_146137_o,enumOptions,0, +field_146164_r,fontRenderer,0, +field_146170_l,centered,0, +field_146171_m,labelBgEnabled,0, +field_146172_j,visible,0, +field_146209_f,xPosition,0, +field_146210_g,yPosition,0, +field_146211_a,fontRendererInstance,0, +field_146212_n,canLoseFocus,0,if true the textbox can lose focus by clicking elsewhere on the screen +field_146213_o,isFocused,0,"If this value is true along with isEnabled, keyTyped will process the keys." +field_146214_l,cursorCounter,0, +field_146215_m,enableBackgroundDrawing,0, +field_146216_j,text,0,Has the current text being edited on the textbox. +field_146217_k,maxStringLength,0, +field_146218_h,width,0,The width of this text field. +field_146219_i,height,0, +field_146220_v,visible,0,True if this textbox is visible +field_146221_u,disabledColor,0, +field_146222_t,enabledColor,0, +field_146223_s,selectionEnd,0,"other selection position, maybe the same as the cursor" +field_146224_r,cursorPosition,0, +field_146225_q,lineScrollOffset,0,The current character index that should be used as start of the rendered text. +field_146226_p,isEnabled,0,"If this value is true along with isFocused, keyTyped will process the keys." +field_146247_f,mc,0, +field_146248_g,sentMessages,0,A list of messages previously sent through the chat GUI +field_146249_a,logger,0, +field_146250_j,scrollPos,0, +field_146251_k,isScrolled,0, +field_146252_h,chatLines,0,Chat lines to be displayed in the chat box +field_146253_i,drawnChatLines,0,List of the ChatLines currently drawn +field_146259_f,mc,0, +field_146260_g,width,0, +field_146261_a,achievementBg,0, +field_146262_n,permanentNotification,0, +field_146263_l,notificationTime,0, +field_146264_m,renderItem,0, +field_146265_j,achievementDescription,0, +field_146266_k,theAchievement,0, +field_146267_h,height,0, +field_146268_i,achievementTitle,0, +field_146287_f,eventButton,0, +field_146288_g,lastMouseEvent,0, +field_146289_q,fontRendererObj,0,The FontRenderer used by GuiScreen +field_146290_a,selectedButton,0,The button that was just pressed. +field_146291_p,allowUserInput,0, +field_146292_n,buttonList,0,A list of all the buttons in this container. +field_146293_o,labelList,0,A list of all the labels in this container. +field_146294_l,width,0,The width of the screen object. +field_146295_m,height,0,The height of the screen object. +field_146296_j,itemRender,0,"Holds a instance of RenderItem, used to draw the achievement icons on screen (is based on ItemStack)" +field_146297_k,mc,0,Reference to the Minecraft object. +field_146298_h,touchValue,0,Tracks the number of fingers currently on the screen. Prevents subsequent fingers registering as clicks. +field_146304_f,message,0, +field_146305_g,multilineMessage,0, +field_146306_a,reason,0, +field_146307_h,parentScreen,0, +field_146308_f,serverIPField,0, +field_146309_g,serverNameField,0, +field_146310_a,parentScreen,0, +field_146311_h,serverData,0, +field_146320_D,btnMapType,0, +field_146321_E,btnAllowCommands,0, +field_146322_F,btnCustomizeType,0, +field_146323_G,gameModeDesc1,0, +field_146324_A,btnMoreOptions,0, +field_146325_B,btnMapFeatures,0, +field_146326_C,btnBonusItems,0, +field_146327_L,disallowedFilenames,0,These filenames are known to be restricted on one or more OS's. +field_146328_H,gameModeDesc2,0, +field_146329_I,worldSeed,0, +field_146330_J,worldName,0, +field_146331_K,selectedIndex,0, +field_146332_f,parentScreen,0, +field_146333_g,worldNameField,0, +field_146334_a,chunkProviderSettingsJson,0, +field_146335_h,worldSeedField,0, +field_146336_i,saveDirName,0, +field_146337_w,hardCoreMode,0,"Set to true when ""hardcore"" is the currently-selected gamemode" +field_146338_v,bonusChestEnabled,0, +field_146339_u,allowCheatsWasSetByUser,0,"User explicitly clicked ""Allow Cheats"" at some point\nPrevents value changes due to changing game mode" +field_146340_t,allowCheats,0,If cheats are allowed +field_146341_s,generateStructuresEnabled,0, +field_146342_r,gameMode,0, +field_146343_z,btnGameMode,0, +field_146344_y,inMoreWorldOptionsDisplay,0, +field_146345_x,alreadyGenerated,0, +field_146347_a,enableButtonsTimer,0,The integer value containing the number of ticks that have passed since the player's death +field_146349_a,logger,0, +field_146351_f,messageLine1,0, +field_146352_g,confirmButtonText,0,The text shown for the first button in GuiYesNo +field_146353_s,ticksUntilEnable,0, +field_146354_r,messageLine2,0, +field_146355_a,parentScreen,0,A reference to the screen object that created this. Used for navigating between screens. +field_146356_h,cancelButtonText,0,The text shown for the second button in GuiYesNo +field_146357_i,parentButtonClickedId,0, +field_146360_u,showSecurityWarning,0, +field_146361_t,linkText,0, +field_146362_s,copyLinkButtonText,0,Label for the Copy to Clipboard button. +field_146363_r,openLinkWarning,0,Text to warn players from opening unsafe links. +field_146370_f,logger,0, +field_146371_g,networkManager,0, +field_146372_a,CONNECTION_ID,0, +field_146373_h,cancel,0, +field_146374_i,previousGuiScreen,0, +field_146385_f,createWorldGui,0, +field_146387_g,theFlatGeneratorInfo,0, +field_146390_s,createFlatWorldListSlotGui,0, +field_146393_h,flatWorldTitle,0,The title given to the flat world currently in creation +field_146396_g,parentScreen,0, +field_146400_h,game_settings,0, +field_146408_f,logger,0, +field_146409_v,defaultInputFieldText,0,is the text that appears when you press the chat key and the input box appears pre-filled +field_146410_g,historyBuffer,0, +field_146412_t,foundPlayerNames,0, +field_146413_s,autocompleteIndex,0, +field_146414_r,waitingOnAutocomplete,0, +field_146415_a,inputField,0,Chat entry field +field_146416_h,sentHistoryCursor,0,"keeps position of which chat message you will select when you press up, (does not increase for duplicated messages sent immediately after each other)" +field_146417_i,playerNamesFound,0, +field_146431_f,FLAT_WORLD_PRESETS,0, +field_146432_g,parentScreen,0,The parent GUI +field_146438_h,presetsTitle,0, +field_146439_i,presetsShare,0, +field_146443_h,game_settings_1,0,Reference to the GameSettings object. +field_146450_f,list,0,The List GuiSlot object reference. +field_146451_g,game_settings_3,0,Reference to the GameSettings object. +field_146452_r,confirmSettingsBtn,0,The button to confirm the current settings. +field_146453_a,parentScreen,0,The parent Gui screen +field_146454_h,languageManager,0,Reference to the LanguageManager object. +field_146455_i,forceUnicodeFontBtn,0,A button which allows the user to determine if the Unicode font should be forced. +field_146465_D,buttonSign,0,The GuiButton to sign this book. +field_146466_f,bookGuiTextures,0, +field_146467_E,buttonFinalize,0, +field_146468_g,editingPlayer,0,The player editing the book +field_146469_F,buttonCancel,0, +field_146470_A,buttonNextPage,0, +field_146471_B,buttonPreviousPage,0, +field_146472_C,buttonDone,0, +field_146473_a,logger,0, +field_146474_h,bookObj,0, +field_146475_i,bookIsUnsigned,0,Whether the book is signed or can still be edited +field_146476_w,bookTotalPages,0, +field_146477_v,bookImageHeight,0, +field_146478_u,bookImageWidth,0, +field_146479_t,updateCount,0,Update ticks since the gui was opened +field_146480_s,bookGettingSigned,0,Determines if the signing screen is open +field_146481_r,bookIsModified,0,Whether the book's title or contents has been modified since being opened +field_146482_z,bookTitle,0, +field_146483_y,bookPages,0, +field_146484_x,currPage,0, +field_146485_f,commandTextField,0,Text field containing the command block's command. +field_146486_g,previousOutputTextField,0, +field_146487_r,cancelBtn,0, +field_146489_h,localCommandBlock,0,Command block being edited. +field_146490_i,doneBtn,0,"""Done"" button for the GUI." +field_146491_f,buttonId,0,The ID of the button that has been pressed. +field_146492_g,optionsArr,0, +field_146493_s,buttonReset,0, +field_146494_r,keyBindingList,0, +field_146495_a,screenTitle,0, +field_146496_h,parentScreen,0,A reference to the screen object that created this. Used for navigating between screens. +field_146497_i,options,0,Reference to the GameSettings object. +field_146498_f,parentGuiScreen,0, +field_146499_g,guiGameSettings,0, +field_146500_a,screenTitle,0, +field_146501_h,optionsRowList,0, +field_146502_i,videoOptions,0,An array of all of GameSettings.Options's video options. +field_146506_g,game_settings_4,0,Reference to the GameSettings object. +field_146510_b_,lanSearchStates,0, +field_146542_f,screenTitle,0, +field_146543_v,doesGuiPauseGame,0,"When true, the game will be paused when the gui is shown" +field_146545_u,displaySlot,0, +field_146547_s,mobStats,0, +field_146548_r,blockStats,0, +field_146549_a,parentScreen,0, +field_146550_h,generalStats,0, +field_146551_i,itemStats,0, +field_146556_E,statFileWriter,0, +field_146558_F,loadingAchievements,0, +field_146561_C,ACHIEVEMENT_BACKGROUND,0, +field_146562_a,parentScreen,0, +field_146576_f,MINECRAFT_LOGO,0, +field_146577_g,VIGNETTE_TEXTURE,0, +field_146580_a,logger,0, +field_146584_g,saveName,0, +field_146585_a,parentScreen,0, +field_146587_f,scaledResolution,0, +field_146588_g,framebuffer,0, +field_146590_g,progress,0, +field_146592_h,doneWorking,0, +field_146593_f,progress,0, +field_146594_a,netHandlerPlayClient,0, +field_146603_f,game_settings_2,0,Reference to the GameSettings object. +field_146628_f,screenTitle,0, +field_146629_g,logger,0, +field_146630_A,renameButton,0, +field_146631_B,recreateButton,0, +field_146632_a,parentScreen,0, +field_146638_t,availableWorlds,0, +field_146640_r,selectedIndex,0,The list index of the currently-selected world +field_146641_z,selectButton,0, +field_146642_y,deleteButton,0, +field_146643_x,confirmingDelete,0, +field_146797_f,oldServerPinger,0, +field_146798_g,parentScreen,0, +field_146799_A,lanServerList,0, +field_146800_B,lanServerDetector,0, +field_146801_C,initialized,0, +field_146802_a,logger,0, +field_146803_h,serverListSelector,0, +field_146804_i,savedServerList,0, +field_146805_w,editingServer,0, +field_146806_v,addingServer,0, +field_146807_u,deletingServer,0, +field_146808_t,btnDeleteServer,0, +field_146809_s,btnSelectServer,0, +field_146810_r,btnEditServer,0, +field_146811_z,selectedServer,0, +field_146812_y,hoveringText,0,The text to be displayed when the player's cursor hovers over a server listing. +field_146813_x,directConnect,0, +field_146848_f,tileSign,0,Reference to the sign object. +field_146849_g,updateCounter,0,Counts the number of screen updates. +field_146851_h,editLine,0,The index of the line that is being edited. +field_146852_i,doneBtn,0,"""Done"" button for the GUI." +field_146965_f,parentScreen,0, +field_146966_g,availableResourcePacks,0,List of available resource packs +field_146967_r,selectedResourcePacksList,0,List component that contains the selected resource packs +field_146968_a,logger,0, +field_146969_h,selectedResourcePacks,0,List of selected resource packs +field_146970_i,availableResourcePacksList,0,List component that contains the available resource packs +field_146972_A,openGLWarning2,0,OpenGL graphics card warning. +field_146974_g,logger,0, +field_146985_D,currentDragTargetSlot,0, +field_146986_E,dragItemDropDelay,0, +field_146987_F,dragSplittingLimit,0, +field_146988_G,dragSplittingButton,0, +field_146989_A,returningStackDestSlot,0, +field_146990_B,returningStackTime,0, +field_146991_C,returningStack,0,Used when touchscreen is enabled +field_146992_L,lastClickButton,0, +field_146993_M,doubleClick,0, +field_146994_N,shiftClickedSlot,0, +field_146995_H,ignoreMouseUp,0, +field_146996_I,dragSplittingRemnant,0, +field_146997_J,lastClickTime,0, +field_146998_K,lastClickSlot,0, +field_146999_f,xSize,0,The X size of the inventory window in pixels. +field_147000_g,ySize,0,The Y size of the inventory window in pixels. +field_147001_a,inventoryBackground,0,The location of the inventory background texture +field_147002_h,inventorySlots,0,A list of the players inventory slots +field_147003_i,guiLeft,0,Starting X position for the Gui. Inconsistent use for Gui backgrounds. +field_147004_w,isRightMouseClick,0,Used when touchscreen is enabled. +field_147005_v,clickedSlot,0,Used when touchscreen is enabled. +field_147006_u,theSlot,0,holds the slot currently hovered +field_147007_t,dragSplitting,0, +field_147008_s,dragSplittingSlots,0, +field_147009_r,guiTop,0,Starting Y position for the Gui. Inconsistent use for Gui backgrounds. +field_147010_z,touchUpY,0, +field_147011_y,touchUpX,0, +field_147012_x,draggedStack,0,Used when touchscreen is enabled +field_147013_v,tileBrewingStand,0, +field_147014_u,brewingStandGuiTextures,0, +field_147015_w,lowerChestInventory,0, +field_147016_v,upperChestInventory,0, +field_147017_u,CHEST_GUI_TEXTURE,0,The ResourceLocation containing the chest GUI texture. +field_147018_x,inventoryRows,0,"window height is calculated with these values; the more rows, the heigher" +field_147019_u,craftingTableGuiTextures,0, +field_147024_w,tileBeacon,0, +field_147025_v,beaconGuiTextures,0, +field_147026_u,logger,0, +field_147027_y,buttonsNotDrawn,0, +field_147028_x,beaconConfirmButton,0, +field_147029_w,horseInventory,0,The horse inventory bound to this GUI. +field_147030_v,playerInventory,0,The player inventory bound to this GUI. +field_147031_u,horseGuiTextures,0, +field_147032_z,mousePosY,0,The mouse y-position recorded during the last renderered frame. +field_147033_y,mousePosx,0,The mouse x-position recorded during the last rendered frame. +field_147034_x,horseEntity,0,The EntityHorse whose inventory is currently being accessed. +field_147037_w,merchant,0,The current IMerchant instance in use for this specific merchant. +field_147038_v,MERCHANT_GUI_TEXTURE,0,The GUI texture for the villager merchant GUI. +field_147039_u,logger,0, +field_147040_A,chatComponent,0,The chat component utilized by this GuiMerchant instance. +field_147041_z,selectedMerchantRecipe,0,The integer value corresponding to the currently selected merchant recipe. +field_147042_y,previousButton,0,Returns to the previous Merchant recipe if one is applicable. +field_147043_x,nextButton,0,The button which proceeds to the next available merchant recipe. +field_147045_u,hasActivePotionEffects,0,True if there is some potion effect to display +field_147047_v,oldMouseY,0,The old y position of the mouse pointer +field_147048_u,oldMouseX,0,The old x position of the mouse pointer +field_147058_w,selectedTabIndex,0,Currently selected creative inventory tab index. +field_147061_u,creativeInventoryTabs,0,The location of the creative inventory tabs texture +field_147062_A,searchField,0, +field_147065_z,wasClicking,0,True if the left mouse button was held down last time drawScreen was called. +field_147066_y,isScrolling,0,True if the scrollbar is being dragged +field_147067_x,currentScroll,0,"Amount scrolled in Creative mode inventory (0 = top, 1 = bottom)" +field_147070_D,ENCHANTMENT_TABLE_BOOK_TEXTURE,0,The ResourceLocation containing the texture for the Book rendered above the enchantment table +field_147072_E,MODEL_BOOK,0,The ModelBook instance used for rendering the book on the Enchantment table +field_147074_F,random,0,A Random instance for use with the enchantment gui +field_147075_G,container,0, +field_147078_C,ENCHANTMENT_TABLE_GUI_TEXTURE,0,The ResourceLocation containing the Enchantment GUI texture location +field_147083_w,hopperInventory,0,The hopper inventory bound to this GUI instance +field_147084_v,playerInventory,0,The player inventory currently bound to this GUI instance +field_147085_u,HOPPER_GUI_TEXTURE,0,The ResourceLocation containing the gui texture for the hopper +field_147086_v,tileFurnace,0, +field_147087_u,furnaceGuiTextures,0, +field_147088_v,dispenserGuiTextures,0, +field_147091_w,nameField,0, +field_147092_v,anvil,0, +field_147093_u,anvilResource,0, +field_147094_x,playerInventory,0, +field_147101_bU,respawnInvulnerabilityTicks,2, +field_147102_bM,logger,2, +field_147103_bO,statsFile,2, +field_147123_G,logger,0, +field_147124_at,framebufferMc,0, +field_147125_j,pointedEntity,0, +field_147126_aw,mcMusicTicker,0, +field_147127_av,mcSoundHandler,0, +field_147128_au,textureMapBlocks,0, +field_147129_ai,jvm64bit,0, +field_147141_M,resourcePackUrl,2,The texture pack for the server +field_147142_T,nanoTimeSinceStatusRefresh,2, +field_147143_S,sessionService,2, +field_147144_o,networkSystem,2, +field_147145_h,logger,2, +field_147146_q,random,2, +field_147147_p,statusResponse,2, +field_147148_h,logger,0, +field_147150_a,logger,2, +field_147166_l,categoryName,0, +field_147167_m,categoryId,0, +field_147168_j,NAME_CATEGORY_MAP,0, +field_147169_k,ID_CATEGORY_MAP,0, +field_147175_a,logger,2, +field_147206_b,profileStartTime,2,The time (in milliseconds) that profiling was started +field_147207_c,profileStartTick,2,The tick number that profiling was started on +field_147208_a,logger,2, +field_147228_b,logger,0, +field_147229_c,pingDestinations,0,A list of NetworkManagers that have pending pings +field_147230_a,PING_RESPONSE_SPLITTER,0, +field_147299_f,gameController,0,"Reference to the Minecraft instance, which many handler methods operate on" +field_147300_g,clientWorldController,0,"Reference to the current ClientWorld instance, which many handler methods operate on" +field_147301_d,logger,0, +field_147302_e,netManager,0,The NetworkManager instance used to communicate with the server (used only by handlePlayerPosLook to update positioning and handleJoinGame to inform the server of the client distribution/mods) +field_147304_c,currentServerMaxPlayers,0, +field_147306_l,avRandomizer,0,"Just an ordinary random number generator, used to randomize audio pitch of item/orb pickup and randomize both particlespawn offset and velocity" +field_147307_j,guiScreenServer,0,Seems to be either null (integrated server) or an instance of either GuiMultiplayer (when connecting to a server) or GuiScreenReamlsTOS (when connecting to MCO server) +field_147309_h,doneLoadingTerrain,0,"True if the client has finished downloading terrain and may spawn. Set upon receipt of S08PacketPlayerPosLook, reset upon respawning" +field_147310_i,playerInfoMap,0,A mapping from player names to their respective GuiPlayerInfo (specifies the clients response time to the server) +field_147313_b,networkManager,2, +field_147314_a,server,2, +field_147327_f,server,2, +field_147328_g,currentLoginState,2, +field_147329_d,RANDOM,2, +field_147330_e,verifyToken,2, +field_147331_b,AUTHENTICATOR_THREAD_ID,2, +field_147332_c,logger,2, +field_147333_a,networkManager,2, +field_147334_j,serverId,2, +field_147335_k,secretKey,2, +field_147336_h,connectionTimer,2,How long has player been trying to login into the server. +field_147337_i,loginGameProfile,2, +field_147365_f,floatingTickCount,2,Used to keep track of how the player is floating while gamerules should prevent that. Surpassing 80 ticks means kick +field_147367_d,serverController,2, +field_147368_e,networkTickCount,2, +field_147369_b,playerEntity,2, +field_147370_c,logger,2, +field_147371_a,netManager,2, +field_147373_o,lastPosX,2, +field_147374_l,chatSpamThresholdCount,2,"Incremented by 20 each time a user sends a chat message, decreased by one every tick. Non-ops kicked when over 200" +field_147375_m,itemDropThreshold,2, +field_147377_k,lastSentPingPacket,2, +field_147379_i,lastPingTime,2, +field_147380_r,hasMoved,2, +field_147381_q,lastPosZ,2, +field_147382_p,lastPosY,2, +field_147384_b,networkManager,0, +field_147385_a,mcServer,0, +field_147386_b,networkManager,2, +field_147387_a,server,2, +field_147393_d,networkManager,0, +field_147394_b,mc,0, +field_147395_c,previousGuiScreen,0, +field_147396_a,logger,0, +field_147411_m,serverIcon,0, +field_147412_i,playerList,0, +field_147415_a,logger,0, +field_147417_b,logger,2, +field_147425_f,upperLimitNoiseArray,2, +field_147426_g,depthNoiseArray,2, +field_147427_d,mainNoiseArray,2, +field_147428_e,lowerLimitNoiseArray,2, +field_147433_r,parabolicField,2, +field_147436_a,logger,0, +field_147481_N,processingLoadedTiles,2, +field_147482_g,loadedTileEntityList,2,A list of the loaded tile entities in the world +field_147483_b,tileEntitiesToBeRemoved,2, +field_147484_a,addedTileEntityList,2, +field_147489_T,blockEventCacheIndex,2, +field_147490_S,blockEventQueue,2, +field_147491_a,logger,2, +field_147501_a,rendererDispatcher,0, +field_147503_f,textureChristmas,0, +field_147504_g,textureNormal,0, +field_147505_d,textureNormalDouble,0, +field_147506_e,textureTrapped,0, +field_147507_b,textureTrappedDouble,0, +field_147508_c,textureChristmasDouble,0, +field_147509_j,isChristmas,0, +field_147510_h,simpleChest,0, +field_147511_i,largeChest,0, +field_147513_b,SIGN_TEXTURE,0, +field_147514_c,model,0,The ModelSign instance for use in this renderer +field_147520_b,ENDER_CHEST_TEXTURE,0, +field_147523_b,beaconBeam,0, +field_147526_d,END_PORTAL_TEXTURE,0, +field_147529_c,END_SKY_TEXTURE,0, +field_147532_f,CREEPER_TEXTURES,0, +field_147534_d,WITHER_SKELETON_TEXTURES,0, +field_147535_e,ZOMBIE_TEXTURES,0, +field_147536_b,instance,0, +field_147537_c,SKELETON_TEXTURES,0, +field_147540_b,TEXTURE_BOOK,0,The texture for the book above the enchantment table. +field_147550_f,worldObj,0, +field_147551_g,entity,0, +field_147552_d,staticPlayerZ,0,The player's current Z position (same as playerZ) +field_147553_e,renderEngine,0, +field_147554_b,staticPlayerX,0,The player's current X position (same as playerX) +field_147555_c,staticPlayerY,0,The player's current Y position (same as playerY) +field_147556_a,instance,0, +field_147557_n,fontRenderer,0, +field_147558_l,entityZ,0, +field_147559_m,mapSpecialRenderers,0, +field_147560_j,entityX,0, +field_147561_k,entityY,0, +field_147562_h,entityYaw,0, +field_147563_i,entityPitch,0, +field_147593_P,mapSoundPositions,0,"Currently playing sounds. Type: HashMap<ChunkCoordinates, ISound>" +field_147595_R,displayListEntitiesDirty,0, +field_147596_f,prevRenderSortX,0, +field_147597_g,prevRenderSortY,0, +field_147599_m,logger,0, +field_147602_h,prevRenderSortZ,0, +field_147616_f,framebufferObject,0, +field_147617_g,framebufferTexture,0, +field_147618_d,framebufferHeight,0, +field_147619_e,useDepth,0, +field_147620_b,framebufferTextureHeight,0, +field_147621_c,framebufferWidth,0, +field_147622_a,framebufferTextureWidth,0, +field_147623_j,framebufferFilter,0, +field_147624_h,depthBuffer,0, +field_147625_i,framebufferColor,0, +field_147635_d,logger,0, +field_147636_j,mipmapLevels,0, +field_147638_c,logger,0, +field_147639_c,logger,0, +field_147643_d,threadDownloadCounter,0, +field_147644_c,logger,0, +field_147646_a,logger,0, +field_147648_b,logger,0, +field_147658_f,zPosF,0, +field_147659_g,repeat,0, +field_147660_d,xPosF,0, +field_147661_e,yPosF,0, +field_147662_b,volume,0, +field_147663_c,pitch,0, +field_147664_a,positionedSoundLocation,0, +field_147665_h,repeatDelay,0,The number of ticks between repeating the sound +field_147666_i,attenuationType,0, +field_147668_j,donePlaying,0, +field_147669_l,distance,0, +field_147670_k,minecart,0, +field_147671_l,minecart,0, +field_147672_k,player,0, +field_147676_d,timeUntilNextMusic,0, +field_147677_b,mc,0, +field_147678_c,currentMusic,0, +field_147679_a,rand,0, +field_147694_f,sndManager,0, +field_147695_g,mcResourceManager,0, +field_147696_d,TYPE,0, +field_147697_e,sndRegistry,0, +field_147698_b,logger,0, +field_147699_c,GSON,0, +field_147700_a,missing_sound,0, +field_147707_d,theShaderGroup,0, +field_147708_e,shaderCount,0, +field_147709_v,theMapItemRenderer,0, +field_147710_q,logger,0, +field_147711_ac,resourceManager,0, +field_147712_ad,shaderResourceLocations,0, +field_147713_ae,shaderIndex,0, +field_147716_d,enderChest,0, +field_147719_a,instance,0, +field_147917_g,mc,0, +field_147923_a,logger,0, +field_147941_i,pointedEntity,0, +field_147957_g,mipmapBuffer,0, +field_147959_c,logger,0, +field_147967_a,logger,0, +field_147968_d,mipmapLevelHolder,0, +field_147971_a,mipmapLevelStitcher,0, +field_147997_f,shaderSamplers,0,maps sampler names to their texture +field_147998_g,samplerNames,0, +field_147999_d,currentProgram,0, +field_148001_b,defaultShaderUniform,0, +field_148002_c,staticShaderManager,0, +field_148003_a,logger,0, +field_148004_n,useFaceCulling,0, +field_148005_o,isDirty,0, +field_148006_l,program,0, +field_148007_m,programFilename,0, +field_148008_j,shaderUniformLocations,0, +field_148009_k,mappedShaderUniforms,0, +field_148010_h,shaderSamplerLocations,0, +field_148011_i,shaderUniforms,0, +field_148012_t,fragmentShaderLoader,0, +field_148013_s,vertexShaderLoader,0, +field_148014_r,attributes,0, +field_148015_q,attribLocations,0, +field_148029_f,listFramebuffers,0, +field_148030_g,projectionMatrix,0, +field_148031_d,listShaders,0, +field_148032_e,mapFramebuffers,0, +field_148033_b,resourceManager,0, +field_148034_c,shaderGroupName,0, +field_148035_a,mainFramebuffer,0, +field_148038_h,mainFramebufferWidth,0, +field_148039_i,mainFramebufferHeight,0, +field_148046_f,listAuxWidths,0, +field_148047_g,listAuxHeights,0, +field_148048_d,listAuxFramebuffers,0, +field_148049_e,listAuxNames,0, +field_148050_b,framebufferOut,0, +field_148051_c,manager,0, +field_148052_a,framebufferIn,0, +field_148053_h,projectionMatrix,0, +field_148058_d,shaderAttachCount,0, +field_148059_b,shaderFilename,0, +field_148060_c,shader,0, +field_148061_a,shaderType,0, +field_148067_f,loadedShaders,0, +field_148069_d,shaderExtension,0, +field_148070_e,shaderMode,0, +field_148072_c,shaderName,0, +field_148079_b,staticShaderLinkHelper,0, +field_148080_a,logger,0, +field_148098_f,uniformFloatBuffer,0, +field_148099_g,shaderName,0, +field_148100_d,uniformType,0, +field_148101_e,uniformIntBuffer,0, +field_148102_b,uniformLocation,0, +field_148103_c,uniformCount,0, +field_148104_a,logger,0, +field_148105_h,dirty,0, +field_148106_i,shaderManager,0, +field_148149_f,slotHeight,0,The height of a slot. +field_148150_g,mouseX,0, +field_148151_d,right,0, +field_148152_e,left,0, +field_148153_b,top,0,The top of the slot container. Affects the overlays and scrolling. +field_148154_c,bottom,0,The bottom of the slot container. Affects the overlays and scrolling. +field_148155_a,width,0, +field_148156_n,scrollDownButtonID,0,The buttonID of the button used to scroll down +field_148157_o,initialClickY,0,Where the mouse was in the window when you first clicked to scroll +field_148158_l,height,0, +field_148159_m,scrollUpButtonID,0,The buttonID of the button used to scroll up +field_148160_j,headerPadding,0, +field_148161_k,mc,0, +field_148162_h,mouseY,0, +field_148164_v,enabled,0, +field_148165_u,hasListHeader,0, +field_148166_t,showSelectionBox,0,Set to true if a selected element in this gui will show an outline box +field_148167_s,lastClicked,0,The time when this button was last clicked. +field_148168_r,selectedElement,0,The element in the list that was selected +field_148169_q,amountScrolled,0,How far down this slot has been scrolled +field_148170_p,scrollMultiplier,0,What to multiply the amount you moved your mouse by (used for slowing down scrolling when over the items and not on the scroll bar) +field_148176_l,langCodeList,0,A list containing the many different locale language codes. +field_148177_m,languageMap,0,The map containing the Locale-Language pairs. +field_148188_n,maxListLabelWidth,0, +field_148189_l,mc,0, +field_148190_m,listEntries,0, +field_148196_n,lanScanEntry,0, +field_148197_o,selectedSlotIndex,0, +field_148198_l,serverListInternet,0, +field_148199_m,serverListLan,0, +field_148200_k,owner,0, +field_148205_k,mc,0, +field_148216_n,statSorter,0, +field_148219_m,statsHolder,0, +field_148240_d,location,0, +field_148241_e,mapTextureData,0, +field_148242_b,mapData,0, +field_148243_c,mapTexture,0, +field_148251_b,textureManager,0, +field_148252_c,loadedMaps,0, +field_148253_a,mapIcons,0, +field_148257_b,playerID,0, +field_148258_c,token,0, +field_148261_a,logger,0, +field_148270_M,valueStep,0, +field_148271_N,valueMin,0, +field_148272_O,valueMax,0, +field_148280_d,btnChangeKeyBinding,0, +field_148281_e,btnReset,0, +field_148282_b,keybinding,0,The keybinding specified for this KeyEntry +field_148283_c,keyDesc,0,The localized key description for this KeyEntry +field_148285_b,labelText,0, +field_148286_c,labelWidth,0, +field_148288_a,mc,0, +field_148293_a,mc,0, +field_148300_d,mc,0, +field_148301_e,server,0, +field_148303_c,owner,0, +field_148304_a,logger,0, +field_148306_i,serverIcon,0, +field_148315_b,resourcePacksGUI,0, +field_148316_c,RESOURCE_PACKS_TEXTURE,0, +field_148317_a,mc,0, +field_148321_e,resourcePackIcon,0, +field_148322_c,logger,0, +field_148326_f,logger,2, +field_148330_a,itemList,0,the list of items in this container +field_148332_b,slot,0, +field_148336_b,rand,0, +field_148337_c,namePartsArray,0, +field_148338_a,instance,0, +field_148532_f,resourcePackInstance,0, +field_148534_e,dirServerResourcepacks,0, +field_148536_c,listMipmaps,0, +field_148546_d,logger,2, +field_148547_k,playerStatFiles,2, +field_148550_b,logger,0, +field_148564_f,streaming,0, +field_148565_d,weight,0, +field_148566_e,type,0, +field_148567_b,volume,0, +field_148568_c,pitch,0, +field_148569_a,name,0, +field_148575_b,replaceExisting,0,if true it will override all the sounds from the resourcepacks loaded before +field_148576_c,category,0, +field_148577_a,soundList,0, +field_148589_c,type,0, +field_148617_f,loaded,0,Set to true when the SoundManager has been initialised. +field_148618_g,playTime,0,A counter for how long the sound manager has been running +field_148619_d,options,0,Reference to the GameSettings object. +field_148620_e,sndSystem,0,A reference to the sound system. +field_148621_b,logger,0, +field_148622_c,sndHandler,0,A reference to the sound handler. +field_148623_a,LOG_MARKER,0,The marker used for logging +field_148624_n,playingSoundsStopTime,0,"The future time in which to stop this sound. Type: HashMap<String, Integer>" +field_148625_l,tickableSounds,0,"A subset of playingSounds, this contains only ITickableSounds" +field_148626_m,delayedSounds,0,"Contains sounds to play in n ticks. Type: HashMap<ISound, Integer>" +field_148627_j,playingSoundPoolEntries,0,"A HashMap<String, SoundPoolEntry> of the playing sounds." +field_148628_k,categorySounds,0,"Contains sounds mapped by category. Type: Multimap<SoundCategory, String>" +field_148629_h,playingSounds,0,"Identifiers of all currently playing sounds. Type: HashBiMap<String, ISound>" +field_148630_i,invPlayingSounds,0,"Inverse map of currently playing sounds, automatically mirroring changes in original map" +field_148643_j,maxDelay,0, +field_148645_h,musicLocation,0, +field_148646_i,minDelay,0, +field_148653_d,volume,0, +field_148654_b,streamingSound,0, +field_148655_c,pitch,0, +field_148656_a,location,0, +field_148657_b,logger,0, +field_148731_f,eventVolume,0, +field_148732_d,category,0, +field_148733_e,eventPitch,0, +field_148734_b,rnd,0, +field_148735_c,soundLocation,0, +field_148736_a,soundPool,0,A composite (List) of ISoundEventAccessors +field_148738_b,weight,0, +field_148739_a,entry,0, +field_148743_a,logger,2, +field_148748_b,objectList,2, +field_148749_a,identityMap,2, +field_148758_b,inverseObjectRegistry,2,A BiMap of objects (key) to their names (value). +field_148759_a,underlyingIntegerMap,2,The backing store that maps Integers to objects. +field_148760_d,defaultValueKey,2,The key of the default value. +field_148761_e,defaultValue,2,"The default value for this registry, retrurned in the place of a null value." +field_148764_a,soundRegistry,0,Contains all registered sound +field_148823_f,framebufferSupported,0, +field_148824_g,shadersSupported,0, +field_148826_e,GL_STATIC_DRAW,0, +field_148827_a,openGL21,0, +field_148828_i,openGL14,0, +field_148849_e,progress,2, +field_148852_a,breakerId,2, +field_148859_d,metadata,2,Used only for vanilla tile entities +field_148860_e,nbt,2, +field_148871_f,block,2, +field_148872_d,instrument,2, +field_148873_e,pitch,2, +field_148883_d,blockState,2, +field_148892_b,actionNumber,2, +field_148894_a,windowId,2, +field_148896_a,windowId,2, +field_148904_f,entityId,2, +field_148905_d,slotCount,2, +field_148907_b,inventoryType,2, +field_148908_c,windowTitle,2, +field_148909_a,windowId,2, +field_148913_b,itemStacks,2, +field_148914_a,windowId,2, +field_148919_a,chatComponent,2, +field_148925_b,chunkPosCoord,2, +field_148936_d,yaw,2, +field_148937_e,pitch,2, +field_148938_b,y,2, +field_148939_c,z,2, +field_148940_a,x,2, +field_148951_f,yaw,2, +field_148952_g,pitch,2, +field_148953_d,y,2, +field_148954_e,z,2, +field_148956_c,x,2, +field_148957_a,entityId,2, +field_148959_h,currentItem,2, +field_148960_i,watcher,2, +field_148968_f,title,2, +field_148973_a,entityID,2, +field_148980_b,type,2, +field_148981_a,entityId,2, +field_148988_d,posZ,2, +field_148989_e,xpValue,2, +field_148990_b,posX,2, +field_148991_c,posY,2, +field_148992_a,entityID,2, +field_149012_f,speedY,2, +field_149013_g,speedZ,2, +field_149014_d,z,2, +field_149015_e,speedX,2, +field_149016_b,x,2, +field_149017_c,y,2, +field_149018_a,entityId,2, +field_149019_j,type,2, +field_149021_h,pitch,2, +field_149022_i,yaw,2, +field_149036_f,velocityX,2, +field_149037_g,velocityY,2, +field_149038_d,y,2, +field_149039_e,z,2, +field_149040_b,type,2, +field_149041_c,x,2, +field_149042_a,entityId,2, +field_149044_m,watcher,2, +field_149045_j,pitch,2, +field_149046_k,headPitch,2, +field_149047_h,velocityZ,2, +field_149048_i,yaw,2, +field_149055_d,z,2, +field_149056_e,type,2, +field_149057_b,x,2, +field_149058_c,y,2, +field_149059_a,entityId,2, +field_149068_f,pitch,2, +field_149070_d,posZ,2, +field_149071_e,yaw,2, +field_149072_b,posX,2, +field_149073_c,posY,2, +field_149074_a,entityId,2, +field_149078_b,effectId,2, +field_149079_a,entityId,2, +field_149085_d,worldType,2, +field_149086_b,difficulty,2, +field_149087_c,gameType,2, +field_149088_a,dimensionID,2, +field_149097_a,playerID,2, +field_149100_a,entityIDs,2, +field_149114_f,walkSpeed,2, +field_149115_d,creativeMode,2, +field_149116_e,flySpeed,2, +field_149117_b,flying,2, +field_149118_c,allowFlying,2, +field_149119_a,invulnerable,2, +field_149136_a,id,2, +field_149140_b,state,2, +field_149142_a,MESSAGE_NAMES,2, +field_149154_d,strength,2, +field_149155_e,affectedBlockPositions,2, +field_149156_b,posY,2, +field_149157_c,posZ,2, +field_149158_a,posX,2, +field_149163_b,logicOpcode,2, +field_149164_a,entityId,2, +field_149167_a,reason,2, +field_149171_b,data,2, +field_149172_a,channel,2, +field_149177_b,slot,2, +field_149178_c,item,2, +field_149179_a,windowId,2, +field_149184_b,varIndex,2, +field_149185_c,varValue,2, +field_149186_a,windowId,2, +field_149191_a,mapId,2, +field_149200_f,maxPlayers,2, +field_149201_g,worldType,2, +field_149202_d,dimension,2, +field_149203_e,difficulty,2, +field_149204_b,hardcoreMode,2, +field_149205_c,gameType,2, +field_149206_a,entityId,2, +field_149214_f,soundPitch,2, +field_149215_d,posZ,2, +field_149216_e,soundVolume,2, +field_149217_b,posX,2, +field_149218_c,posY,2, +field_149219_a,soundName,2, +field_149230_f,yOffset,2, +field_149231_g,zOffset,2, +field_149232_d,zCoord,2, +field_149233_e,xOffset,2, +field_149234_b,xCoord,2, +field_149235_c,yCoord,2, +field_149237_h,particleSpeed,2, +field_149238_i,particleCount,2, +field_149246_f,serverWide,2,If true the sound is played across the server +field_149249_b,soundData,2,can be a block/item id or other depending on the soundtype +field_149251_a,soundType,2, +field_149264_b,zPositions,2, +field_149266_a,xPositions,2, +field_149267_h,isOverworld,2, +field_149282_b,chunkZ,2, +field_149284_a,chunkX,2, +field_149290_a,clientTime,2, +field_149293_a,clientTime,2, +field_149296_b,response,2, +field_149297_a,GSON,2, +field_149301_b,verifyTokenEncrypted,2, +field_149302_a,secretKeyEncrypted,2, +field_149305_a,profile,2, +field_149314_f,action,2, +field_149315_g,friendlyFlags,2, +field_149316_d,suffix,2, +field_149317_e,players,2, +field_149318_b,displayName,2, +field_149319_c,prefix,2, +field_149320_a,name,2, +field_149326_d,action,2, +field_149327_b,objective,2, +field_149328_c,value,2, +field_149329_a,name,2, +field_149334_b,foodLevel,2, +field_149335_c,saturationLevel,2, +field_149336_a,health,2, +field_149341_b,objectiveValue,2, +field_149343_a,objectiveName,2, +field_149349_d,lines,2, +field_149356_b,entityId,2, +field_149357_a,collectedItemEntityId,2, +field_149368_b,worldTime,2, +field_149369_a,totalWorldTime,2, +field_149373_b,scoreName,2, +field_149374_a,position,2, +field_149379_a,entityId,2, +field_149383_b,yaw,2, +field_149384_a,entityId,2, +field_149387_a,heldItemHotbarIndex,2, +field_149392_b,equipmentSlot,2, +field_149393_c,itemStack,2, +field_149394_a,entityID,2, +field_149399_b,totalExperience,2, +field_149400_c,level,2, +field_149406_b,entityId,2, +field_149407_c,vehicleEntityId,2, +field_149408_a,leash,2, +field_149414_d,motionZ,2, +field_149415_b,motionX,2, +field_149416_c,motionY,2, +field_149417_a,entityID,2, +field_149420_a,message,2, +field_149431_d,duration,2, +field_149432_b,effectId,2, +field_149433_c,amplifier,2, +field_149434_a,entityId,2, +field_149437_a,status,2, +field_149440_a,message,2, +field_149445_a,entityId,2, +field_149453_f,pitch,2, +field_149454_d,posZ,2, +field_149455_e,yaw,2, +field_149456_b,posX,2, +field_149457_c,posY,2, +field_149458_a,entityId,2, +field_149461_a,key,2, +field_149473_f,pitch,2, +field_149474_g,onGround,2, +field_149476_e,yaw,2, +field_149477_b,y,2, +field_149478_c,z,2, +field_149479_a,x,2, +field_149480_h,moving,2, +field_149481_i,rotating,2, +field_149495_f,walkSpeed,2, +field_149496_d,creativeMode,2, +field_149497_e,flySpeed,2, +field_149498_b,flying,2, +field_149499_c,allowFlying,2, +field_149500_a,invulnerable,2, +field_149508_e,status,2,"Status of the digging (started, ongoing, broken)." +field_149515_b,action,2, +field_149516_c,auxData,2, +field_149517_a,entityID,2, +field_149526_d,enableColors,2, +field_149528_b,view,2, +field_149529_c,chatVisibility,2, +field_149530_a,lang,2, +field_149534_b,uid,2, +field_149535_c,accepted,2, +field_149536_a,windowId,2, +field_149540_b,button,2, +field_149541_a,windowId,2, +field_149549_f,mode,2,Inventory operation mode +field_149550_d,actionNumber,2,"A unique number for the action, used for transaction handling" +field_149551_e,clickedItem,2,The item stack present in the slot +field_149552_b,slotId,2,Id of the clicked slot +field_149553_c,usedButton,2,Button used +field_149554_a,windowId,2,The id of the window which was clicked. 0 for player inventory. +field_149556_a,windowId,2, +field_149561_c,data,2, +field_149562_a,channel,2, +field_149566_b,action,2, +field_149567_a,entityId,2, +field_149577_f,facingX,2, +field_149578_g,facingY,2, +field_149579_d,placedBlockDirection,2, +field_149580_e,stack,2, +field_149584_h,facingZ,2, +field_149590_d,lines,2, +field_149597_d,requestedState,2, +field_149598_b,ip,2, +field_149599_c,port,2, +field_149600_a,protocolVersion,2, +field_149602_a,profile,2, +field_149605_a,reason,2, +field_149610_b,publicKey,2, +field_149611_c,verifyToken,2, +field_149612_a,hashedServerId,2, +field_149615_a,slotId,2, +field_149621_d,sneaking,2, +field_149622_b,forwardSpeed,2,"Positive for forward, negative for backward" +field_149623_c,jumping,2, +field_149624_a,strafeSpeed,2,"Positive for left strafe, negative for right" +field_149628_b,stack,2, +field_149629_a,slotId,2, +field_149632_a,matches,2, +field_149754_D,minZ,2, +field_149755_E,maxX,2, +field_149756_F,maxY,2, +field_149757_G,maxZ,2, +field_149758_A,isBlockContainer,2,true if the Block contains a Tile Entity +field_149759_B,minX,2, +field_149760_C,minY,2, +field_149762_H,stepSound,2,Sound of stepping on the block +field_149763_I,blockParticleGravity,2, +field_149764_J,blockMaterial,2, +field_149765_K,slipperiness,2,Determines how much velocity is maintained while moving on top of this block +field_149766_f,soundTypeWood,2,the wood sound type +field_149767_g,soundTypeGravel,2,the gravel sound type +field_149769_e,soundTypeStone,2, +field_149770_b,unlocalizedName,2, +field_149771_c,blockRegistry,2, +field_149772_a,displayOnCreativeTab,2, +field_149773_n,soundTypeSnow,2, +field_149774_o,soundTypeLadder,2, +field_149775_l,soundTypeCloth,2, +field_149776_m,soundTypeSand,2, +field_149777_j,soundTypeMetal,2, +field_149778_k,soundTypeGlass,2, +field_149779_h,soundTypeGrass,2, +field_149780_i,soundTypePiston,2, +field_149781_w,blockResistance,2,Indicates how much this block can resist explosions +field_149782_v,blockHardness,2,Indicates how many hits it takes to break a block. +field_149783_u,useNeighborBrightness,2,Flag if block should use the brightest neighbor light value as its own +field_149784_t,lightValue,2,Amount of light emitted +field_149785_s,translucent,2, +field_149786_r,lightOpacity,2,How much light is subtracted for going through this block +field_149787_q,fullBlock,2, +field_149788_p,soundTypeAnvil,2, +field_149789_z,needsRandomTick,2,Flags whether or not this block is of a type that needs random ticking. Ref-counted by ExtendedBlockStorage in order to broadly cull a chunk from the random chunk update list for efficiency's sake. +field_149790_y,enableStats,2, +field_149815_a,adjacentSourceBlocks,2, +field_149832_M,fallInstantly,2, +field_149848_b,flammabilities,2, +field_149849_a,encouragements,2, +field_149877_a,crop,2, +field_149914_a,isRepeaterPowered,2,Tells whether the repeater is powered or not +field_149932_b,isBurning,2, +field_149934_M,keepInventory,2, +field_149942_b,rand,2, +field_149943_a,dispenseBehaviorRegistry,2,Registry for all dispense behaviors. +field_149947_P,dropBehavior,2, +field_149956_a,chestType,2,"0 : Normal chest, 1 : Trapped chest" +field_149996_a,ignoreSimilarity,2, +field_150047_a,wooden,2, +field_150053_a,isPowered,2, +field_150069_a,sensitivity,2, +field_150082_a,isSticky,2,This piston is the sticky one? +field_150099_b,canDrop,2, +field_150112_b,toggles,2, +field_150113_a,isOn,2, +field_150121_P,fancyGraphics,2, +field_150127_b,iconIndex,0, +field_150128_a,surroundings,2, +field_150149_b,modelBlock,2, +field_150151_M,modelState,2, +field_150152_N,hasRaytraced,2, +field_150153_O,rayTracePass,2, +field_150171_a,isOn,2, +field_150179_b,blocksNeedingUpdate,2,List of blocks to update with redstone. +field_150181_a,canProvidePower,2, +field_150187_a,isOn,2, +field_150243_f,strikethrough,2, +field_150244_g,obfuscated,2, +field_150245_d,italic,2, +field_150246_e,underlined,2, +field_150247_b,color,2, +field_150248_c,bold,2, +field_150249_a,parentStyle,2,The parent of this ChatStyle. Used for looking up values that this instance does not override. +field_150250_j,rootStyle,2,The base of the ChatStyle hierarchy. All ChatStyle instances are implicitly children of this. +field_150251_h,chatClickEvent,2, +field_150252_i,chatHoverEvent,2, +field_150263_b,style,2, +field_150264_a,siblings,2,"The later siblings of this component. If this component turns the text bold, that will apply to all the siblings until a later sibling turns the text something else." +field_150267_b,text,2, +field_150274_f,syncLock,2, +field_150275_g,lastTranslationUpdateTimeInMilliseconds,2, +field_150276_d,key,2, +field_150277_e,formatArgs,2, +field_150278_b,children,2,"The discrete elements that make up this component. For example, this would be [""Prefix, "", ""FirstArg"", ""SecondArg"", "" again "", ""SecondArg"", "" and "", ""FirstArg"", "" lastly "", ""ThirdArg"", "" and also "", ""FirstArg"", "" again!""] for ""translation.test.complex"" (see en-US.lang)" +field_150279_c,stringVariablePattern,2, +field_150280_b,dataSize,2, +field_150282_a,data,2, +field_150317_a,logger,2, +field_150318_D,golden_rail,2, +field_150319_E,detector_rail,2, +field_150320_F,sticky_piston,2, +field_150321_G,web,2, +field_150322_A,sandstone,2, +field_150323_B,noteblock,2, +field_150324_C,bed,2, +field_150325_L,wool,2, +field_150327_N,yellow_flower,2, +field_150328_O,red_flower,2, +field_150329_H,tallgrass,2, +field_150330_I,deadbush,2, +field_150331_J,piston,2, +field_150332_K,piston_head,2, +field_150333_U,stone_slab,2, +field_150334_T,double_stone_slab,2, +field_150335_W,tnt,2, +field_150336_V,brick_block,2, +field_150337_Q,red_mushroom,2, +field_150338_P,brown_mushroom,2, +field_150339_S,iron_block,2, +field_150340_R,gold_block,2, +field_150341_Y,mossy_cobblestone,2, +field_150342_X,bookshelf,2, +field_150343_Z,obsidian,2, +field_150344_f,planks,2, +field_150345_g,sapling,2, +field_150346_d,dirt,2, +field_150347_e,cobblestone,2, +field_150348_b,stone,2, +field_150349_c,grass,2, +field_150350_a,air,2, +field_150351_n,gravel,2, +field_150352_o,gold_ore,2, +field_150353_l,lava,2, +field_150354_m,sand,2, +field_150355_j,water,2, +field_150356_k,flowing_lava,2, +field_150357_h,bedrock,2, +field_150358_i,flowing_water,2, +field_150359_w,glass,2, +field_150360_v,sponge,2, +field_150361_u,leaves2,2, +field_150362_t,leaves,2, +field_150363_s,log2,2, +field_150364_r,log,2, +field_150365_q,coal_ore,2, +field_150366_p,iron_ore,2, +field_150367_z,dispenser,2, +field_150368_y,lapis_block,2, +field_150369_x,lapis_ore,2, +field_150370_cb,quartz_stairs,2, +field_150371_ca,quartz_block,2, +field_150372_bz,sandstone_stairs,2, +field_150373_bw,double_wooden_slab,2, +field_150374_bv,lit_redstone_lamp,2, +field_150375_by,cocoa,2, +field_150376_bx,wooden_slab,2, +field_150377_bs,end_stone,2, +field_150378_br,end_portal_frame,2, +field_150379_bu,redstone_lamp,2, +field_150380_bt,dragon_egg,2, +field_150381_bn,enchanting_table,2, +field_150382_bo,brewing_stand,2, +field_150383_bp,cauldron,2, +field_150384_bq,end_portal,2, +field_150385_bj,nether_brick,2, +field_150386_bk,nether_brick_fence,2, +field_150387_bl,nether_brick_stairs,2, +field_150388_bm,nether_wart,2, +field_150389_bf,brick_stairs,2, +field_150390_bg,stone_brick_stairs,2, +field_150391_bh,mycelium,2, +field_150392_bi,waterlily,2, +field_150393_bb,pumpkin_stem,2, +field_150394_bc,melon_stem,2, +field_150395_bd,vine,2, +field_150397_co,stained_glass_pane,2, +field_150398_cm,double_plant,2, +field_150399_cn,stained_glass,2, +field_150400_ck,acacia_stairs,2, +field_150401_cl,dark_oak_stairs,2, +field_150402_ci,coal_block,2, +field_150403_cj,packed_ice,2, +field_150404_cg,carpet,2, +field_150405_ch,hardened_clay,2, +field_150406_ce,stained_hardened_clay,2, +field_150407_cf,hay_block,2, +field_150408_cc,activator_rail,2, +field_150409_cd,dropper,2, +field_150410_aZ,glass_pane,2, +field_150411_aY,iron_bars,2, +field_150412_bA,emerald_ore,2, +field_150413_aR,unpowered_repeater,2, +field_150414_aQ,cake,2, +field_150415_aT,trapdoor,2, +field_150416_aS,powered_repeater,2, +field_150417_aV,stonebrick,2, +field_150418_aU,monster_egg,2, +field_150419_aX,red_mushroom_block,2, +field_150420_aW,brown_mushroom_block,2, +field_150421_aI,jukebox,2, +field_150423_aK,pumpkin,2, +field_150424_aL,netherrack,2, +field_150425_aM,soul_sand,2, +field_150426_aN,glowstone,2, +field_150427_aO,portal,2, +field_150428_aP,lit_pumpkin,2, +field_150429_aA,redstone_torch,2, +field_150430_aB,stone_button,2, +field_150431_aC,snow_layer,2, +field_150432_aD,ice,2, +field_150433_aE,snow,2, +field_150434_aF,cactus,2, +field_150435_aG,clay,2, +field_150436_aH,reeds,2, +field_150437_az,unlit_redstone_torch,2, +field_150438_bZ,hopper,2, +field_150439_ay,lit_redstone_ore,2, +field_150440_ba,melon_block,2, +field_150441_bU,unpowered_comparator,2, +field_150442_at,lever,2, +field_150443_bT,heavy_weighted_pressure_plate,2, +field_150444_as,wall_sign,2, +field_150445_bS,light_weighted_pressure_plate,2, +field_150446_ar,stone_stairs,2, +field_150447_bR,trapped_chest,2, +field_150448_aq,rail,2, +field_150449_bY,quartz_ore,2, +field_150450_ax,redstone_ore,2, +field_150451_bX,redstone_block,2, +field_150452_aw,wooden_pressure_plate,2, +field_150453_bW,daylight_detector,2, +field_150454_av,iron_door,2, +field_150455_bV,powered_comparator,2, +field_150456_au,stone_pressure_plate,2, +field_150457_bL,flower_pot,2, +field_150458_ak,farmland,2, +field_150459_bM,carrots,2, +field_150460_al,furnace,2, +field_150461_bJ,beacon,2, +field_150462_ai,crafting_table,2, +field_150463_bK,cobblestone_wall,2, +field_150464_aj,wheat,2, +field_150465_bP,skull,2, +field_150467_bQ,anvil,2, +field_150468_ap,ladder,2, +field_150469_bN,potatoes,2, +field_150470_am,lit_furnace,2, +field_150471_bO,wooden_button,2, +field_150472_an,standing_sign,2, +field_150473_bD,tripwire,2, +field_150474_ac,mob_spawner,2, +field_150475_bE,emerald_block,2, +field_150476_ad,oak_stairs,2, +field_150477_bB,ender_chest,2, +field_150478_aa,torch,2, +field_150479_bC,tripwire_hook,2, +field_150480_ab,fire,2, +field_150481_bH,jungle_stairs,2, +field_150482_ag,diamond_ore,2, +field_150483_bI,command_block,2, +field_150484_ah,diamond_block,2, +field_150485_bF,spruce_stairs,2, +field_150486_ae,chest,2, +field_150487_bG,birch_stairs,2, +field_150488_af,redstone_wire,2, +field_150490_a,json,2, +field_150493_b,jsonValue,2,The value to be parsed into a tag. +field_150499_b,volume,2, +field_150500_c,frequency,2, +field_150501_a,soundName,2, +field_150507_a,cipher,2, +field_150509_a,decryptionCodec,2, +field_150511_e,lastUpdateTimeInMilliseconds,2,"The time, in milliseconds since epoch, that this instance was last updated" +field_150514_p,yellowFlowerGen,2, +field_150517_a,block,2, +field_150520_a,baseBlockRequired,2, +field_150521_a,block,2, +field_150527_b,woodMetadata,2, +field_150528_a,leavesMetadata,2, +field_150531_a,useExtraRandomHeight,2, +field_150538_d,extraRandomHeight,2, +field_150542_e,useBaseHeight,2, +field_150552_a,flower,2, +field_150554_b,basePathWidth,2, +field_150555_a,block,2, +field_150556_a,block,2, +field_150574_L,jungleEdge,2, +field_150575_M,deepOcean,2, +field_150576_N,stoneBeach,2, +field_150577_O,coldBeach,2, +field_150578_U,megaTaiga,2, +field_150579_T,coldTaigaHills,2, +field_150580_W,extremeHillsPlus,2, +field_150581_V,megaTaigaHills,2, +field_150582_Q,birchForestHills,2, +field_150583_P,birchForest,2, +field_150584_S,coldTaiga,2, +field_150585_R,roofedForest,2, +field_150586_aC,logger,2, +field_150587_Y,savannaPlateau,2, +field_150588_X,savanna,2, +field_150589_Z,mesa,2, +field_150590_f,height_MidPlains,2, +field_150591_g,height_LowHills,2, +field_150592_d,height_DeepOceans,2, +field_150593_e,height_LowPlains,2, +field_150594_b,height_ShallowWaters,2, +field_150595_c,height_Oceans,2, +field_150596_a,height_Default,2, +field_150597_n,explorationBiomesList,2, +field_150598_l,height_LowIslands,2, +field_150599_m,height_PartiallySubmerged,2, +field_150600_j,height_Shores,2, +field_150601_k,height_RockyWaters,2, +field_150602_h,height_HighPlateaus,2, +field_150603_i,height_MidHills,2, +field_150605_ac,temperatureNoise,2, +field_150607_aa,mesaPlateau_F,2, +field_150608_ab,mesaPlateau,2, +field_150611_aD,baseBiome,2, +field_150656_f,isPowered,2, +field_150660_b,world,2, +field_150670_b,value,2, +field_150671_a,action,2, +field_150676_f,allowedInChat,2, +field_150677_g,canonicalName,2,The canonical name used to refer to this action. +field_150679_e,nameMapping,2, +field_150688_f,canonicalName,2, +field_150690_d,nameMapping,2, +field_150691_e,allowedInChat,2, +field_150700_a,GSON,2, +field_150703_b,value,2, +field_150704_a,action,2, +field_150710_d,enchantable,2, +field_150711_b,returnStack,2, +field_150712_c,maxDamagePercent,2, +field_150735_g,logger,2, +field_150738_b,logMarkerPackets,2, +field_150739_c,attrKeyConnectionState,2, +field_150740_a,logMarkerNetwork,2, +field_150742_o,terminationReason,2,A String indicating why the network has shutdown. +field_150743_l,socketAddress,2,The address of the remote party +field_150744_m,packetListener,2,The INetHandler instance responsible for processing received packets +field_150745_j,outboundPacketsQueue,2,The queue for packets that require transmission +field_150746_k,channel,2,The active channel +field_150750_a,encryptionCodec,2, +field_150761_f,STATES_BY_CLASS,2, +field_150762_g,id,2, +field_150764_e,STATES_BY_ID,2, +field_150773_b,futureListeners,2, +field_150774_a,packet,2, +field_150776_b,variation,2, +field_150777_a,rootHeight,2, +field_150794_a,buf,2, +field_150797_b,RECEIVED_PACKET_MARKER,2, +field_150798_a,logger,2, +field_150799_b,RECEIVED_PACKET_MARKER,2, +field_150800_a,logger,2, +field_150814_l,isLightPopulated,2, +field_150816_i,chunkTileEntityMap,2,A Map of ChunkPositions to TileEntities in this chunk +field_150817_t,logger,2, +field_150828_b,fallbackTranslator,2,A StringTranslate instance using the hardcoded default locale (en_US). Used as a fallback in case the shared StringTranslate singleton instance fails to translate a key. +field_150844_d,time,2, +field_150865_b,axis,2, +field_150867_a,world,2, +field_150875_a,statsData,2, +field_150887_d,statsFile,2, +field_150889_b,logger,2, +field_150890_c,mcServer,2, +field_150901_e,itemRegistry,2, +field_150907_b,cooked,2,"Indicates whether this fish is ""cooked"" or not." +field_150908_b,crops,2, +field_150914_c,effectiveBlocks,2, +field_150915_c,EFFECTIVE_ON,2, +field_150916_c,EFFECTIVE_ON,2, +field_150917_c,EFFECTIVE_ON,2, +field_150922_c,dyeColors,2, +field_150925_a,crops,2, +field_150928_b,RECORDS,2, +field_150929_a,recordName,2,The name of the record. +field_150933_b,material,2, +field_150934_a,attackDamage,2, +field_150935_a,block,2, +field_150939_a,block,2, +field_150940_b,leaves,2, +field_150944_b,coloredBlock,2, +field_150945_c,subtypeNames,2, +field_150949_c,singleSlab,2, +field_150957_c,objectiveCriteria,2, +field_150961_L,exploreAllBiomes,2,Is the 'Adventuring Time' achievement +field_150962_H,breedCow,2,Is the 'Repopulation' achievement +field_150963_I,spawnWither,2,Is the 'The Beginning?' achievement +field_150964_J,killWither,2,Is the 'The Beginning.' achievement +field_150965_K,fullBeacon,2,Is the 'Beaconator' achievement +field_150966_x,diamondsToYou,2, +field_150980_f,meta,2,The item damage value on an ItemStack that represents this fish type +field_150981_g,unlocalizedName,2,"The value that this fish type uses to replace ""XYZ"" in: ""fish.XYZ.raw"" / ""fish.XYZ.cooked"" for the unlocalized name and ""fish_XYZ_raw"" / ""fish_XYZ_cooked"" for the icon string." +field_150983_e,META_LOOKUP,2,Maps an item damage value for an ItemStack to the corresponding FishType value. +field_150987_n,cookable,2,"Indicates whether this type of fish has ""raw"" and ""cooked"" variants" +field_150989_l,cookedHealAmount,2,The amount that eating the cooked version of this fish should heal the player. +field_150990_m,cookedSaturationModifier,2,The saturation modifier to apply to the heal amount when the player eats the cooked version of this fish. +field_150991_j,uncookedHealAmount,2,The amount that eating the uncooked version of this fish should heal the player. +field_150992_k,uncookedSaturationModifier,2,The saturation modifier to apply to the heal amount when the player eats the uncooked version of this fish. +field_151002_e,item,2, +field_151004_a,underlyingSet,2,The set for this ForwardingSet to forward methods to. +field_151005_D,golden_pickaxe,2, +field_151006_E,golden_axe,2, +field_151007_F,string,2, +field_151008_G,feather,2, +field_151009_A,mushroom_stew,2, +field_151010_B,golden_sword,2, +field_151011_C,golden_shovel,2, +field_151012_L,diamond_hoe,2, +field_151013_M,golden_hoe,2, +field_151014_N,wheat_seeds,2, +field_151015_O,wheat,2, +field_151016_H,gunpowder,2, +field_151017_I,wooden_hoe,2, +field_151018_J,stone_hoe,2, +field_151019_K,iron_hoe,2, +field_151020_U,chainmail_helmet,2, +field_151021_T,leather_boots,2, +field_151022_W,chainmail_leggings,2, +field_151023_V,chainmail_chestplate,2, +field_151024_Q,leather_helmet,2, +field_151025_P,bread,2, +field_151026_S,leather_leggings,2, +field_151027_R,leather_chestplate,2, +field_151028_Y,iron_helmet,2, +field_151029_X,chainmail_boots,2, +field_151030_Z,iron_chestplate,2, +field_151031_f,bow,2, +field_151032_g,arrow,2, +field_151033_d,flint_and_steel,2, +field_151034_e,apple,2, +field_151035_b,iron_pickaxe,2, +field_151036_c,iron_axe,2, +field_151037_a,iron_shovel,2, +field_151038_n,wooden_shovel,2, +field_151039_o,wooden_pickaxe,2, +field_151040_l,iron_sword,2, +field_151041_m,wooden_sword,2, +field_151042_j,iron_ingot,2, +field_151043_k,gold_ingot,2, +field_151044_h,coal,2, +field_151045_i,diamond,2, +field_151046_w,diamond_pickaxe,2, +field_151047_v,diamond_shovel,2, +field_151048_u,diamond_sword,2, +field_151049_t,stone_axe,2, +field_151050_s,stone_pickaxe,2, +field_151051_r,stone_shovel,2, +field_151052_q,stone_sword,2, +field_151053_p,wooden_axe,2, +field_151054_z,bowl,2, +field_151055_y,stick,2, +field_151056_x,diamond_axe,2, +field_151057_cb,name_tag,2, +field_151058_ca,lead,2, +field_151059_bz,fire_charge,2, +field_151060_bw,speckled_melon,2, +field_151061_bv,ender_eye,2, +field_151062_by,experience_bottle,2, +field_151063_bx,spawn_egg,2, +field_151064_bs,magma_cream,2, +field_151065_br,blaze_powder,2, +field_151066_bu,cauldron,2, +field_151067_bt,brewing_stand,2, +field_151068_bn,potionitem,2, +field_151069_bo,glass_bottle,2, +field_151070_bp,spider_eye,2, +field_151071_bq,fermented_spider_eye,2, +field_151072_bj,blaze_rod,2, +field_151073_bk,ghast_tear,2, +field_151074_bl,gold_nugget,2, +field_151075_bm,nether_wart,2, +field_151076_bf,chicken,2, +field_151077_bg,cooked_chicken,2, +field_151078_bh,rotten_flesh,2, +field_151079_bi,ender_pearl,2, +field_151080_bb,pumpkin_seeds,2, +field_151081_bc,melon_seeds,2, +field_151082_bd,beef,2, +field_151083_be,cooked_beef,2, +field_151084_co,record_wait,2, +field_151085_cm,record_ward,2, +field_151086_cn,record_11,2, +field_151087_ck,record_stal,2, +field_151088_cl,record_strad,2, +field_151089_ci,record_mall,2, +field_151090_cj,record_mellohi,2, +field_151091_cg,record_chirp,2, +field_151092_ch,record_far,2, +field_151093_ce,record_cat,2, +field_151094_cf,record_blocks,2, +field_151095_cc,command_block_minecart,2, +field_151096_cd,record_13,2, +field_151097_aZ,shears,2, +field_151098_aY,filled_map,2, +field_151099_bA,writable_book,2, +field_151100_aR,dye,2, +field_151102_aT,sugar,2, +field_151103_aS,bone,2, +field_151104_aV,bed,2, +field_151105_aU,cake,2, +field_151106_aX,cookie,2, +field_151107_aW,repeater,2, +field_151108_aI,chest_minecart,2, +field_151109_aJ,furnace_minecart,2, +field_151110_aK,egg,2, +field_151111_aL,compass,2, +field_151112_aM,fishing_rod,2, +field_151113_aN,clock,2, +field_151114_aO,glowstone_dust,2, +field_151115_aP,fish,2, +field_151116_aA,leather,2, +field_151117_aB,milk_bucket,2, +field_151118_aC,brick,2, +field_151119_aD,clay_ball,2, +field_151120_aE,reeds,2, +field_151121_aF,paper,2, +field_151122_aG,book,2, +field_151123_aH,slime_ball,2, +field_151124_az,boat,2, +field_151125_bZ,diamond_horse_armor,2, +field_151126_ay,snowball,2, +field_151127_ba,melon,2, +field_151128_bU,quartz,2, +field_151129_at,lava_bucket,2, +field_151130_bT,netherbrick,2, +field_151131_as,water_bucket,2, +field_151132_bS,comparator,2, +field_151133_ar,bucket,2, +field_151134_bR,enchanted_book,2, +field_151136_bY,golden_horse_armor,2, +field_151137_ax,redstone,2, +field_151138_bX,iron_horse_armor,2, +field_151139_aw,iron_door,2, +field_151140_bW,hopper_minecart,2, +field_151141_av,saddle,2, +field_151142_bV,tnt_minecart,2, +field_151143_au,minecart,2, +field_151144_bL,skull,2, +field_151145_ak,flint,2, +field_151146_bM,carrot_on_a_stick,2, +field_151147_al,porkchop,2, +field_151148_bJ,map,2, +field_151149_ai,golden_leggings,2, +field_151150_bK,golden_carrot,2, +field_151151_aj,golden_boots,2, +field_151152_bP,fireworks,2, +field_151153_ao,golden_apple,2, +field_151154_bQ,firework_charge,2, +field_151155_ap,sign,2, +field_151156_bN,nether_star,2, +field_151157_am,cooked_porkchop,2, +field_151158_bO,pumpkin_pie,2, +field_151159_an,painting,2, +field_151160_bD,item_frame,2, +field_151161_ac,diamond_helmet,2, +field_151162_bE,flower_pot,2, +field_151163_ad,diamond_chestplate,2, +field_151164_bB,written_book,2, +field_151165_aa,iron_leggings,2, +field_151166_bC,emerald,2, +field_151167_ab,iron_boots,2, +field_151168_bH,baked_potato,2, +field_151169_ag,golden_helmet,2, +field_151170_bI,poisonous_potato,2, +field_151171_ah,golden_chestplate,2, +field_151172_bF,carrot,2, +field_151173_ae,diamond_leggings,2, +field_151174_bG,potato,2, +field_151175_af,diamond_boots,2, +field_151183_A,junkFishedStat,2, +field_151184_B,treasureFishedStat,2, +field_151185_q,distanceByHorseStat,2, +field_151186_x,animalsBredStat,2,the number of animals you have bred +field_151191_b,jsonSerializableValue,2, +field_151192_a,integerValue,2, +field_151227_b,logger,2, +field_151228_a,downloadThreadsStarted,2,The number of download threads that we have started so far. +field_151234_b,logger,2, +field_151242_b,multiplyDeBruijnBitPosition,2,"Though it looks like an array, this is really more like a mapping. Key (index of this array) is the upper 5 bits of the result of multiplying a 32-bit unsigned integer by the B(2, 5) De Bruijn sequence 0x077CB531. Value (value stored in the array) is the unique index (from the right) of the leftmost one-bit in a 32-bit unsigned integer that can cause the upper 5 bits to get that value. Used for highly optimized ""find the log-base-2 of this number"" calculations." +field_151245_t,iconItemStack,0, +field_151249_a,logger,2, +field_151254_d,locationOfBlockChange,2, +field_151257_b,networkSystem,2, +field_151258_a,logger,2, +field_151262_p,logger,2, +field_151272_f,networkManagers,2,A list containing all NetworkManager instances of all endpoints +field_151273_d,mcServer,2,Reference to the MinecraftServer object. +field_151274_e,endpoints,2,Contains all endpoints added to this NetworkSystem +field_151275_b,logger,2, +field_151276_c,eventLoops,2, +field_151277_a,isAlive,2,True if this NetworkSystem has never had his endpoints terminated +field_151305_b,protocol,2, +field_151306_a,name,2, +field_151323_d,favicon,2, +field_151324_b,playerCount,2, +field_151325_c,protocolVersion,2, +field_151326_a,serverMotd,2, +field_151334_b,onlinePlayerCount,2, +field_151335_c,players,2, +field_151336_a,maxPlayers,2, +field_151343_f,eventParameter,2, +field_151344_d,blockType,2, +field_151345_e,eventID,2,Different for each blockID +field_151352_g,block,2, +field_151355_a,alreadyRegistered,2,"Whether the blocks, items, etc have already been registered" +field_151360_e,AMPLIFIED,2,amplified world type +field_151361_l,hasNotificationData,2, +field_151363_b,attacker,2,The attacker of the user with the enchantment +field_151364_a,user,2,The user of the enchantment +field_151365_b,target,2,The target entity being damaged +field_151366_a,user,2,The user of the enchantment +field_151369_A,lure,2, +field_151370_z,luckOfTheSea,2, +field_151382_b,exceptionMessage,0, +field_151388_d,ENCHANTMENT_ITERATOR_HURT,2, +field_151389_e,ENCHANTMENT_ITERATOR_DAMAGE,2, +field_151423_m,pufferfishEffect,2, +field_151430_f,resourceKey,2, +field_151432_d,ID_LOOKUP,2, +field_151433_e,chatVisibility,2, +field_151441_H,showInventoryAchievementHint,0, +field_151442_I,mipmapLevels,0, +field_151444_V,keyBindSprint,0, +field_151445_Q,keyBindInventory,0, +field_151446_aD,mapSoundLevels,0, +field_151447_Z,keyBindScreenshot,0, +field_151448_g,fboEnable,0, +field_151449_az,typeListString,0, +field_151450_ay,gson,0, +field_151451_c,renderDistanceChunks,0, +field_151452_as,saturation,0, +field_151453_l,resourcePacks,0, +field_151454_ax,logger,0, +field_151455_aw,forceUnicodeFont,0, +field_151456_ac,keyBindsHotbar,0, +field_151457_aa,keyBindTogglePerspective,0, +field_151458_ab,keyBindSmoothCamera,0, +field_151459_g,stat,2, +field_151471_f,keyCategory,0, +field_151472_e,keyCodeDefault,0, +field_151473_c,keybindSet,0, +field_151474_i,pressTime,0, +field_151476_f,logger,2, +field_151478_a,logger,2, +field_151479_b,logger,2, +field_151480_b,logger,2, +field_151481_a,logger,2, +field_151484_k,temptItem,2, +field_151493_a,ocelot,2, +field_151495_j,targetY,2, +field_151496_k,targetZ,2, +field_151497_i,targetX,2, +field_151500_b,grassEaterEntity,2,The entity owner of this AITask +field_151501_c,entityWorld,2,The world the grass eater entity is eating from +field_151502_a,eatingGrassTimer,2,Number of ticks since the entity started to eat grass +field_151504_e,doorBlock,2,The wooden door block +field_151505_a,logger,2, +field_151506_a,logger,2, +field_151511_a,owner,2, +field_151516_b,logger,2, +field_151520_r,damageIsAbsolute,2,Whether or not the damage ignores modification by potion effects or enchantments. +field_151527_f,difficultyId,2, +field_151528_g,difficultyResourceKey,2, +field_151530_e,difficultyEnums,2, +field_151562_a,blockstate,2, +field_151563_j,tileTicks,2, +field_151564_i,tileEntities,2, +field_151566_D,dragonEgg,2, +field_151567_E,portal,2, +field_151568_F,cake,2, +field_151569_G,web,2, +field_151570_A,cactus,2, +field_151571_B,clay,2, +field_151572_C,gourd,2, +field_151573_f,iron,2, +field_151574_g,anvil,2, +field_151575_d,wood,2, +field_151576_e,rock,2, +field_151577_b,grass,2, +field_151578_c,ground,2, +field_151579_a,air,2, +field_151580_n,cloth,2, +field_151581_o,fire,2, +field_151582_l,vine,2, +field_151583_m,sponge,2, +field_151584_j,leaves,2, +field_151585_k,plants,2, +field_151586_h,water,2, +field_151587_i,lava,2, +field_151588_w,ice,2, +field_151589_v,coral,2, +field_151590_u,tnt,2, +field_151591_t,redstoneLight,2, +field_151592_s,glass,2, +field_151593_r,carpet,2, +field_151594_q,circuits,2, +field_151595_p,sand,2, +field_151596_z,craftedSnow,2,The material for crafted snow. +field_151597_y,snow,2, +field_151598_x,packedIce,2, +field_151629_c,logger,2, +field_151645_D,redColor,2, +field_151646_E,blackColor,2, +field_151647_F,goldColor,2, +field_151648_G,diamondColor,2, +field_151649_A,blueColor,2, +field_151650_B,brownColor,2, +field_151651_C,greenColor,2, +field_151652_H,lapisColor,2, +field_151653_I,emeraldColor,2, +field_151654_J,obsidianColor,2, +field_151655_K,netherrackColor,2, +field_151656_f,tntColor,2, +field_151657_g,iceColor,2, +field_151658_d,sandColor,2, +field_151659_e,clothColor,2, +field_151660_b,airColor,2, +field_151661_c,grassColor,2, +field_151662_n,waterColor,2, +field_151663_o,woodColor,2, +field_151664_l,dirtColor,2, +field_151665_m,stoneColor,2, +field_151666_j,snowColor,2, +field_151667_k,clayColor,2, +field_151668_h,ironColor,2, +field_151669_i,foliageColor,2, +field_151670_w,grayColor,2, +field_151671_v,pinkColor,2, +field_151672_u,limeColor,2, +field_151673_t,yellowColor,2, +field_151674_s,lightBlueColor,2, +field_151675_r,magentaColor,2, +field_151676_q,adobeColor,2, +field_151677_p,quartzColor,2, +field_151678_z,purpleColor,2, +field_151679_y,cyanColor,2, +field_151680_x,silverColor,2, +field_151687_a,logger,2, +field_152110_j,playerProfile,2, +field_152118_bv,chickenJockey,2, +field_152127_m,streamIndicator,0, +field_152176_i,serverResourcePacks,0, +field_152177_g,time,0, +field_152317_g,parentScreen,0, +field_152325_g,parentScreen,0, +field_152333_s,stream,0, +field_152350_aA,skinManager,0, +field_152351_aB,scheduledTasks,0, +field_152352_aC,mcThread,0, +field_152353_at,stream,0, +field_152354_ay,mojangLogo,0, +field_152355_az,sessionService,0, +field_152356_J,twitchDetails,0, +field_152364_T,authService,2, +field_152365_W,profileRepo,2, +field_152366_X,profileCache,2, +field_152367_a,USER_CACHE_FILE,2, +field_152391_aS,STREAM_COMPRESSIONS,0, +field_152392_aT,STREAM_CHAT_MODES,0, +field_152393_aU,STREAM_CHAT_FILTER_MODES,0, +field_152394_aV,STREAM_MIC_MODES,0, +field_152395_am,keyBindFullscreen,0, +field_152396_an,keyBindStreamStartStop,0, +field_152397_ao,keyBindStreamPauseUnpause,0, +field_152398_ap,keyBindStreamCommercials,0, +field_152399_aq,keyBindStreamToggleMic,0, +field_152400_J,streamBytesPerPixel,0, +field_152401_K,streamMicVolume,0, +field_152402_L,streamGameVolume,0, +field_152403_M,streamKbps,0, +field_152404_N,streamFps,0, +field_152405_O,streamCompression,0, +field_152406_P,streamSendMetadata,0, +field_152407_Q,streamPreferredServer,0, +field_152408_R,streamChatEnabled,0, +field_152409_S,streamChatUserFilter,0, +field_152410_T,streamMicToggleBehavior,0, +field_152425_c,SESSION_TYPES,0, +field_152426_d,sessionType,0, +field_152429_d,sessionType,0, +field_152434_e,cacheFile,0, +field_152441_a,locationStreamIndicator,0, +field_152442_b,mc,0, +field_152443_c,streamAlpha,0, +field_152444_d,streamAlphaDelta,0, +field_152451_a,INFINITE,2, +field_152452_b,max,2, +field_152453_c,read,2, +field_152463_r,isEncrypted,2, +field_152478_a,LOGGER,0, +field_152499_c,direction,2, +field_152500_c,direction,2, +field_152587_j,resourceMode,0, +field_152594_d,motd,0, +field_152613_a,FILE_PLAYERBANS,2, +field_152614_b,FILE_IPBANS,2, +field_152615_c,FILE_OPS,2, +field_152616_d,FILE_WHITELIST,2, +field_152627_a,pmLogger,2, +field_152642_a,value,2, +field_152645_a,permissionLevel,2, +field_152659_a,dateFormat,2, +field_152660_b,gson,2, +field_152661_c,usernameToProfileEntryMap,2,A map between player usernames and {@link ProfileEntry profile entries} +field_152662_d,uuidToProfileEntryMap,2,A map between {@link UUID UUID's} and {@link ProfileEntry ProfileEntries} +field_152663_e,gameProfiles,2,A list of all the cached {@link GameProfile GameProfiles} +field_152664_f,mcServer,2, +field_152665_g,usercacheFile,2, +field_152666_h,TYPE,2, +field_152672_b,gameProfile,2,The player's GameProfile +field_152673_c,expirationDate,2,The date that this entry will expire +field_152693_a,logger,2, +field_152694_b,gson,2, +field_152695_c,saveFile,2, +field_152696_d,values,2, +field_152697_e,lanServer,2, +field_152698_f,saveFileFormat,2, +field_152728_a,OLD_IPBAN_FILE,2, +field_152729_b,OLD_PLAYERBAN_FILE,2, +field_152730_c,OLD_OPS_FILE,2, +field_152731_d,OLD_WHITELIST_FILE,2, +field_152732_e,LOGGER,2, +field_152773_a,snooperStats,2,The snooper Map of stats +field_152774_b,clientStats,2,The client Map of stats +field_152781_b,mapAssets,0, +field_152783_a,logger,0, +field_152784_b,resourceMap,0, +field_152785_b,IS_STANDALONE,2,Selects only entities which are neither ridden by anything nor ride on anything +field_152794_b,THREAD_POOL,0, +field_152795_c,textureManager,0, +field_152796_d,skinCacheDir,0, +field_152797_e,sessionService,0, +field_152798_f,skinCacheLoader,0, +field_152812_b,name,0, +field_152813_c,description,0, +field_152814_d,payload,0, +field_152860_A,ingestServTester,0,Instance of the IngestServerTester +field_152861_B,logger,0, +field_152863_D,lastError,0,The last error that ocurred +field_152864_E,errorCode,0, +field_152867_c,broadcastListener,0, +field_152872_h,streamCore,0,The stream's core +field_152873_i,theStream,0,The Stream's instance +field_152879_o,broadcastState,0, +field_152881_q,videoParamaters,0, +field_152882_r,audioParamaters,0, +field_152883_s,ingestList,0, +field_152884_t,ingestServ,0,The IngestServer's instance +field_152885_u,authenticationToken,0, +field_152886_v,channelInfo,0, +field_152887_w,userInfo,0, +field_152888_x,streamInfo,0, +field_152889_y,archivingState,0,The current archiving state +field_152949_a,STREAM_MARKER,0, +field_152950_b,LOGGER,0, +field_152951_c,broadcastController,0, +field_152952_d,chatController,0, +field_152953_e,mc,0,the minecraft instance +field_152954_f,twitchComponent,0, +field_152956_h,framebuffer,0, +field_152958_j,targetFPS,0,stream's target fps +field_152961_m,loggedIn,0, +field_152964_p,authFailureReason,0, +field_153018_p,LOGGER,0, +field_153053_k,audioParameters,0, +field_153196_B,logText,0, +field_153197_d,nvidia,0, +field_153198_e,GL_FRAMEBUFFER,0, +field_153199_f,GL_RENDERBUFFER,0, +field_153200_g,GL_COLOR_ATTACHMENT0,0, +field_153201_h,GL_DEPTH_ATTACHMENT,0, +field_153202_i,GL_FRAMEBUFFER_COMPLETE,0, +field_153203_j,GL_FB_INCOMPLETE_ATTACHMENT,0, +field_153204_k,GL_FB_INCOMPLETE_MISS_ATTACH,0, +field_153205_l,GL_FB_INCOMPLETE_DRAW_BUFFER,0, +field_153206_m,GL_FB_INCOMPLETE_READ_BUFFER,0, +field_153207_o,GL_LINK_STATUS,0, +field_153208_p,GL_COMPILE_STATUS,0, +field_153209_q,GL_VERTEX_SHADER,0, +field_153210_r,GL_FRAGMENT_SHADER,0, +field_153211_u,extBlendFuncSeparate,0, +field_153212_w,framebufferType,0, +field_153213_x,shadersAvailable,0, +field_153214_y,arbShaders,0, +field_153215_z,arbMultitexture,0, +field_154318_o,realmsButton,0, +field_154332_n,eula,1, +field_154340_k,selectionList,0, +field_154349_a,LOG,1, +field_154350_b,eulaFile,1, +field_154351_c,acceptedEULA,1, +field_155771_h,logger,1, +field_164003_c,threadName,1, +field_164004_h,THREAD_ID,1, +field_164005_h,LOGGER,1, +field_164248_b,LOGGER,1, +field_164249_a,serverGuiFont,1, +field_164439_d,LOGGER,1, +field_164440_a,LOGGER,1, +field_174835_g,isOutsideBorder,2, +field_174836_a,ZERO_AABB,2, +field_174837_as,cmdResultStats,2,The command result statistics for this Entity. +field_174844_a,entity,0, +field_174847_a,sourceState,0, +field_174848_a,RANDOM,0, +field_174849_az,particleTypes,0, +field_174850_ay,lifetime,0, +field_174851_a,attachedEntity,0, +field_174852_ax,age,0, +field_174853_f,inTile,2, +field_174854_a,inGround,2, +field_174860_b,facingDirection,2,The direction the entity is facing +field_174861_a,hangingPosition,2, +field_174879_c,pos,2, +field_174883_i,stats,2, +field_174896_a,guiID,0, +field_174901_a,code,2, +field_174905_l,totalCookTime,2, +field_174906_k,cookTime,2, +field_174909_f,beamSegments,2,A list of beam segments for this beacon +field_174913_f,RNG,2, +field_174924_c,inventoryHeight,2, +field_174931_f,pistonFacing,2, +field_174932_a,pistonState,2, +field_174934_k,guardian,0, +field_174938_d,blurLast,0, +field_174939_e,mipmapLast,0, +field_174940_b,blur,0, +field_174941_c,mipmap,0, +field_174945_f,LOCATION_MISSING_TEXTURE,0, +field_174946_m,iconCreator,0, +field_174947_f,LOG,0,"Access to the Logger, for all your logging needs." +field_174948_g,textureLocation,0,The location of the texture. +field_174955_d,defaultModel,0, +field_174956_b,texMap,0, +field_174957_c,modelProvider,0, +field_174958_a,modelRegistry,0, +field_174987_D,frustumUpdatePosZ,0, +field_174988_E,frustumUpdatePosChunkX,0, +field_174989_F,frustumUpdatePosChunkY,0, +field_174990_G,frustumUpdatePosChunkZ,0, +field_174991_A,entityOutlineShader,0,Stores the shader group for the entity_outline shader +field_174992_B,frustumUpdatePosX,0, +field_174993_C,frustumUpdatePosY,0, +field_174994_L,lastViewEntityYaw,0, +field_174995_M,renderDispatcher,0, +field_174996_N,renderContainer,0, +field_174997_H,lastViewEntityX,0, +field_174998_I,lastViewEntityY,0, +field_174999_J,lastViewEntityZ,0, +field_175000_K,lastViewEntityPitch,0, +field_175001_U,debugFixedClippingHelper,0, +field_175002_T,debugFixTerrainFrustum,0, +field_175003_W,debugTerrainFrustumPosition,0, +field_175004_V,debugTerrainMatrix,0, +field_175005_X,vboEnabled,0, +field_175006_g,locationForcefieldPng,0, +field_175007_a,renderChunkFactory,0, +field_175008_n,viewFrustum,0, +field_175009_l,chunksToUpdate,0, +field_175010_j,renderManager,0, +field_175011_u,sky2VBO,0, +field_175012_t,skyVBO,0, +field_175013_s,starVBO,0, +field_175014_r,vertexBufferFormat,0, +field_175015_z,entityOutlineFramebuffer,0, +field_175024_d,chestRenderer,0, +field_175025_e,fluidRenderer,0, +field_175026_b,gameSettings,0, +field_175027_c,blockModelRenderer,0, +field_175028_a,blockModelShapes,0, +field_175057_n,textureManager,0, +field_175058_l,notRenderingEffectsInGUI,0,False when the renderer is rendering the item's effects into a GUI +field_175059_m,itemModelMesher,0, +field_175073_D,drawBlockOutline,0, +field_175074_C,renderHand,0, +field_175075_L,torchFlickerDX,0, +field_175076_N,rainXCoords,0, +field_175077_O,rainYCoords,0, +field_175078_W,debugView,0, +field_175079_V,debugViewDirection,0, +field_175080_Q,fogColorRed,0, +field_175081_S,fogColorBlue,0, +field_175082_R,fogColorGreen,0, +field_175083_ad,useShader,0, +field_175084_ae,frameCount,0, +field_175091_e,gameProfile,0, +field_175107_d,profile,0, +field_175118_f,patterns,2,A list of all the banner patterns. +field_175120_a,baseColor,2, +field_175121_j,patternResourceLocation,2,"This is a String representation of this banners pattern and color lists, used for texture caching." +field_175122_h,patternList,2,A list of all patterns stored on this banner. +field_175123_i,colorList,2,A list of all the color values stored on this banner. +field_175125_b,displayName,0, +field_175126_a,guiID,0, +field_175127_b,position,2, +field_175128_a,world,2, +field_175129_b,position,2, +field_175130_a,world,2, +field_175132_d,fallTile,2, +field_175152_f,xpSeed,2, +field_175153_bG,hasReducedDebug,2, +field_175157_a,playerInfo,0, +field_175164_bL,lastReportedYaw,0,"The last yaw value which was transmitted to the server, used to determine when the yaw changes and needs to be re-transmitted" +field_175165_bM,lastReportedPitch,0,"The last pitch value which was transmitted to the server, used to determine when the pitch changes and needs to be re-transmitted" +field_175166_bJ,lastReportedPosY,0,"The last Y position which was transmitted to the server, used to determine when the Y position changes and needs to be re-transmitted" +field_175167_bK,lastReportedPosZ,0,"The last Z position which was transmitted to the server, used to determine when the Z position changes and needs to be re-transmitted" +field_175168_bP,positionUpdateTicks,0,"Reset to 0 every time position is sent to the server, used to send periodic updates every 20 ticks even when the player is not moving." +field_175169_bQ,hasValidHealth,0, +field_175170_bN,serverSneakState,0,the last sneaking state sent to the server +field_175171_bO,serverSprintState,0,the last sprinting state sent to the server +field_175172_bI,lastReportedPosX,0,"The last X position which was transmitted to the server, used to determine when the X position changes and needs to be re-trasmitted" +field_175189_D,lastPlayerHealth,0, +field_175190_E,lastSystemTime,0,The last recorded system time +field_175191_F,healthUpdateCounter,0,Used with updateCounter to make the heart bar flash +field_175192_A,titleDisplayTime,0,The time that the title is display +field_175193_B,titleFadeOut,0,The time that the title take to fade out +field_175194_C,playerHealth,0, +field_175195_w,titlesTimer,0,A timer for the current title and subtitle displayed +field_175196_v,overlayPlayerList,0, +field_175197_u,spectatorGui,0,The spectator GUI for this in-game GUI instance +field_175198_t,overlayDebug,0, +field_175199_z,titleFadeIn,0,The time that the title take to fade in +field_175200_y,displayedSubTitle,0,The current sub-title displayed +field_175201_x,displayedTitle,0,The current title displayed +field_175208_g,id,0, +field_175209_y,validator,0,Called to check if the text is valid +field_175214_q,guiResponder,0,The GuiResponder Object reference. +field_175215_p,localizationStr,0,The localization string used by this control. +field_175222_u,formatHelper,0, +field_175223_t,responder,0, +field_175224_s,max,0, +field_175225_r,min,0, +field_175226_q,name,0, +field_175227_p,sliderPosition,0, +field_175228_o,isMouseDown,0, +field_175234_p,playerModelParts,0, +field_175241_f,fontRenderer,0, +field_175242_a,mc,0, +field_175250_f,mc,0, +field_175251_g,guiIngame,0, +field_175253_j,lastTimeOpened,0,"The last time the playerlist was opened (went from not being renderd, to being rendered)" +field_175254_k,isBeingRendered,0,Weither or not the playerlist is currently being rendered +field_175255_h,footer,0, +field_175256_i,header,0, +field_175284_f,PROTOCOLS,0, +field_175285_g,NEWLINE_SPLITTER,0, +field_175286_t,clickedLinkURI,0, +field_175287_a,LOGGER,0, +field_175289_s,changed,0, +field_175300_s,savedGameMode,0,"Used to save away the game mode when the current ""debug"" world type is chosen (forcing it to spectator mode)" +field_175337_G,random,0,A Random instance for this world customization +field_175360_f,title,0,The title of the GUI. +field_175361_a,parentScreen,0,The parent GUI for this GUI +field_175372_K,realmsButton,0,Minecraft Realms button. +field_175374_h,RANDOM,0, +field_175376_w,playerInventory,0,The player inventory bound to this GUI. +field_175377_u,dispenserInventory,0,The inventory contained within the corresponding Dispenser. +field_175379_F,playerInventory,0,The player inventory currently bound to this GuiEnchantment instance. +field_175383_v,playerInventory,0,The player inventory bound to this GUI. +field_175384_v,playerInventory,0,The player inventory bound to this GUI. +field_175401_bS,spectatingEntity,2,The entity the player is currently spectating through. +field_175429_f,DEFAULT_RIGHTLEG_ROTATION,2, +field_175430_g,contents,2, +field_175431_d,DEFAULT_RIGHTARM_ROTATION,2, +field_175432_e,DEFAULT_LEFTLEG_ROTATION,2, +field_175433_b,DEFAULT_BODY_ROTATION,2, +field_175434_c,DEFAULT_LEFTARM_ROTATION,2, +field_175435_a,DEFAULT_HEAD_ROTATION,2, +field_175436_h,canInteract,2, +field_175437_i,punchCooldown,2,"After punching the stand, the cooldown before you can punch it again without breaking it." +field_175438_bj,leftArmRotation,2, +field_175439_bk,rightArmRotation,2, +field_175440_bl,leftLegRotation,2, +field_175441_bm,rightLegRotation,2, +field_175442_bg,disabledSlots,2, +field_175443_bh,headRotation,2, +field_175444_bi,bodyRotation,2, +field_175450_e,VISIBLE_MOB_SELECTOR,2,Entity selector for IMob types that are not invisible +field_175452_bi,wasOnGround,2, +field_175459_bn,angerTargetUUID,2, +field_175460_b,summonSilverfish,2, +field_175478_bn,targetedEntity,2, +field_175481_bq,wander,2, +field_175497_b,lifetime,2, +field_175498_c,playerSpawned,2, +field_175504_a,growingAge,2, +field_175506_bl,spawnableBlock,2, +field_175514_bm,DYE_TO_RGB,2,Map from EnumDyeColor to RGB values for passage to GlStateManager.color() +field_175538_bq,currentMoveTypeDuration,2, +field_175539_bk,aiAvoidWolves,2, +field_175541_bs,carrotTicks,2, +field_175542_br,moveType,2, +field_175545_bm,avoidEntity,2, +field_175560_bz,villagerInventory,2, +field_175561_bA,DEFAULT_TRADE_LIST_MAP,2,"A multi-dimensional array mapping the various professions, careers and career levels that a Villager may offer" +field_175562_bw,careerLevel,2,This is the EntityVillager's career level value +field_175563_bv,careerId,2, +field_175564_by,areAdditionalTasksSet,2, +field_175565_bs,isWillingToMate,2, +field_175575_g,resultStats,2, +field_175588_P,resourcePackHash,2, +field_175589_i,futureTaskQueue,2, +field_175590_aa,serverThread,2, +field_175591_ab,currentTime,2, +field_175612_E,renderChunksMany,0, +field_175616_W,renderManager,0, +field_175617_aL,modelManager,0, +field_175618_aM,blockRenderDispatcher,0,The BlockRenderDispatcher instance that will be used based off gamesettings +field_175619_R,enableGLErrorChecking,0, +field_175620_Y,itemRenderer,0, +field_175621_X,renderItem,0, +field_175622_Z,renderViewEntity,0, +field_175632_f,DEFAULT_STATE,0, +field_175633_g,position,0, +field_175634_h,combinedLights,0, +field_175635_i,blockStates,0, +field_175728_M,worldBorder,2, +field_175729_l,entitiesById,2, +field_175730_i,tickableTileEntities,2, +field_175740_d,villageSiege,2, +field_175741_N,entitiesByUuid,2, +field_175742_R,mobSpawner,2, +field_175743_a,delegate,2, +field_175747_C,colorIndex,2,The numerical index that represents this color +field_175748_y,name,2,The name of this color/formatting +field_175774_a,LOGGER,2, +field_175785_a,SHORTCUTS,2, +field_175893_a,CHEST_CONTENT_WEIGHT_LIST,2, +field_175901_b,layerMaterial,2, +field_175907_a,tallGrassState,2, +field_175909_a,chestItems,2, +field_175916_b,SPAWNERTYPES,2, +field_175917_c,CHESTCONTENT,2, +field_175919_c,predicate,2, +field_175920_a,oreBlock,2, +field_175943_g,trunkSize,2, +field_175944_d,branchSlope,2, +field_175945_e,scaleWidth,2, +field_175946_l,world,2, +field_175947_m,basePos,2, +field_175949_k,rand,2, +field_175950_h,heightLimitLimit,2, +field_175972_I,barrier,2, +field_176076_D,GL_OPERAND2_RGB,0, +field_176077_E,GL_COMBINE_ALPHA,0, +field_176078_F,GL_SOURCE0_ALPHA,0, +field_176079_G,GL_SOURCE1_ALPHA,0, +field_176080_A,GL_SOURCE2_RGB,0, +field_176081_B,GL_OPERAND0_RGB,0, +field_176082_C,GL_OPERAND1_RGB,0, +field_176083_O,vboSupported,0, +field_176084_H,GL_SOURCE2_ALPHA,0, +field_176085_I,GL_OPERAND0_ALPHA,0, +field_176086_J,GL_OPERAND1_ALPHA,0, +field_176087_K,GL_OPERAND2_ALPHA,0, +field_176088_V,arbTextureEnvCombine,0, +field_176089_P,GL_ARRAY_BUFFER,0, +field_176090_Y,arbVbo,0, +field_176091_w,GL_PREVIOUS,0, +field_176092_v,GL_CONSTANT,0, +field_176093_u,GL_PRIMARY_COLOR,0, +field_176094_t,GL_INTERPOLATE,0, +field_176095_s,GL_COMBINE,0, +field_176096_r,GL_TEXTURE2,0, +field_176097_z,GL_SOURCE1_RGB,0, +field_176098_y,GL_SOURCE0_RGB,0, +field_176099_x,GL_COMBINE_RGB,0, +field_176103_f,minY,2, +field_176104_g,maxX,2, +field_176106_e,minX,2, +field_176108_h,maxY,2, +field_176146_D,borderSize,2, +field_176147_E,borderSizeLerpTime,2, +field_176148_F,borderSizeLerpTarget,2, +field_176149_G,borderSafeZone,2, +field_176150_A,difficultyLocked,2, +field_176151_B,borderCenterX,2, +field_176152_C,borderCenterZ,2, +field_176153_H,borderDamagePerBlock,2, +field_176154_I,borderWarningDistance,2, +field_176155_J,borderWarningTime,2, +field_176156_a,DEFAULT_DIFFICULTY,2, +field_176157_p,cleanWeatherTime,2, +field_176158_z,difficulty,2, +field_176165_d,entitySizeY,2, +field_176166_e,entitySizeZ,2, +field_176167_b,pointMap,2, +field_176168_c,entitySizeX,2, +field_176169_a,blockaccess,2, +field_176180_f,canEnterDoors,2, +field_176181_g,canBreakDoors,2, +field_176182_j,shouldAvoidWater,2, +field_176183_h,avoidsWater,2, +field_176184_i,canSwim,2, +field_176190_c,nodeProcessor,2, +field_176227_L,blockState,2, +field_176228_M,defaultBlockState,2, +field_176229_d,BLOCK_STATE_IDS,2, +field_176230_a,AIR_ID,2,ResourceLocation for the Air block +field_176231_q,SLIME_SOUND,2, +field_176236_b,CHECK_DECAY,2, +field_176237_a,DECAYABLE,2, +field_176238_O,isTransparent,0, +field_176239_P,VARIANT,2, +field_176240_P,VARIANT,2, +field_176241_b,NORTH,2, +field_176242_M,EAST,2, +field_176243_N,SOUTH,2, +field_176244_O,WEST,2, +field_176245_a,COLOR,2, +field_176246_a,EXPLODE,2, +field_176247_a,VARIANT,2, +field_176248_b,DEFAULT_META,2, +field_176249_a,VARIANT,2, +field_176250_M,MOSSY_META,2, +field_176251_N,CRACKED_META,2, +field_176252_O,CHISELED_META,2, +field_176254_b,NORTH,2, +field_176255_P,VARIANT,2, +field_176256_a,UP,2, +field_176257_M,EAST,2, +field_176258_N,SOUTH,2, +field_176259_O,WEST,2, +field_176263_b,POWERED,2, +field_176264_a,FACING,2, +field_176265_M,ATTACHED,2, +field_176266_N,SUSPENDED,2, +field_176273_b,NORTH,2, +field_176274_P,ALL_FACES,2, +field_176277_a,UP,2, +field_176278_M,EAST,2, +field_176279_N,SOUTH,2, +field_176280_O,WEST,2, +field_176283_b,OPEN,2, +field_176284_a,FACING,2, +field_176285_M,HALF,2, +field_176289_Q,SOUTH,2, +field_176290_b,SUSPENDED,2, +field_176291_P,EAST,2, +field_176292_R,WEST,2, +field_176293_a,POWERED,2, +field_176294_M,ATTACHED,2, +field_176295_N,DISARMED,2, +field_176296_O,NORTH,2, +field_176297_a,TYPE,2, +field_176298_M,AXIS,2, +field_176299_a,LOG_AXIS,2, +field_176300_b,VARIANT,2, +field_176301_b,VARIANT,2, +field_176308_b,HALF,2, +field_176309_a,FACING,2, +field_176310_M,SHAPE,2, +field_176313_a,WET,2, +field_176315_a,LAYERS,2, +field_176320_b,EXTENDED,2, +field_176321_a,FACING,2, +field_176325_b,TYPE,2, +field_176326_a,FACING,2, +field_176327_M,SHORT,2, +field_176330_a,COLOR,2, +field_176331_b,ROUGH_META,2, +field_176332_a,VARIANT,2, +field_176333_M,BRICKS_META,2, +field_176334_N,DARK_META,2, +field_176335_a,VARIANT,2, +field_176336_a,TYPE,2, +field_176347_b,EAST,2, +field_176348_a,NORTH,2, +field_176349_M,SOUTH,2, +field_176350_N,WEST,2, +field_176351_O,POWER,2, +field_176355_a,AGE,2, +field_176359_b,POWERED,2, +field_176360_a,FACING,2, +field_176367_b,LEVEL,2, +field_176378_a,VARIANT,2, +field_176379_b,smallBlock,2, +field_176380_a,VARIANT,2, +field_176382_a,FACING,2, +field_176383_a,VARIANT,2, +field_176384_a,SNOWY,2, +field_176385_b,SNOWY,2, +field_176386_a,VARIANT,2, +field_176387_N,FACING,2, +field_176393_b,snowmanPattern,2, +field_176394_a,snowmanBasePattern,2, +field_176395_M,golemBasePattern,2, +field_176396_O,golemPattern,2, +field_176410_b,DELAY,2, +field_176411_a,LOCKED,2, +field_176412_a,FACING,2, +field_176413_a,ROTATION,2, +field_176417_b,NODROP,2, +field_176418_a,FACING,2, +field_176419_M,IS_WITHER_SKELETON,2, +field_176420_N,witherBasePattern,2, +field_176421_O,witherPattern,2, +field_176425_b,TYPE,2, +field_176426_a,FACING,2, +field_176429_b,ENABLED,2, +field_176430_a,FACING,2, +field_176432_a,HAS_RECORD,2, +field_176434_a,INSTRUMENTS,2, +field_176435_b,inverted,2, +field_176436_a,POWER,2, +field_176437_a,FACING,2, +field_176440_b,TRIGGERED,2, +field_176441_a,FACING,2, +field_176443_b,CONTENTS,2, +field_176444_a,LEGACY_DATA,2, +field_176447_a,FACING,2, +field_176448_b,ROTATION,2, +field_176449_a,FACING,2, +field_176451_a,HAS_BOTTLE,2, +field_176452_a,TRIGGERED,2, +field_176459_a,FACING,2, +field_176463_b,MODE,2, +field_176464_a,POWERED,2, +field_176465_b,POWERED,2, +field_176466_a,OPEN,2, +field_176467_M,IN_WALL,2, +field_176471_b,OCCUPIED,2, +field_176472_a,PART,2, +field_176479_b,STAGE,2, +field_176480_a,TYPE,2, +field_176483_b,FACING,2, +field_176484_a,AGE,2, +field_176486_a,AGE,2, +field_176488_a,AGE,2, +field_176492_b,HALF,2, +field_176493_a,VARIANT,2, +field_176496_a,type,2, +field_176497_a,TYPE,2, +field_176498_a,SNOWY,2, +field_176501_a,AGE,2, +field_176504_a,VARIANT,2, +field_176505_b,DAMAGE,2, +field_176506_a,FACING,2, +field_176507_b,EYE,2, +field_176508_a,FACING,2, +field_176519_b,OPEN,2, +field_176520_a,FACING,2, +field_176521_M,HINGE,2, +field_176522_N,POWERED,2, +field_176523_O,HALF,2, +field_176525_b,EAST,2,Whether this fence connects in the eastern direction +field_176526_a,NORTH,2,Whether this fence connects in the northern direction +field_176527_M,SOUTH,2,Whether this fence connects in the southern direction +field_176528_N,WEST,2,Whether this fence connects in the western direction +field_176531_a,MOISTURE,2, +field_176539_Q,WEST,2, +field_176540_b,FLIP,2, +field_176541_P,SOUTH,2, +field_176542_R,UPPER,2, +field_176543_a,AGE,2, +field_176544_M,ALT,2, +field_176545_N,NORTH,2, +field_176546_O,EAST,2, +field_176547_a,COLOR,2, +field_176550_a,AXIS,2, +field_176554_a,HALF,2, +field_176555_b,SEAMLESS,2, +field_176556_M,VARIANT,2, +field_176557_b,VARIANT,2, +field_176558_b,SEAMLESS,2, +field_176559_M,VARIANT,2, +field_176565_b,SHAPE,2, +field_176568_b,SHAPE,2, +field_176569_M,POWERED,2, +field_176573_b,SHAPE,2, +field_176574_M,POWERED,2, +field_176579_a,POWER,2, +field_176580_a,POWERED,2, +field_176581_a,COLOR,2, +field_176584_b,POWERED,2, +field_176585_a,FACING,2, +field_176587_a,AGE,2, +field_176589_a,BITES,2, +field_176591_a,LEVEL,2, +field_176596_a,FACING,2, +field_176599_b,ITEM,0, +field_176600_a,BLOCK,0, +field_176605_b,interpolatedFrameData,0, +field_176606_q,locationNameCompass,0, +field_176607_p,locationNameClock,0, +field_176608_l,locationSprite,0, +field_176615_f,meta,2, +field_176616_g,name,2, +field_176618_e,META_LOOKUP,2, +field_176622_h,unlocalizedName,2, +field_176635_l,unlocalizedName,2, +field_176637_j,meta,2, +field_176638_k,name,2, +field_176640_i,META_LOOKUP,2, +field_176653_j,name,2,The EnumType's name. +field_176654_k,unlocalizedName,2, +field_176655_h,META_LOOKUP,2,Array of the Block's BlockStates +field_176656_i,meta,2,The BlockState's metadata. +field_176661_f,unlocalizedName,2, +field_176663_d,meta,2, +field_176664_e,name,2, +field_176666_c,META_LOOKUP,2, +field_176671_c,name,2, +field_176677_f,name,2, +field_176678_g,unlocalizedName,2, +field_176679_d,META_LOOKUP,2, +field_176680_e,metadata,2, +field_176690_f,mapColor,2, +field_176691_g,unlocalizedName,2, +field_176692_d,meta,2, +field_176693_e,name,2, +field_176695_c,META_LOOKUP,2, +field_176699_f,name,2, +field_176709_c,name,2, +field_176714_c,VARIANT,2, +field_176723_f,plane,2, +field_176725_d,NAME_LOOKUP,2, +field_176726_e,name,2, +field_176748_g,index,2,Ordering index for D-U-N-S-W-E +field_176754_o,HORIZONTALS,2,All Facings with horizontal axis in order S-W-N-E +field_176755_l,axisDirection,2, +field_176756_m,directionVec,2,Normalized Vector that points in the direction of this Facing +field_176757_j,name,2, +field_176758_k,axis,2, +field_176759_h,opposite,2,Index of the opposite Facing in the VALUES array +field_176760_i,horizontalIndex,2,Ordering index for the HORIZONTALS field (S-W-N-E) +field_176761_p,NAME_LOOKUP,2, +field_176784_w,mapColor,2, +field_176785_v,unlocalizedName,2, +field_176786_u,name,2, +field_176787_t,dyeDamage,2, +field_176788_s,meta,2, +field_176789_r,DYE_DMG_LOOKUP,2, +field_176790_q,META_LOOKUP,2, +field_176793_x,chatColor,2, +field_176797_f,META_LOOKUP,2, +field_176798_g,meta,2, +field_176806_i,unlocalizedName,2, +field_176811_f,name,2, +field_176812_g,unlocalizedName,2, +field_176813_d,META_LOOKUP,2, +field_176814_e,meta,2, +field_176820_d,name,2, +field_176829_f,name,2, +field_176830_g,unlocalizedName,2, +field_176831_d,META_LOOKUP,2, +field_176832_e,meta,2, +field_176842_g,META_LOOKUP,2, +field_176848_j,unlocalizedName,2, +field_176850_h,meta,2, +field_176851_i,name,2, +field_176864_l,facing,2, +field_176866_j,meta,2, +field_176867_k,name,2, +field_176869_i,META_LOOKUP,2, +field_176874_e,name,2, +field_176885_g,META_LOOKUP,2, +field_176891_j,unlocalizedName,2, +field_176893_h,meta,2, +field_176894_i,name,2, +field_176905_n,META_LOOKUP,2, +field_176906_o,meta,2, +field_176914_p,name,2, +field_176919_d,name,2, +field_176921_b,META_LOOKUP,2, +field_176922_c,meta,2, +field_176928_f,name,2, +field_176929_g,unlocalizedName,2, +field_176930_d,METADATA_LOOKUP,2, +field_176931_e,metadata,2, +field_176941_g,META_LOOKUP,2, +field_176947_j,unlocalizedName,2, +field_176949_h,meta,2, +field_176950_i,name,2, +field_176976_n,name,2, +field_176977_o,unlocalizedName,2, +field_176978_l,blockType,2, +field_176979_m,meta,2, +field_176981_k,TYPES_FOR_BLOCK,2, +field_176988_c,name,2, +field_177006_w,name,2, +field_177027_l,meta,2, +field_177028_m,name,2, +field_177030_k,META_LOOKUP,2, +field_177036_c,name,2, +field_177041_c,name,2, +field_177046_f,name,2, +field_177048_d,META_LOOKUP,2, +field_177049_e,meta,2, +field_177072_f,itemFrameModel,0, +field_177073_g,mapModel,0, +field_177074_h,itemRenderer,0, +field_177080_a,itemRenderer,0, +field_177095_g,brightnessBuffer,0, +field_177096_e,textureBrightness,0, +field_177097_h,layerRenderers,0, +field_177098_i,renderOutlines,0, +field_177103_a,TEXTURE_ARMOR_STAND,0,"A constant instance of the armor stand texture, wrapped inside a ResourceLocation wrapper." +field_177108_a,ENDERMITE_TEXTURES,0, +field_177114_e,GUARDIAN_TEXTURE,0, +field_177116_j,GUARDIAN_ELDER_TEXTURE,0, +field_177117_k,GUARDIAN_BEAM_TEXTURE,0, +field_177118_j,DEFAULT_RES_LOC,0, +field_177120_j,ZOMBIE_PIGMAN_TEXTURE,0, +field_177126_e,WHITE,0, +field_177127_a,BROWN,0, +field_177128_n,TOAST,0, +field_177129_o,CAERBANNOG,0, +field_177130_l,SALT,0, +field_177131_m,WHITE_SPLOTCHED,0, +field_177132_j,BLACK,0, +field_177133_k,GOLD,0, +field_177140_a,smallArms,0,this field is used to indicate the 3-pixel wide arms +field_177144_a,witchRenderer,0, +field_177146_b,wolfRenderer,0, +field_177147_a,WOLF_COLLAR,0, +field_177149_b,spiderRenderer,0, +field_177150_a,SPIDER_EYES,0, +field_177152_a,snowManRenderer,0, +field_177154_a,ironGolemRenderer,0, +field_177156_b,pigRenderer,0, +field_177157_c,pigModel,0, +field_177158_a,TEXTURE,0, +field_177160_b,slimeModel,0, +field_177161_a,slimeRenderer,0, +field_177163_b,sheepRenderer,0, +field_177164_c,sheepModel,0, +field_177165_a,TEXTURE,0, +field_177167_a,playerRenderer,0, +field_177170_b,creeperRenderer,0, +field_177171_c,creeperModel,0, +field_177172_a,LIGHTNING_TEXTURE,0, +field_177174_a,endermanRenderer,0, +field_177184_f,colorR,0, +field_177185_g,colorG,0, +field_177186_d,modelArmor,0, +field_177187_e,alpha,0, +field_177188_b,ENCHANTED_ITEM_GLINT_RES,0, +field_177189_c,modelLeggings,0, +field_177190_a,renderer,0, +field_177191_j,ARMOR_TEXTURE_RES_MAP,0, +field_177192_h,colorB,0, +field_177193_i,skipRenderGlint,0, +field_177202_b,endermanRenderer,0, +field_177203_a,RES_ENDERMAN_EYES,0, +field_177205_a,mooshroomRenderer,0, +field_177206_a,livingEntityRenderer,0, +field_177208_a,playerRenderer,0, +field_177211_b,dragonRenderer,0, +field_177212_a,TEXTURE,0, +field_177215_b,witherRenderer,0, +field_177216_c,witherModel,0, +field_177217_a,WITHER_ARMOR,0, +field_177220_e,interpolate,0, +field_177233_b,MAP_ENTRY_TO_STRING,2, +field_177234_a,COMMA_JOINER,2, +field_177237_b,properties,2,Maps properties to their respective current value +field_177238_c,propertyValueTable,2,"Lookup-table for IBlockState instances. This is a Table<Property, Value, State>." +field_177239_a,block,2, +field_177242_b,resourcePackName,0, +field_177246_b,logger,0, +field_177256_f,toDestroy,2,This is a List<BlockPos> of blocks that will be destroyed when a piston attempts to move them. +field_177257_d,moveDirection,2, +field_177258_e,toMove,2,This is a List<BlockPos> of all blocks that will be moved by the piston. +field_177259_b,pistonPos,2, +field_177260_c,blockToMove,2, +field_177261_a,world,2, +field_177265_b,height,2, +field_177266_a,colors,2,RGB (0 to 1.0) colors of this beam segment +field_177284_N,patternName,2,The name used to represent this pattern. +field_177285_O,patternID,2,A short string used to represent the pattern. +field_177290_Q,patternCraftingStack,2,An ItemStack used to apply this pattern. +field_177291_P,craftingLayers,2,An array of three strings where each string represents a layer in the crafting grid. Goes from top to bottom. +field_177320_c,logger,0, +field_177321_h,lock,0, +field_177322_i,downloadingPacks,0,ResourcesPack currently beeing downloaded +field_177328_b,message,0, +field_177329_c,isClosed,0, +field_177330_a,inputStream,0, +field_177336_b,TEXTURE_ALEX,0,The default skin for the Alex model. +field_177337_a,TEXTURE_STEVE,0,The default skin for the Steve model. +field_177351_f,uvOffsetsById,0, +field_177352_g,normalElementOffset,0, +field_177353_d,nextOffset,0,The next available offset in this vertex format +field_177354_e,colorElementOffset,0, +field_177355_b,elements,0, +field_177356_c,offsets,0, +field_177357_a,LOGGER,0, +field_177363_b,vertexFormat,0, +field_177364_c,count,0, +field_177365_a,glBufferId,0, +field_177377_d,index,0, +field_177378_e,elementCount,0, +field_177379_b,type,0, +field_177380_c,usage,0, +field_177381_a,LOGGER,0, +field_177392_h,displayName,0, +field_177405_j,glConstant,0, +field_177407_h,size,0, +field_177408_i,displayName,0, +field_177447_w,tileEntityPosQueue,2,"""queue containing the BlockPos of tile entities queued for creation""" +field_177454_f,uuidToPlayerMap,2,A map containing the key-value pairs for UUIDs and their EntityPlayerMP objects. +field_177463_c,world,2, +field_177474_A,oceanMonumentGenerator,2, +field_177476_s,oceanBlockTmpl,2, +field_177477_r,settings,2, +field_177488_d,data,2, +field_177511_d,tileEntity,2, +field_177512_e,tileEntityInitialized,2, +field_177513_b,pos,2, +field_177514_c,state,2, +field_177515_a,world,2, +field_177519_c,variant,0, +field_177542_u,quartersY,0, +field_177543_t,quartersX,0, +field_177544_s,matrix4d,0, +field_177545_r,combinedXY,0, +field_177546_q,mapRotations,0, +field_177557_a,cameraTransforms,0, +field_177558_f,cameraTransforms,0, +field_177559_d,gui3d,0, +field_177560_e,texture,0, +field_177561_b,faceQuads,0, +field_177562_c,ambientOcclusion,0, +field_177563_a,generalQuads,0, +field_177565_b,models,0, +field_177566_c,baseModel,0, +field_177567_a,totalWeight,0, +field_177598_f,resourceManager,0, +field_177599_g,sprites,0, +field_177600_d,BUILT_IN_MODELS,0, +field_177601_e,JOINER,0, +field_177602_b,LOCATIONS_BUILTIN_TEXTURES,0, +field_177603_c,LOGGER,0, +field_177604_a,MODEL_MISSING,0, +field_177605_n,bakedRegistry,0, +field_177606_o,MODEL_GENERATED,0, +field_177607_l,faceBakery,0, +field_177608_m,itemModelGenerator,0, +field_177609_j,textureMap,0, +field_177610_k,blockModelShapes,0, +field_177611_h,models,0, +field_177612_i,variants,0, +field_177613_u,variantNames,0, +field_177614_t,blockDefinitions,0, +field_177615_s,itemLocations,0, +field_177616_r,MODEL_ENTITY,0, +field_177617_q,MODEL_CLOCK,0, +field_177618_p,MODEL_COMPASS,0, +field_177624_d,properties,2, +field_177625_e,validStates,2, +field_177626_b,GET_NAME_FUNC,2,Function that converts a Property into it's name. +field_177627_c,block,2, +field_177628_a,COMMA_JOINER,2, +field_177636_b,model,0, +field_177640_b,propertyPredicates,2, +field_177641_a,blockstate,2, +field_177644_a,block,2, +field_177651_f,builderCameraTransforms,0, +field_177652_d,builderTexture,0, +field_177653_e,builderGui3d,0, +field_177654_b,builderFaceQuads,0, +field_177655_c,builderAmbientOcclusion,0, +field_177656_a,builderGeneralQuads,0, +field_177663_d,aisleHeight,2, +field_177664_e,rowWidth,2, +field_177665_b,depth,2, +field_177666_c,symbolMap,2, +field_177667_a,COMMA_JOIN,2, +field_177671_d,lcache,2, +field_177672_b,finger,2, +field_177673_c,thumb,2, +field_177674_a,pos,2, +field_177678_a,listItems,0, +field_177680_a,world,2, +field_177686_d,palmLength,2, +field_177687_b,fingerLength,2, +field_177688_c,thumbLength,2, +field_177689_a,blockMatches,2, +field_177703_b,name,2, +field_177704_a,valueClass,2, +field_177710_b,nameToValue,2,Map of names to Enum values +field_177711_a,allowedValues,2, +field_177717_a,allowedValues,2, +field_177720_a,allowedValues,2, +field_177752_f,endTime,2, +field_177753_g,startTime,2, +field_177754_d,startDiameter,2, +field_177755_e,endDiameter,2, +field_177756_b,centerX,2, +field_177757_c,centerZ,2, +field_177758_a,listeners,2, +field_177759_l,warningDistance,2, +field_177760_j,damageBuffer,2, +field_177761_k,warningTime,2, +field_177762_h,worldSize,2, +field_177763_i,damageAmount,2, +field_177767_d,id,2, +field_177777_D,lavaLakeChance,2, +field_177778_E,useLavaOceans,2, +field_177779_F,fixedBiome,2, +field_177780_G,biomeSize,2, +field_177781_A,useWaterLakes,2, +field_177782_B,waterLakeChance,2, +field_177783_C,useLavaLakes,2, +field_177784_L,dirtMaxHeight,2, +field_177785_M,gravelSize,2, +field_177786_N,gravelCount,2, +field_177787_O,gravelMinHeight,2, +field_177788_H,riverSize,2, +field_177789_I,dirtSize,2, +field_177790_J,dirtCount,2, +field_177791_K,dirtMinHeight,2, +field_177792_U,dioriteSize,2, +field_177793_T,graniteMaxHeight,2, +field_177794_W,dioriteMinHeight,2, +field_177795_V,dioriteCount,2, +field_177796_Q,graniteSize,2, +field_177797_P,gravelMaxHeight,2, +field_177798_S,graniteMinHeight,2, +field_177799_R,graniteCount,2, +field_177800_Y,andesiteSize,2, +field_177801_X,dioriteMaxHeight,2, +field_177802_Z,andesiteCount,2, +field_177803_f,depthNoiseScaleZ,2, +field_177804_g,depthNoiseScaleExponent,2, +field_177805_az,lapisSpread,2, +field_177806_d,lowerLimitScale,2, +field_177807_ay,lapisCenterHeight,2, +field_177808_e,depthNoiseScaleX,2, +field_177809_b,heightScale,2, +field_177810_c,upperLimitScale,2, +field_177811_a,coordinateScale,2, +field_177812_at,diamondCount,2, +field_177813_n,biomeDepthOffSet,2, +field_177814_as,diamondSize,2, +field_177815_o,biomeScaleWeight,2, +field_177816_ar,redstoneMaxHeight,2, +field_177817_l,stretchY,2, +field_177818_aq,redstoneMinHeight,2, +field_177819_m,biomeDepthWeight,2, +field_177820_ax,lapisCount,2, +field_177821_j,mainNoiseScaleZ,2, +field_177822_aw,lapisSize,2, +field_177823_k,baseSize,2, +field_177824_av,diamondMaxHeight,2, +field_177825_h,mainNoiseScaleX,2, +field_177826_au,diamondMinHeight,2, +field_177827_i,mainNoiseScaleY,2, +field_177828_ak,goldSize,2, +field_177829_w,useMineShafts,2, +field_177830_al,goldCount,2, +field_177831_v,useVillages,2, +field_177832_ai,ironMinHeight,2, +field_177833_u,useStrongholds,2, +field_177834_aj,ironMaxHeight,2, +field_177835_t,dungeonChance,2, +field_177836_ao,redstoneSize,2, +field_177837_s,useDungeons,2, +field_177838_ap,redstoneCount,2, +field_177839_r,useCaves,2, +field_177840_am,goldMinHeight,2, +field_177841_q,seaLevel,2, +field_177842_an,goldMaxHeight,2, +field_177843_p,biomeScaleOffset,2, +field_177844_ac,coalSize,2, +field_177845_ad,coalCount,2, +field_177846_aa,andesiteMinHeight,2, +field_177847_ab,andesiteMaxHeight,2, +field_177848_ag,ironSize,2, +field_177849_ah,ironCount,2, +field_177850_z,useRavines,2, +field_177851_ae,coalMinHeight,2, +field_177852_y,useMonuments,2, +field_177853_af,coalMaxHeight,2, +field_177854_x,useTemples,2, +field_177859_b,defaultState,2, +field_177860_a,data,2, +field_177866_D,useLavaLakes,2, +field_177867_E,lavaLakeChance,2, +field_177868_F,useLavaOceans,2, +field_177869_G,fixedBiome,2, +field_177870_A,useRavines,2, +field_177871_B,useWaterLakes,2, +field_177872_C,waterLakeChance,2, +field_177873_L,dirtMinHeight,2, +field_177874_M,dirtMaxHeight,2, +field_177875_N,gravelSize,2, +field_177876_O,gravelCount,2, +field_177877_H,biomeSize,2, +field_177878_I,riverSize,2, +field_177879_J,dirtSize,2, +field_177880_K,dirtCount,2, +field_177881_U,graniteMaxHeight,2, +field_177882_T,graniteMinHeight,2, +field_177883_W,dioriteCount,2, +field_177884_V,dioriteSize,2, +field_177885_Q,gravelMaxHeight,2, +field_177886_P,gravelMinHeight,2, +field_177887_S,graniteCount,2, +field_177888_R,graniteSize,2, +field_177889_aA,lapisSpread,2, +field_177890_Y,dioriteMaxHeight,2, +field_177891_X,dioriteMinHeight,2, +field_177892_Z,andesiteSize,2, +field_177893_f,depthNoiseScaleX,2, +field_177894_g,depthNoiseScaleZ,2, +field_177895_az,lapisCenterHeight,2, +field_177896_d,upperLimitScale,2, +field_177897_ay,lapisCount,2, +field_177898_e,lowerLimitScale,2, +field_177899_b,coordinateScale,2, +field_177900_c,heightScale,2, +field_177901_a,JSON_ADAPTER,2, +field_177902_at,diamondSize,2, +field_177903_n,biomeDepthWeight,2, +field_177904_as,redstoneMaxHeight,2, +field_177905_o,biomeDepthOffset,2, +field_177906_ar,redstoneMinHeight,2, +field_177907_l,baseSize,2, +field_177908_aq,redstoneCount,2, +field_177909_m,stretchY,2, +field_177910_ax,lapisSize,2, +field_177911_j,mainNoiseScaleY,2, +field_177912_aw,diamondMaxHeight,2, +field_177913_k,mainNoiseScaleZ,2, +field_177914_av,diamondMinHeight,2, +field_177915_h,depthNoiseScaleExponent,2, +field_177916_au,diamondCount,2, +field_177917_i,mainNoiseScaleX,2, +field_177918_ak,ironMaxHeight,2, +field_177919_w,useVillages,2, +field_177920_al,goldSize,2, +field_177921_v,useStrongholds,2, +field_177922_ai,ironCount,2, +field_177923_u,dungeonChance,2, +field_177924_aj,ironMinHeight,2, +field_177925_t,useDungeons,2, +field_177926_ao,goldMaxHeight,2, +field_177927_s,useCaves,2, +field_177928_ap,redstoneSize,2, +field_177929_r,seaLevel,2, +field_177930_am,goldCount,2, +field_177931_q,biomeScaleOffset,2, +field_177932_an,goldMinHeight,2, +field_177933_p,biomeScaleWeight,2, +field_177934_ac,andesiteMaxHeight,2, +field_177935_ad,coalSize,2, +field_177936_aa,andesiteCount,2, +field_177937_ab,andesiteMinHeight,2, +field_177938_ag,coalMaxHeight,2, +field_177939_ah,ironSize,2, +field_177940_z,useMonuments,2, +field_177941_ae,coalCount,2, +field_177942_y,useTemples,2, +field_177943_af,coalMinHeight,2, +field_177944_x,useMineShafts,2, +field_177948_B,streamCallback,0,The stream callback instance +field_177959_e,NULL_VECTOR,2,"The Null vector constant (0, 0, 0)" +field_177960_b,y,2,Y coordinate +field_177961_c,z,2,Z coordinate +field_177962_a,x,2,X coordinate +field_177987_f,Y_SHIFT,2, +field_177988_g,X_SHIFT,2, +field_177989_d,NUM_Y_BITS,2, +field_177990_b,NUM_X_BITS,2, +field_177991_c,NUM_Z_BITS,2, +field_177992_a,ORIGIN,2,The BlockPos with all coordinates 0 +field_177993_j,Z_MASK,2, +field_177994_h,X_MASK,2, +field_177995_i,Y_MASK,2, +field_177996_d,z,2,Mutable Z Coordinate +field_177997_b,x,2,Mutable X Coordinate +field_177998_c,y,2,Mutable Y Coordinate +field_178005_d,viewEntityY,0, +field_178006_e,viewEntityZ,0, +field_178007_b,initialized,0, +field_178008_c,viewEntityX,0, +field_178009_a,renderChunks,0, +field_178014_d,SERVER_SELECTION_BUTTONS,0, +field_178015_c,UNKNOWN_SERVER,0, +field_178032_d,counter,0, +field_178034_b,facing,0, +field_178035_c,setFacing,0, +field_178036_a,renderChunk,0, +field_178090_d,modelManager,0, +field_178091_b,simpleShapesCache,0, +field_178092_c,shapers,0, +field_178093_a,simpleShapes,0, +field_178111_g,renderManager,0, +field_178112_h,itemRenderer,0, +field_178127_b,blockStateMapper,0, +field_178128_c,modelManager,0, +field_178129_a,bakedModelStore,0, +field_178133_b,mapStateModelLocations,0, +field_178140_d,ignored,0, +field_178141_c,suffix,0, +field_178142_a,name,0, +field_178145_h,pos,2,Position of the workbench +field_178146_a,dispenserInventory,2, +field_178149_f,xpSeed,2, +field_178150_j,position,2, +field_178151_h,enchantmentIds,2, +field_178152_f,cookTime,2, +field_178153_g,totalCookTime,2, +field_178154_h,furnaceBurnTime,2, +field_178155_i,currentItemBurnTime,2, +field_178156_j,selfPosition,2, +field_178164_f,renderChunks,0, +field_178165_d,countChunksX,0, +field_178166_e,countChunksZ,0, +field_178167_b,world,0, +field_178168_c,countChunksY,0, +field_178169_a,renderGlobal,0, +field_178179_a,vertexBuffer,0, +field_178182_b,vboUploader,0, +field_178183_a,worldRenderer,0, +field_178199_k,VALUES,0, +field_178206_b,vertexColorMultiplier,0, +field_178207_c,vertexBrightness,0, +field_178213_b,tintIndex,0, +field_178214_c,face,0, +field_178215_a,vertexData,0,"Joined 4 vertex records, each has 7 fields (x, y, z, shadeColor, u, v, <unused>), see FaceBakery.storeVertexData()" +field_178218_d,texture,0, +field_178237_d,partRotation,0, +field_178238_e,shade,0, +field_178239_b,positionTo,0, +field_178240_c,mapFaces,0, +field_178241_a,positionFrom,0, +field_178242_d,texture,0, +field_178243_e,blockFaceUV,0, +field_178244_b,cullFace,0, +field_178245_c,tintIndex,0, +field_178246_a,FACING_DEFAULT,0, +field_178271_b,atlasSpritesWater,0, +field_178272_a,atlasSpritesLava,0, +field_178282_n,VALUES,0, +field_178313_f,LOGGER,0, +field_178314_g,elements,0, +field_178315_d,parent,0, +field_178316_e,parentLocation,0, +field_178317_b,name,0, +field_178318_c,textures,0, +field_178319_a,SERIALIZER,0, +field_178320_j,cameraTransforms,0, +field_178321_h,gui3d,0, +field_178322_i,ambientOcclusion,0, +field_178323_b,modelExt,0, +field_178324_a,model,0, +field_178332_b,mapVariants,0, +field_178333_a,GSON,0, +field_178341_d,rescale,0, +field_178342_b,axis,0, +field_178343_c,angle,0, +field_178344_a,origin,0, +field_178350_b,rotation,0, +field_178351_a,uvs,0, +field_178353_d,head,0, +field_178354_e,gui,0, +field_178355_b,thirdPerson,0, +field_178356_c,firstPerson,0, +field_178357_a,DEFAULT,0, +field_178360_b,TRANSLATION_DEFAULT,0, +field_178361_c,SCALE_DEFAULT,0, +field_178362_a,ROTATION_DEFAULT,0, +field_178363_d,scale,0, +field_178364_b,rotation,0, +field_178365_c,translation,0, +field_178366_a,DEFAULT,0, +field_178376_e,facing,0, +field_178389_a,spanFacing,0, +field_178398_a,LAYERS,0, +field_178417_b,SCALE_ROTATION_GENERAL,0, +field_178418_a,SCALE_ROTATION_22_5,0, +field_178422_b,listVariants,0, +field_178423_a,name,0, +field_178434_d,weight,0, +field_178435_b,modelRotation,0, +field_178436_c,uvLock,0, +field_178437_a,modelLocation,0, +field_178443_b,suffix,0, +field_178444_c,ignored,0, +field_178445_a,name,0, +field_178449_b,setBuiltInBlocks,0, +field_178450_a,blockStateMap,0, +field_178460_a,DESTROY_STAGES,0, +field_178462_c,blockRenderer,0, +field_178464_d,BANNERTEXTURES,0, +field_178465_e,bannerModel,0, +field_178466_c,DESIGNS,0,An array of all the patterns that are being currently rendered. +field_178467_h,skeletonHead,0, +field_178468_i,humanoidHead,0, +field_178471_b,bannerTexture,0,The layered texture for the banner to render out. +field_178472_a,systemTime,0,"The current system time, in milliseconds." +field_178477_b,chunkRenderDispatcher,0, +field_178478_c,regionRenderCacheBuilder,0, +field_178496_f,setVisibility,0, +field_178497_g,state,0, +field_178498_d,empty,0, +field_178499_e,tileEntities,0, +field_178500_b,layersUsed,0, +field_178501_c,layersStarted,0, +field_178502_a,DUMMY,0, +field_178517_f,worldVertexUploader,0, +field_178518_g,vertexUploader,0, +field_178519_d,queueChunkUpdates,0, +field_178520_e,queueFreeRenderBuilders,0, +field_178521_b,threadFactory,0, +field_178522_c,listThreadedWorkers,0, +field_178523_a,logger,0, +field_178524_h,queueChunkUploads,0, +field_178525_i,renderWorker,0, +field_178547_f,compiledChunk,0, +field_178548_g,status,0, +field_178549_d,type,0, +field_178550_e,regionRenderCacheBuilder,0, +field_178551_b,lock,0, +field_178552_c,listFinishRunnables,0, +field_178553_a,renderChunk,0, +field_178554_h,finished,0, +field_178586_f,position,0, +field_178587_g,lockCompileTask,0, +field_178588_d,world,0, +field_178589_e,renderGlobal,0, +field_178590_b,compiledChunk,0, +field_178591_c,boundingBox,0, +field_178592_a,renderChunksUpdated,0, +field_178593_n,needsUpdate,0, +field_178594_l,vertexBuffers,0, +field_178595_m,frameIndex,0, +field_178596_j,index,0, +field_178597_k,modelviewMatrix,0, +field_178598_h,lockCompiledChunk,0, +field_178599_i,compileTask,0, +field_178601_d,baseDisplayList,0, +field_178622_b,bitSet,0, +field_178623_a,COUNT_FACES,0, +field_178625_b,projectionMatrix,0, +field_178626_c,modelviewMatrix,0, +field_178636_l,skinMap,0,lists the various player skin types with their associated Renderer class instances. +field_178637_m,playerRenderer,0, +field_178638_s,renderShadow,0, +field_178639_r,renderOutlines,0, +field_178667_b,resourceLocation,0, +field_178668_a,profile,0, +field_178688_b,bannerStand,0, +field_178689_c,bannerTop,0, +field_178690_a,bannerSlate,0, +field_178692_f,rabbitLeftArm,0,The Rabbit's Left Arm +field_178693_g,rabbitRightArm,0,The Rabbit's Right Arm +field_178694_d,rabbitRightThigh,0,The Rabbit's Right Thigh +field_178695_e,rabbitBody,0,The Rabbit's Body +field_178696_b,rabbitRightFoot,0,The Rabbit's Right Foot +field_178697_c,rabbitLeftThigh,0,The Rabbit's Left Thigh +field_178698_a,rabbitLeftFoot,0,The Rabbit's Left Foot +field_178700_l,rabbitNose,0,The Rabbit's Nose +field_178702_j,rabbitLeftEar,0,The Rabbit's Left Ear +field_178703_k,rabbitTail,0,The Rabbit's Tail +field_178704_h,rabbitHead,0,The Rabbit's Head +field_178705_i,rabbitRightEar,0,The Rabbit's Right Ear +field_178707_d,guardianTail,0, +field_178708_b,guardianEye,0, +field_178709_c,guardianSpines,0, +field_178710_a,guardianBody,0, +field_178717_b,head,0, +field_178720_f,bipedHeadwear,0,The Biped's Headwear. Used for the outer layer of player skins. +field_178721_j,bipedRightLeg,0,The Biped's Right Leg +field_178722_k,bipedLeftLeg,0,The Biped's Left Leg +field_178723_h,bipedRightArm,0,The Biped's Right Arm +field_178724_i,bipedLeftArm,0,The Biped's Left Arm +field_178729_w,bipedCape,0, +field_178730_v,bipedBodyWear,0, +field_178731_d,bipedRightLegwear,0, +field_178732_b,bipedRightArmwear,0, +field_178733_c,bipedLeftLegwear,0, +field_178734_a,bipedLeftArmwear,0, +field_178735_y,smallArms,0, +field_178736_x,bipedDeadmau5Head,0, +field_178737_d,standBase,0, +field_178738_b,standLeftSide,0, +field_178739_c,standWaist,0, +field_178740_a,standRightSide,0, +field_178741_d,gameInfo,0, +field_178742_e,serverInfo,0, +field_178743_b,displayInfo,0, +field_178744_c,folderInfo,0, +field_178745_a,userInfo,0, +field_178750_b,userProperties,0, +field_178751_c,proxy,0, +field_178752_a,session,0, +field_178753_b,serverPort,0, +field_178754_a,serverName,0, +field_178755_b,version,0, +field_178756_a,isDemo,0, +field_178757_d,assetIndex,0, +field_178758_b,resourcePacksDir,0, +field_178759_c,assetsDir,0, +field_178760_a,mcDataDir,0, +field_178761_d,checkGlErrors,0, +field_178762_b,height,0, +field_178763_c,fullscreen,0, +field_178764_a,width,0, +field_178768_d,renderType,2, +field_178776_j,deathMessageVisibility,2, +field_178777_k,chatFormat,2, +field_178778_i,nameTagVisibility,2, +field_178783_e,blockPos,2, +field_178784_b,sideHit,2, +field_178791_c,TRIGGER,2, +field_178794_j,goalName,2, +field_178810_d,OBJECTCOORDS,0,The computed view object coordinates +field_178811_e,position,0, +field_178812_b,MODELVIEW,0,The current GL modelview matrix +field_178813_c,PROJECTION,0,The current GL projection matrix +field_178814_a,VIEWPORT,0,The current GL viewport +field_178817_f,locked,2, +field_178818_g,forceUpdate,2, +field_178827_f,id,2, +field_178830_e,internalName,2, +field_178862_f,locationCape,0, +field_178863_g,skinType,0, +field_178864_d,playerTexturesLoaded,0, +field_178865_e,locationSkin,0, +field_178866_b,gameType,0, +field_178867_a,gameProfile,0,The GameProfile for the player represented by this NetworkPlayerInfo instance +field_178872_h,displayName,0,"When this is non-null, it is displayed instead of the player's real name" +field_178879_v,reducedDebugInfo,0, +field_178880_u,allowBlockAlternatives,0, +field_178881_t,useVbo,0, +field_178882_aU,setModelParts,0, +field_178883_an,keyBindSpectatorOutlines,0, +field_178895_c,currentBlock,0, +field_178932_g,particleTypes,0, +field_178933_d,particleEmitters,0, +field_178997_d,vertexCount,0, +field_178999_b,rawIntBuffer,0, +field_179000_c,rawFloatBuffer,0, +field_179001_a,byteBuffer,0, +field_179002_n,zOffset,0, +field_179004_l,xOffset,0, +field_179005_m,yOffset,0, +field_179006_k,drawMode,0, +field_179010_r,isDrawing,0, +field_179011_q,vertexFormat,0, +field_179018_e,stateVertexFormat,0, +field_179019_b,stateRawBuffer,0, +field_179023_f,skull,0, +field_179024_e,banner,0, +field_179029_g,facings,0, +field_179035_h,vertexInfos,0, +field_179040_a,worldRenderers,0, +field_179041_d,units,0, +field_179042_b,polygonOffsetLine,0, +field_179043_c,factor,0, +field_179044_a,polygonOffsetFill,0, +field_179045_d,start,0, +field_179046_e,end,0, +field_179047_b,mode,0, +field_179048_c,density,0, +field_179049_a,fog,0, +field_179050_b,maskEnabled,0, +field_179051_c,depthFunc,0, +field_179052_a,depthTest,0, +field_179053_b,mode,0, +field_179054_a,cullFace,0, +field_179059_b,textureName,0, +field_179060_a,texture2DState,0, +field_179061_d,q,0, +field_179062_b,t,0, +field_179063_c,r,0, +field_179064_a,s,0, +field_179065_b,coord,0, +field_179066_c,param,0, +field_179067_a,textureGen,0, +field_179154_f,depthState,0, +field_179155_g,fogState,0, +field_179156_d,colorMaterialState,0, +field_179157_e,blendState,0, +field_179158_b,lightingState,0, +field_179159_c,lightState,0, +field_179160_a,alphaState,0, +field_179161_n,normalizeState,0, +field_179162_o,activeTextureUnit,0, +field_179163_l,clearState,0, +field_179164_m,stencilState,0, +field_179165_j,colorLogicState,0, +field_179166_k,texGenState,0, +field_179167_h,cullState,0, +field_179168_i,polygonOffsetState,0, +field_179170_t,colorState,0, +field_179171_s,colorMaskState,0, +field_179172_r,rescaleNormalState,0, +field_179173_q,activeShadeModel,0, +field_179174_p,textureState,0, +field_179176_f,WEST_INDEX,0, +field_179177_d,NORTH_INDEX,0, +field_179178_e,DOWN_INDEX,0, +field_179179_b,UP_INDEX,0, +field_179180_c,EAST_INDEX,0, +field_179181_a,SOUTH_INDEX,0, +field_179182_b,yIndex,0, +field_179183_c,zIndex,0, +field_179184_a,xIndex,0, +field_179185_d,alpha,0, +field_179186_b,green,0, +field_179187_c,blue,0, +field_179188_a,red,0, +field_179189_b,face,0, +field_179190_c,mode,0, +field_179191_a,colorMaterial,0, +field_179192_d,alpha,0, +field_179193_b,green,0, +field_179194_c,blue,0, +field_179195_a,red,0, +field_179196_b,opcode,0, +field_179197_a,colorLogicOp,0, +field_179201_b,currentState,0, +field_179202_a,capability,0, +field_179203_b,color,0, +field_179205_a,depth,0, +field_179206_b,func,0, +field_179207_c,ref,0, +field_179208_a,alphaTest,0, +field_179209_d,srcFactorAlpha,0, +field_179210_e,dstFactorAlpha,0, +field_179211_b,srcFactor,0, +field_179212_c,dstFactor,0, +field_179213_a,blend,0, +field_179220_a,BLOCK_TO_ITEM,2, +field_179226_c,doubleSlab,2, +field_179227_b,theBlock,2, +field_179228_c,nameFunction,2, +field_179236_a,block,2, +field_179239_b,LOGGER,2, +field_179243_f,name,2, +field_179247_h,directionMaps,2, +field_179261_f,LONG,2, +field_179262_g,SHORT,2, +field_179263_d,FLOAT,2, +field_179264_e,BYTE,2, +field_179265_c,DOUBLE,2, +field_179266_j,SPLITTER,2, +field_179267_h,INTEGER,2, +field_179268_i,DOUBLE_UNTYPED,2, +field_179282_b,isLoaded,2, +field_179283_a,value,2, +field_179294_g,direction,2, +field_179295_d,CLIENT_NIO_EVENTLOOP,2, +field_179296_e,CLIENT_LOCAL_EVENTLOOP,2, +field_179297_n,disconnected,2, +field_179300_b,deflater,2, +field_179301_c,treshold,2, +field_179302_a,buffer,2, +field_179304_b,treshold,2, +field_179305_a,inflater,2, +field_179309_b,lastReturned,2, +field_179314_b,theBlockPos,2, +field_179317_b,pos,2, +field_179338_j,partName,0, +field_179340_h,partId,0, +field_179341_i,partMask,0, +field_179365_U,PARTICLES,2, +field_179366_T,argumentCount,2, +field_179368_V,PARTICLE_NAMES,2, +field_179369_Q,particleName,2, +field_179371_S,shouldIgnoreRange,2, +field_179372_R,particleID,2, +field_179402_b,priceInfo,2,"The price info for the amount of emeralds to sell for, or if negative, the amount of the item to buy for an emerald." +field_179403_a,itemToBuy,2,The item that is being bought for emeralds +field_179404_b,price,2, +field_179405_a,sellItem,2, +field_179406_b,priceInfo,2,The price info determining the amount of emeralds to trade in for the enchanted item +field_179407_a,enchantedItemStack,2,The enchanted item stack to sell +field_179409_b,buyingPriceInfo,2,The price info defining the amount of the buying item required with 1 emerald to match the selling item. +field_179410_c,sellingItemstack,2,"The itemstack to sell. The item and damage value are used only, any tag data is not retained." +field_179411_a,buyingItemStack,2,"The itemstack to buy with an emerald. The Item and damage value is used only, any tag data is not retained." +field_179417_b,y,2,Rotation on the Y axis +field_179418_c,z,2,Rotation on the Z axis +field_179419_a,x,2,Rotation on the X axis +field_179423_d,results,2,Array used as the result of next() +field_179424_b,iterables,2, +field_179425_c,iterators,2, +field_179426_a,index,2, +field_179427_a,typeData,2, +field_179428_b,iterables,2, +field_179429_a,clazz,2, +field_179432_d,sorter,2,Used to compare two entities +field_179433_e,entityTarget,2,The current target +field_179434_b,entityLiving,2,The entity that use this AI +field_179435_c,predicate,2,Use to determine if an entity correspond to specification +field_179436_a,LOGGER,2, +field_179441_e,target,2, +field_179442_b,mob,2, +field_179444_a,LOGGER,2, +field_179447_c,targetClasses,2, +field_179448_g,player,2,The player +field_179449_j,enderman,2, +field_179454_a,parentEntity,2, +field_179455_b,tickCounter,2, +field_179456_a,theEntity,2, +field_179457_a,slime,2, +field_179458_a,slime,2, +field_179461_a,slime,2, +field_179464_a,silverfish,2, +field_179466_a,slime,2, +field_179469_a,blaze,2, +field_179470_b,parentEntity,2, +field_179471_a,attackTimer,2, +field_179472_a,parentEntity,2, +field_179473_a,enderman,2, +field_179475_a,enderman,2, +field_179476_a,squid,2, +field_179477_f,villager,2, +field_179478_e,interactionDelay,2,The delay before the villager throws an itemstack (in ticks) +field_179481_f,executionChance,2, +field_179482_g,mustUpdate,2, +field_179483_b,facing,2, +field_179485_a,silverfish,2, +field_179486_b,theEntity,2, +field_179491_g,isAboveDestination,2, +field_179492_d,movementSpeed,2, +field_179493_e,timeoutCounter,2, +field_179494_b,destinationBlock,2,Block to move to +field_179495_c,theEntity,2, +field_179496_a,runDelay,2,Controls task execution delay +field_179497_h,searchLength,2, +field_179500_c,rabbit,2, +field_179502_d,hasFarmItem,2, +field_179504_c,theVillager,2,Villager that is harvesting +field_179507_b,doorPosition,2, +field_179508_f,avoidDistance,2, +field_179509_a,canBeSeenSelector,2, +field_179510_i,avoidTargetSelector,2, +field_179511_d,entityInstance,2, +field_179525_d,description,2, +field_179528_c,offset,2, +field_179535_b,blockState,2, +field_179536_c,compound,2, +field_179537_a,pos,2, +field_179538_n,rabbitFootEffect,2, +field_179539_o,potionRequirements,2, +field_179540_p,potionAmplifiers,2, +field_179550_j,canPlaceOnCacheBlock,2, +field_179551_k,canPlaceOnCacheResult,2, +field_179552_h,canDestroyCacheBlock,2, +field_179553_i,canDestroyCacheResult,2, +field_179555_bs,rabbit_hide,2, +field_179556_br,rabbit_foot,2, +field_179557_bn,cooked_mutton,2, +field_179558_bo,rabbit,2, +field_179559_bp,cooked_rabbit,2, +field_179560_bq,rabbit_stew,2, +field_179561_bm,mutton,2, +field_179562_cC,prismarine_shard,2, +field_179563_cD,prismarine_crystals,2, +field_179564_cE,banner,2, +field_179565_cj,armor_stand,2, +field_179566_aV,cooked_fish,2, +field_179567_at,jungle_door,2, +field_179568_as,birch_door,2, +field_179569_ar,spruce_door,2, +field_179570_aq,oak_door,2, +field_179571_av,dark_oak_door,2, +field_179572_au,acacia_door,2, +field_179639_f,typeID,2,The integer ID of the Result Type. +field_179640_g,typeName,2,The string representation of the type. +field_179666_d,WORLD_BINDING_ARGS,2,A set of arguments that will change the selector's world list to the sender's world instead of all the worlds when present +field_179673_d,objectives,2,List of all the Objectives names +field_179674_b,STRING_RESULT_TYPES,2, +field_179675_c,entitiesID,2,"List of entityID who set a stat, username for a player, UUID for all entities" +field_179676_a,NUM_RESULT_TYPES,2,The number of result command result types that are possible. +field_179681_j,pathFinder,2, +field_179682_i,heightRequirement,2, +field_179694_f,shouldAvoidSun,2, +field_179695_a,nodeProcessor,2, +field_179696_f,targetPosition,2,Current path navigation target +field_179698_g,onGround,2, +field_179702_b,footer,2, +field_179703_a,header,2, +field_179705_b,blockPos,2, +field_179706_a,world,2, +field_179708_e,hideParticles,2, +field_179710_b,targetBlock,2, +field_179711_e,modelPartFlags,2, +field_179713_c,hitVec,2, +field_179716_b,facing,2, +field_179717_a,position,2, +field_179719_b,status,2, +field_179720_a,hash,2, +field_179723_a,pos,2, +field_179725_b,position,2, +field_179729_a,id,2, +field_179733_a,compressionTreshold,2, +field_179735_f,mapMaxX,2, +field_179736_g,mapMaxY,2, +field_179737_d,mapMinX,2, +field_179738_e,mapMinY,2, +field_179739_b,mapScale,2, +field_179740_c,mapVisiblePlayersVec4b,2, +field_179741_h,mapDataBytes,2, +field_179743_g,onGround,2, +field_179745_h,reducedDebugInfo,2, +field_179747_b,soundPos,2, +field_179751_a,particleType,2, +field_179752_j,longDistance,2, +field_179753_k,particleArguments,2,These are the block/item ids and possibly metaData ids that are used to color or texture the particle. +field_179755_c,chunksData,2, +field_179758_c,extractedData,2, +field_179761_a,threshold,2, +field_179765_b,tagCompound,2, +field_179766_a,entityId,2, +field_179769_b,players,2, +field_179770_a,action,2, +field_179773_e,deathMessage,2, +field_179776_a,eventType,2, +field_179778_a,signPosition,2, +field_179781_a,entityId,2, +field_179785_b,hash,2, +field_179786_a,url,2, +field_179789_f,diameter,2, +field_179790_g,timeUntilTarget,2, +field_179791_d,centerZ,2, +field_179792_e,targetSize,2, +field_179793_b,size,2, +field_179794_c,centerX,2, +field_179795_a,action,2, +field_179796_h,warningTime,2, +field_179797_i,warningDistance,2, +field_179799_b,bedPos,2,Block location of the head part of the bed +field_179801_a,spawnBlockPos,2, +field_179808_d,displayTime,2, +field_179809_e,fadeOutTime,2, +field_179810_b,message,2, +field_179811_c,fadeInTime,2, +field_179812_a,type,2, +field_179815_f,color,2, +field_179816_e,nameTagVisibility,2, +field_179818_c,type,2, +field_179820_b,playerId,2, +field_179822_b,position,2, +field_179824_a,blockPos,2, +field_179826_a,blockPosition,2, +field_179828_a,blockPosition,2, +field_179832_b,difficultyLocked,2, +field_179833_a,difficulty,2, +field_179838_b,position,2, +field_179839_c,facing,2, +field_179842_b,type,2, +field_179845_b,changedBlocks,2, +field_179857_b,insideBlock,2, +field_179858_c,insideDirection,2,the inside direction is where can see less sky +field_179859_a,doorBlockPos,2,a block representing the door. Could be either upper or lower part +field_179871_c,LOGGER,2, +field_179872_a,SYSOUT,2, +field_179883_b,domain,2, +field_179884_a,LOGGER,2, +field_179886_a,INSTANCE,2, +field_179916_a,parentEntity,2, +field_179925_i,slime,2, +field_179927_g,parentEntity,2, +field_179928_h,courseChangeCooldown,2, +field_179929_g,theEntity,2, +field_179930_g,entityGuardian,2, +field_179964_d,profile,2, +field_179965_e,displayName,2, +field_179966_b,ping,2, +field_179967_c,gamemode,2, +field_179990_j,insertion,2, +field_179993_b,selector,2,The selector used to find the matching entities of this text component +field_179998_d,value,2,The value displayed instead of the real score (may be null) +field_179999_b,name,2, +field_180000_c,objective,2, +field_180049_j,name,2, +field_180051_h,ID_LOOKUP,2, +field_180052_i,networkID,2, +field_180070_c,theEntity,2, +field_180076_f,speed,2, +field_180084_h,duration,2, +field_180091_b,chunkPosCrammed,2,contains the bitshifted location of the block in the chunk +field_180092_c,blockState,2, +field_180110_a,ENTITY_PLACEMENTS,2, +field_180111_a,pos,2, +field_180126_g,stringToIDMapping,2,provides a mapping between a string and an entity ID +field_180132_d,NOT_SPECTATING,2,Selects entities which are either not players or players that are not spectating +field_180137_b,lightningBolt,2, +field_180140_r,isThornsDamage,2,Whether this EntityDamageSource is from an entity wearing Thorns-enchanted armor. +field_180152_w,healthBoost,2,The health boost Potion object. +field_180155_a,LOGGER,2, +field_180156_h,showParticles,2, +field_180161_b,lock,2, +field_180162_a,EMPTY_CODE,2, +field_180171_b,additionalDifficulty,2, +field_180172_a,worldDifficulty,2, +field_180177_a,RANDOM,2, +field_180189_a,SQRT_2,2, +field_180198_a,LOGGER,2, +field_180201_c,mask,2, +field_180205_F,timesTalkedToVillagerStat,2, +field_180206_G,timesTradedWithVillagerStat,2, +field_180207_j,distanceCrouchedStat,2, +field_180208_k,distanceSprintedStat,2, +field_180209_h,timeSinceDeathStat,2, +field_180216_b,knownKeys,2, +field_180217_c,baseClass,2, +field_180218_a,map,2, +field_180219_M,overpowered,2, +field_180232_b,SERVER_LOCAL_EVENTLOOP,2, +field_180234_y,onGround,2, +field_180247_b,position,0, +field_180249_b,server,1, +field_180250_c,maxTickTime,1, +field_180251_a,LOGGER,1, +field_180256_e,type,2, +field_180268_a,MOB_COUNT_DIV,2, +field_180271_f,CUSTOMIZED,2, +field_180272_g,DEBUG_WORLD,2, +field_180278_o,BIOME_ID_MAP,2, +field_180280_ag,DOUBLE_PLANT_GENERATOR,2, +field_180281_af,GRASS_COLOR_NOISE,2, +field_180282_a,position,2, +field_180289_b,FOLIAGE_COLOR,0, +field_180290_c,WATER_COLOR_MULTIPLIER,0, +field_180291_a,GRASS_COLOR,0, +field_180293_d,chunkProviderSettings,2, +field_180295_l,andesiteGen,2, +field_180296_j,graniteGen,2, +field_180297_k,dioriteGen,2, +field_180298_q,diamondGen,2, +field_180299_p,redstoneGen,2, +field_180301_f,generatorOptions,2, +field_180307_E,locationEnchantments,2, +field_180308_g,projectileProtection,2, +field_180309_e,featherFalling,2, +field_180310_c,protection,2, +field_180311_a,enchantmentsList,2, +field_180312_n,baneOfArthropods,2, +field_180313_o,knockback,2, +field_180314_l,sharpness,2, +field_180315_m,smite,2, +field_180316_k,depthStrider,2, +field_180317_h,respiration,2, +field_180323_f,rewardsExp,2, +field_180329_a,position,2, +field_180338_e,layerName,0, +field_180365_d,block,2, +field_180366_e,state,2, +field_180367_c,pos,2, +field_180384_M,piston_extension,2, +field_180385_bs,dark_oak_fence_gate,2, +field_180386_br,jungle_fence_gate,2, +field_180387_bt,acacia_fence_gate,2, +field_180388_cO,double_stone_slab2,2, +field_180389_cP,stone_slab2,2, +field_180390_bo,oak_fence_gate,2, +field_180391_bp,spruce_fence_gate,2, +field_180392_bq,birch_fence_gate,2, +field_180393_cK,standing_banner,2, +field_180394_cL,wall_banner,2, +field_180395_cM,red_sandstone,2, +field_180396_cN,red_sandstone_stairs,2, +field_180397_cI,prismarine,2, +field_180398_cJ,sea_lantern,2, +field_180399_cE,slime_block,2, +field_180400_cw,iron_trapdoor,2, +field_180401_cv,barrier,2, +field_180402_cm,daylight_detector_inverted,2, +field_180403_aR,jungle_fence,2, +field_180404_aQ,birch_fence,2, +field_180405_aT,acacia_fence,2, +field_180406_aS,dark_oak_fence,2, +field_180407_aO,oak_fence,2, +field_180408_aP,spruce_fence,2, +field_180409_at,dark_oak_door,2, +field_180410_as,acacia_door,2, +field_180411_ar,jungle_door,2, +field_180412_aq,birch_door,2, +field_180413_ao,oak_door,2, +field_180414_ap,spruce_door,2, +field_181016_an,lastPortalPos,2,The position of the last portal the entity was in +field_181017_ao,lastPortalVec,2,A horizontal vector related to the position of the last portal the entity was in +field_181018_ap,teleportDirection,2,A direction related to the position of the last portal the entity was in +field_181019_az,sourcePos,0, +field_181024_n,setTileEntities,0, +field_181025_l,player,2, +field_181038_N,profileProperties,0,The player's GameProfile properties +field_181042_l,lanServer,0,True if the server is a LAN server +field_181056_j,setTileEntities,0, +field_181059_a,x,0,The X coordinate +field_181060_b,y,0,The Y coordinate +field_181061_c,z,0,The Z coordinate +field_181062_Q,vboSupportedAti,0, +field_181063_b,ati,0, +field_181064_i,classToAvoid,2,Class of entity this behavior seeks to avoid +field_181071_k,mapColor,2,The color that represents this entry on a map. +field_181083_K,blockMapColor,2,The Block's MapColor +field_181084_N,FACING,2, +field_181125_e,CLIENT_EPOLL_EVENTLOOP,2, +field_181141_b,SERVER_EPOLL_EVENTLOOP,2, +field_181149_aW,CLOUDS_TYPES,0, +field_181150_U,useNativeTransport,0, +field_181151_V,entityShadows,0, +field_181172_c,profileProperties,0, +field_181541_X,connectedToRealms,0,True if the player is connected to a realms server +field_181542_y,frameTimer,0,The FrameTimer's instance +field_181543_z,startNanoTime,0,Time in nanoseconds of when the class is loaded +field_181546_a,seaLevel,2, +field_181657_aC,showLagometer,0, +field_181676_c,rawShortBuffer,0, +field_181677_f,vertexFormatElement,0, +field_181678_g,vertexFormatIndex,0, +field_181680_j,readWriteLock,2, +field_181699_o,ground,0, +field_181700_p,fixed,0, +field_181702_p,mapEnumFacing,0, +field_181703_c,OLDMODEL_POSITION_TEX_NORMAL,0, +field_181704_d,PARTICLE_POSITION_TEX_COLOR_LMAP,0, +field_181705_e,POSITION,0, +field_181706_f,POSITION_COLOR,0, +field_181707_g,POSITION_TEX,0, +field_181708_h,POSITION_NORMAL,0, +field_181709_i,POSITION_TEX_COLOR,0, +field_181710_j,POSITION_TEX_NORMAL,0, +field_181711_k,POSITION_TEX_LMAP_COLOR,0, +field_181712_l,POSITION_TEX_COLOR_NORMAL,0, +field_181713_m,POSITION_3F,0, +field_181714_n,COLOR_4UB,0, +field_181715_o,TEX_2F,0, +field_181716_p,TEX_2S,0, +field_181717_q,NORMAL_3B,0, +field_181718_r,PADDING_1B,0, +field_181745_e,values,2, +field_181752_a,frames,0,An array with the last 240 frames +field_181753_b,lastIndex,0,The last index used when 240 frames have been set +field_181754_c,counter,0,A counter +field_181755_d,index,0,The next index to use in the array +field_181757_a,CACHE,0, +field_183007_a,EXIT_MESSAGE,2, +field_183008_d,handled,2, +field_183018_l,incompatibleResourcePacks,0, +field_183025_b,bypassesPlayerLimit,2, +field_183030_aa,cpu,0, +field_183509_X,realmsNotifications,0, +field_70009_b,buffer,2,RCon string buffer for log. +field_70010_a,instance,2,Single instance of RConConsoleSource +field_70116_cv,serverPosZ,0, +field_70117_cu,serverPosY,0, +field_70118_ct,serverPosX,0, +field_70121_D,boundingBox,2,Axis aligned bounding box. +field_70122_E,onGround,2, +field_70123_F,isCollidedHorizontally,2,True if after a move this entity has collided with something on X- or Z-axis +field_70124_G,isCollidedVertically,2,True if after a move this entity has collided with something on Y-axis +field_70125_A,rotationPitch,2,Entity rotation Pitch +field_70126_B,prevRotationYaw,2, +field_70127_C,prevRotationPitch,2, +field_70128_L,isDead,2,"gets set by setEntityDead, so this must be the flag whether an Entity is dead (inactive may be better term)" +field_70130_N,width,2,How wide this entity is considered to be +field_70131_O,height,2,How high this entity is considered to be +field_70132_H,isCollided,2,True if after a move this entity has collided with something either vertically or horizontally +field_70133_I,velocityChanged,2, +field_70134_J,isInWeb,2, +field_70136_U,lastTickPosZ,2,"The entity's Z coordinate at the previous tick, used to calculate position during rendering routines" +field_70137_T,lastTickPosY,2,"The entity's Y coordinate at the previous tick, used to calculate position during rendering routines" +field_70138_W,stepHeight,2,How high this entity can step up when running into a block to try to get over it (currently make note the entity will always step up this amount and not just the amount needed) +field_70140_Q,distanceWalkedModified,2,The distance walked multiplied by 0.6 +field_70141_P,prevDistanceWalkedModified,2,The previous ticks distance walked multiplied by 0.6 +field_70142_S,lastTickPosX,2,"The entity's X coordinate at the previous tick, used to calculate position during rendering routines" +field_70143_R,fallDistance,2, +field_70144_Y,entityCollisionReduction,2,Reduces the velocity applied by entity collisions by the specified percent. +field_70145_X,noClip,2,Whether this entity won't clip with collision or not (make note it won't disable gravity) +field_70146_Z,rand,2, +field_70147_f,entityRiderYawDelta,2, +field_70148_d,firstUpdate,2, +field_70149_e,entityRiderPitchDelta,2, +field_70150_b,nextStepDistance,2,The distance that has to be exceeded in order to triger a new step sound and an onEntityWalking event on a block +field_70151_c,fire,2, +field_70152_a,nextEntityID,2, +field_70153_n,riddenByEntity,2,The entity that is riding this entity +field_70154_o,ridingEntity,2,The entity we are currently riding +field_70155_l,renderDistanceWeight,2, +field_70156_m,preventEntitySpawning,2,Blocks entities from spawning when they do their AABB check to make sure the spot is clear of entities that can prevent spawning. +field_70158_ak,ignoreFrustumCheck,2,Render entity even if it is outside the camera frustum. Only true in EntityFish for now. Used in RenderGlobal: render if ignoreFrustumCheck or in frustum. +field_70159_w,motionX,2,Entity motion X +field_70160_al,isAirBorne,2, +field_70161_v,posZ,2,Entity position Z +field_70162_ai,chunkCoordY,2, +field_70163_u,posY,2,Entity position Y +field_70164_aj,chunkCoordZ,2, +field_70165_t,posX,2,Entity position X +field_70166_s,prevPosZ,2, +field_70167_r,prevPosY,2, +field_70169_q,prevPosX,2, +field_70170_p,worldObj,2,Reference to the World object. +field_70171_ac,inWater,2,Whether this entity is currently inside of water (if it handles water movement that is) +field_70172_ad,hurtResistantTime,2,"Remaining time an entity will be ""immune"" to further damage after being hurt." +field_70173_aa,ticksExisted,2,How many ticks has this entity had ran since being alive +field_70174_ab,fireResistance,2,The amount of ticks you have to stand inside of fire before be set on fire +field_70175_ag,addedToChunk,2,Has this entity been added to the chunk its within +field_70176_ah,chunkCoordX,2, +field_70177_z,rotationYaw,2,Entity rotation Yaw +field_70178_ae,isImmuneToFire,2, +field_70179_y,motionZ,2,Entity motion Z +field_70180_af,dataWatcher,2, +field_70181_x,motionY,2,Entity motion Y +field_70191_b,throwableShake,2, +field_70192_c,thrower,2,The entity that threw this throwable item. +field_70194_h,ticksInGround,2, +field_70195_i,ticksInAir,2, +field_70197_d,potionDamage,2,The damage value of the thrown potion that this EntityPotion represents. +field_70221_f,shatterOrDrop,2, +field_70222_d,targetZ,2,'z' location the eye should float towards. +field_70223_e,despawnTimer,2, +field_70224_b,targetX,2,'x' location the eye should float towards. +field_70225_c,targetY,2,'y' location the eye should float towards. +field_70230_d,accelerationZ,2, +field_70232_b,accelerationX,2, +field_70233_c,accelerationY,2, +field_70234_an,ticksInAir,2, +field_70235_a,shootingEntity,2, +field_70236_j,ticksAlive,2, +field_70238_i,inGround,2, +field_70249_b,arrowShake,2,Seems to be some sort of timer for animating an arrow. +field_70250_c,shootingEntity,2,The owner of this arrow. +field_70251_a,canBePickedUp,2,1 if the player can pick up the arrow +field_70252_j,ticksInGround,2, +field_70253_h,inData,2, +field_70254_i,inGround,2, +field_70255_ao,damage,2, +field_70256_ap,knockbackStrength,2,The amount of knockback an arrow applies when it hits a mob. +field_70257_an,ticksInAir,2, +field_70259_a,entityDragonObj,2,The dragon entity this dragon part belongs to +field_70260_b,health,2, +field_70261_a,innerRotation,2,Used to create the rotation animation when rendering the crystal. +field_70262_b,lightningState,2,"Declares which state the lightning bolt is in. Whether it's in the air, hit the ground, etc." +field_70263_c,boltLivingTime,2,Determines the time before the EntityLightningBolt is destroyed. It is a random integer decremented over time. +field_70264_a,boltVertex,2,A random long that is used to change the vertex of the lightning rendered in RenderLightningBolt +field_70272_f,boatZ,2, +field_70273_g,boatYaw,2, +field_70274_d,boatX,2, +field_70275_e,boatY,2, +field_70276_b,speedMultiplier,2, +field_70277_c,boatPosRotationIncrements,2, +field_70278_an,velocityZ,0, +field_70279_a,isBoatEmpty,2,true if no player in boat +field_70280_j,velocityY,0, +field_70281_h,boatPitch,2, +field_70282_i,velocityX,0, +field_70290_d,hoverStart,2,The EntityItem's random initial float height. +field_70291_e,health,2,"The health of this EntityItem. (For example, damage for tools)" +field_70292_b,age,2,The age of this EntityItem (used to animate it up and down as well as expire it) +field_70457_g,itemStack,2, +field_70458_d,player,2,The player whose inventory this is. +field_70459_e,inventoryChanged,2,Set true whenever the inventory changes. Nothing sets it false so you will have to write your own code to check it and reset the value. +field_70460_b,armorInventory,2,An array of 4 item stacks containing the currently worn armor pieces. +field_70461_c,currentItem,2,The index of the currently held item (0-8). +field_70462_a,mainInventory,2,An array of 36 item stacks indicating the main player inventory (including the visible bar). +field_70464_b,inventoryWidth,2,the width of the crafting inventory +field_70465_c,eventHandler,2,Class containing the callbacks for the events on_GUIClosed and on_CraftMaxtrixChanged. +field_70466_a,stackList,2,List of the stacks in the crafting matrix. +field_70467_a,stackResult,2,A list of one item containing the result of the crafting formula +field_70472_d,currentRecipe,2, +field_70473_e,currentRecipeIndex,2, +field_70474_b,theInventory,2, +field_70475_c,thePlayer,2, +field_70476_a,theMerchant,2, +field_70477_b,upperChest,2,Inventory object corresponding to double chest upper part +field_70478_c,lowerChest,2,Inventory object corresponding to double chest lower part +field_70479_a,name,2,Name of the chest. +field_70480_d,changeListeners,2,Listeners notified when any item in this inventory is changed. +field_70481_b,slotsCount,2, +field_70482_c,inventoryContents,2, +field_70483_a,inventoryTitle,2, +field_70488_a,associatedChest,2, +field_70499_f,isInReverse,2, +field_70500_g,matrix,2,Minecart rotational logic matrix +field_70506_as,velocityZ,0, +field_70507_ar,velocityY,0, +field_70508_aq,velocityX,0, +field_70509_j,minecartY,2, +field_70510_h,turnProgress,2,appears to be the progress of the turn +field_70511_i,minecartX,2, +field_70512_ao,minecartYaw,2, +field_70513_ap,minecartPitch,2, +field_70514_an,minecartZ,2, +field_70516_a,fuse,2,How long the fuse is +field_70520_f,tickCounter1,2, +field_70522_e,art,2, +field_70529_d,xpOrbHealth,2,The health of this XP orb. +field_70530_e,xpValue,2,This is how much XP this orb has. +field_70531_b,xpOrbAge,2,The age of the XP orb in ticks. +field_70532_c,delayBeforeCanPickup,2, +field_70533_a,xpColor,2,A constantly increasing value that RenderXPOrb uses to control the colour shifting (Green / yellow) +field_70544_f,particleScale,0, +field_70545_g,particleGravity,0, +field_70546_d,particleAge,0, +field_70547_e,particleMaxAge,0, +field_70548_b,particleTextureJitterX,0, +field_70549_c,particleTextureJitterY,0, +field_70550_a,particleIcon,0,The icon field from which the given particle pulls its texture. +field_70551_j,particleBlue,0,"The blue amount of color. Used as a percentage, 1.0 = 255 and 0.0 = 0." +field_70552_h,particleRed,0,"The red amount of color. Used as a percentage, 1.0 = 255 and 0.0 = 0." +field_70553_i,particleGreen,0,"The green amount of color. Used as a percentage, 1.0 = 255 and 0.0 = 0." +field_70554_ao,interpPosY,0, +field_70555_ap,interpPosZ,0, +field_70556_an,interpPosX,0, +field_70562_a,flameScale,0,the scale of the flame FX +field_70563_a,materialType,0,the material type for dropped items/blocks +field_70564_aq,bobTimer,0,The height of the current bob +field_70566_as,coordZ,0, +field_70567_ar,coordY,0, +field_70568_aq,coordX,0, +field_70570_a,reddustParticleScale,0, +field_70571_a,portalParticleScale,0, +field_70572_as,portalPosZ,0, +field_70573_ar,portalPosY,0, +field_70574_aq,portalPosX,0, +field_70575_a,particleScaleOverTime,0, +field_70576_a,footstepAge,0, +field_70577_ar,currentFootSteps,0, +field_70578_aq,footstepMaxAge,0, +field_70579_a,timeSinceStart,0, +field_70580_aq,maximumTime,0,the maximum time for the explosion +field_70583_ar,theRenderEngine,0,The Rendering Engine. +field_70585_a,noteParticleScale,0, +field_70586_a,lavaParticleScale,0, +field_70587_a,smokeParticleScale,0, +field_70588_a,snowDigParticleScale,0, +field_70590_a,baseSpellTextureIndex,0,Base spell texture index +field_70593_as,maxAge,0, +field_70594_ar,age,0, +field_70696_bz,attackTarget,2,The active target the Task system uses for tracking +field_70699_by,navigator,2, +field_70701_bs,moveForward,2, +field_70702_br,moveStrafing,2, +field_70703_bu,isJumping,2,used to check whether entity is jumping. +field_70704_bt,randomYawVelocity,2, +field_70705_bn,newRotationPitch,2,The new yaw rotation to be applied to the entity. +field_70708_bq,entityAge,2,The age of this EntityLiving (used to determine when it dies) +field_70709_bj,newPosX,2,The new X position to be applied to the entity. +field_70710_bk,newPosY,2,The new Y position to be applied to the entity. +field_70712_bm,newRotationYaw,2,The new yaw rotation to be applied to the entity. +field_70713_bf,activePotionsMap,2, +field_70714_bg,tasks,2,"Passive tasks (wandering, look, idle, ...)" +field_70715_bh,targetTasks,2,"Fighting tasks (used by monsters, wolves, ocelots)" +field_70716_bi,newPosRotationIncrements,2,The number of updates over which the new position and rotation are to be applied to the entity. +field_70717_bb,attackingPlayer,2,The most recent player that has attacked this entity +field_70718_bc,recentlyHit,2,"Set to 60 when hit by the player or the player's wolf, then decrements. Used to determine whether the entity should drop items on death." +field_70720_be,arrowHitTimer,2, +field_70721_aZ,limbSwingAmount,2, +field_70722_aY,prevLimbSwingAmount,2, +field_70723_bA,senses,2, +field_70725_aQ,deathTime,2,"The amount of time remaining this entity should act 'dead', i.e. have a corpse in the world." +field_70726_aT,cameraPitch,2, +field_70727_aS,prevCameraPitch,2, +field_70728_aV,experienceValue,2,The experience points the Entity gives. +field_70729_aU,dead,2,"This gets set on entity death, but never used. Looks like a duplicate of isDead" +field_70732_aI,prevSwingProgress,2, +field_70733_aJ,swingProgress,2, +field_70737_aN,hurtTime,2,The amount of time remaining this entity should act 'hurt'. (Visual appearance of red tint) +field_70738_aO,maxHurtTime,2,What the hurt time was max set to last. +field_70739_aP,attackedAtYaw,2,The yaw at which this entity was last attacked from. +field_70741_aB,unused180,2, +field_70744_aE,scoreValue,2,"The score value of the Mob, the amount of points the mob is worth." +field_70746_aG,landMovementFactor,2,"A factor used to determine how far this entity will move each tick if it is walking on land. Adjusted by speed, and slipperiness of the current block." +field_70747_aH,jumpMovementFactor,2,A factor used to determine how far this entity will move each tick if it is jumping or falling. +field_70749_g,lookHelper,2, +field_70752_e,potionsNeedUpdate,2,Whether the DataWatcher needs to be updated with the active potions +field_70754_ba,limbSwing,2,Only relevant when limbYaw is not 0(the entity is moving). Influences where in its swing legs and arms currently are. +field_70755_b,entityLivingToAttack,2,"is only being set, has no uses as of MC 1.1" +field_70756_c,revengeTimer,2, +field_70757_a,livingSoundTime,2,Number of ticks since this EntityLiving last produced its sound +field_70758_at,prevRotationYawHead,2,Entity head rotation yaw at previous tick +field_70759_as,rotationYawHead,2,Entity head rotation yaw +field_70760_ar,prevRenderYawOffset,2, +field_70761_aq,renderYawOffset,2, +field_70762_j,bodyHelper,2, +field_70763_ax,prevMovedDistance,2, +field_70764_aw,movedDistance,2, +field_70765_h,moveHelper,2, +field_70767_i,jumpHelper,2,Entity jumping helper +field_70768_au,prevOnGroundSpeedFactor,2, +field_70769_ao,randomUnused2,2, +field_70770_ap,randomUnused1,2, +field_70771_an,maxHurtResistantTime,2, +field_70772_bD,maximumHomeDistance,2,If -1 there is no maximum distance +field_70773_bE,jumpTicks,2,Number of ticks since last jump +field_70775_bC,homePosition,2, +field_70811_b,squishFactor,2, +field_70812_c,prevSquishFactor,2, +field_70813_a,squishAmount,2, +field_70827_d,carriableBlocks,2, +field_70833_d,timeSinceIgnited,2,The amount of time since the creeper was close enough to the player to ignite +field_70834_e,lastActiveTime,2,"Time when this creeper was last in an active state (Messed up code here, probably causes creeper animation to go weird)" +field_70837_d,angerLevel,2,Above zero if this PigZombie is Angry. +field_70838_e,randomSoundDelay,2,A random delay until this PigZombie next makes a sound. +field_70847_d,heightOffset,2,Random offset used in floating behaviour +field_70848_e,heightOffsetUpdateTime,2,ticks until heightOffset is randomized +field_70855_f,attackTimer,2, +field_70856_g,holdRoseTick,2, +field_70857_d,villageObj,2, +field_70858_e,homeCheckTimer,2,"deincrements, and a distance-to-home check is done at 0" +field_70859_f,squidYaw,2, +field_70860_g,prevSquidYaw,2, +field_70861_d,squidPitch,2, +field_70862_e,prevSquidPitch,2, +field_70863_bz,randomMotionSpeed,2, +field_70864_bA,rotationVelocity,2,change in squidRotation in radians. +field_70865_by,lastTentacleAngle,2,the last calculated angle of the tentacles in radians +field_70866_j,tentacleAngle,2,angle of the tentacles in radians +field_70867_h,squidRotation,2,"appears to be rotation in radians; we already have pitch & yaw, so this completes the triumvirate." +field_70868_i,prevSquidRotation,2,previous squidRotation in radians +field_70869_bD,randomMotionVecY,2, +field_70870_bE,randomMotionVecZ,2, +field_70872_bC,randomMotionVecX,2, +field_70881_d,inLove,2, +field_70883_f,destPos,2, +field_70886_e,wingRotation,2, +field_70887_j,timeUntilNextEgg,2,The time until the next egg is spawned. +field_70889_i,wingRotDelta,2, +field_70899_e,sheepTimer,2,Used to control movement as well as wool regrowth. Set to 40 on handleHealthUpdate and counts down with each tick. +field_70911_d,aiSit,2, +field_70914_e,aiTempt,2,"The tempt AI task for this mob, used to prevent taming while it is fleeing." +field_70924_f,headRotationCourseOld,2, +field_70925_g,isWet,2,true is the wolf is wet else false +field_70926_e,headRotationCourse,2,Float used to smooth the rotation of the wolf head +field_70927_j,prevTimeWolfIsShaking,2, +field_70928_h,isShaking,2,True if the wolf is shaking else False +field_70929_i,timeWolfIsShaking,2,This time increases while wolf is shaking and emitting water particles. +field_70935_b,customer,0,This merchant's current player customer. +field_70936_c,recipeList,0,The MerchantRecipeList instance. +field_70937_a,theMerchantInventory,0,Instance of Merchants Inventory. +field_70952_f,isMating,2, +field_70953_g,isPlaying,2, +field_70954_d,villageObj,2, +field_70955_e,randomTickDivider,2, +field_70956_bz,wealth,2, +field_70959_by,needsInitilization,2,addDefaultEquipmentAndRecipies is called if this is true +field_70961_j,timeUntilReset,2, +field_70962_h,buyingPlayer,2,This villager's current customer. +field_70963_i,buyingList,2,Initialises the MerchantRecipeList.java +field_70976_f,ringBufferIndex,2,Index into the ring buffer. Incremented once per tick and restarts at 0 once it reaches the end of the buffer. +field_70977_g,dragonPartArray,2,An array containing all body parts of this dragon +field_70978_d,targetZ,2, +field_70979_e,ringBuffer,2,Ring buffer array for the last 64 Y-positions and yaw rotations. Used to calculate offsets for the animations. +field_70980_b,targetX,2, +field_70981_c,targetY,2, +field_70982_bz,dragonPartTail3,2, +field_70983_bA,dragonPartWing1,2, +field_70984_by,dragonPartTail2,2, +field_70985_j,dragonPartTail1,2, +field_70986_h,dragonPartHead,2,The head bounding box of a dragon +field_70987_i,dragonPartBody,2,The body bounding box of a dragon +field_70988_bD,animTime,2,"Animation time, used to control the speed of the animation cycles (wings flapping, jaw opening, etc.)" +field_70989_bE,forceNewTarget,2,Force selecting a new flight target at next tick if set to true. +field_70990_bB,dragonPartWing2,2, +field_70991_bC,prevAnimTime,2,Animation time at previous tick. +field_70992_bH,healingEnderCrystal,2,The current endercrystal that is healing this dragon +field_70993_bI,target,2, +field_70994_bF,slowed,2,"Activated if the dragon is flying though obsidian, white stone or bedrock. Slows movement and animation speed." +field_70995_bG,deathTicks,2, +field_71067_cb,experienceTotal,2,The total amount of experience the player has. This also includes the amount of experience within their Experience Bar. +field_71068_ca,experienceLevel,2,The current experience level the player is on. +field_71069_bz,inventoryContainer,2,The Container for the player's inventory (which opens when they press E) +field_71070_bA,openContainer,2,The Container the player has open. +field_71071_by,inventory,2,Inventory of the player +field_71072_f,itemInUseCount,2,This field starts off equal to getMaxItemUseDuration and is decremented on each tick +field_71073_d,startMinecartRidingCoordinate,2,Holds the coordinate of the player when enter a minecraft to ride. +field_71074_e,itemInUse,2,"This is the item that is in use when the player is holding down the useItemButton (e.g., bow, food, sword)" +field_71075_bZ,capabilities,2,The player's capabilities. (See class PlayerCapabilities) +field_71076_b,sleepTimer,2, +field_71077_c,spawnChunk,2,holds the spawn chunk of the player +field_71078_a,theInventoryEnderChest,2, +field_71079_bU,renderOffsetX,2, +field_71080_cy,prevTimeInPortal,0,The amount of time an entity has been in a Portal the previous tick +field_71081_bT,playerLocation,2,the current location of the player +field_71082_cx,renderOffsetY,0, +field_71083_bS,sleeping,2,Boolean value indicating weather a player is sleeping or not +field_71085_bR,chasingPosZ,2, +field_71086_bY,timeInPortal,0,The amount of time an entity has been in a Portal +field_71087_bX,inPortal,2,Whether the entity is inside a Portal +field_71088_bW,timeUntilPortal,2, +field_71089_bV,renderOffsetZ,2, +field_71090_bL,xpCooldown,2,Used by EntityPlayer to prevent too many xp orbs from getting absorbed at once. +field_71091_bM,prevChasingPosX,2, +field_71093_bK,dimension,2,"Which dimension the player is in (-1 = the Nether, 0 = normal world)" +field_71094_bP,chasingPosX,2, +field_71095_bQ,chasingPosY,2, +field_71096_bN,prevChasingPosY,2, +field_71097_bO,prevChasingPosZ,2, +field_71100_bB,foodStats,2,"The food object of the player, the general hunger logic." +field_71101_bC,flyToggleTimer,2,"Used to tell if the player pressed jump twice. If this is at 0 and it's pressed (And they are allowed to fly, as defined in the player's movementInput) it sets this to 7. If it's pressed and it's greater than 0 enable fly." +field_71102_ce,speedInAir,2, +field_71104_cf,fishEntity,2,"An instance of a fishing rod's hook. If this isn't null, the icon image of the fishing rod is slightly different" +field_71106_cc,experience,2,The current amount of experience the player has within their Experience Bar. +field_71107_bF,prevCameraYaw,2, +field_71108_cd,speedOnGround,2, +field_71109_bG,cameraYaw,2, +field_71129_f,loadedChunks,2,LinkedList that holds the loaded chunks. +field_71130_g,destroyedItemsNetCache,2,entities added to this list will be packet29'd to the player +field_71131_d,managedPosX,2,player X position as seen by PlayerManager +field_71132_e,managedPosZ,2,player Z position as seen by PlayerManager +field_71133_b,mcServer,2,Reference to the MinecraftServer object. +field_71134_c,theItemInWorldManager,2,The ItemInWorldManager belonging to this player +field_71135_a,playerNetServerHandler,2,The NetServerHandler assigned to this player by the ServerConfigurationManager. +field_71136_j,playerConqueredTheEnd,2,"Set when a player beats the ender dragon, used to respawn the player at the spawn point while retaining inventory and XP" +field_71137_h,isChangingQuantityOnly,2,set to true when player is moving quantity of items from one inventory to another(crafting) but item in either slot is not changed +field_71138_i,ping,2, +field_71139_cq,currentWindowId,2,The currently in use window ID. Incremented every time a window is opened. +field_71140_co,chatColours,2, +field_71143_cn,chatVisibility,2, +field_71144_ck,lastExperience,2,Amount of experience the client was last set to +field_71146_ci,lastFoodLevel,2,set to foodStats.GetFoodLevel +field_71147_cj,wasHungry,2,set to foodStats.getSaturationLevel() == 0.0F each tick +field_71148_cg,translator,2, +field_71149_ch,lastHealth,2,amount of health the client was last set to +field_71154_f,renderArmYaw,0, +field_71155_g,renderArmPitch,0, +field_71156_d,sprintToggleTimer,0,"Used to tell if the player pressed forward twice. If this is at 0 and it's pressed (And they are allowed to sprint, aka enough food on the ground etc) it sets this to 7. If it's pressed and it's greater than 0 enable sprinting." +field_71157_e,sprintingTicksLeft,0,Ticks left before sprinting is disabled. +field_71158_b,movementInput,0, +field_71159_c,mc,0, +field_71163_h,prevRenderArmYaw,0, +field_71164_i,prevRenderArmPitch,0, +field_71174_a,sendQueue,0, +field_71180_f,otherPlayerMPYaw,0, +field_71181_g,otherPlayerMPPitch,0, +field_71182_d,otherPlayerMPY,0, +field_71183_e,otherPlayerMPZ,0, +field_71184_b,otherPlayerMPPosRotationIncrements,0, +field_71185_c,otherPlayerMPX,0, +field_71186_a,isItemInUse,0, +field_71280_D,buildLimit,2,Maximum build height. +field_71284_A,pvpEnabled,2,Indicates whether PvP is active on the server or not. +field_71285_B,allowFlight,2,Determines if flight is allowed or not. +field_71286_C,motd,2,The server MOTD string. +field_71287_L,worldName,0, +field_71288_M,isDemo,2, +field_71289_N,enableBonusChest,2, +field_71290_O,worldIsBeingDeleted,2,"If true, there is no need to save chunks or stop the server, because that is already being done." +field_71292_I,serverKeyPair,2, +field_71293_J,serverOwner,2,Username of the server owner (for integrated servers) +field_71294_K,folderName,2, +field_71295_T,startProfiling,2, +field_71296_Q,serverIsRunning,2, +field_71298_S,userMessage,2, +field_71299_R,timeOfLastWarning,2,"Set when warned for ""Can't keep up"", which triggers again after 15 seconds." +field_71302_d,currentTask,2,The task the server is currently working on(and will output on outputPercentRemaining). +field_71303_e,percentDone,2,The percentage of the current task finished so far. +field_71304_b,theProfiler,2, +field_71305_c,worldServers,2,The server world instances. +field_71307_n,usageSnooper,2,The PlayerUsageSnooper instance. +field_71308_o,anvilFile,2, +field_71309_l,mcServer,2,Instance of Minecraft Server. +field_71310_m,anvilConverterForAnvilFile,2, +field_71311_j,tickTimeArray,2, +field_71312_k,timeOfLastDimensionTick,2,Stats are [dimension][tick%100] system.nanoTime is stored. +field_71315_w,tickCounter,2,Incremented every tick. +field_71316_v,serverStopped,2,Indicates to other classes that the server is safely stopped. +field_71317_u,serverRunning,2,Indicates whether the server is running or not. Set to false to initiate a shutdown. +field_71318_t,serverConfigManager,2,The ServerConfigurationManager instance. +field_71319_s,serverPort,2,The server's port. +field_71320_r,hostname,1,The server's hostname. +field_71321_q,commandManager,2, +field_71322_p,playersOnline,2,List of names of players who are online. +field_71323_z,canSpawnNPCs,2, +field_71324_y,canSpawnAnimals,2,True if the server has animals turned on. +field_71325_x,onlineMode,2,True if the server is in online mode. +field_71335_s,guiIsEnabled,1, +field_71337_q,gameType,1, +field_71338_p,canSpawnStructures,1, +field_71339_n,theRConThreadMain,1, +field_71340_o,settings,1, +field_71341_l,pendingCommandList,1, +field_71342_m,theRConThreadQuery,1, +field_71345_q,lanServerPing,0, +field_71346_p,isPublic,0, +field_71348_o,isGamePaused,0, +field_71349_l,mc,0,The Minecraft instance. +field_71350_m,theWorldSettings,0, +field_71412_D,mcDataDir,0, +field_71415_G,inGameHasFocus,0,Does the actual gameplay have focus. If so then mouse and keys will effect the player instead of menus. +field_71417_B,mouseHelper,0,Mouse helper instance. +field_71419_L,debugUpdateTime,0,Approximate time (in ms) of last update to debug string +field_71420_M,fpsCounter,0,holds the current fps +field_71421_N,prevFrameTime,0, +field_71422_O,currentServerData,0, +field_71423_H,systemTime,0, +field_71424_I,mcProfiler,0,The profiler instance +field_71425_J,running,0,Set to true to keep the game loop running. Set to false by shutdown() to allow the game loop to exit cleanly. +field_71426_K,debug,0,String that shows the debug information +field_71427_U,usageSnooper,0,Instance of PlayerUsageSnooper. +field_71428_T,timer,0, +field_71429_W,leftClickCounter,0,Mouse left click counter +field_71431_Q,fullscreen,0, +field_71432_P,theMinecraft,0,Set to 'this' in Minecraft constructor; used by some settings get methods +field_71433_S,crashReporter,0,Instance of CrashReport. +field_71434_R,hasCrashed,0, +field_71435_Y,tempDisplayHeight,0,Display height +field_71436_X,tempDisplayWidth,0,Display width +field_71437_Z,theIntegratedServer,0,Instance of IntegratedServer. +field_71438_f,renderGlobal,0, +field_71439_g,thePlayer,0, +field_71440_d,displayHeight,0, +field_71441_e,theWorld,0, +field_71442_b,playerController,0, +field_71443_c,displayWidth,0, +field_71444_a,memoryReserve,0,A 10MiB preallocation to ensure the heap is reasonably sized. +field_71445_n,isGamePaused,0, +field_71446_o,renderEngine,0,The RenderEngine instance used by Minecraft +field_71449_j,session,0, +field_71452_i,effectRenderer,0, +field_71453_ak,myNetworkManager,0, +field_71454_w,skipRenderWorld,0,Skip render world +field_71455_al,integratedServerIsRunning,0, +field_71456_v,ingameGUI,0, +field_71457_ai,joinPlayerCounter,0,Join player counter +field_71458_u,guiAchievement,0,Gui achievement +field_71459_aj,isDemo,0, +field_71460_t,entityRenderer,0, +field_71461_s,loadingScreen,0, +field_71462_r,currentScreen,0,The GuiScreen that's being displayed at the moment. +field_71464_q,standardGalacticFontRenderer,0, +field_71465_an,debugProfilerName,0,Profiler currently displayed in the debug screen pie chart +field_71466_p,fontRendererObj,0,The font renderer used for displaying and measuring text +field_71467_ac,rightClickDelayTimer,0,"When you place a block, it's set to 6, decremented once per tick, when it's 0, you can place another block." +field_71469_aa,saveLoader,0, +field_71470_ab,debugFPS,0,"This is set to fpsCounter every debug screen update, and is shown on the debug screen. It's also sent as part of the usage snooping." +field_71474_y,gameSettings,0,The game settings that currently hold effect. +field_71475_ae,serverName,0, +field_71476_x,objectMouseOver,0,The ray trace hit that the mouse is over. +field_71477_af,serverPort,0, +field_71510_d,crashReportFile,2,File of crash report. +field_71511_b,cause,2,"The Throwable that is the ""cause"" for this crash and Crash Report." +field_71512_c,crashReportSections,2,Holds the keys and values of all crash report sections. +field_71513_a,description,2,Description of the crash report. +field_71533_a,theAdmin,2, +field_71561_b,commandSet,2,The set of ICommand objects currently loaded. +field_71562_a,commandMap,2,Map of Strings to the ICommand objects they represent +field_71567_b,allowedCharactersArray,2,Array of the special characters that are allowed in any text drawing of Minecraft. +field_71576_a,theReportedExceptionCrashReport,2,Instance of CrashReport. +field_72307_f,hitVec,2,The vector position of the hit +field_72308_g,entityHit,2,The hit entity +field_72313_a,typeOfHit,2,"What type of ray trace hit was this? 0 = block, 1 = entity" +field_72334_f,maxZ,2, +field_72336_d,maxX,2, +field_72337_e,maxY,2, +field_72338_b,minY,2, +field_72339_c,minZ,2, +field_72340_a,minX,2, +field_72400_f,mcServer,2,Reference to the MinecraftServer object. +field_72401_g,bannedPlayers,2, +field_72402_d,viewDistance,2, +field_72403_e,dateFormat,2, +field_72404_b,playerEntityList,2,A list of player entities that exist on this server. +field_72405_c,maxPlayers,2,The maximum number of players that can be connected at a time. +field_72407_n,commandsAllowedForAll,2,True if all players are allowed to use commands (cheats). +field_72408_o,playerPingIndex,2,"index into playerEntities of player to ping, updated every tick; currently hardcoded to max at 200 players" +field_72409_l,whiteListEnforced,2,Server setting to only allow OPs and whitelisted players to join the server. +field_72410_m,gameType,2, +field_72411_j,whiteListedPlayers,2,The Set of all whitelisted players. +field_72412_k,playerNBTManagerObj,2,Reference to the PlayerNBTManager object. +field_72413_h,bannedIPs,2, +field_72414_i,ops,2,A set containing the OPs. +field_72416_e,hostPlayerData,0,"Holds the NBT data for the host player's save file, so this can be written to level.dat." +field_72448_b,yCoord,2,Y coordinate of Vec3D +field_72449_c,zCoord,2,Z coordinate of Vec3D +field_72450_a,xCoord,2,X coordinate of Vec3D +field_72595_f,requestIdAsString,1,The request ID stored as a String +field_72596_d,requestId,1,A client-provided request ID associated with this query. +field_72597_e,challengeValue,1,A unique string of bytes used to verify client auth +field_72598_b,timestamp,1,The creation timestamp for this auth +field_72599_c,randomChallenge,1,A random integer value to be used for client response authentication +field_72614_f,serverSocketList,1,A list of registered ServerSockets +field_72616_e,socketList,1,A list of registered DatagramSockets +field_72617_b,server,1,Reference to the IServer object. +field_72618_c,rconThread,1,Thread for this runnable class +field_72619_a,running,1,"True if the Thread is running, false otherwise" +field_72629_g,lastAuthCheckTime,1,The time of the last client auth check +field_72630_n,buffer,1,A buffer for incoming DatagramPackets +field_72631_o,incomingPacket,1,Storage for incoming DatagramPackets +field_72632_l,worldName,1,The name of the currently loaded world +field_72633_m,querySocket,1,The remote socket querying the server +field_72634_j,maxPlayers,1,The maximum number of players allowed on the server +field_72635_k,serverMotd,1,The current server message of the day +field_72636_h,queryPort,1,The RCon query port +field_72637_i,serverPort,1,Port the server is running on +field_72638_v,lastQueryResponseTime,1,The time of the last query response sent +field_72639_u,output,1,The RConQuery output stream +field_72640_t,time,1,"The time that this RConThreadQuery was constructed, from (new Date()).getTime()" +field_72641_s,queryClients,1,A map of SocketAddress objects to RConThreadQueryAuth objects +field_72642_r,serverHostname,1,The hostname of the running server +field_72643_q,queryHostname,1,The hostname of this query server +field_72647_g,rconPort,1,Port RCon is running on +field_72648_l,clientThreads,1,A map of client addresses to their running Threads +field_72649_j,serverSocket,1,The RCon ServerSocket. +field_72650_k,rconPassword,1,The RCon password +field_72651_h,serverPort,1,Port the server is running on +field_72652_i,hostname,1,Hostname RCon is running on +field_72657_g,loggedIn,1,"True if the client has succefssfully logged into the RCon, otherwise false" +field_72658_j,rconPassword,1,The RCon password +field_72659_h,clientSocket,1,The client's Socket connection +field_72660_i,buffer,1,A buffer for incoming Socket data +field_72666_a,hexDigits,1,Translation array of decimal to hex digits +field_72673_b,output,1,ByteArrayOutputStream wrapper +field_72674_a,byteArrayOutput,1,Output stream +field_72696_f,xzDirectionsConst,2,"x, z direction vectors: east, south, west, north" +field_72697_d,playerInstancesToUpdate,2,the playerInstances(chunks) that need to be updated +field_72698_e,playerViewRadius,2,Number of chunks the server sends to the client. Valid 3<=x<=15. In server.properties. +field_72699_b,players,2,players in the current instance +field_72700_c,playerInstances,2,the hash of all playerInstances created +field_72701_a,theWorldServer,2, +field_72738_E,damagedBlocks,0,Stores blocks currently being broken. Key is entity ID of the thing doing the breaking. Value is a DestroyBlockProgress +field_72739_F,renderDistanceChunks,0, +field_72740_G,renderEntitiesStartupCounter,0,Render entities startup counter (init value=2) +field_72748_H,countEntitiesTotal,0,Count entities total +field_72749_I,countEntitiesRendered,0,Count entities rendered +field_72750_J,countEntitiesHidden,0,Count entities hidden +field_72755_R,renderInfos,0,List of OpenGL lists for the current render pass +field_72769_h,theWorld,0, +field_72770_i,renderEngine,0,The RenderEngine instance used by RenderGlobal +field_72771_w,glSkyList,0,OpenGL sky list +field_72772_v,starGLCallList,0,The star GL Call list +field_72773_u,cloudTickCounter,0,counts the cloud render updates. Used with mod to stagger some updates +field_72777_q,mc,0,A reference to the Minecraft object. +field_72781_x,glSkyList2,0,OpenGL sky list 2 +field_72782_b,theWorldServer,2,The WorldServer object. +field_72783_a,mcServer,2,Reference to the MinecraftServer object. +field_72792_d,maxTrackingDistanceThreshold,2, +field_72793_b,trackedEntities,2,"List of tracked entities, used for iteration operations on tracked entities." +field_72794_c,trackedEntityHashTable,2,Used for identity lookup of tracked entities. +field_72795_a,theWorld,2, +field_72814_d,hasExtendedLevels,2,set by !chunk.getAreLevelsEmpty +field_72815_e,worldObj,2,Reference to the World object. +field_72816_b,chunkZ,2, +field_72817_c,chunkArray,2, +field_72818_a,chunkX,2, +field_72982_D,villageCollectionObj,2, +field_72984_F,theProfiler,2, +field_72985_G,spawnHostileMobs,2,indicates if enemies are spawned or not +field_72986_A,worldInfo,2,"holds information about a world (size on disk, time, spawn point, seed, ...)" +field_72987_B,findingSpawnPoint,2,"if set, this flag forces a request to load a chunk to load the chunk rather than defaulting to the world's chunkprovider's dummy if possible" +field_72988_C,mapStorage,2, +field_72990_M,ambientTickCountdown,2,number of ticks until the next random ambients play +field_72992_H,spawnPeacefulMobs,2,A flag indicating whether we should spawn peaceful mobs. +field_72993_I,activeChunkSet,2,populated by chunks that are within 9 chunks of any player +field_72994_J,lightUpdateBlockList,2,"is a temporary list of blocks and light values used when updating light levels. Holds up to 32x32x32 blocks (the maximum influence of a light source.) Every element is a packed bit value: 0000000000LLLLzzzzzzyyyyyyxxxxxx. The 4-bit L is a light level used when darkening blocks. 6-bit numbers x, y and z represent the block's offset from the original block, plus 32 (i.e. value of 31 would mean a -1 offset" +field_72995_K,isRemote,2,"True if the world is a 'slave' client; changes will not be saved or propagated from this world. For example, server worlds have this set to false, client worlds have this set to true." +field_72996_f,loadedEntityList,2,A list of all Entities in all currently-loaded chunks +field_72997_g,unloadedEntityList,2, +field_72999_e,scheduledUpdatesAreImmediate,2,boolean; if true updates scheduled by scheduleBlockUpdate happen immediately +field_73001_c,cloudColour,2, +field_73003_n,prevRainingStrength,2, +field_73004_o,rainingStrength,2, +field_73005_l,updateLCG,2,"Contains the current Linear Congruential Generator seed for block updates. Used with an A value of 3 and a C value of 0x3c6ef35f, producing a highly planar series of values ill-suited for choosing random blocks in a 16x128x16 field." +field_73006_m,DIST_HASH_MAGIC,2,magic number used to generate fast random numbers for 3d distribution within a chunk +field_73007_j,weatherEffects,2,a list of all the lightning entities +field_73008_k,skylightSubtracted,2,How much light is subtracted from full daylight +field_73010_i,playerEntities,2,Array list of players in the world. +field_73011_w,provider,2,The WorldProvider instance that World uses. +field_73012_v,rand,2,RNG for World. +field_73016_r,lastLightningBolt,2,Set to 2 whenever a lightning bolt is generated in SSP. Decrements if > 0 in updateWeather(). Value appears to be unused. +field_73017_q,thunderingStrength,2, +field_73018_p,prevThunderingStrength,2, +field_73019_z,saveHandler,2, +field_73020_y,chunkProvider,2,Handles chunk operations and caching +field_73021_x,worldAccesses,2, +field_73032_d,entityList,0,"Contains all entities for this client, both spawned and non-spawned." +field_73033_b,clientChunkProvider,0,The ChunkProviderClient instance +field_73035_a,sendQueue,0,The packets that need to be sent to the server. +field_73036_L,entitySpawnQueue,0,Contains all entities for this client that were not spawned due to a non-present chunk. The game will attempt to spawn up to 10 pending entities with each subsequent tick until the spawn queue is empty. +field_73037_M,mc,0, +field_73038_N,previousActiveChunkSet,0, +field_73058_d,disableLevelSaving,2,Whether level saving is disabled or not +field_73059_b,theChunkProviderServer,2, +field_73061_a,mcServer,2, +field_73062_L,theEntityTracker,2, +field_73063_M,thePlayerManager,2, +field_73064_N,pendingTickListEntriesHashSet,2, +field_73065_O,pendingTickListEntriesTreeSet,2,All work to do in future ticks. +field_73068_P,allPlayersSleeping,2,is false if there are no players +field_73069_S,bonusChestContent,2, +field_73071_a,demoWorldSettings,2, +field_73072_L,demoWorldSeed,2, +field_73088_d,isDestroyingBlock,2,True if the player is destroying a block +field_73089_e,initialDamage,2, +field_73090_b,thisPlayerMP,2,The EntityPlayerMP object that this object is connected to. +field_73091_c,gameType,2, +field_73092_a,theWorld,2,The world object that this object is connected to. +field_73093_n,initialBlockDamage,2, +field_73094_o,durabilityRemainingOnBlock,2, +field_73097_j,receivedFinishDiggingPacket,2,"Set to true when the ""finished destroying block"" packet is received but the block wasn't fully damaged yet. The block will not be destroyed while this is false." +field_73100_i,curblockDamage,2, +field_73103_d,demoTimeExpired,2, +field_73112_e,partialBlockProgress,0,damage ranges from 1 to 10. -1 causes the client to delete the partial block renderer. +field_73115_a,miningPlayerEntId,0,"entity ID of the player associated with this partially destroyed Block. Used to identify the Blocks in the client Renderer, max 1 per player on a server" +field_73126_f,encodedPosZ,2,The encoded entity Z position. +field_73127_g,encodedRotationYaw,2,The encoded entity yaw rotation. +field_73128_d,encodedPosX,2,The encoded entity X position. +field_73129_e,encodedPosY,2,The encoded entity Y position. +field_73130_b,trackingDistanceThreshold,2, +field_73131_c,updateFrequency,2,check for sync when ticks % updateFrequency==0 +field_73132_a,trackedEntity,2,The entity that this EntityTrackerEntry tracks. +field_73133_n,playerEntitiesUpdated,2, +field_73134_o,trackingPlayers,2,Holds references to all the players that are currently receiving position updates for this entity. +field_73135_l,motionZ,2, +field_73136_m,updateCounter,2, +field_73137_j,lastTrackedEntityMotionX,2, +field_73138_k,lastTrackedEntityMotionY,2, +field_73139_h,encodedRotationPitch,2,The encoded entity pitch rotation. +field_73140_i,lastHeadMotion,2, +field_73141_v,ridingEntity,2, +field_73142_u,ticksSinceLastForcedTeleport,2,"every 400 ticks a full teleport packet is sent, rather than just a ""move me +x"" command, so that position remains fully synced." +field_73143_t,sendVelocityUpdates,2, +field_73144_s,firstUpdateDone,2, +field_73145_r,lastTrackedEntityPosZ,2, +field_73146_q,lastTrackedEntityPosY,2, +field_73147_p,lastTrackedEntityPosX,2, +field_73161_b,random,2, +field_73163_a,worldObj,2, +field_73167_f,noiseData3,2, +field_73168_g,noiseData4,2, +field_73169_d,noiseData1,2, +field_73170_e,noiseData2,2, +field_73171_b,netherNoiseGen7,2, +field_73172_c,genNetherBridge,2, +field_73173_a,netherNoiseGen6,2, +field_73174_n,netherrackExculsivityNoiseGen,2,Determines whether something other than nettherack can be generated at a location +field_73175_o,worldObj,2,Is the world that the nether is getting generated. +field_73176_l,netherNoiseGen3,2, +field_73177_m,slowsandGravelNoiseGen,2,Determines whether slowsand or gravel can be generated at a location +field_73178_j,netherNoiseGen1,2,A NoiseGeneratorOctaves used in generating nether terrain +field_73179_k,netherNoiseGen2,2, +field_73180_h,noiseData5,2, +field_73181_i,hellRNG,2, +field_73182_t,netherCaveGenerator,2, +field_73183_s,netherrackExclusivityNoise,2,Holds the noise used to determine whether something other than netherrack can be generated at a location +field_73184_r,gravelNoise,2, +field_73185_q,slowsandNoise,2,Holds the noise used to determine whether slowsand can be generated at a location +field_73186_p,noiseField,2, +field_73190_f,noiseData4,2, +field_73191_g,noiseData5,2, +field_73192_d,noiseData2,2, +field_73193_e,noiseData3,2, +field_73194_b,noiseGen5,2, +field_73195_c,noiseData1,2, +field_73196_a,noiseGen4,2, +field_73197_n,densities,2, +field_73198_o,biomesForGeneration,2,The biomes that are used to generate the chunk +field_73199_l,noiseGen3,2, +field_73200_m,endWorld,2, +field_73201_j,noiseGen1,2, +field_73202_k,noiseGen2,2, +field_73204_i,endRNG,2, +field_73212_b,noiseGen6,2,A NoiseGeneratorOctaves used in generating terrain +field_73213_c,mobSpawnerNoise,2, +field_73214_a,noiseGen5,2,A NoiseGeneratorOctaves used in generating terrain +field_73220_k,rand,2,RNG. +field_73223_w,mineshaftGenerator,2,Holds Mineshaft Generator +field_73224_v,villageGenerator,2,Holds Village Generator +field_73225_u,strongholdGenerator,2,Holds Stronghold Generator +field_73226_t,caveGenerator,2, +field_73227_s,stoneNoise,2, +field_73229_q,mapFeaturesEnabled,2,are map structures going to be generated (e.g. strongholds) +field_73230_p,worldObj,2,Reference to the World object. +field_73231_z,biomesForGeneration,2,The biomes that are used to generate the chunk +field_73232_y,ravineGenerator,2,Holds ravine generator +field_73233_x,scatteredFeatureGenerator,2, +field_73235_d,worldObj,0,Reference to the World object. +field_73236_b,chunkMapping,0,The mapping between ChunkCoordinates and Chunks that ChunkProviderClient maintains. +field_73237_c,chunkListing,0,"An iterable list of all of the currently loaded chunks (MultiplayerChunkCache), with identical contents to chunkMapping's values." +field_73238_a,blankChunk,0,The completely empty chunk used by ChunkProviderClient when field_73236_b doesn't contain the requested coordinates. +field_73244_f,id2ChunkMap,2,map of chunk Id's to Chunk instances +field_73245_g,loadedChunks,2, +field_73246_d,serverChunkGenerator,2,chunk generator object. Calls to load nonexistent chunks are forwarded to this object. +field_73247_e,chunkLoader,2, +field_73248_b,droppedChunksSet,2, +field_73249_c,dummyChunk,2,"a dummy chunk, returned in place of an actual chunk." +field_73250_a,chunkLoadOverride,2,"if set, this flag forces a request to load a chunk to load the chunk rather than defaulting to the dummy if possible" +field_73251_h,worldObj,2, +field_73260_f,flagsYAreasToUpdate,2,Integer field where each bit means to make update 16x16x16 division of chunk (from bottom). +field_73262_e,numBlocksToUpdate,2,the number of blocks that need to be updated next tick +field_73263_b,playersWatchingChunk,2,the list of all players in this instance (chunk) +field_73264_c,chunkCoords,2,The chunk coordinates +field_73672_b,serverProperties,1,The server properties object. +field_73673_c,serverPropertiesFile,1,The server properties file. +field_73692_f,banEndDate,2, +field_73693_g,reason,2, +field_73694_d,banStartDate,2, +field_73695_e,bannedBy,2, +field_73698_a,dateFormat,2, +field_73701_b,sender,1, +field_73702_a,command,1,The command string. +field_73723_d,systemTime,0,The system's time represented in milliseconds. +field_73724_e,loadingSuccess,0,True if the loading ended with a success +field_73725_b,mc,0,A reference to the Minecraft object. +field_73726_c,currentlyDisplayedText,0,The text currently displayed (i.e. the argument to the last call to printText or func_73722_d) +field_73727_a,message,0, +field_73735_i,zLevel,0, +field_73837_f,updateCounter,0, +field_73838_g,recordPlaying,0,The string specifying which record music is playing +field_73839_d,mc,0, +field_73840_e,persistantChatGUI,0,ChatGUI instance that retains all previous chat data +field_73841_b,itemRenderer,0, +field_73842_c,rand,0, +field_73843_a,prevVignetteBrightness,0,Previous frame vignette brightness (slowly changes by 1% each frame) +field_73844_j,recordIsPlaying,0, +field_73845_h,recordPlayingUpFor,0,How many ticks the record playing message will be displayed +field_73973_d,buttonResetDemo,0, +field_73974_b,updateCounter,0,Counts the number of screen updates. +field_73975_c,splashText,0,The splash message. +field_73977_n,viewportTexture,0,Texture allocated for the current viewport of the main menu's panorama background. +field_73978_o,titlePanoramaPaths,0,An array of all the paths to the panorama pictures. +field_73979_m,panoramaTimer,0,"Timer used to rotate the panorama, increases every tick." +field_74276_f,lastHRTime,0,"The time reported by the high-resolution clock at the last call of updateTimer(), in seconds" +field_74277_g,lastSyncSysClock,0,"The time reported by the system clock at the last sync, in milliseconds" +field_74278_d,timerSpeed,0,A multiplier to make the timer (and therefore the game) go faster or slower. 0.5 makes the game run at half-speed. +field_74279_e,elapsedPartialTicks,0,"How much time has elapsed since the last tick, in ticks (range: 0.0 - 1.0)." +field_74280_b,elapsedTicks,0,"How many full ticks have turned over since the last call to updateTimer(), capped at 10." +field_74281_c,renderPartialTicks,0,"How much time has elapsed since the last tick, in ticks, for use by display rendering routines (range: 0.0 - 1.0). This field is frozen if the display is paused to eliminate jitter." +field_74282_a,ticksPerSecond,0,The number of timer ticks per second of real time +field_74283_j,timeSyncAdjustment,0,"A ratio used to sync the high-resolution clock to the system clock, updated once per second" +field_74284_h,lastSyncHRClock,0,"The time reported by the high-resolution clock at the last sync, in milliseconds" +field_74285_i,counter,0,"Increase per 1 every tick, reset when reach 1000" +field_74286_b,username,0, +field_74293_b,pixelBuffer,0,A buffer to hold pixel values returned by OpenGL. +field_74294_c,pixelValues,0,The built-up array that contains all the pixel values returned by OpenGL. +field_74295_a,dateFormat,0, +field_74310_D,keyBindChat,0, +field_74311_E,keyBindSneak,0, +field_74312_F,keyBindAttack,0, +field_74313_G,keyBindUseItem,0, +field_74314_A,keyBindJump,0, +field_74316_C,keyBindDrop,0, +field_74317_L,mc,0, +field_74318_M,difficulty,0, +field_74319_N,hideGUI,0, +field_74320_O,thirdPersonView,0, +field_74321_H,keyBindPlayerList,0, +field_74322_I,keyBindPickBlock,0, +field_74323_J,keyBindCommand,0, +field_74324_K,keyBindings,0, +field_74325_U,debugCamEnable,0, +field_74326_T,smoothCamera,0,Smooth Camera Toggle +field_74329_Q,showDebugProfilerChart,0, +field_74330_P,showDebugInfo,0,true if debug info should be displayed instead of version +field_74332_R,lastServer,0,The lastServer string. +field_74333_Y,gammaSetting,0, +field_74334_X,fovSetting,0, +field_74335_Z,guiScale,0,GUI scale +field_74336_f,viewBobbing,0, +field_74337_g,anaglyph,0, +field_74338_d,invertMouse,0, +field_74341_c,mouseSensitivity,0, +field_74343_n,chatVisibility,0, +field_74344_o,chatColours,0, +field_74345_l,clouds,0,Clouds flag +field_74347_j,fancyGraphics,0, +field_74348_k,ambientOcclusion,0,Smooth Lighting +field_74350_i,limitFramerate,0, +field_74351_w,keyBindForward,0, +field_74352_v,enableVsync,0, +field_74353_u,fullScreen,0, +field_74354_ai,optionsFile,0, +field_74355_t,snooperEnabled,0, +field_74357_r,chatOpacity,0, +field_74358_q,chatLinksPrompt,0, +field_74359_p,chatLinks,0, +field_74362_aa,particleSetting,0,"Determines amount of particles. 0 = All, 1 = Decreased, 2 = Minimal" +field_74363_ab,language,0,Game settings language +field_74364_ag,PARTICLES,0, +field_74366_z,keyBindRight,0, +field_74367_ae,GUISCALES,0,GUI scale values +field_74368_y,keyBindBack,0, +field_74370_x,keyBindLeft,0, +field_74375_b,deltaY,0,Mouse delta Y this frame +field_74377_a,deltaX,0,Mouse delta X this frame +field_74385_A,enumFloat,0, +field_74386_B,enumBoolean,0, +field_74387_C,enumString,0, +field_74512_d,keyCode,0, +field_74513_e,pressed,0,Is the key held down? +field_74514_b,hash,0, +field_74515_c,keyDescription,0, +field_74516_a,keybindArray,0, +field_74522_a,colorBuffer,0,Float buffer used to set OpenGL material colors +field_74541_b,lineString,0, +field_74542_c,chatLineID,0,"int value to refer to existing Chat Lines, can be 0 which means unreferrable" +field_74543_a,updateCounterCreated,0,GUI Update Counter value this Line was created at +field_74586_f,rotationZ,0,The Z component of the entity's yaw rotation +field_74587_g,rotationYZ,0,The Y component (scaled along the Z axis) of the entity's pitch rotation +field_74588_d,rotationX,0,The X component of the entity's yaw rotation +field_74589_e,rotationXZ,0,The combined X and Z components of the entity's pitch rotation +field_74596_h,rotationXY,0,The Y component (scaled along the X axis) of the entity's pitch rotation +field_74746_b,tagType,2,The type byte for the tags in the list - they must all be of the same type. +field_74747_a,tagList,2,The array list containing the tags encapsulated in this list. +field_74748_a,data,2,The integer value for the tag. +field_74749_a,intArray,2,The array of saved integers +field_74750_a,data,2,The float value for the tag. +field_74751_a,data,2,The string value for the tag (cannot be empty). +field_74752_a,data,2,The short value for the tag. +field_74753_a,data,2,The long value for the tag. +field_74754_a,data,2,The byte array stored in the tag. +field_74755_a,data,2,The double value for the tag. +field_74756_a,data,2,The byte value for the tag. +field_74784_a,tagMap,2,"The key-value pairs for the tag. Each key is a UTF string, each value is a tag." +field_74816_c,languageList,2, +field_74817_a,instance,2,Is the private singleton instance of StringTranslate. +field_74839_a,localizedName,2, +field_74845_a,errorObjects,2, +field_74885_f,coordBaseMode,2,switches the Coordinate System base off the Bounding Box +field_74886_g,componentType,2,The type ID of this component. +field_74887_e,boundingBox,2, +field_74896_a,villagersSpawned,2,The number of villagers that have been spawned in this component. +field_74909_b,isTallHouse,2, +field_74910_c,tablePosition,2, +field_74913_b,isRoofAccessible,2, +field_74917_c,hasMadeChest,2, +field_74918_a,villageBlacksmithChestContents,2,List of items that Village's Blacksmith chest can contain. +field_74926_d,structVillagePieceWeight,2, +field_74927_b,inDesert,2,Boolean that determines if the village is in a desert or not. +field_74928_c,terrainType,2,"World terrain type, 0 for normal, 1 for flap map" +field_74929_a,worldChunkMngr,2, +field_74931_h,structureVillageWeightedPieceList,2,"Contains List of all spawnable Structure Piece Weights. If no more Pieces of a type can be spawned, they are removed from this list" +field_74934_a,length,2, +field_74937_b,scatteredFeatureSizeY,2,The size of the bounding box for this feature in the Y axis +field_74938_c,scatteredFeatureSizeZ,2,The size of the bounding box for this feature in the Z axis +field_74939_a,scatteredFeatureSizeX,2,The size of the bounding box for this feature in the X axis +field_74940_h,hasPlacedChest,2, +field_74941_i,itemsToGenerateInTemple,2,List of items to generate in chests of Temples. +field_74942_n,junglePyramidsRandomScatteredStones,2,List of random stones to be generated in the Jungle Pyramid. +field_74945_j,placedTrap1,2, +field_74946_k,placedTrap2,2, +field_74947_h,placedMainChest,2, +field_74948_i,placedHiddenChest,2, +field_74949_a,roomsLinkedToTheRoom,2,List of other Mineshaft components linked to this room. +field_74952_b,isMultipleFloors,2, +field_74953_a,corridorDirection,2, +field_74955_d,sectionCount,2,A count of the different sections of this mine. The space between ceiling supports. +field_74956_b,hasSpiders,2, +field_74957_c,spawnerPlaced,2, +field_74958_a,hasRails,2, +field_74968_b,primaryWeights,2,Contains the list of valid piece weights for the set of nether bridge structure pieces. +field_74969_c,secondaryWeights,2,Contains the list of valid piece weights for the secondary set of nether bridge structure pieces. +field_74970_a,theNetherBridgePieceWeight,2,Instance of StructureNetherBridgePieceWeight. +field_74972_a,fillSeed,2, +field_74976_a,hasSpawner,2, +field_75002_c,hasMadeChest,2, +field_75003_a,strongholdChestContents,2,List of items that Stronghold chests can contain. +field_75005_a,hasSpawner,2, +field_75007_b,strongholdLibraryChestContents,2,List of items that Stronghold Library chests can contain. +field_75008_c,isLargeRoom,2, +field_75013_b,roomType,2, +field_75014_c,strongholdRoomCrossingChestContents,2,Items that could generate in the chest that is located in Stronghold Room Crossing. +field_75019_b,expandsX,2, +field_75020_c,expandsZ,2, +field_75025_b,strongholdPortalRoom,2, +field_75027_a,strongholdPieceWeight,2, +field_75038_b,rand,2,The RNG used by the MapGen classes. +field_75039_c,worldObj,2,This world object. +field_75040_a,range,2,The number of Chunks to gen-check in any given direction. +field_75053_d,structureMap,2,"Used to store a list of all structures that have been recursively generated. Used so that during recursive generation, the structure generator can avoid generating structures that intersect ones that have already been placed." +field_75054_f,terrainType,2,"World terrain type, 0 for normal, 1 for flat map" +field_75055_e,villageSpawnBiomes,2,A list of all the biomes villages can spawn in. +field_75056_f,ranBiomeCheck,2,is spawned false and set true once the defined BiomeGenBases were compared with the present ones +field_75057_g,structureCoords,2, +field_75060_e,spawnList,2, +field_75061_e,biomelist,2, +field_75074_b,boundingBox,2, +field_75075_a,components,2,List of all StructureComponents that are part of this structure +field_75076_c,hasMoreThanTwoComponents,2,well ... thats what it does +field_75087_d,villagePiecesLimit,2, +field_75088_b,villagePieceWeight,2, +field_75089_c,villagePiecesSpawned,2, +field_75090_a,villagePieceClass,2,The Class object for the represantation of this village piece. +field_75096_f,flySpeed,2, +field_75097_g,walkSpeed,2, +field_75098_d,isCreativeMode,2,"Used to determine if creative mode is enabled, and therefore if items should be depleted on usage" +field_75099_e,allowEdit,2,Indicates whether the player is allowed to modify the surroundings +field_75100_b,isFlying,2,Sets/indicates whether the player is flying. +field_75101_c,allowFlying,2,whether or not to allow the player to fly when they double jump. +field_75102_a,disableDamage,2,Disables player damage. +field_75123_d,foodTimer,2,The player's food timer value. +field_75124_e,prevFoodLevel,2, +field_75125_b,foodSaturationLevel,2,The player's food saturation. +field_75126_c,foodExhaustionLevel,2,The player's food exhaustion. +field_75127_a,foodLevel,2,The player's food level. +field_75148_f,playerList,2, +field_75149_d,crafters,2,list of all people that need to be notified when this craftinventory changes +field_75150_e,transactionID,0, +field_75151_b,inventorySlots,2,the list of all slots in the inventory +field_75152_c,windowId,2, +field_75153_a,inventoryItemStacks,2,the list of all items(stacks) for the corresponding slot +field_75154_f,numRows,2, +field_75155_e,lowerChestInventory,2, +field_75158_e,tileFurnace,2, +field_75160_f,craftResult,2, +field_75161_g,worldObj,2, +field_75162_e,craftMatrix,2,The crafting matrix inventory (3x3). +field_75167_g,enchantLevels,2,3-member array storing the enchantment levels of each slot +field_75168_e,tableInventory,2,SlotEnchantmentTable object with ItemStack to be enchanted +field_75169_l,rand,2, +field_75172_h,worldPointer,2,current world (for bookshelf counting) +field_75176_f,merchantInventory,2, +field_75177_g,theWorld,2,Instance of World. +field_75178_e,theMerchant,2,Instance of Merchant. +field_75179_f,craftResult,2, +field_75180_g,isLocalWorld,2,Determines if inventory manipulation should be handled. +field_75181_e,craftMatrix,2,The crafting matrix inventory. +field_75186_f,theSlot,2,Instance of Slot. +field_75187_g,brewTime,2, +field_75188_e,tileBrewingStand,2, +field_75191_d,instancesLimit,2,How many Structure Pieces of this type may spawn in a structure +field_75192_b,pieceWeight,2,"This basically keeps track of the 'epicness' of a structure. Epic structure components have a higher 'weight', and Structures may only grow up to a certain 'weight' before generation is stopped" +field_75193_c,instancesSpawned,2, +field_75194_a,pieceClass,2, +field_75203_d,strongComponentType,2, +field_75204_e,strongholdStones,2, +field_75205_b,pieceWeightArray,2, +field_75206_c,structurePieceList,2, +field_75207_a,totalWeight,2, +field_75221_f,yDisplayPosition,2,display position of the inventory slot on the screen y axis +field_75222_d,slotNumber,2,the id of the slot(also the index in the inventory arraylist) +field_75223_e,xDisplayPosition,2,display position of the inventory slot on the screen x axis +field_75224_c,inventory,2,The inventory we want to extract a slot from. +field_75225_a,slotIndex,2,The index of the slot in the inventory. +field_75229_a,thePlayer,2,The player that is using the GUI where this slot resides. +field_75232_b,thePlayer,2,The Player whos trying to buy/sell stuff. +field_75233_a,theMerchantInventory,2,Merchant's inventory. +field_75234_h,theMerchant,2,"""Instance"" of the Merchant." +field_75237_g,amountCrafted,2,The number of items that have been crafted so far. Gets passed to ItemStack.onCrafting before being reset. +field_75238_b,thePlayer,2,The player that is using the GUI where this slot resides. +field_75239_a,craftMatrix,2,The craft matrix inventory linked to this result slot. +field_75244_a,player,2,The player that has this container open. +field_75254_a,mutexBits,2,"A bitmask telling which other tasks may not run concurrently. The test is a simple bitwise AND - if it yields zero, the two tasks may run concurrently, if not - they must run exclusively from each other." +field_75255_d,idleTime,2,A decrementing tick that stops the entity from being idle once it reaches 0. +field_75256_b,lookX,2,X offset to look at +field_75257_c,lookZ,2,Z offset to look at +field_75258_a,idleEntity,2,The entity that is looking idle. +field_75259_d,playTime,2, +field_75260_b,targetVillager,2, +field_75261_c,speed,2, +field_75262_a,villagerObj,2, +field_75263_d,randPosY,2, +field_75264_e,randPosZ,2, +field_75265_b,speed,2, +field_75266_c,randPosX,2, +field_75267_a,theEntityCreature,2, +field_75268_b,creeperAttackTarget,2,The creeper's attack target. This is used for the changing of the creeper's state. +field_75269_a,swellingCreeper,2,The creeper that is swelling. +field_75271_b,isSitting,2,If the EntityTameable is sitting. +field_75272_a,theEntity,2, +field_75273_a,theEntity,2, +field_75274_b,frontDoor,2, +field_75275_a,entityObj,2, +field_75276_a,villager,2, +field_75278_f,pitch,2,Tempting player's pitch +field_75279_g,yaw,2,Tempting player's yaw +field_75280_d,targetY,2,Y position of player tempting this mob +field_75281_e,targetZ,2,Z position of player tempting this mob +field_75282_b,speed,2, +field_75283_c,targetX,2,X position of player tempting this mob +field_75284_a,temptedEntity,2,The entity using this AI that is tempted by the player. +field_75285_l,scaredByPlayerMovement,2,Whether the entity using this AI will be scared by the tempter's sudden movement. +field_75286_m,avoidWater,2, +field_75287_j,isRunning,2,True if this EntityAITempt task is running +field_75289_h,temptingPlayer,2,The player that is tempting the entity that is using this AI. +field_75290_i,delayTemptCounter,2,A counter that is decremented each time the shouldExecute method is called. The shouldExecute method will always return false if delayTemptCounter is greater than 0. +field_75291_d,tookGolemRose,2, +field_75292_b,theGolem,2, +field_75293_c,takeGolemRoseTick,2, +field_75294_a,theVillager,2, +field_75297_f,shouldCheckSight,2,"If true, EntityAI targets must be able to be seen (cannot be blocked by walls) to be suitable targets." +field_75298_g,targetUnseenTicks,2,"If @shouldCheckSight is true, the number of ticks before the interuption of this AITastk when the entity does't see the target" +field_75299_d,taskOwner,2,The entity that this task belongs to +field_75301_b,targetSearchStatus,2,"When nearbyOnly is true: 0 -> No target, but OK to search; 1 -> Nearby target found; 2 -> Target too far." +field_75302_c,targetSearchDelay,2,"When nearbyOnly is true, this throttles target searching to avoid excessive pathfinding." +field_75303_a,nearbyOnly,2,"When true, only entities that can be reached with minimal effort will be targetted." +field_75304_b,villageAgressorTarget,2,The aggressor of the iron golem's village which is now the golem's attack target. +field_75305_a,irongolem,2, +field_75306_g,theNearestAttackableTargetSorter,2,Instance of EntityAINearestAttackableTargetSorter. +field_75307_b,targetClass,2, +field_75308_c,targetChance,2, +field_75309_a,targetEntity,2, +field_75310_g,theTameable,2, +field_75312_a,entityCallsForHelp,2, +field_75313_b,theTarget,2, +field_75314_a,theEntityTameable,2, +field_75315_b,theOwnerAttacker,2, +field_75316_a,theDefendingTameable,2, +field_75320_d,rangedAttackTime,2,A decrementing tick that spawns a ranged attack once this value reaches 0. It is then set back to the maxRangedAttackTime. +field_75321_e,entityMoveSpeed,2, +field_75322_b,entityHost,2,The entity the AI instance has been applied to +field_75323_c,attackTarget,2, +field_75325_h,maxRangedAttackTime,2,The maximum time the AI has to wait before peforming another ranged attack. +field_75326_b,leapTarget,2,The entity that the leaper is leaping towards. +field_75327_c,leapMotionY,2,The entity's motionY after leaping. +field_75328_a,leaper,2,The entity that is leaping. +field_75329_f,watchedClass,2, +field_75330_d,lookTime,2, +field_75331_e,chance,2, +field_75332_b,theWatcher,2, +field_75333_c,maxDistanceForPlayer,2,This is the Maximum distance that the AI will look for the Entity +field_75334_a,closestEntity,2,The closest entity which is being watched by this one. +field_75335_b,theMerchant,2, +field_75336_f,followSpeed,2, +field_75337_g,petPathfinder,2, +field_75338_d,thePet,2, +field_75339_e,theOwner,2, +field_75340_b,maxDist,2, +field_75341_c,minDist,2, +field_75342_a,theWorld,2, +field_75345_d,delayCounter,2, +field_75346_b,parentAnimal,2, +field_75347_c,moveSpeed,2, +field_75348_a,childAnimal,2,The child that is following its parent. +field_75350_f,hasStoppedDoorInteraction,2,If is true then the Entity has stopped Door Interaction and compoleted the task. +field_75351_g,entityPositionX,2, +field_75356_a,theEntity,2, +field_75357_h,entityPositionZ,2, +field_75358_j,previousBreakProgress,2, +field_75359_i,breakingTime,2, +field_75360_j,closeDoorTemporisation,2,"The temporisation before the entity close the door (in ticks, always 20 = 1 second)" +field_75361_i,closeDoor,2,If the entity close the door +field_75367_f,theWorld,2, +field_75368_d,shelterZ,2, +field_75369_e,movementSpeed,2, +field_75370_b,shelterX,2, +field_75371_c,shelterY,2, +field_75372_a,theCreature,2, +field_75373_a,theEntity,2, +field_75374_f,entityPathEntity,2,The PathEntity of our entity +field_75375_g,entityPathNavigate,2,The PathNavigate of our entity +field_75376_d,closestLivingEntity,2, +field_75378_b,farSpeed,2, +field_75379_c,nearSpeed,2, +field_75380_a,theEntity,2,The entity we are attached to +field_75383_d,minPlayerDistance,2, +field_75384_e,timeoutCounter,2, +field_75385_b,thePlayer,2, +field_75386_c,worldObject,2, +field_75387_a,theWolf,2, +field_75390_d,theAnimal,2, +field_75391_e,targetMate,2, +field_75392_b,spawnBabyDelay,2,Delay preventing a baby from spawning immediately when two mate-able animals find each other. +field_75393_c,moveSpeed,2,The speed the creature moves at during mating behavior. +field_75394_a,theWorld,2, +field_75395_b,theVillager,2, +field_75396_c,lookTime,2, +field_75397_a,theGolem,2, +field_75408_d,attackCountdown,2, +field_75409_b,theEntity,2, +field_75410_c,theVictim,2, +field_75411_a,theWorld,2, +field_75415_f,doorList,2, +field_75416_d,doorInfo,2, +field_75417_e,isNocturnal,2, +field_75418_b,movementSpeed,2, +field_75419_c,entityPathNavigate,2,The PathNavigate of our entity. +field_75420_a,theEntity,2, +field_75421_d,insidePosZ,2, +field_75422_b,doorInfo,2, +field_75423_c,insidePosX,2, +field_75424_a,entityObj,2, +field_75425_f,speed,2, +field_75426_g,maxTargetDistance,2,"If the distance to the target entity is further than this, this AI task will not run." +field_75427_d,movePosY,2, +field_75428_e,movePosZ,2, +field_75429_b,targetEntity,2, +field_75430_c,movePosX,2, +field_75431_a,theEntity,2, +field_75432_d,movePosZ,2, +field_75433_e,movementSpeed,2, +field_75434_b,movePosX,2, +field_75435_c,movePosY,2, +field_75436_a,theEntity,2, +field_75437_f,longMemory,2,"When true, the mob will continue chasing its target, even if it can't find a path to them right now." +field_75438_g,entityPathEntity,2,The PathEntity of our entity. +field_75439_d,attackTick,2,An amount of decrementing ticks that allows the entity to attack once the tick reaches 0. +field_75440_e,speedTowardsTarget,2,The speed with which the mob will approach the target +field_75441_b,attacker,2, +field_75443_a,worldObj,2, +field_75444_h,classTarget,2, +field_75445_i,delayCounter,2, +field_75448_d,worldObj,2, +field_75449_e,matingTimeout,2, +field_75450_b,villagerObj,2, +field_75451_c,mate,2, +field_75452_a,villageObj,2, +field_75453_d,zPosition,2, +field_75454_e,speed,2, +field_75455_b,xPosition,2, +field_75456_c,yPosition,2, +field_75457_a,entity,2, +field_75459_b,theEntity,2, +field_75465_a,staticVector,2,"used to store a driection when the user passes a point to move towards or away from. WARNING: NEVER THREAD SAFE. MULTIPLE findTowards and findAway calls, will share this var" +field_75475_f,lastActivityTimestamp,2, +field_75476_g,isDetachedFromVillageFlag,2, +field_75482_h,doorOpeningRestrictionCounter,2, +field_75510_g,totalTicks,2,"Time, in number of ticks, following the current path" +field_75511_d,speed,2, +field_75512_e,pathSearchRange,2,The number of blocks (extra) +/- in each axis that get pulled out as cache for the pathfinder's search space +field_75513_b,worldObj,2, +field_75514_c,currentPath,2,The PathEntity being followed. +field_75515_a,theEntity,2, +field_75520_h,ticksAtLastPos,2,The time when the last position check was done (to detect successful movement) +field_75521_i,lastPosCheck,2,Coordinates of the entity's position last time a check was done (part of monitoring getting 'stuck') +field_75524_b,seenEntities,2,Cache of entities which we can see +field_75525_c,unseenEntities,2,Cache of entities which we cannot see +field_75526_a,entityObj,2, +field_75531_f,theVillage,2,Instance of Village. +field_75537_a,worldObj,2, +field_75552_d,villageList,2, +field_75553_e,tickCounter,2, +field_75554_b,villagerPositionsList,2,"This is a black hole. You can add data to this list through a public interface, but you can't query that information in any way and it's not used internally either." +field_75555_c,newDoors,2, +field_75556_a,worldObj,2, +field_75580_f,lastAddDoorTimestamp,2, +field_75581_g,tickCounter,2, +field_75582_d,center,2,This is the actual village center. +field_75583_e,villageRadius,2, +field_75584_b,villageDoorInfoList,2,list of VillageDoorInfo objects +field_75585_c,centerHelper,2,This is the sum of all door coordinates and used to calculate the actual village center by dividing by the number of doors. +field_75586_a,worldObj,2, +field_75587_j,numIronGolems,2, +field_75588_h,numVillagers,2, +field_75589_i,villageAgressors,2, +field_75590_b,agressionTime,2, +field_75592_a,agressor,2, +field_75603_f,creatureMaterial,2, +field_75604_g,isPeacefulCreature,2,A flag indicating whether this creature type is peaceful. +field_75605_d,creatureClass,2,"The root class of creatures associated with this EnumCreatureType (IMobs for aggressive creatures, EntityAnimals for friendly ones)" +field_75606_e,maxNumberOfCreature,2, +field_75611_b,primaryColor,2,Base color of the egg +field_75612_c,secondaryColor,2,Color of the egg spots +field_75613_a,spawnedID,2,The entityID of the spawned mob +field_75623_d,idToClassMapping,2,provides a mapping between an entityID and an Entity Class +field_75624_e,classToIDMapping,2,provides a mapping between an Entity Class and an entity ID +field_75625_b,stringToClassMapping,2,Provides a mapping between entity classes and a string +field_75626_c,classToStringMapping,2,Provides a mapping between a string and an entity classes +field_75627_a,entityEggs,2,This is a HashMap of the Creative Entity Eggs/Spawners. +field_75643_f,update,2, +field_75644_d,posZ,2, +field_75645_e,speed,2,The speed at which the entity should move +field_75646_b,posX,2, +field_75647_c,posY,2, +field_75648_a,entity,2,The EntityLiving that is being moved +field_75653_f,posY,2, +field_75654_g,posZ,2, +field_75655_d,isLooking,2,Whether or not the entity is trying to look at something. +field_75656_e,posX,2, +field_75657_b,deltaLookYaw,2,The amount of change that is made each update for an entity facing a direction. +field_75658_c,deltaLookPitch,2,The amount of change that is made each update for an entity facing a direction. +field_75659_a,entity,2, +field_75662_b,isJumping,2, +field_75663_a,entity,2, +field_75666_b,rotationTickCounter,2,Used to progressively ajust the rotation of the body to the rotation of the head +field_75667_c,prevRenderYawHead,2, +field_75668_a,theLiving,2,Instance of EntityLiving. +field_75675_d,watched,2, +field_75676_b,dataValueId,2,id of max 31 +field_75677_c,watchedObject,2, +field_75678_a,objectType,2, +field_75694_d,lock,2, +field_75695_b,watchedObjects,2, +field_75696_c,objectChanged,2,true if one or more object was changed +field_75697_a,dataTypes,2, +field_75699_D,offsetX,2, +field_75700_E,offsetY,2, +field_75702_A,title,2,Painting Title. +field_75703_B,sizeX,2, +field_75704_C,sizeY,2, +field_75731_b,priority,2,Priority of the EntityAIBase +field_75733_a,action,2,The EntityAIBase object. +field_75737_d,savedIOCounter,2, +field_75738_e,isThreadWaiting,2, +field_75739_b,threadedIOQueue,2, +field_75740_c,writeQueuedCounter,2, +field_75741_a,threadedIOInstance,2,Instance of ThreadedFileIOBase +field_75748_d,idCounts,2,Map of MapDataBase id String prefixes ('map' etc) to max known unique Short id (the 0 part etc) for that prefix +field_75749_b,loadedDataMap,2,Map of item data String id to loaded MapDataBases +field_75750_c,loadedDataList,2,List of loaded MapDataBases. +field_75751_a,saveHandler,2, +field_75767_f,saveDirectoryName,2,The directory name of the world +field_75768_d,mapDataDir,2, +field_75769_e,initializationTime,2,The time in milliseconds when this field was initialized. Stored in the session lock file. +field_75770_b,worldDirectory,2,The directory in which to save world data. +field_75771_c,playersDirectory,2,The directory in which to save player data. +field_75778_d,tickCount,2, +field_75779_e,tickRate,2, +field_75780_b,executingTaskEntries,2,A list of EntityAITaskEntrys that are currently being executed. +field_75781_c,theProfiler,2,Instance of Profiler. +field_75782_a,taskEntries,2,A list of EntityAITaskEntrys in EntityAITasks. +field_75791_f,theEnumGameType,0,Instance of EnumGameType. +field_75792_g,hardcore,0, +field_75793_d,sizeOnDisk,0, +field_75794_e,requiresConversion,0, +field_75795_b,displayName,0,the displayed name of this save file +field_75796_c,lastTimePlayed,0, +field_75797_a,fileName,0,the file name of this save +field_75798_h,cheatsEnabled,0, +field_75808_a,savesDirectory,2,Reference to the File object representing the directory for the world saves +field_75825_d,chunkSaveLocation,2,Save directory for chunks using the Anvil format +field_75826_b,pendingAnvilChunksCoordinates,2, +field_75828_a,chunksToRemove,2, +field_75833_f,distanceToNext,2,The linear distance to the next point +field_75834_g,distanceToTarget,2,The distance to the target +field_75835_d,index,2,The index of this point in its assigned path +field_75836_e,totalPathDistance,2,The distance along the path to this point +field_75837_b,yCoord,2,The y coordinate of this point +field_75838_c,zCoord,2,The z coordinate of this point +field_75839_a,xCoord,2,The x coordinate of this point +field_75840_j,hash,2,A hash of the coordinates used to identify this point +field_75841_h,previous,2,The point preceding this in its assigned path +field_75842_i,visited,2,True if the pathfinder has already visited this point +field_75851_b,count,2,The number of points in this path +field_75852_a,pathPoints,2,Contains the points in this path +field_75864_d,pathOptions,2,Selection of path points to add to the path +field_75866_b,path,2,The path being generated +field_75882_b,currentPathIndex,2,PathEntity Array Index the Entity is currently targeting +field_75883_c,pathLength,2,The total length of the path +field_75884_a,points,2,The actual points in the path +field_75906_d,baseSeed,2,base seed to the LCG prng provided via the constructor +field_75907_b,worldGenSeed,2,seed from World#getWorldSeed that is used in the LCG prng +field_75908_c,chunkSeed,2,"final part of the LCG prng that uses the chunk X, Z coords along with the other two seeds to generate pseudorandom numbers" +field_75909_a,parent,2,parent GenLayer that was provided via the constructor +field_75910_b,biomePatternGeneratorChain,2, +field_75911_c,riverPatternGeneratorChain,2, +field_75928_D,objectCraftStats,2,Tracks the number of items a given block or item has been crafted. +field_75929_E,objectUseStats,2,Tracks the number of times a given block or item has been used. +field_75930_F,objectBreakStats,2,Tracks the number of times a given block or item has been broken. +field_75932_A,playerKillsStat,2,counts the number of times you've killed a player +field_75933_B,fishCaughtStat,2, +field_75934_C,mineBlockStatArray,2, +field_75938_d,itemStats,2, +field_75939_e,objectMineStats,2,Tracks the number of times a given block or item has been mined. +field_75940_b,allStats,2, +field_75941_c,generalStats,2, +field_75942_a,oneShotStats,2,Tracks one-off stats. +field_75943_n,distanceFallenStat,2,the distance you have fallen +field_75944_o,distanceClimbedStat,2,the distance you've climbed +field_75945_l,distanceWalkedStat,2,distance you've walked +field_75946_m,distanceSwumStat,2,distance you have swam +field_75947_j,leaveGameStat,2,number of times you've left a game +field_75948_k,minutesPlayedStat,2,number of minutes you have played +field_75951_w,damageDealtStat,2,the amount of damage you've dealt +field_75952_v,dropStat,2,the distance you've dropped (or times you've fallen?) +field_75953_u,jumpStat,2,the times you've jumped +field_75954_t,distanceByPigStat,2,the distance you've traveled by pig +field_75955_s,distanceByBoatStat,2,the distance you've traveled by boat +field_75956_r,distanceByMinecartStat,2,the distance you've traveled by minecart +field_75957_q,distanceDoveStat,2,the distance you've dived +field_75958_p,distanceFlownStat,2,the distance you've flown +field_75959_z,mobKillsStat,2,the number of mobs you have killed +field_75960_y,deathsStat,2,the number of times you have died +field_75961_x,damageTakenStat,2,the amount of damage you have taken +field_75972_f,isIndependent,2, +field_75974_d,decimalFormat,2, +field_75975_e,statId,2,The Stat ID +field_75976_b,type,2, +field_75977_c,numberFormat,2, +field_75978_a,statName,2,The Stat name +field_75979_j,distanceStatType,2, +field_75980_h,simpleStatType,2, +field_75981_i,timeStatType,2, +field_75990_d,theItemStack,2,Holds the ItemStack that will be used to draw the achievement into the GUI. +field_75991_b,displayRow,2,"Is the row (related to center of achievement gui, in 24 pixels unit) that the achievement will be displayed." +field_75992_c,parentAchievement,2,"Holds the parent achievement, that must be taken before this achievement is avaiable." +field_75993_a,displayColumn,2,"Is the column (related to center of achievement gui, in 24 pixels unit) that the achievement will be displayed." +field_75994_l,statStringFormatter,0,"Holds a string formatter for the achievement, some of then needs extra dynamic info - like the key used to open the inventory." +field_75995_m,isSpecial,2,"Special achievements have a 'spiked' (on normal texture pack) frame, special achievements are the hardest ones to achieve." +field_75996_k,achievementDescription,2,"Holds the description of the achievement, ready to be formatted and/or displayed." +field_75998_D,enchantments,2,Is the 'Enchanter' achievement +field_75999_E,overkill,2, +field_76000_F,bookcase,2,Is the 'Librarian' achievement +field_76001_A,potion,2,Is the 'Local Brewery' achievement +field_76002_B,theEnd,2,Is the 'The End?' achievement +field_76003_C,theEnd2,2,Is the 'The End.' achievement +field_76004_f,openInventory,2,Is the 'open inventory' achievement. +field_76005_g,mineWood,2,Is the 'getting wood' achievement. +field_76006_d,maxDisplayRow,2,Is the biggest row used to display a achievement on the GUI. +field_76007_e,achievementList,2,The list holding all achievements +field_76008_b,minDisplayRow,2,Is the smallest row used to display a achievement on the GUI. +field_76009_c,maxDisplayColumn,2,Is the biggest column used to display a achievement on the GUI. +field_76010_a,minDisplayColumn,2,Is the smallest column used to display a achievement on the GUI. +field_76011_n,bakeCake,2,Is the 'the lie' achievement. +field_76012_o,buildBetterPickaxe,2,Is the 'getting a upgrade' achievement. +field_76013_l,buildHoe,2,Is the 'time to farm' achievement. +field_76014_m,makeBread,2,Is the 'bake bread' achievement. +field_76015_j,buildFurnace,2,Is the 'hot topic' achievement. +field_76016_k,acquireIron,2,Is the 'acquire hardware' achievement. +field_76017_h,buildWorkBench,2,Is the 'benchmarking' achievement. +field_76018_i,buildPickaxe,2,Is the 'time to mine' achievement. +field_76019_w,diamonds,2,Is the 'DIAMONDS!' achievement +field_76020_v,snipeSkeleton,2,The achievement for killing a Skeleton from 50 meters aways. +field_76021_u,flyPig,2,Is the 'when pig fly' achievement. +field_76022_t,killCow,2,is the 'cow tipper' achievement. +field_76023_s,killEnemy,2,Is the 'monster hunter' achievement. +field_76024_r,buildSword,2,Is the 'time to strike' achievement. +field_76025_q,onARail,2,Is the 'on a rail' achievement +field_76026_p,cookFish,2,Is the 'delicious fish' achievement. +field_76027_z,blazeRod,2,Is the 'Into Fire' achievement +field_76028_y,ghast,2,Is the 'Return to Sender' achievement +field_76029_x,portal,2,Is the 'We Need to Go Deeper' achievement +field_76032_d,slotHash,2,The id of the hash slot computed from the hash +field_76033_b,valueEntry,2,The object stored in this entry +field_76034_c,nextEntry,2,The next entry in this slot +field_76035_a,hashEntry,2,The hash code of this entry +field_76051_d,growFactor,2,The scale factor used to determine when to grow the table +field_76053_b,count,2,The number of items stored in this map +field_76054_c,threshold,2,The grow threshold +field_76055_a,slots,2,An array of HashEntries representing the heads of hash slot lists +field_76094_f,worldTime,2,"The current world time in ticks, ranging from 0 to 23999." +field_76095_g,lastTimePlayed,2,The last time the player was in this world. +field_76096_d,spawnY,2,The spawn zone position Y coordinate. +field_76097_e,spawnZ,2,The spawn zone position Z coordinate. +field_76098_b,terrainType,2, +field_76099_c,spawnX,2,The spawn zone position X coordinate. +field_76100_a,randomSeed,2,Holds the seed of the currently world. +field_76101_n,rainTime,2,Number of ticks until next rain. +field_76102_o,thundering,2,Is thunderbolts failing now? +field_76103_l,saveVersion,2,"Introduced in beta 1.3, is the save version for future control." +field_76104_m,raining,2,"True if it's raining, false otherwise." +field_76105_j,dimension,2, +field_76106_k,levelName,2,The name of the save defined at world creation. +field_76107_h,sizeOnDisk,2,"The size of entire save of current world on the disk, isn't exactly." +field_76108_i,playerTag,2, +field_76109_u,initialized,2, +field_76110_t,allowCommands,2, +field_76111_s,hardcore,2,Hardcore mode flag +field_76112_r,mapFeaturesEnabled,2,Whether the map features (e.g. strongholds) generation is enabled or disabled. +field_76113_q,theGameType,2,The Game Type. +field_76114_p,thunderTime,2,Number of ticks untils next thunderbolt. +field_76115_a,theWorldInfo,2,Instance of WorldInfo. +field_76117_a,internalMap,2, +field_76144_a,SIN_TABLE,2,"A table of sin values computed from 0 (inclusive) to 2*pi (exclusive), with steps of 2*PI / 65536." +field_76147_d,hash,2, +field_76148_b,value,2,the value held by the hash at the specified key +field_76149_c,nextEntry,2,the next hashentry in the table +field_76150_a,key,2,the key as a long (for playerInstances it is the x in the most significant 32 bits and then y) +field_76165_d,percentUseable,2,percent of the hasharray that can be used without hash colliding probably +field_76166_e,modCount,2,count of times elements have been added/removed +field_76167_b,numHashElements,2,the number of elements in the hash array +field_76168_c,capacity,2,the maximum amount of elements in the hash (probably 3/4 the size due to meh hashing function) +field_76169_a,hashArray,2,the array of all elements in the hash +field_76189_a,dirty,2,Whether this MapDataBase needs saving to disk. +field_76190_i,mapName,2,The name of the map data nbt +field_76196_g,playersArrayList,2,Holds a reference to the MapInfo of the players who own a copy of the map +field_76197_d,scale,2, +field_76198_e,colors,2,colours +field_76199_b,zCenter,2, +field_76200_c,dimension,2, +field_76201_a,xCenter,2, +field_76202_j,playersHashMap,2,Holds a reference to the players who own a copy of the map and a reference to their MapInfo +field_76203_h,mapDecorations,2, +field_76211_a,entityplayerObj,2,Reference for EntityPlayer object in MapInfo +field_76233_E,piston,2,Pistons' material. +field_76234_F,materialMapColor,2,The color index used to draw the blocks of this material on maps. +field_76235_G,canBurn,2,Bool defining if the block can burn or not. +field_76239_H,replaceable,2,"Determines whether blocks with this material can be ""overwritten"" by other blocks when placed - eg snow, vines and tall grass." +field_76240_I,isTranslucent,2,Indicates if the material is translucent +field_76241_J,requiresNoTool,2,Determines if the material can be harvested without a tool (or with the wrong tool) +field_76242_K,mobilityFlag,2,"Mobility information flag. 0 indicates that this block is normal, 1 indicates that it can't push other blocks, 2 indicates that it can't be pushed." +field_76281_a,mapColorArray,2,"Holds all the 16 colors used on maps, very similar of a pallete system." +field_76290_q,colorIndex,2,Holds the index of the color used on map. +field_76291_p,colorValue,2,Holds the color in RGB value that will be rendered on maps. +field_76292_a,itemWeight,2,The Weight is how often the item is chosen(higher number is higher chance(lower is lower)) +field_76295_d,minStackSize,2,The minimum stack size of generated item. +field_76296_e,maxStackSize,2,The maximum stack size of generated item. +field_76297_b,theItemId,2,The Item/Block ID to generate in the Chest. +field_76299_d,maxGroupCount,2, +field_76300_b,entityClass,2,Holds the class of the entity to be spawned. +field_76301_c,minGroupCount,2, +field_76302_b,enchantmentobj,2,Enchantment object associated with this EnchantmentData +field_76303_c,enchantmentLevel,2,Enchantment level associated with this EnchantmentData +field_76306_b,octaves,2, +field_76307_a,generatorCollection,2,Collection of noise generation functions. Output is combined to produce different octaves of noise. +field_76312_d,permutations,2,"An int[512], where the first 256 elements are the numbers 0..255, in random shuffled order,\nand the second half of the array is identical to the first half, apparently for convenience in wrapping lookups.\n \nEffectively a shuffled 0..255 that wraps once." +field_76313_b,yCoord,2, +field_76314_c,zCoord,2, +field_76315_a,xCoord,2, +field_76323_d,profilingSection,2,Current profiling section +field_76324_e,profilingMap,2,Profiling map +field_76325_b,sectionList,2,List of parent sections +field_76326_c,timestampList,2,List of timestamps (System.nanoTime) +field_76327_a,profilingEnabled,2,Flag profiling enabled +field_76339_a,patternControlCode,2, +field_76366_f,starve,2, +field_76367_g,cactus,2, +field_76368_d,inWall,2, +field_76369_e,drown,2, +field_76370_b,onFire,2, +field_76371_c,lava,2, +field_76372_a,inFire,2, +field_76373_n,damageType,2, +field_76374_o,isUnblockable,2,This kind of damage can be blocked or not. +field_76376_m,magic,2, +field_76377_j,generic,2, +field_76378_k,explosion,2, +field_76379_h,fall,2, +field_76380_i,outOfWorld,2, +field_76381_t,difficultyScaled,2,Whether this damage source will have its damage amount scaled based on the current difficulty. +field_76382_s,projectile,2,This kind of damage is based on a projectile or not. +field_76383_r,fireDamage,2,This kind of damage is based on fire or not. +field_76384_q,hungerDamage,2, +field_76385_p,isDamageAllowedInCreativeMode,2, +field_76386_o,damageSourceEntity,2, +field_76387_p,indirectEntity,2, +field_76412_L,effectiveness,2, +field_76413_M,usable,2, +field_76414_N,liquidColor,2,Is the color of the liquid for this potion. +field_76415_H,id,2,The Id of a Potion object. +field_76416_I,name,2,The name of the Potion. +field_76417_J,statusIconIndex,2,The index for the icon displayed when the potion effect is active. +field_76418_K,isBadEffect,2,This field indicated if the effect is 'bad' - negative - for the entity. +field_76419_f,digSlowdown,2, +field_76420_g,damageBoost,2, +field_76421_d,moveSlowdown,2, +field_76422_e,digSpeed,2, +field_76424_c,moveSpeed,2, +field_76425_a,potionTypes,2,The array of potion types. +field_76426_n,fireResistance,2,The fire resistance Potion object. +field_76427_o,waterBreathing,2,The water breathing Potion object. +field_76428_l,regeneration,2,The regeneration Potion object. +field_76429_m,resistance,2, +field_76430_j,jump,2, +field_76431_k,confusion,2, +field_76432_h,heal,2, +field_76433_i,harm,2, +field_76436_u,poison,2,The poison Potion object. +field_76437_t,weakness,2,The weakness Potion object. +field_76438_s,hunger,2,The hunger Potion object. +field_76439_r,nightVision,2,The night vision Potion object. +field_76440_q,blindness,2,The blindness Potion object. +field_76441_p,invisibility,2,The invisibility Potion object. +field_76443_y,saturation,2,The saturation Potion object. +field_76444_x,absorption,2,The absorption Potion object. +field_76447_d,freeLargeArrays,2,A list of pre-allocated int[cacheSize] arrays that are currently unused and can be returned by getIntCache() +field_76448_e,inUseLargeArrays,2,A list of pre-allocated int[cacheSize] arrays that were previously returned by getIntCache() and which will not be re-used again until resetIntCache() is called. +field_76449_b,freeSmallArrays,2,A list of pre-allocated int[256] arrays that are currently unused and can be returned by getIntCache() +field_76450_c,inUseSmallArrays,2,A list of pre-allocated int[256] arrays that were previously returned by getIntCache() and which will not be re-used again until resetIntCache() is called. +field_76451_a,intCacheSize,2, +field_76460_b,duration,2,The duration of the potion effect +field_76461_c,amplifier,2,The amplifier of the potion effect +field_76462_a,potionID,2,ID value of the potion this effect matches. +field_76476_f,syncLock,2, +field_76477_g,isRunning,2, +field_76478_d,playerStatsCollector,2, +field_76479_e,threadTrigger,2,set to fire the snooperThread every 15 mins +field_76480_b,uniqueID,2, +field_76481_c,serverUrl,2,URL of the server to send the report to +field_76483_h,selfCounter,2,incremented on every getSelfCounterFor +field_76488_a,doBlockNotify,2,"Sets wither or not the generator should notify blocks of blocks it changes. When the world is first generated, this is false, when saplings grow, this is true." +field_76501_f,height,2, +field_76502_g,heightAttenuation,2, +field_76504_e,heightLimit,2, +field_76508_n,leafDistanceLimit,2,Sets the distance limit for how far away the generator will populate leaves from the base leaf node. +field_76513_k,leafDensity,2, +field_76517_b,numberOfBlocks,2,The number of blocks to generate. +field_76520_b,woodMetadata,2,Sets the metadata for the wood blocks used +field_76521_c,leavesMetadata,2,Sets the metadata for the leaves used in huge trees +field_76522_a,baseHeight,2,The base height of the tree +field_76523_a,mushroomType,2,"The mushroom type. 0 for brown, 1 for red." +field_76530_d,metaLeaves,2,The metadata value of the leaves to use in tree generation. +field_76531_b,vinesGrow,2,True if this tree should grow Vines. +field_76532_c,metaWood,2,The metadata value of the wood to use in tree generation. +field_76533_a,minTreeHeight,2,The minimum height of a generated tree. +field_76539_b,radius,2,The maximum radius used when generating a patch of blocks. +field_76541_b,numberOfBlocks,2,The number of blocks to generate. +field_76545_b,itemsToGenerateInBonusChest,2,Value of this int will determine how much items gonna generate in Bonus Chest. +field_76553_a,regionsByFilename,2,A map containing Files as keys and RegionFiles as values +field_76573_f,lightBrightnessTable,2,Light to brightness conversion table +field_76574_g,dimensionId,2,"The id for the dimension (ex. -1: Nether, 0: Overworld, 1: The End)" +field_76575_d,isHellWorld,2,States whether the Hell world provider is used(true) or if the normal world provider is used(false) +field_76576_e,hasNoSky,2,A boolean that tells if a world does not have a sky. Used in calculating weather and skylight +field_76577_b,terrainType,2, +field_76578_c,worldChunkMgr,2,World chunk manager being used to generate chunks +field_76579_a,worldObj,2,world object being used +field_76580_h,colorsSunriseSunset,2,Array for sunrise/sunset colors (RGBA) +field_76585_a,data,2,Byte array of data stored in this holder. Possibly a light map or some chunk data. Data is accessed in 4-bit pieces. +field_76634_f,heightMap,2, +field_76635_g,xPosition,2,The x coordinate of the chunk. +field_76636_d,isChunkLoaded,2,Whether or not this Chunk is currently loaded into the World +field_76637_e,worldObj,2,Reference to the World object. +field_76638_b,precipitationHeightMap,2,"A map, similar to heightMap, that tracks how far down precipitation can fall." +field_76639_c,updateSkylightColumns,2,Which columns need their skylightMaps updated. +field_76641_n,lastSaveTime,2,The time according to World.worldTime when this chunk was last saved +field_76643_l,isModified,2,Set to true if the chunk has been modified and needs to be updated internally. +field_76644_m,hasEntities,2,Whether this Chunk has any Entities and thus requires saving on every tick +field_76645_j,entityLists,2,Array of Lists containing the entities in this Chunk. Each List represents a 16 block subchunk. +field_76646_k,isTerrainPopulated,2,Boolean value indicating if the terrain is populated. +field_76647_h,zPosition,2,The z coordinate of the chunk. +field_76649_t,queuedLightChecks,2,"Contains the current round-robin relight check index, and is implied as the relight check location as well." +field_76650_s,isGapLightingUpdated,2, +field_76651_r,blockBiomeArray,2,Contains a 16x16 mapping on the X/Z plane of the biome ID to which each colum belongs. +field_76652_q,storageArrays,2,"Used to store block IDs, block MSBs, Sky-light maps, Block-light maps, and metadata. Each entry corresponds to a logical segment of 16x16x16 blocks, stacked vertically." +field_76679_g,blocklightArray,2,The NibbleArray containing a block of Block-light data. +field_76682_b,blockRefCount,2,A total count of the number of non-air blocks in this block storage's Chunk. +field_76683_c,tickRefCount,2,Contains the number of blocks in this block storage's parent chunk that require random ticking. Used to cull the Chunk from random tick updates for performance reasons. +field_76684_a,yBase,2,Contains the bottom-most Y block represented by this ExtendedBlockStorage. Typically a multiple of 16. +field_76685_h,skylightArray,2,The NibbleArray containing a block of Sky-light data. +field_76687_b,depthBits,2, +field_76688_c,depthBitsPlusFour,2, +field_76689_a,data,2, +field_76692_f,data,2, +field_76693_g,blocks,2, +field_76694_d,blockLight,2, +field_76695_e,skyLight,2, +field_76696_b,terrainPopulated,2, +field_76697_c,heightmap,2, +field_76698_a,lastUpdated,2, +field_76699_l,z,2, +field_76701_k,x,2, +field_76702_h,entities,2, +field_76714_f,sectorFree,2, +field_76715_g,sizeDelta,2,McRegion sizeDelta +field_76716_d,offsets,2, +field_76717_e,chunkTimestamps,2, +field_76718_b,fileName,2, +field_76719_c,dataFile,2, +field_76720_a,emptySector,2, +field_76721_h,lastModified,2, +field_76722_b,chunkX,2, +field_76723_c,chunkZ,2, +field_76748_D,minHeight,2,The minimum height of this biome. Default 0.1. +field_76749_E,maxHeight,2,The maximum height of this biome. Default 0.3. +field_76750_F,temperature,2,The temperature of this biome. +field_76751_G,rainfall,2,The rainfall in this biome. +field_76752_A,topBlock,2,The block expected to be on the top of this biome +field_76753_B,fillerBlock,2,The block to fill spots in when not on the top +field_76754_C,fillerBlockMetadata,2, +field_76755_L,spawnableWaterCreatureList,2,Holds the classes of any aquatic creature that can be spawned in the water of the biome. +field_76756_M,biomeID,2,"The id number to this biome, and its index in the biomeList array." +field_76757_N,worldGeneratorTrees,2,The tree generator. +field_76758_O,worldGeneratorBigTree,2,The big tree generator. +field_76759_H,waterColorMultiplier,2,Color tint applied to water depending on biome +field_76760_I,theBiomeDecorator,2,The biome decorator. +field_76761_J,spawnableMonsterList,2,Holds the classes of IMobs (hostile mobs) that can be spawned in the biome. +field_76762_K,spawnableCreatureList,2,Holds the classes of any creature that can be spawned in the biome as friendly creature. +field_76763_Q,worldGeneratorSwamp,2,The swamp tree generator. +field_76765_S,enableRain,2,Is true (default) if the biome support rain (desert and nether can't have rain) +field_76766_R,enableSnow,2,Set to true if snow is enabled for this biome. +field_76767_f,forest,2, +field_76768_g,taiga,2, +field_76769_d,desert,2, +field_76770_e,extremeHills,2, +field_76771_b,ocean,2, +field_76772_c,plains,2, +field_76773_a,biomeList,2,"An array of all the biomes, indexed by biome id." +field_76774_n,icePlains,2, +field_76775_o,iceMountains,2, +field_76776_l,frozenOcean,2, +field_76777_m,frozenRiver,2, +field_76778_j,hell,2, +field_76779_k,sky,2,Is the biome used for sky world. +field_76780_h,swampland,2, +field_76781_i,river,2, +field_76782_w,jungle,2,Jungle biome identifier +field_76783_v,extremeHillsEdge,2,Extreme Hills Edge biome. +field_76784_u,taigaHills,2,Taiga Hills biome. +field_76785_t,forestHills,2,Forest Hills biome. +field_76786_s,desertHills,2,Desert Hills biome. +field_76787_r,beach,2,Beach biome. +field_76788_q,mushroomIslandShore,2, +field_76789_p,mushroomIsland,2, +field_76790_z,color,2, +field_76791_y,biomeName,2, +field_76792_x,jungleHills,2, +field_76798_D,mushroomsPerChunk,2,"The number of extra mushroom patches per chunk. It generates 1/4 this number in brown mushroom patches, and 1/8 this number in red mushroom patches. These mushrooms go beyond the default base number of mushrooms." +field_76799_E,reedsPerChunk,2,The number of reeds to generate per chunk. Reeds won't generate if the randomly selected placement is unsuitable. +field_76800_F,cactiPerChunk,2,The number of cactus plants to generate per chunk. Cacti only work on sand. +field_76801_G,sandPerChunk,2,The number of sand patches to generate per chunk. Sand patches only generate when part of it is underwater. +field_76802_A,flowersPerChunk,2,"The number of yellow flower patches to generate per chunk. The game generates much less than this number, since it attempts to generate them at a random altitude." +field_76803_B,grassPerChunk,2,The amount of tall grass to generate per chunk. +field_76804_C,deadBushPerChunk,2,The number of dead bushes to generate per chunk. Used in deserts and swamps. +field_76805_H,sandPerChunk2,2,The number of sand patches to generate per chunk. Sand patches only generate when part of it is underwater. There appear to be two separate fields for this. +field_76806_I,clayPerChunk,2,The number of clay patches to generate per chunk. Only generates when part of it is underwater. +field_76807_J,bigMushroomsPerChunk,2,Amount of big mushrooms per chunk +field_76808_K,generateLakes,2,True if decorator should generate surface lava & water +field_76809_f,clayGen,2,The clay generator. +field_76810_g,sandGen,2,The sand generator. +field_76813_b,randomGenerator,2,The Biome Decorator's random number generator. +field_76815_a,currentWorld,2,The world the BiomeDecorator is currently decorating +field_76818_l,ironGen,2, +field_76819_m,goldGen,2,Field that holds gold WorldGenMinable +field_76820_j,gravelGen,2, +field_76821_k,coalGen,2, +field_76822_h,gravelAsSandGen,2,The gravel generator. +field_76823_i,dirtGen,2,The dirt generator. +field_76824_w,cactusGen,2,Field that holds WorldGenCactus +field_76825_v,reedGen,2,Field that holds WorldGenReed +field_76826_u,bigMushroomGen,2,Field that holds big mushroom generator +field_76827_t,mushroomRedGen,2,Field that holds mushroomRed WorldGenFlowers +field_76828_s,mushroomBrownGen,2,Field that holds mushroomBrown WorldGenFlowers +field_76831_p,lapisGen,2,Field that holds Lapis WorldGenMinable +field_76832_z,treesPerChunk,2,"The number of trees to attempt to generate per chunk. Up to 10 in forests, none in deserts." +field_76833_y,waterlilyPerChunk,2,Amount of waterlilys per chunk. +field_76834_x,waterlilyGen,2,The water lily generation! +field_76835_L,spikeGen,2, +field_76841_d,cache,2,The list of cached BiomeCacheBlocks +field_76842_b,lastCleanupTime,2,"The last time this BiomeCache was cleaned, in milliseconds." +field_76843_c,cacheMap,2,"The map of keys to BiomeCacheBlocks. Keys are based on the chunk x, z coordinates as (x | z << 32)." +field_76844_a,chunkManager,2,Reference to the WorldChunkManager +field_76886_f,lastAccessTime,2,"The last time this BiomeCacheBlock was accessed, in milliseconds." +field_76888_d,xPosition,2,The x coordinate of the BiomeCacheBlock. +field_76889_e,zPosition,2,The z coordinate of the BiomeCacheBlock. +field_76890_b,rainfallValues,2,An array of chunk rainfall values saved by this cache. +field_76891_c,biomes,2,The array of biome types stored in this BiomeCacheBlock. +field_76942_f,biomeCache,2,The biome list. +field_76943_g,biomesToSpawnIn,2,A list of biomes that the player can spawn in. +field_76944_d,genBiomes,2, +field_76945_e,biomeIndexLayer,2,A GenLayer containing the indices into BiomeGenBase.biomeList[] +field_76946_f,rainfall,2,The rainfall in the world +field_76947_d,biomeGenerator,2,The biome generator object. +field_76987_f,shadowOpaque,0,Determines the darkness of the object's shadow. Higher value makes a darker shadow. +field_76989_e,shadowSize,0, +field_76990_c,renderManager,0, +field_76995_b,modelEnderCrystal,0, +field_76998_a,modelBoat,0,instance of ModelBoat for rendering +field_77002_a,scale,0, +field_77013_a,modelMinecart,0,instance of ModelMinecart for rendering +field_77023_b,zLevel,0,Defines the zLevel of rendering of item on GUI. +field_77045_g,mainModel,0, +field_77071_a,modelBipedMain,0, +field_77073_a,scale,0,Scale of the model to use +field_77077_b,rnd,0, +field_77078_a,endermanModel,0,The model of the enderman +field_77084_b,modelDragon,0,An instance of the dragon model in RenderDragon +field_77133_f,worldType,2, +field_77134_g,generatorVersion,2,The int version of the ChunkProvider that generated this world. +field_77135_d,LARGE_BIOMES,2,Large Biome world Type. +field_77136_e,DEFAULT_1_1,2,Default (1.1) world type. +field_77137_b,DEFAULT,2,Default world type. +field_77138_c,FLAT,2,Flat world type. +field_77139_a,worldTypes,2,List of world types. +field_77140_h,canBeCreated,2,Whether this world type can be generated. Normally true; set to false for out-of-date generator versions. +field_77141_i,isWorldTypeVersioned,2,Whether this WorldType has a version or not. +field_77151_f,name,2, +field_77154_e,id,2, +field_77168_f,commandsAllowed,2,True if Commands (cheats) are allowed. +field_77169_g,bonusChestEnabled,2,True if the Bonus Chest is enabled. +field_77170_d,hardcoreEnabled,2,True if hardcore mode is enabled +field_77171_e,terrainType,2, +field_77172_b,theGameType,2,The EnumGameType. +field_77173_c,mapFeaturesEnabled,2,"Switch for the map features. 'true' for enabled, 'false' for disabled." +field_77174_a,seed,2,The seed for the map. +field_77177_f,nextTickEntryID,2,The id number for the next tick entry +field_77178_g,tickEntryID,2,The id of the tick entry +field_77180_e,scheduledTime,2,Time this tick is scheduled to occur at +field_77187_a,random,2,A private Random() function in Teleporter +field_77193_b,eligibleChunksForSpawning,2,The 17x17 area around the player where mobs can spawn +field_77198_c,defaultLightValue,2, +field_77275_b,chunkZPos,2,The Z position of this Chunk Coordinate Pair +field_77276_a,chunkXPos,2,The X position of this Chunk Coordinate Pair +field_77280_f,explosionSize,2, +field_77281_g,affectedBlockPositions,2,A list of ChunkPositions of blocks affected by this explosion +field_77282_d,explosionZ,2, +field_77283_e,exploder,2, +field_77284_b,explosionX,2, +field_77285_c,explosionY,2, +field_77286_a,isFlaming,2,whether or not the explosion sets fire to blocks around it +field_77287_j,worldObj,2, +field_77288_k,playerKnockbackMap,2,"Maps players to the knockback vector applied by the explosion, to send to the client" +field_77290_i,explosionRNG,2, +field_77327_f,blastProtection,2,Protection against explosions +field_77329_d,fireProtection,2,Protection against fire +field_77331_b,enchantmentsBookList,2, +field_77333_a,weight,2, +field_77334_n,fireAspect,2,Lights mobs on fire +field_77335_o,looting,2,Mobs have a chance to drop more loot +field_77341_i,aquaAffinity,2,Increases underwater mining rate +field_77342_w,infinity,2,"Infinity enchantment for bows. The bow will not consume arrows anymore, but will still required at least one arrow on inventory use the bow." +field_77343_v,flame,2,Flame enchantment for bows. Arrows fired by the bow will be on fire. Any target hit will also set on fire. +field_77344_u,punch,2,"Knockback enchantments for bows, the arrows will knockback the target when hit." +field_77345_t,power,2,"Power enchantment for bows, add's extra damage to arrows." +field_77346_s,fortune,2,Can multiply the drop rate of items from blocks +field_77347_r,unbreaking,2,"Sometimes, the tool's durability will not be spent when the tool is used" +field_77348_q,silkTouch,2,"Blocks mined will drop themselves, even if it should drop something else (e.g. stone will drop stone, not cobblestone)" +field_77349_p,efficiency,2,Faster resource gathering while in use +field_77350_z,name,2,Used in localisation and stats. +field_77351_y,type,2,The EnumEnchantmentType given to this Enchantment. +field_77352_x,effectId,2, +field_77353_D,thresholdEnchantability,2,"Used on the formula of base enchantability, this is the 'window' factor of values to be able to use thing enchant." +field_77354_A,protectionName,2,Holds the name to be translated of each protection type. +field_77355_B,baseEnchantability,2,Holds the base factor of enchantability needed to be able to use the enchant. +field_77356_a,protectionType,2,"Defines the type of protection of the enchantment, 0 = all, 1 = fire, 2 = fall (feather fall), 3 = explosion and 4 = projectile." +field_77357_C,levelEnchantability,2,Holds how much each level increased the enchantability factor to be able to use this enchant. +field_77358_D,thresholdEnchantability,2,"Used on the formula of base enchantability, this is the 'window' factor of values to be able to use thing enchant." +field_77359_A,protectionName,2,Holds the name to be translated of each protection type. +field_77360_B,baseEnchantability,2,Holds the base factor of enchantability needed to be able to use the enchant. +field_77361_a,damageType,2,"Defines the type of damage of the enchantment, 0 = all, 1 = undead, 3 = arthropods" +field_77362_C,levelEnchantability,2,Holds how much each level increased the enchantability factor to be able to use this enchant. +field_77400_d,toolUses,2,Saves how much has been tool used when put into to slot to be enchanted. +field_77401_b,secondItemToBuy,2,Second Item the Villager buys. +field_77402_c,itemToSell,2,Item the Villager sells. +field_77403_a,itemToBuy,2,Item the Villager buys. +field_77471_a,foliageBuffer,0,Color buffer for foliage +field_77476_b,lightmapTexUnit,0,"An OpenGL constant corresponding to GL_TEXTURE1, used when setting data pertaining to auxiliary OpenGL texture units." +field_77478_a,defaultTexUnit,0,"An OpenGL constant corresponding to GL_TEXTURE0, used when setting data pertaining to auxiliary OpenGL texture units." +field_77481_a,grassBuffer,0,Color buffer for grass +field_77490_b,lanServerIpPort,0, +field_77491_c,timeLastSeen,0,Last time this LanServer was seen. +field_77492_a,lanServerMotd,0, +field_77494_b,entityLiving,2, +field_77495_a,livingModifier,2,Used to calculate the (magic) extra damage based on enchantments of current equipped player item. +field_77496_b,source,2,Used as parameter to calculate the damage modifier (extra armor) on enchantments that the player have on equipped armors. +field_77497_a,damageModifier,2,Used to calculate the damage modifier (extra armor) on enchantments that the player have on equipped armors. +field_77498_b,broadcastAddress,0,InetAddress for 224.0.2.60 +field_77499_c,socket,0,The socket we're using to receive packets on. +field_77500_a,localServerList,0,The LanServerList +field_77520_b,enchantmentModifierDamage,2,Used to calculate the extra armor of enchantments on armors equipped on player. +field_77521_c,enchantmentModifierLiving,2,Used to calculate the (magic) extra damage done by enchantments on current equipped item of player. +field_77522_a,enchantmentRand,2,Is the random seed of enchantment effects. +field_77526_d,isStopping,0, +field_77527_e,address,0, +field_77528_b,motd,0, +field_77529_c,socket,0,The socket we're using to send packets on. +field_77555_b,listOfLanServers,0, +field_77556_a,wasUpdated,0, +field_77574_d,recipeItems,2,Is a array of ItemStack that composes the recipe. +field_77575_e,recipeOutput,2,Is the ItemStack that you get when craft the recipe. +field_77576_b,recipeWidth,2,How many horizontal slots this recipe is wide. +field_77577_c,recipeHeight,2,How many vertical slots this recipe uses. +field_77579_b,recipeItems,2,Is a List of ItemStack that composes the recipe. +field_77580_a,recipeOutput,2,Is the ItemStack that you get when craft the recipe. +field_77584_b,recipeItems,2, +field_77585_a,recipePatterns,2, +field_77587_b,recipeItems,2, +field_77588_a,recipePatterns,2, +field_77591_a,recipeItems,2, +field_77597_b,recipes,2,A list of all the recipes added +field_77598_a,instance,2,The static instance of this class +field_77604_b,smeltingList,2,The list of smelting results. +field_77605_c,experienceList,2,A list which contains how many experience points each recipe output will give. +field_77606_a,smeltingBase,2, +field_77610_b,recipeItems,2, +field_77611_a,recipePatterns,2, +field_77697_d,itemRand,2,The RNG used by the Item subclasses. +field_77699_b,maxDamage,2,Maximum damage an item can handle. +field_77700_c,containerItem,2, +field_77701_a,tabToDisplayOn,2, +field_77774_bZ,unlocalizedName,2,The unlocalized name of this item. +field_77777_bU,maxStackSize,2,Maximum size of the stack. +field_77785_bY,potionEffect,2,The string representing this item's effect on a potion when used as an ingredient. +field_77787_bX,hasSubtypes,2,"Some items (like dyes) have multiple subtypes on same item, this is field define this behavior" +field_77789_bW,bFull3D,2,"If true, render the object in full 3D, like weapons and tools." +field_77835_b,SUB_ITEMS_CACHE,2, +field_77836_a,effectCache,2,Contains a map from integers to the list of potion effects that potions with that damage value confer (to prevent recalculating it). +field_77838_b,soilBlockID,2,BlockID of the block the seeds can be planted on. +field_77841_a,minecartType,2, +field_77843_a,theToolMaterial,2, +field_77850_cb,potionDuration,2,set by setPotionEffect +field_77851_ca,potionId,2,represents the potion effect that will occurr upon eating this food. Set by setPotionEffect +field_77852_bZ,alwaysEdible,2,"If this field is true, the food can be consumed even if the player don't need to eat." +field_77853_b,healAmount,2,The amount this food item heals the player. +field_77854_c,saturationModifier,2, +field_77855_a,itemUseDuration,2,Number of ticks to run while 'EnumAction'ing until result. +field_77856_bY,isWolfsFavoriteMeat,2,Whether wolves like this food (true for raw and cooked porkchop). +field_77857_cc,potionAmplifier,2,set by setPotionEffect +field_77858_cd,potionEffectProbability,2,probably of the set potion effect occurring +field_77862_b,toolMaterial,2,The material this tool is made from. +field_77864_a,efficiencyOnProperMaterial,2, +field_77865_bY,damageVsEntity,2,Damage versus entities. +field_77876_a,isFull,2,field for checking if the bucket has been filled. +field_77878_bZ,material,2,The EnumArmorMaterial used for this ItemArmor +field_77879_b,damageReduceAmount,2,Holds the amount of damage that the armor reduces at full durability. +field_77880_c,renderIndex,2,"Used on RenderPlayer to select the correspondent armor to be rendered on the player: 0 is cloth, 1 is chain, 2 is iron, 3 is diamond and 4 is gold." +field_77881_a,armorType,2,"Stores the armor type: 0 is helmet, 1 is plate, 2 is legs and 3 is boots" +field_77882_bY,maxDamageArray,2,Holds the 'base' maxDamage that each armorType have. +field_77918_f,speckledMelonEffect,2, +field_77919_g,blazePowderEffect,2, +field_77920_d,spiderEyeEffect,2, +field_77921_e,fermentedSpiderEyeEffect,2, +field_77922_b,sugarEffect,2, +field_77923_c,ghastTearEffect,2, +field_77924_a,unusedString,2, +field_77925_n,DATAVALUE_COLORS,2, +field_77926_o,potionPrefixes,2,"An array of possible potion prefix names, as translation IDs." +field_77929_j,glowstoneEffect,2, +field_77930_k,gunpowderEffect,2, +field_77931_h,magmaCreamEffect,2, +field_77932_i,redstoneEffect,2, +field_77934_f,rarityName,2,Rarity name. +field_77937_e,rarityColor,2,A decimal representation of the hex color codes of a the color assigned to this rarity type. (13 becomes d as in \247d which is light purple) +field_77990_d,stackTagCompound,2,A NBTTagMap containing data about an ItemStack. Can only be used for non stackable items +field_77991_e,itemDamage,2, +field_77992_b,animationsToGo,2,"Number of animation frames to go when receiving an item (by walking into it, for example)." +field_77994_a,stackSize,2,Size of the stack. +field_78001_f,harvestLevel,2,"The level of material this tool can harvest (3 = DIAMOND, 2 = IRON, 1 = STONE, 0 = WOOD/GOLD)" +field_78002_g,maxUses,2,"The number of uses this material allows. (wood = 59, stone = 131, iron = 250, diamond = 1561, gold = 32)" +field_78008_j,enchantability,2,Defines the natural enchantability factor of the material. +field_78010_h,efficiencyOnProperMaterial,2,The strength of this tool material against blocks which it is effective against. +field_78011_i,damageVsEntity,2,Damage versus entities. +field_78026_f,tabMisc,2, +field_78027_g,tabAllSearch,2, +field_78028_d,tabRedstone,2, +field_78029_e,tabTransport,2, +field_78030_b,tabBlock,2, +field_78031_c,tabDecorations,2, +field_78032_a,creativeTabArray,2, +field_78033_n,tabIndex,2, +field_78034_o,tabLabel,2, +field_78035_l,tabMaterials,2, +field_78036_m,tabInventory,2, +field_78037_j,tabCombat,2, +field_78038_k,tabBrewing,2, +field_78039_h,tabFood,2, +field_78040_i,tabTools,2, +field_78041_r,drawTitle,2,Whether to draw the title in the foreground of the creative GUI +field_78042_q,hasScrollbar,2, +field_78043_p,theTexture,2,Texture to use. +field_78048_f,maxDamageFactor,2,"Holds the maximum damage factor (each piece multiply this by it's own value) of the material, this is the item damage (how much can absorb before breaks)" +field_78049_g,damageReductionAmountArray,2,"Holds the damage reduction (each 1 points is half a shield on gui) of each piece of armor (helmet, plate, legs and boots)" +field_78055_h,enchantability,2,Return the enchantability factor of the material +field_78089_u,textureHeight,0, +field_78090_t,textureWidth,0, +field_78091_s,isChild,0, +field_78092_r,boxList,0,This is a list of all the boxes (ModelRenderer.class) in the current model. +field_78093_q,isRiding,0, +field_78094_a,modelTextureMap,0,A mapping for all texture offsets +field_78095_p,swingProgress,0, +field_78096_f,flippingPageLeft,0,Right cover renderer (when facing the book) +field_78097_g,bookSpine,0,The renderer of spine of the book +field_78098_d,pagesLeft,0,The left pages renderer (when facing the book) +field_78099_e,flippingPageRight,0,Right cover renderer (when facing the book) +field_78100_b,coverLeft,0,Left cover renderer (when facing the book) +field_78101_c,pagesRight,0,The right pages renderer (when facing the book) +field_78102_a,coverRight,0,Right cover renderer (when facing the book) +field_78103_a,boatSides,0, +field_78105_b,blazeHead,0, +field_78106_a,blazeSticks,0,The sticks that fly around the Blaze. +field_78108_b,core,0, +field_78109_a,segments,0, +field_78115_e,bipedBody,0, +field_78116_c,bipedHead,0, +field_78117_n,isSneak,0, +field_78118_o,aimedBow,0,Records whether the model should be rendered aiming a bow. +field_78119_l,heldItemLeft,0,"Records whether the model should be rendered holding an item in the left hand, and if that item is a block." +field_78120_m,heldItemRight,0,"Records whether the model should be rendered holding an item in the right hand, and if that item is a block." +field_78125_b,isAttacking,0,Is the enderman attacking an entity? +field_78126_a,isCarrying,0,Is the enderman carrying a block? +field_78127_b,tentacles,0, +field_78128_a,body,0, +field_78129_f,leg3,0, +field_78130_g,leg4,0, +field_78131_d,leg1,0, +field_78132_e,leg2,0, +field_78133_b,creeperArmor,0, +field_78134_c,body,0, +field_78135_a,head,0, +field_78136_f,leftWing,0, +field_78137_g,bill,0, +field_78138_d,leftLeg,0, +field_78139_e,rightWing,0, +field_78140_b,body,0, +field_78141_c,rightLeg,0, +field_78142_a,head,0, +field_78143_h,chin,0, +field_78144_f,leg4,0, +field_78145_g,childYOffset,0, +field_78146_d,leg2,0, +field_78147_e,leg3,0, +field_78148_b,body,0, +field_78149_c,leg1,0, +field_78150_a,head,0, +field_78151_h,childZOffset,0, +field_78152_i,headRotationAngleX,0, +field_78153_i,headRotationAngleX,0, +field_78154_a,sideModels,0, +field_78155_f,ocelotTail2,0,The second part of tail model for the Ocelot. +field_78156_g,ocelotHead,0,The head model for the Ocelot. +field_78157_d,ocelotFrontRightLeg,0,The front right leg model for the Ocelot. +field_78158_e,ocelotTail,0,The tail model for the Ocelot. +field_78159_b,ocelotBackRightLeg,0,The back right leg model for the Ocelot. +field_78160_c,ocelotFrontLeftLeg,0,The front left leg model for the Ocelot. +field_78161_a,ocelotBackLeftLeg,0,The back left leg model for the Ocelot. +field_78162_h,ocelotBody,0,The body model for the Ocelot. +field_78165_b,signStick,0,The stick a sign stands on. +field_78166_a,signBoard,0,The board on a sign that has the writing on it. +field_78167_d,silverfishBoxLength,0,"The widths, heights, and lengths for the silverfish model boxes." +field_78168_e,silverfishTexturePositions,0,The texture positions for the silverfish's model's boxes. +field_78169_b,silverfishWings,0,The wings (dust-looking sprites) on the silverfish's model. +field_78171_a,silverfishBodyParts,0,The body parts of the silverfish's model. +field_78173_f,ironGolemRightLeg,0,The right leg model for the Iron Golem. +field_78174_d,ironGolemLeftArm,0,The left arm model for the iron golem. +field_78175_e,ironGolemLeftLeg,0,The left leg model for the Iron Golem. +field_78176_b,ironGolemBody,0,The body model for the iron golem. +field_78177_c,ironGolemRightArm,0,The right arm model for the iron golem. +field_78178_a,ironGolemHead,0,The head model for the iron golem. +field_78179_f,wolfLeg4,0,Wolf's fourth leg +field_78180_g,wolfTail,0,The wolf's tail +field_78181_d,wolfLeg2,0,Wolf's second leg +field_78182_e,wolfLeg3,0,Wolf's third leg +field_78183_b,wolfBody,0,The wolf's body +field_78184_c,wolfLeg1,0,Wolf'se first leg +field_78185_a,wolfHeadMain,0,main box for the wolf head +field_78186_h,wolfMane,0,The wolf's mane +field_78187_d,rightVillagerLeg,0,The right leg of the VillagerModel +field_78188_e,leftVillagerLeg,0,The left leg of the VillagerModel +field_78189_b,villagerBody,0,The body of the VillagerModel +field_78190_c,villagerArms,0,The arms of the VillagerModel +field_78191_a,villagerHead,0,The head box of the VillagerModel +field_78192_d,rightHand,0, +field_78193_e,leftHand,0, +field_78194_b,bottomBody,0, +field_78195_c,head,0, +field_78196_a,body,0, +field_78197_d,slimeMouth,0,The slime's mouth +field_78198_b,slimeRightEye,0,The slime's right eye +field_78199_c,slimeLeftEye,0,The slime's left eye +field_78200_a,slimeBodies,0,"The slime's bodies, both the inside box and the outside box" +field_78201_b,squidTentacles,0,The squid's tentacles +field_78202_a,squidBody,0,The squid's body +field_78203_f,spiderLeg3,0,Spider's third leg +field_78204_g,spiderLeg4,0,Spider's fourth leg +field_78205_d,spiderLeg1,0,Spider's first leg +field_78206_e,spiderLeg2,0,Spider's second leg +field_78207_b,spiderNeck,0,The spider's neck box +field_78208_c,spiderBody,0,The spider's body box +field_78209_a,spiderHead,0,The spider's head box +field_78210_j,spiderLeg7,0,Spider's seventh leg +field_78211_k,spiderLeg8,0,Spider's eight leg +field_78212_h,spiderLeg5,0,Spider's fifth leg +field_78213_i,spiderLeg6,0,Spider's sixth leg +field_78215_f,frontLeg,0,The front leg Model renderer of the dragon +field_78216_g,rearLegTip,0,The rear leg tip Model renderer of the dragon +field_78217_d,body,0,The body Model renderer of the dragon +field_78218_e,rearLeg,0,The rear leg Model renderer of the dragon +field_78219_b,spine,0,The spine Model renderer of the dragon +field_78220_c,jaw,0,The jaw Model renderer of the dragon +field_78221_a,head,0,The head Model renderer of the dragon +field_78222_l,wingTip,0,The wing tip Model renderer of the dragon +field_78223_m,partialTicks,0, +field_78224_j,frontFoot,0,The front foot Model renderer of the dragon +field_78225_k,wing,0,The wing Model renderer of the dragon +field_78226_h,frontLegTip,0,The front leg tip Model renderer of the dragon +field_78227_i,rearFoot,0,The rear foot Model renderer of the dragon +field_78228_b,glass,0,The glass model for the Ender Crystal. +field_78229_c,base,0,The base model for the Ender Crystal. +field_78230_a,cube,0,The cube model for the Ender Crystal. +field_78232_b,chestBelow,0,The model of the bottom of the chest. +field_78233_c,chestKnob,0,The chest's knob in the chest model. +field_78234_a,chestLid,0,The chest lid in the chest's model. +field_78237_b,nVertices,0, +field_78238_c,invertNormal,0, +field_78239_a,vertexPositions,0, +field_78241_b,texturePositionX,0, +field_78242_c,texturePositionY,0, +field_78243_a,vector3D,0, +field_78246_f,posZ2,0,Z vertex coordinate of upper box corner +field_78247_g,boxName,0, +field_78248_d,posX2,0,X vertex coordinate of upper box corner +field_78249_e,posY2,0,Y vertex coordinate of upper box corner +field_78250_b,posY1,0,Y vertex coordinate of lower box corner +field_78251_c,posZ1,0,Z vertex coordinate of lower box corner +field_78252_a,posX1,0,X vertex coordinate of lower box corner +field_78253_h,vertexPositions,0,"The (x,y,z) vertex positions and (u,v) texture coordinates for each of the 8 points on a cube" +field_78254_i,quadList,0,"An array of 6 TexturedQuads, one for each face of a cube" +field_78285_g,colorCode,0,Array of RGB triplets defining the 16 standard chat colors followed by 16 darker version of the same colors for drop shadows. +field_78286_d,charWidth,0,Array of width of all the characters in default.png +field_78287_e,glyphWidth,0,Array of the start/end column (in upper/lower nibble) for every glyph in the /font directory. +field_78288_b,FONT_HEIGHT,0,the height in pixels of default text +field_78289_c,fontRandom,0, +field_78291_n,red,0,Used to specify new red value for the current color. +field_78292_o,blue,0,Used to specify new blue value for the current color. +field_78293_l,unicodeFlag,0,"If true, strings should be rendered with Unicode fonts instead of the default.png font" +field_78294_m,bidiFlag,0,"If true, the Unicode Bidirectional Algorithm should be run before rendering any string." +field_78295_j,posX,0,Current X coordinate at which to draw the next character. +field_78296_k,posY,0,Current Y coordinate at which to draw the next character. +field_78298_i,renderEngine,0,The RenderEngine used to load and setup glyph textures. +field_78299_w,strikethroughStyle,0,"Set if the ""m"" style (strikethrough) is active in currently rendering string" +field_78300_v,underlineStyle,0,"Set if the ""n"" style (underlined) is active in currently rendering string" +field_78301_u,italicStyle,0,"Set if the ""o"" style (italic) is active in currently rendering string" +field_78302_t,boldStyle,0,"Set if the ""l"" style (bold) is active in currently rendering string" +field_78303_s,randomStyle,0,"Set if the ""k"" style (random) is active in currently rendering string" +field_78304_r,textColor,0,Text color of the currently rendering string. +field_78305_q,alpha,0,Used to speify new alpha value for the current color. +field_78306_p,green,0,Used to specify new green value for the current color. +field_78329_d,scaledHeightD,0, +field_78330_e,scaleFactor,0, +field_78331_b,scaledHeight,0, +field_78332_c,scaledWidthD,0, +field_78333_a,scaledWidth,0, +field_78398_a,instance,0,The static instance of the Tessellator. +field_78436_b,imageWidth,0, +field_78437_c,imageHeight,0, +field_78438_a,imageData,0, +field_78450_g,equippedItemSlot,0,"The index of the currently held item (0-8, or -1 if not yet updated)" +field_78451_d,prevEquippedProgress,0, +field_78453_b,itemToRender,0, +field_78454_c,equippedProgress,0,How far the current item has been equipped (0 disequipped and 1 fully up) +field_78455_a,mc,0,A reference to the Minecraft object. +field_78490_B,thirdPersonDistance,0, +field_78491_C,thirdPersonDistanceTemp,0,Third person distance temp +field_78492_L,smoothCamPartialTicks,0,Smooth cam partial ticks +field_78496_H,smoothCamYaw,0,Smooth cam yaw +field_78497_I,smoothCamPitch,0,Smooth cam pitch +field_78498_J,smoothCamFilterX,0,Smooth cam filter X +field_78499_K,smoothCamFilterY,0,Smooth cam filter Y +field_78500_U,cloudFog,0,Cloud fog mode +field_78502_W,cameraYaw,0, +field_78503_V,cameraZoom,0, +field_78504_Q,lightmapColors,0,Colors computed in updateLightmap() and loaded into the lightmap emptyTexture +field_78506_S,fovModifierHandPrev,0,FOV modifier hand prev +field_78507_R,fovModifierHand,0,FOV modifier hand +field_78508_Y,prevFrameTime,0,Previous frame time in milliseconds +field_78509_X,cameraPitch,0, +field_78510_Z,renderEndNanoTime,0,End time of last render (ns) +field_78513_d,lightmapTexture,0,The texture id of the blocklight/skylight texture used for lighting effects +field_78514_e,torchFlickerX,0,Torch flicker X +field_78515_b,anaglyphField,0,"Anaglyph field (0=R, 1=GB)" +field_78516_c,itemRenderer,0, +field_78517_a,anaglyphEnable,0, +field_78521_m,fogColorBuffer,0,Fog color buffer +field_78526_w,mouseFilterYAxis,0, +field_78527_v,mouseFilterXAxis,0, +field_78528_u,pointedEntity,0,Pointed entity +field_78529_t,rendererUpdateCount,0,Entity renderer update count +field_78530_s,farPlaneDistance,0, +field_78531_r,mc,0,A reference to the Minecraft object. +field_78534_ac,rainSoundCounter,0,Rain sound counter +field_78535_ad,fogColor2,0,Fog color 2 +field_78536_aa,lightmapUpdateNeeded,0,"Is set, updateCameraAndRender() calls updateLightmap(); set by updateTorchFlicker()" +field_78537_ab,random,0, +field_78539_ae,fogColor1,0,Fog color 1 +field_78549_d,zPosition,0, +field_78550_b,xPosition,0, +field_78551_c,yPosition,0, +field_78552_a,clippingHelper,0, +field_78554_d,clippingMatrix,0, +field_78557_a,frustum,0, +field_78561_f,projectionMatrixBuffer,0, +field_78562_g,modelviewMatrixBuffer,0, +field_78563_e,instance,0, +field_78722_g,worldObj,0,Reference to the World object. +field_78723_d,renderPosZ,0, +field_78724_e,renderEngine,0, +field_78725_b,renderPosX,0, +field_78726_c,renderPosY,0, +field_78728_n,viewerPosZ,0, +field_78729_o,entityRenderMap,0,A map of entity classes and the associated renderer. +field_78730_l,viewerPosX,0, +field_78731_m,viewerPosY,0, +field_78732_j,playerViewX,0, +field_78733_k,options,0,Reference to the GameSettings object. +field_78734_h,livingPlayer,0,Rendermanager's variable for the player +field_78735_i,playerViewY,0, +field_78736_p,textRenderer,0,Renders fonts +field_78741_b,secondaryComponents,2, +field_78742_a,primaryComponents,2, +field_78770_f,curBlockDamageMP,0,Current block damage (MP) +field_78774_b,netClientHandler,0, +field_78776_a,mc,0,The Minecraft instance. +field_78777_l,currentPlayerItem,0,Index of the current item held by the player in the inventory hotbar +field_78778_j,isHittingBlock,0,Tells if the player is hitting a block +field_78779_k,currentGameType,0,Current game type for the player +field_78780_h,stepSoundTickCounter,0,"Tick counter, when it hits 4 it resets back to 0 and plays the step sound" +field_78781_i,blockHitDelay,0,Delays the first damage on the block after the first click on the block +field_78782_b,textureOffsetY,0,The y coordinate offset of the texture +field_78783_a,textureOffsetX,0,The x coordinate offset of the texture +field_78795_f,rotateAngleX,0, +field_78796_g,rotateAngleY,0, +field_78797_d,rotationPointY,0, +field_78798_e,rotationPointZ,0, +field_78799_b,textureHeight,0,The size of the texture file's height in pixels. +field_78800_c,rotationPointX,0, +field_78801_a,textureWidth,0,The size of the texture file's width in pixels. +field_78802_n,boxName,0, +field_78803_o,textureOffsetX,0,The X offset into the texture used for displaying this model +field_78804_l,cubeList,0, +field_78805_m,childModels,0, +field_78806_j,showModel,0, +field_78807_k,isHidden,0,Hides the model. +field_78808_h,rotateAngleZ,0, +field_78809_i,mirror,0, +field_78810_s,baseModel,0, +field_78811_r,displayList,0,The GL display list rendered by the Tessellator for this model +field_78812_q,compiled,0, +field_78813_p,textureOffsetY,0,The Y offset into the texture used for displaying this model +field_78828_a,weightClass,2,The class of the StructureComponent to which this weight corresponds. +field_78829_b,responseTime,0,Player response time to server in milliseconds +field_78843_d,serverMOTD,0,(better variable name would be 'hostname') server name as displayed in the server browser's second line (grey text) +field_78844_e,pingToServer,0,last server ping that showed up in the server browser +field_78845_b,serverIP,0, +field_78846_c,populationInfo,0,"the string indicating number of players on and capacity of the server that is shown on the server browser (i.e. ""5/20"" meaning 5 slots used out of 20 slots total)" +field_78847_a,serverName,0, +field_78858_b,servers,0,List of ServerData instances. +field_78859_a,mc,0,The Minecraft instance. +field_78865_b,serverPort,0, +field_78866_a,ipAddress,0, +field_78875_d,rand,0,RNG. +field_78876_b,fxLayers,0, +field_78877_c,renderer,0, +field_78878_a,worldObj,0,Reference to the World object. +field_78892_f,maxZ,2,The second z coordinate of a bounding box. +field_78893_d,maxX,2,The second x coordinate of a bounding box. +field_78894_e,maxY,2,The second y coordinate of a bounding box. +field_78895_b,minY,2,The first y coordinate of a bounding box. +field_78896_c,minZ,2,The first z coordinate of a bounding box. +field_78897_a,minX,2,The first x coordinate of a bounding box. +field_78899_d,sneak,0, +field_78900_b,moveForward,0,The speed at which the player is moving forward. Negative numbers will move backwards. +field_78901_c,jump,0, +field_78902_a,moveStrafe,0,The speed at which the player is strafing. Postive numbers to the left and negative to the right. +field_78903_e,gameSettings,0, +field_78939_q,noColor,0,None +field_80001_f,closestPlayer,2,The closest EntityPlayer to this orb. +field_80002_g,xpTargetColor,2,Threshold color for tracking players +field_80004_Q,updateEntityTick,2, +field_80005_w,hideServerAddress,0, +field_82151_R,distanceWalkedOnStepModified,2, +field_82153_h,portalCounter,2, +field_82172_bs,canPickUpLoot,2,Whether this entity can pick up items from the ground. +field_82174_bp,equipmentDropChances,2,Chances for each equipment piece from dropping when this entity dies. +field_82175_bq,isSwingInProgress,2,Whether an arm swing is currently in progress. +field_82179_bU,persistenceRequired,2,Whether this entity should NOT despawn. +field_82180_bT,previousEquipment,2,"The equipment this mob was previously wearing, used for syncing." +field_82182_bS,equipment,2,Equipment (armor and held item) for this entity. +field_82184_d,aiControlledByPlayer,2,AI task for player control. +field_82189_bL,lastBuyingPlayer,2,"Last player to trade with this villager, used for aggressivity." +field_82190_bM,isLookingForHome,2, +field_82192_a,mobSelector,2,Entity selector for IMob types. +field_82199_d,witchDrops,2,List of items a witch should drop on death. +field_82200_e,witchAttackTimer,2,"Timer used as interval for a witch's attack, decremented every tick if aggressive and when reaches zero the witch will throw a potion at the target entity." +field_82219_bJ,attackEntitySelector,2,Selector used to determine the entities a wither boss should attack. +field_82222_j,blockBreakCounter,2,Time before the Wither tries to break blocks +field_82225_f,fuseTime,2, +field_82226_g,explosionRadius,2,Explosion radius for this creeper. +field_82234_d,conversionTime,2,Ticker used to determine the time remaining for this zombie to convert into a villager when cured. +field_82237_a,spawnPosition,2,Coordinates of where the bat spawned. +field_82248_d,spawnForced,2,"Whether this player's spawn point is forced, preventing execution of bed checks." +field_82249_h,lastXPSound,2, +field_82337_e,itemDropChance,2,Chance for this item frame's item to drop from the frame. +field_82339_as,particleAlpha,0,Particle alpha +field_82387_b,intListPattern,2,"This matches things like ""-1,,4"", and is used for getting x,y,z,range from the token's argument list." +field_82388_c,keyValueListPattern,2,"This matches things like ""rm=4,c=2"" and is used for handling named token arguments." +field_82389_a,tokenPattern,2,"This matches the at-tokens introduced for command blocks, including their arguments, if any." +field_82401_a,skeletonHeadModel,0,The Skeleton's head model. +field_82432_p,zombieVillagerModel,0, +field_82483_a,itemDispenseBehaviorProvider,2, +field_82575_g,totalTime,2,Total time for this world. +field_82576_c,generatorOptions,2, +field_82577_x,theGameRules,2, +field_82578_b,NBT_TYPES,2, +field_82596_a,registryObjects,2,Objects registered on this registry. +field_82597_b,defaultObject,2,"Default object for this registry, returned when an object is not found." +field_82609_l,VALUES,2,All facings in D-U-N-S-W-E order +field_82627_a,worldObj,2, +field_82628_b,y,2, +field_82629_c,z,2, +field_82630_a,x,2, +field_82635_f,maxSpeedBoostTime,2,Maximum time the entity's speed should be boosted for. +field_82636_d,speedBoosted,2,Whether the entity's speed is boosted. +field_82637_e,speedBoostTime,2,"Counter for speed boosting, upon reaching maxSpeedBoostTime the speed boost will be disabled" +field_82638_b,maxSpeed,2, +field_82639_c,currentSpeed,2, +field_82640_a,thisEntity,2, +field_82641_b,rangedAttackEntityHost,2,The entity (as a RangedAttackMob) the AI instance has been applied to. +field_82642_h,maxAttackDistance,2, +field_82643_g,targetEntitySelector,2,This filter is applied to the Entity search. Only matching entities will be targetted. (null -> no restrictions) +field_82653_b,worldFeatures,2,List of world features enabled on this preset. +field_82654_c,biomeToUse,2, +field_82655_a,flatLayers,2,List of layers on this preset. +field_82661_d,layerMinimumY,2, +field_82664_a,layerCount,2,Amount of layers for this set of layers. +field_82668_f,scatteredFeatureSpawnList,2,contains possible spawns for scattered features +field_82669_g,maxDistanceBetweenScatteredFeatures,2,the maximum distance between scattered features +field_82670_h,minDistanceBetweenScatteredFeatures,2,the minimum distance between scattered features +field_82675_b,cropTypeA,2,First crop type for this field. +field_82676_c,cropTypeB,2,Second crop type for this field. +field_82678_d,cropTypeC,2,Third crop type for this field. +field_82679_b,cropTypeA,2,First crop type for this field. +field_82680_c,cropTypeB,2,Second crop type for this field. +field_82681_h,cropTypeD,2,Fourth crop type for this field. +field_82682_h,hasWitch,2,Whether this swamp hut has a witch. +field_82693_j,playerReputation,2,List of player reputations with this village +field_82694_i,noBreedTicks,2,Timestamp of tick count when villager last bred +field_82696_f,structureGenerators,2, +field_82697_g,hasDecoration,2, +field_82699_e,flatWorldGenInfo,2, +field_82700_c,cachedBlockIDs,2, +field_82701_j,lavaLakeGenerator,2, +field_82702_h,hasDungeons,2, +field_82703_i,waterLakeGenerator,2, +field_82707_i,isAnimal,2,Whether this creature type is an animal. +field_82723_d,isSplashPotion,2,Whether the potion is a splash potion +field_82724_e,isAmbient,2,Whether the potion effect came from a beacon +field_82727_n,wither,2, +field_82728_o,anvil,2, +field_82729_p,fallingBlock,2, +field_82730_x,magicDamage,2,Whether the damage is magic based. +field_82731_v,wither,2,The wither Potion object. +field_82745_f,createdAtCloudUpdateTick,0,keeps track of how many ticks this PartiallyDestroyedBlock already exists +field_82748_f,worldTypeId,2,ID for this world type. +field_82751_h,worldName,2, +field_82754_f,priority,2, +field_82755_b,isSmoking,2,whether or not this explosion spawns smoke particles +field_82759_d,valueDouble,2, +field_82760_b,valueBoolean,2, +field_82761_c,valueInteger,2, +field_82762_a,valueString,2, +field_82771_a,theGameRules,2, +field_82786_e,maxTradeUses,2,Maximum times this trade can be used. +field_82807_a,skullTypes,2, +field_82809_c,soilId,2,Block ID of the soil this seed food should be planted on. +field_82811_a,hangingEntityClass,2, +field_82818_l,goldenCarrotEffect,2, +field_82821_f,version,0, +field_82822_g,gameVersion,0,Game version for this server. +field_82825_d,hasColorModifier,0, +field_82826_b,statusBarTime,0, +field_82827_c,bossName,0, +field_82828_a,healthScale,0, +field_82831_U,bossColorModifier,0, +field_82832_V,bossColorModifierPrev,0, +field_82843_f,itemFrame,2,"Item frame this stack is on, or null if not on an item frame." +field_82852_f,outputSlot,2,Here comes out item you merged and/or renamed. +field_82853_g,inputSlots,2,The 2slots where you put your items in that you want to merge and/or rename. +field_82854_e,maximumCost,2,The maximum cost of repairing/renaming in the anvil. +field_82855_n,thePlayer,2,The player that has this container open. +field_82856_l,materialCost,2,determined by damage of input item and stackSize of repair materials +field_82857_m,repairedItemName,2, +field_82860_h,theWorld,2, +field_82862_h,thePlayer,2, +field_82864_f,beaconSlot,2,"This beacon's slot where you put in Emerald, Diamond, Gold or Iron Ingot." +field_82866_e,tileBeacon,2, +field_82881_y,pauseOnLostFocus,0,"Whether to pause when the game loses focus, toggled by F3+P" +field_82882_x,advancedItemTooltips,0,"Whether to show advanced information on item tooltips, toggled by F3+H" +field_82884_b,LIGHT0_POS,0, +field_82885_c,LIGHT1_POS,0, +field_82890_f,batOuterLeftWing,0,The outer left wing box of the bat model. +field_82891_d,batLeftWing,0,The inner left wing box of the bat model. +field_82892_e,batOuterRightWing,0,The outer right wing box of the bat model. +field_82893_b,batBody,0,The body box of the bat model. +field_82894_c,batRightWing,0,The inner right wing box of the bat model. +field_82895_a,batHead,0, +field_82896_a,skeletonHead,0, +field_82898_f,villagerNose,0, +field_82902_i,witchHat,0, +field_82906_o,offsetX,0, +field_82907_q,offsetZ,0, +field_82908_p,offsetY,0, +field_82912_p,heightMapMinimum,2,Lowest value in the heightmap. +field_82913_c,generatorSettings,2, +field_82914_M,spawnableCaveCreatureList,2, +field_82915_S,theWorldGenerator,2, +field_83001_bt,invulnerable,2, +field_83002_am,debugCrashKeyPressTime,0,"Keeps track of how long the debug crash keycombo (F3+C) has been pressed for, in order to crash after 10 seconds." +field_83016_L,theCalendar,2, +field_85037_d,aiArrowAttack,2, +field_85038_e,aiAttackOnCollide,2, +field_85053_h,throwerName,2, +field_85059_f,firstCategoryInCrashReport,2,Is true when the current category is the first in the crash report +field_85060_g,stacktrace,2, +field_85061_c,theReportCategory,2,Category of crash +field_85075_d,stackTrace,2, +field_85076_b,name,2, +field_85077_c,children,2, +field_85078_a,crashReport,2, +field_85087_d,lastUpdateTime,2,The worldtime at which this PortalPosition was last verified +field_85091_b,value,2, +field_85092_a,key,2, +field_85095_o,debugBoundingBox,0,whether bounding box should be rendered or not +field_85159_M,isAdventureModeExempt,2, +field_85177_Q,worldTeleporter,2,the teleporter to use when the entity is being transferred into the dimension +field_85183_f,currentItemHittingBlock,0,The Item currently being used to destroy a block +field_85185_A,touchscreen,0, +field_85190_d,destinationCoordinateKeys,2,A list of valid keys for the destinationCoordainteCache. These are based on the X & Z of the players initial location. +field_85191_c,destinationCoordinateCache,2,Stores successful portal placement locations for rapid lookup. +field_85192_a,worldServerInstance,2, +field_90016_e,inventoryCrafting,2,Internal crafting inventory used to check the result of mixing dyes corresponding to the fleece color when breeding sheep. +field_92014_j,explosionStrength,2,The explosion radius of spawned fireballs. +field_92016_l,highlightingItemStack,0,The ItemStack that is currently being highlighted +field_92017_k,remainingHighlightTicks,0,Remaining ticks the item highlight should be visible +field_92025_p,openGLWarning1,0,OpenGL graphics card warning. +field_92039_az,fireworkExplosions,0, +field_92040_ay,theEffectRenderer,0, +field_92041_a,twinkle,0, +field_92042_ax,fireworkAge,0, +field_92048_ay,twinkle,0, +field_92049_a,baseTextureIndex,0, +field_92050_aA,fadeColourRed,0, +field_92051_aB,fadeColourGreen,0, +field_92052_aC,fadeColourBlue,0, +field_92053_aD,hasFadeColour,0, +field_92054_ax,trail,0, +field_92055_b,lifetime,2,The lifetime of the firework in ticks. When the age reaches the lifetime the firework explodes. +field_92056_a,fireworkAge,2,The age of the firework in ticks. +field_92057_e,explosionPower,2, +field_92086_a,isBlank,2,When isBlank is true the DataWatcher is not watching any objects +field_92091_k,thorns,2, +field_92101_f,copyIngredientNBT,2, +field_92117_D,heldItemTooltips,0, +field_92118_B,overrideWidth,0, +field_92119_C,overrideHeight,0, +field_94051_e,hasCustomName,2, +field_94054_b,particleTextureIndexX,0, +field_94055_c,particleTextureIndexY,0, +field_94063_bt,_combatTracker,2, +field_94084_b,tntPlacedBy,2, +field_94102_c,entityName,2, +field_94106_a,minecartTNTFuse,2, +field_94109_b,pushZ,2, +field_94110_c,fuel,2, +field_94111_a,pushX,2, +field_94112_b,dropContentsWhenDead,2,"When set to true, the minecart will drop all items when setDead() is called. When false (such as when travelling dimensions) it preserves its contents." +field_94113_a,minecartContainerItems,2, +field_94141_F,destroyBlockIcons,0, +field_94187_f,holder,0, +field_94188_d,height,0, +field_94189_e,subSlots,0, +field_94190_b,originY,0, +field_94191_c,width,0, +field_94192_a,originX,0, +field_94201_d,height,0, +field_94202_e,rotated,0, +field_94204_c,width,0, +field_94205_a,scaleFactor,0, +field_94233_j,width,0,width of this icon in pixels +field_94234_k,height,0,height of this icon in pixels +field_94239_h,currentAngle,0, +field_94240_i,angleDelta,0, +field_94242_j,angleDelta,0,Speed and direction of compass rotation +field_94244_i,currentAngle,0,Current compass heading in radians +field_94249_f,missingImage,0, +field_94252_e,mapUploadedSprites,0, +field_94254_c,basePath,0, +field_94258_i,listAnimatedSprites,0, +field_94313_f,maxHeight,0, +field_94314_g,forcePowerOf2,0, +field_94315_d,currentHeight,0, +field_94316_e,maxWidth,0, +field_94317_b,stitchSlots,0, +field_94318_c,currentWidth,0, +field_94319_a,setStitchHolders,0, +field_94323_h,maxTileDimension,0,Max size (width or height) of a single tile +field_94535_f,dragMode,2,"The current drag mode (0 : evenly split, 1 : one item by slot, 2 : not used ?)" +field_94536_g,dragEvent,2,"The current drag event (0 : start, 1 : add slot : 2 : end)" +field_94537_h,dragSlots,2,The list of slots where the itemstack holds will be distributed +field_94538_a,hopperInventory,2, +field_94554_b,fighter,2,The entity tracked. +field_94556_a,combatEntries,2,The CombatEntry objects that we've tracked so far. +field_94557_a,selectAnything,2, +field_94564_f,fallDistance,2, +field_94565_d,health,2, +field_94568_c,damage,2, +field_94569_a,damageSrc,2, +field_94579_S,pendingTickListEntriesThisTick,2, +field_94601_a,bowPullIconNameArray,2, +field_94603_a,EMPTY_SLOT_NAMES,2, +field_96093_i,entityUniqueID,2, +field_96113_a,isBlocked,2,Whether this hopper minecart is being blocked by an activator rail. +field_96245_b,startTime,2, +field_96303_A,fancyStyling,2, +field_96304_B,controlString,2,The control string (section sign + formatting code) that can be inserted into client-side text to display subsequent text in this format. +field_96329_z,formattingCode,2,The formatting code that produces this format. +field_96330_y,formattingCodePattern,2,"Matches formatting codes that indicate that the client should treat the following text as bold, recolored, obfuscated, etc." +field_96331_x,nameMapping,2,"Maps a name (e.g., 'underline') to its corresponding enum value (e.g., UNDERLINE)." +field_96442_D,worldScoreboard,2, +field_96465_b,behaviourDefaultDispenseItem,2, +field_96506_b,delayedInitNbt,2, +field_96507_a,theScoreboard,2, +field_96540_f,teamMemberships,2,Map of usernames to ScorePlayerTeam objects. +field_96541_d,objectiveDisplaySlots,2,"Index 0 is tab menu, 1 is sidebar, and 2 is below name" +field_96542_e,teams,2,Map of teamnames to ScorePlayerTeam instances +field_96543_b,scoreObjectiveCriterias,2,Map of IScoreObjectiveCriteria objects to ScoreObjective objects. +field_96544_c,entitiesScoreObjectives,2,Map of entities name to ScoreObjective objects. +field_96545_a,scoreObjectives,2,Map of objective names to ScoreObjective objects. +field_96554_c,scoreboardSaveData,2, +field_96555_a,scoreboardMCServer,2, +field_96566_b,selectInventories,2, +field_96567_c,armor,2, +field_96602_b,dispenserMinecartBehavior,2, +field_96605_cw,dispenserBehavior,2, +field_96638_f,health,2, +field_96639_d,playerKillCount,2, +field_96640_e,totalKillCount,2, +field_96641_b,DUMMY,2, +field_96642_c,deathCount,2, +field_96643_a,INSTANCES,2, +field_96644_g,dummyName,2, +field_96654_d,scorePlayerName,2, +field_96655_e,scorePoints,2, +field_96656_b,theScoreboard,2, +field_96657_c,theScoreObjective,2, +field_96658_a,scoreComparator,2,Used for sorting score by points +field_96671_f,colorSuffix,2, +field_96672_g,allowFriendlyFire,2, +field_96673_d,teamNameSPT,2, +field_96674_e,namePrefixSPT,2, +field_96675_b,registeredName,2, +field_96676_c,membershipSet,2,A set of all team member usernames. +field_96677_a,theScoreboard,2, +field_96683_d,displayName,2, +field_96684_b,name,2, +field_96685_c,objectiveCriteria,2,The ScoreObjectiveCriteria for this objetive +field_96686_a,theScoreboard,2, +field_96691_E,chatScale,0, +field_96692_F,chatWidth,0, +field_96693_G,chatHeightUnfocused,0, +field_96694_H,chatHeightFocused,0, +field_98038_p,forceSpawn,2, +field_98040_a,mobSpawnerLogic,2,Mob spawner logic for this spawner minecart. +field_98044_b,transferTicker,2, +field_98056_d,ageWidth,2, +field_98057_e,ageHeight,2, +field_98149_a,holder,0, +field_98151_a,theTexture,0, +field_98222_b,nbtData,2, +field_98223_c,entityType,2, +field_98224_g,minecraftStartTimeMilis,2, +field_98282_f,randomEntity,2, +field_98283_g,minSpawnDelay,2, +field_98284_d,prevMobRotation,2,the previous rotation of the mob inside the mob spawner +field_98285_e,minecartToSpawn,2,List of minecart to spawn. +field_98286_b,spawnDelay,2,The delay to spawn. +field_98287_c,mobRotation,2,The rotation of the mob inside the mob spawner +field_98288_a,mobID,2, +field_98289_l,activatingRangeFromPlayer,2,The distance from which a player activates the spawner. +field_98290_m,spawnRange,2,The range coefficient for spawning entities around. +field_98291_j,cachedEntity,2,Cached instance of the entity to render inside the spawner. +field_98292_k,maxNearbyEntities,2, +field_98293_h,maxSpawnDelay,2, +field_98294_i,spawnCount,2, +field_98301_h,canSeeFriendlyInvisibles,2, +field_98303_au,AMBIENT_OCCLUSIONS,0, diff --git a/mappings/data/inheritance.json b/mappings/data/inheritance.json new file mode 100644 index 0000000..1725d4b --- /dev/null +++ b/mappings/data/inheritance.json @@ -0,0 +1,92243 @@ +{ + "aqe$1": { + "name": "aqe$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "aqv$a": { + "name": "aqv$a", + "access": 33, + "superName": "aqu", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "aqu" + }, + "\u003cinit\u003e (Ladm;Ljava/util/Random;III)V": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1, + "override": "aqu" + }, + "d ()Z": { + "access": 1, + "override": "aqu" + } + } + }, + "kb$12$1": { + "name": "kb$12$1", + "access": 32, + "superName": "ka", + "methods": { + "a ()F": { + "access": 4, + "override": "ka" + }, + "b ()F": { + "access": 4, + "override": "ka" + }, + "\u003cinit\u003e (Lkb$12;Lzx;)V": { + "access": 0 + }, + "a (Ladm;Lcz;)Lwv;": { + "access": 4, + "override": "ka" + } + } + }, + "afe$b": { + "name": "afe$b", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "valueOf (Ljava/lang/String;)Lafe$b;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "values ()[Lafe$b;": { + "access": 9 + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;)V": { + "access": 2 + }, + "c ()Z": { + "access": 1 + }, + "a ()I": { + "access": 1 + }, + "a (I)Lafe$b;": { + "access": 9 + } + } + }, + "afe$a": { + "name": "afe$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Lafe$a;)Z": { + "access": 2 + }, + "a (Lcj;)Z": { + "access": 2 + }, + "d (Lcj;)Z": { + "access": 2 + }, + "a (Lafe$b;)V": { + "access": 2 + }, + "a (Lafe$a;)Z": { + "access": 2 + }, + "c (Lcj;)Z": { + "access": 2 + }, + "a ()I": { + "access": 4 + }, + "c (Lafe$a;)V": { + "access": 2 + }, + "\u003cinit\u003e (Lafe;Ladm;Lcj;Lalz;)V": { + "access": 1 + }, + "a (ZZ)Lafe$a;": { + "access": 1 + }, + "c ()V": { + "access": 2 + }, + "b (Lcj;)Lafe$a;": { + "access": 2 + }, + "b ()Lalz;": { + "access": 1 + } + } + }, + "lt$2": { + "name": "lt$2", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/reflect/ParameterizedType" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "getRawType ()Ljava/lang/reflect/Type;": { + "access": 1, + "override": "java/lang/reflect/ParameterizedType" + }, + "getOwnerType ()Ljava/lang/reflect/Type;": { + "access": 1, + "override": "java/lang/reflect/ParameterizedType" + }, + "getActualTypeArguments ()[Ljava/lang/reflect/Type;": { + "access": 1, + "override": "java/lang/reflect/ParameterizedType" + } + } + }, + "lt$1": { + "name": "lt$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/mojang/authlib/ProfileLookupCallback" + ], + "methods": { + "\u003cinit\u003e ([Lcom/mojang/authlib/GameProfile;)V": { + "access": 0 + }, + "onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1, + "override": "com/mojang/authlib/ProfileLookupCallback" + }, + "onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V": { + "access": 1, + "override": "com/mojang/authlib/ProfileLookupCallback" + } + } + }, + "bjx$1": { + "name": "bjx$1", + "access": 32, + "superName": "bkx", + "methods": { + "a ()V": { + "access": 4, + "override": "bkn" + }, + "\u003cinit\u003e (Lbjx;Lbjl;)V": { + "access": 0 + } + } + }, + "ua$1": { + "name": "ua$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lpk;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Lua;)V": { + "access": 0 + } + } + }, + "akl$a": { + "name": "akl$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (I)Lakl$a;": { + "access": 9 + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "values ()[Lakl$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lakl$a;": { + "access": 9 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "a ()I": { + "access": 1 + } + } + }, + "lc$a": { + "name": "lc$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "a (Llf;)V": { + "access": 1 + }, + "a (Lakw;)V": { + "access": 2 + }, + "b (Llc$a;)Ljava/util/List;": { + "access": 4104 + }, + "a (Lamy;)V": { + "access": 2 + }, + "a (Llc$a;)Ladg;": { + "access": 4104 + }, + "\u003cinit\u003e (Llc;II)V": { + "access": 1 + }, + "a (Lff;)V": { + "access": 1 + }, + "b (Llf;)V": { + "access": 1 + }, + "a (III)V": { + "access": 1 + } + } + }, + "cj$2$1": { + "name": "cj$2$1", + "access": 32, + "superName": "com/google/common/collect/AbstractIterator", + "methods": { + "\u003cinit\u003e (Lcj$2;)V": { + "access": 0 + }, + "computeNext ()Ljava/lang/Object;": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "()Lcj$a;" + }, + "override": "com/google/common/collect/AbstractIterator" + }, + "a ()Lcj$a;": { + "access": 4 + } + } + }, + "beq$a": { + "name": "beq$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "a": { + "name": "a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "a (Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;CZ)V": { + "access": 2 + }, + "a (ZZ)Ljava/util/Collection;": { + "access": 9 + }, + "d ()Z": { + "access": 1 + }, + "a (I)La;": { + "access": 9 + }, + "b (Ljava/lang/String;)La;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)La;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;CI)V": { + "access": 2 + }, + "e ()Ljava/lang/String;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "values ()[La;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;CZI)V": { + "access": 2 + }, + "b ()I": { + "access": 1 + }, + "c ()Z": { + "access": 1 + }, + "c (Ljava/lang/String;)Ljava/lang/String;": { + "access": 10 + } + } + }, + "b": { + "name": "b", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;)Lc;": { + "access": 1 + }, + "f ()Ljava/io/File;": { + "access": 1 + }, + "i ()Ljava/lang/String;": { + "access": 10 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/io/File;)Z": { + "access": 1 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "a (Ljava/lang/Throwable;Ljava/lang/String;)Lb;": { + "access": 9 + }, + "a (Ljava/lang/StringBuilder;)V": { + "access": 1 + }, + "g ()Lc;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/Throwable;)V": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "h ()V": { + "access": 2 + }, + "b ()Ljava/lang/Throwable;": { + "access": 1 + }, + "e ()Ljava/lang/String;": { + "access": 1 + }, + "a (Ljava/lang/String;I)Lc;": { + "access": 1 + } + } + }, + "c": { + "name": "c", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;Ljava/util/concurrent/Callable;)V": { + "access": 1 + }, + "a (Lc;Lcj;Lalz;)V": { + "access": 9 + }, + "a ()[Ljava/lang/StackTraceElement;": { + "access": 1 + }, + "a (Lc;Lcj;Lafh;I)V": { + "access": 9 + }, + "a (Ljava/lang/StackTraceElement;Ljava/lang/StackTraceElement;)Z": { + "access": 1 + }, + "a (Ljava/lang/StringBuilder;)V": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/Object;)V": { + "access": 1 + }, + "a (DDD)Ljava/lang/String;": { + "access": 9 + }, + "\u003cinit\u003e (Lb;Ljava/lang/String;)V": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/Throwable;)V": { + "access": 1 + }, + "a (Lcj;)Ljava/lang/String;": { + "access": 9 + }, + "a (I)I": { + "access": 1 + }, + "b (I)V": { + "access": 1 + } + } + }, + "net/minecraft/realms/RealmsScrolledSelectionList": { + "name": "net/minecraft/realms/RealmsScrolledSelectionList", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "renderItem (IIIIII)V": { + "access": 1 + }, + "renderBackground ()V": { + "access": 1 + }, + "scroll (I)V": { + "access": 1 + }, + "getMaxPosition ()I": { + "access": 1 + }, + "getScrollbarPosition ()I": { + "access": 1 + }, + "\u003cinit\u003e (IIIII)V": { + "access": 1 + }, + "xm ()I": { + "access": 1 + }, + "getItemCount ()I": { + "access": 1 + }, + "selectItem (IZII)V": { + "access": 1 + }, + "render (IIF)V": { + "access": 1 + }, + "renderItem (IIIILnet/minecraft/realms/Tezzelator;II)V": { + "access": 4 + }, + "getScroll ()I": { + "access": 1 + }, + "renderList (IIII)V": { + "access": 4 + }, + "isSelectedItem (I)Z": { + "access": 1 + }, + "mouseEvent ()V": { + "access": 1 + }, + "ym ()I": { + "access": 1 + }, + "width ()I": { + "access": 1 + } + } + }, + "e": { + "name": "e", + "access": 33, + "superName": "java/lang/RuntimeException", + "methods": { + "a ()Lb;": { + "access": 1 + }, + "getCause ()Ljava/lang/Throwable;": { + "access": 1, + "override": "java/lang/Throwable" + }, + "\u003cinit\u003e (Lb;)V": { + "access": 1 + }, + "getMessage ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Throwable" + } + } + }, + "ajz$a": { + "name": "ajz$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "a (I)Lajz$a;": { + "access": 9 + }, + "values ()[Lajz$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "valueOf (Ljava/lang/String;)Lajz$a;": { + "access": 9 + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "a ()I": { + "access": 1 + } + } + }, + "f": { + "name": "f", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (C)Z": { + "access": 9 + } + } + }, + "g": { + "name": "g", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()Lg$a;": { + "access": 9 + }, + "a (Ljava/util/concurrent/FutureTask;Lorg/apache/logging/log4j/Logger;)Ljava/lang/Object;": { + "access": 9 + } + } + }, + "h": { + "name": "h", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lm;Lk;ILjava/lang/String;[Ljava/lang/Object;)V": { + "access": 1153 + } + } + }, + "i": { + "name": "i", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "k" + ], + "methods": { + "a (Ljava/lang/String;D)D": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "d (Lm;Ljava/lang/String;)Ljava/lang/String;": { + "access": 9, + "exceptions": [ + "cd" + ] + }, + "b (DLjava/lang/String;Z)D": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "e (Lm;Ljava/lang/String;)Ljava/lang/String;": { + "access": 9, + "exceptions": [ + "ca" + ] + }, + "a ([Ljava/lang/String;I)Ljava/lang/String;": { + "access": 9 + }, + "a ([Ljava/lang/String;ILcj;)Ljava/util/List;": { + "access": 9 + }, + "a (Lk;)I": { + "access": 1 + }, + "a (Ljava/lang/String;JJ)J": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "c (Ljava/lang/String;)D": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "c (Lm;Ljava/lang/String;)Ljava/util/List;": { + "access": 9, + "exceptions": [ + "ca" + ] + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "b ([Ljava/lang/String;ILcj;)Ljava/util/List;": { + "access": 9 + }, + "a (DLjava/lang/String;IIZ)Li$a;": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "b (DLjava/lang/String;IIZ)D": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "a ()I": { + "access": 1 + }, + "compareTo (Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lk;)I" + }, + "override": "java/lang/Comparable" + }, + "a (Ljava/lang/String;DD)D": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "b (Lm;[Ljava/lang/String;IZ)Leu;": { + "access": 9, + "exceptions": [ + "cd" + ] + }, + "a (Lh;)V": { + "access": 9 + }, + "a (Ljava/lang/String;Ljava/lang/String;)Z": { + "access": 9 + }, + "a (Ljava/lang/String;I)I": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "a (Lm;Lk;ILjava/lang/String;[Ljava/lang/Object;)V": { + "access": 137 + }, + "a (Lm;Lk;Ljava/lang/String;[Ljava/lang/Object;)V": { + "access": 137 + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "f (Lm;Ljava/lang/String;)Lzw;": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "a (Ljava/util/List;)Leu;": { + "access": 9 + }, + "b (Lm;Ljava/lang/String;)Lpk;": { + "access": 9, + "exceptions": [ + "ca" + ] + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)I": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "a ([Ljava/lang/Object;)Ljava/lang/String;": { + "access": 9 + }, + "a (Lm;Ljava/lang/String;Ljava/lang/Class;)Lpk;": { + "access": 9, + "exceptions": [ + "ca" + ] + }, + "a (Lm;[Ljava/lang/String;IZ)Lcj;": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "a ([Ljava/lang/String;[Ljava/lang/String;)Ljava/util/List;": { + "access": 137 + }, + "d (Ljava/lang/String;)Z": { + "access": 9, + "exceptions": [ + "bz" + ] + }, + "b (Lm;)Llf;": { + "access": 9, + "exceptions": [ + "cd" + ] + }, + "a (Ljava/lang/String;II)I": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "b (Ljava/lang/String;)J": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "a (Lm;Ljava/lang/String;)Llf;": { + "access": 9, + "exceptions": [ + "cd" + ] + }, + "b ()Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "g (Lm;Ljava/lang/String;)Lafh;": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "a ([Ljava/lang/String;Ljava/util/Collection;)Ljava/util/List;": { + "access": 9 + }, + "a (Lm;[Ljava/lang/String;I)Leu;": { + "access": 9, + "exceptions": [ + "cd" + ] + }, + "a (Lm;)Z": { + "access": 1, + "override": "k" + }, + "a (DLjava/lang/String;Z)Li$a;": { + "access": 9, + "exceptions": [ + "cb" + ] + }, + "a (Ljava/util/Collection;)Ljava/lang/String;": { + "access": 9 + } + } + }, + "j": { + "name": "j", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "l" + ], + "methods": { + "a (Lm;[Ljava/lang/String;Lk;Ljava/lang/String;)Z": { + "access": 4 + }, + "a ()Ljava/util/Map;": { + "access": 1, + "override": "l" + }, + "a (Lk;)Lk;": { + "access": 1 + }, + "a (Lm;Ljava/lang/String;)I": { + "access": 1, + "override": "l" + }, + "a (Lm;)Ljava/util/List;": { + "access": 1, + "override": "l" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a ([Ljava/lang/String;)[Ljava/lang/String;": { + "access": 10 + }, + "a (Lm;Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "l" + }, + "a (Lk;[Ljava/lang/String;)I": { + "access": 2 + } + } + }, + "axn$1": { + "name": "axn$1", + "access": 32, + "superName": "avs", + "methods": { + "\u003cinit\u003e (Laxn;IIIIILjava/lang/String;)V": { + "access": 0 + }, + "a (Lbpz;)V": { + "access": 1, + "override": "avs" + } + } + }, + "k": { + "name": "k", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Comparable" + ], + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1025, + "exceptions": [ + "bz" + ] + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1025 + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1025 + }, + "b ()Ljava/util/List;": { + "access": 1025 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1025 + }, + "c ()Ljava/lang/String;": { + "access": 1025 + }, + "a (Lm;)Z": { + "access": 1025 + } + } + }, + "l": { + "name": "l", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()Ljava/util/Map;": { + "access": 1025 + }, + "a (Lm;Ljava/lang/String;)I": { + "access": 1025 + }, + "a (Lm;)Ljava/util/List;": { + "access": 1025 + }, + "a (Lm;Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1025 + } + } + }, + "m": { + "name": "m", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "e ()Ladm;": { + "access": 1025 + }, + "a (ILjava/lang/String;)Z": { + "access": 1025 + }, + "u_ ()Z": { + "access": 1025 + }, + "f_ ()Leu;": { + "access": 1025 + }, + "c ()Lcj;": { + "access": 1025 + }, + "a (Leu;)V": { + "access": 1025 + }, + "d ()Laui;": { + "access": 1025 + }, + "f ()Lpk;": { + "access": 1025 + }, + "a (Ln$a;I)V": { + "access": 1025 + }, + "e_ ()Ljava/lang/String;": { + "access": 1025 + } + } + }, + "n": { + "name": "n", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ln;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ln;Ln$a;Ljava/lang/String;Ljava/lang/String;)V": { + "access": 9 + }, + "a (Lm;Ln$a;I)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1 + }, + "a (Ln;Ln$a;)V": { + "access": 10 + } + } + }, + "o": { + "name": "o", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "c (Ljava/util/Map;)Ljava/util/List;": { + "access": 10 + }, + "b (Ljava/lang/String;)Z": { + "access": 9 + }, + "a (Ljava/util/Map;Ljava/lang/String;)Ljava/util/List;": { + "access": 10 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lm;Ljava/lang/String;)Leu;": { + "access": 9 + }, + "a (Ljava/util/Map;Ljava/lang/Class;Ljava/util/List;Ljava/lang/String;Ladm;Lcj;)Ljava/util/List;": { + "access": 10 + }, + "b (Lm;Ljava/lang/String;Ljava/lang/Class;)Ljava/util/List;": { + "access": 9 + }, + "a (Ljava/lang/String;)Z": { + "access": 9 + }, + "e (Ljava/util/Map;)Ljava/util/List;": { + "access": 10 + }, + "a (Ljava/util/Map;Lcj;)Ljava/util/List;": { + "access": 10 + }, + "b (Lm;Ljava/util/Map;)Z": { + "access": 10 + }, + "a (I)I": { + "access": 9 + }, + "b (Ljava/util/Map;Lcj;)Lcj;": { + "access": 10 + }, + "g (Ljava/util/Map;)Ljava/util/List;": { + "access": 10 + }, + "a (Lm;Ljava/lang/String;Ljava/lang/Class;)Lpk;": { + "access": 9 + }, + "b (Ljava/util/Map;)Ljava/util/List;": { + "access": 10 + }, + "a (Lcj;III)Laug;": { + "access": 10 + }, + "d (Ljava/util/Map;)Ljava/util/List;": { + "access": 10 + }, + "c (Ljava/lang/String;)Ljava/util/Map;": { + "access": 10 + }, + "h (Ljava/util/Map;)Z": { + "access": 10 + }, + "b (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/String;": { + "access": 10 + }, + "a (Lm;Ljava/lang/String;)Llf;": { + "access": 9 + }, + "a (Lm;Ljava/util/Map;)Ljava/util/List;": { + "access": 10 + }, + "a (Ljava/util/List;Ljava/util/Map;Lm;Ljava/lang/Class;Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 10 + }, + "a (Ljava/util/Map;Ljava/lang/String;I)I": { + "access": 10 + }, + "f (Ljava/util/Map;)Ljava/util/List;": { + "access": 10 + }, + "a (Ljava/util/Map;)Ljava/util/Map;": { + "access": 9 + } + } + }, + "p": { + "name": "p", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "q": { + "name": "q", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "a (Lm;Ljava/lang/String;Ljava/lang/String;)V": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;)Z": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "r": { + "name": "r", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;)Z": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "s": { + "name": "s", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "lt$b": { + "name": "lt$b", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer", + "com/google/gson/JsonSerializer" + ], + "methods": { + "serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Llt$a;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;" + }, + "override": "com/google/gson/JsonSerializer" + }, + "\u003cinit\u003e (Llt;)V": { + "access": 2 + }, + "a (Llt$a;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 1 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Llt$a;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "\u003cinit\u003e (Llt;Llt$1;)V": { + "access": 4096 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Llt$a;" + }, + "override": "com/google/gson/JsonDeserializer" + } + } + }, + "t": { + "name": "t", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "d ()[Ljava/lang/String;": { + "access": 4 + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "u": { + "name": "u", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "v": { + "name": "v", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "lt$a": { + "name": "lt$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "b ()Ljava/util/Date;": { + "access": 1 + }, + "\u003cinit\u003e (Llt;Lcom/mojang/authlib/GameProfile;Ljava/util/Date;Llt$1;)V": { + "access": 4096 + }, + "a ()Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "\u003cinit\u003e (Llt;Lcom/mojang/authlib/GameProfile;Ljava/util/Date;)V": { + "access": 2 + }, + "a (Llt$a;)Ljava/util/Date;": { + "access": 4104 + } + } + }, + "w": { + "name": "w", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bpq$b": { + "name": "bpq$b", + "access": 33, + "superName": "java/lang/Thread", + "methods": { + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "\u003cinit\u003e (Lbpq$c;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + } + } + }, + "x": { + "name": "x", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (ILjava/lang/String;Ljava/lang/StringBuilder;)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (JI)V": { + "access": 2 + }, + "b (JI)Ljava/lang/String;": { + "access": 2 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "d ()Ljava/lang/String;": { + "access": 10 + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bpq$a": { + "name": "bpq$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "c ()V": { + "access": 1 + } + } + }, + "y": { + "name": "y", + "access": 33, + "superName": "ah", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladp$a;)V": { + "access": 4 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + } + } + }, + "z": { + "name": "z", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "d ()[Ljava/lang/String;": { + "access": 4 + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bpq$c": { + "name": "bpq$c", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;Ljava/net/InetAddress;)V": { + "access": 33 + }, + "b ()V": { + "access": 33 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/util/List;": { + "access": 33 + }, + "a ()Z": { + "access": 33 + } + } + }, + "ama$2": { + "name": "ama$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/Comparator" + ], + "methods": { + "\u003cinit\u003e (Lama;)V": { + "access": 0 + }, + "a (Lamo;Lamo;)I": { + "access": 1 + }, + "compare (Ljava/lang/Object;Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lamo;Lamo;)I" + }, + "override": "java/util/Comparator" + } + } + }, + "ama$1": { + "name": "ama$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lamo;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lamo;)Ljava/lang/String;": { + "access": 1 + } + } + }, + "aum$1": { + "name": "aum$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/Comparator" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "compare (Ljava/lang/Object;Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Laum;Laum;)I" + }, + "override": "java/util/Comparator" + }, + "a (Laum;Laum;)I": { + "access": 1 + } + } + }, + "bgf$1": { + "name": "bgf$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "adc$1": { + "name": "adc$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Ladc;)V": { + "access": 0 + } + } + }, + "bgf$b": { + "name": "bgf$b", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "a (Lbgf$b;)[I": { + "access": 4104 + }, + "b (Lbgf$b;)[F": { + "access": 4104 + }, + "a (IIII)I": { + "access": 2 + }, + "\u003cinit\u003e (Lbgf;)V": { + "access": 1 + }, + "a (Ladq;Lafh;Lcj;Lcq;[FLjava/util/BitSet;)V": { + "access": 1 + }, + "a (IIIIFFFF)I": { + "access": 2 + } + } + }, + "bgf$a": { + "name": "bgf$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Lbgf$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lbgf$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lcq;)Lbgf$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I[Lcq;FZ[Lbgf$d;[Lbgf$d;[Lbgf$d;[Lbgf$d;)V": { + "access": 2 + } + } + }, + "adc$2": { + "name": "adc$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Ladc;)V": { + "access": 0 + } + } + }, + "ne$1": { + "name": "ne$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Iterable" + ], + "methods": { + "iterator ()Ljava/util/Iterator;": { + "access": 1, + "override": "java/lang/Iterable" + }, + "\u003cinit\u003e (Lne;Ljava/lang/Class;)V": { + "access": 0 + } + } + }, + "agh$a": { + "name": "agh$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "valueOf (Ljava/lang/String;)Lagh$a;": { + "access": 9 + }, + "values ()[Lagh$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + } + } + }, + "bdr$a": { + "name": "bdr$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "ama$a": { + "name": "ama$a", + "access": 32, + "superName": "aly", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "b ()Lcom/google/common/collect/ImmutableMap;": { + "access": 1, + "override": "alz" + }, + "\u003cinit\u003e (Lafh;Lcom/google/common/collect/ImmutableMap;Lama$1;)V": { + "access": 4096 + }, + "b (Lamo;)Ljava/lang/Comparable;": { + "access": 1, + "override": "alz" + }, + "a ()Ljava/util/Collection;": { + "access": 1, + "override": "alz" + }, + "\u003cinit\u003e (Lafh;Lcom/google/common/collect/ImmutableMap;)V": { + "access": 2 + }, + "a (Lamo;Ljava/lang/Comparable;)Lalz;": { + "access": 1, + "override": "alz" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "c ()Lafh;": { + "access": 1, + "override": "alz" + }, + "a (Ljava/util/Map;)V": { + "access": 1 + }, + "b (Lamo;Ljava/lang/Comparable;)Ljava/util/Map;": { + "access": 2 + } + } + }, + "wc$c": { + "name": "wc$c", + "access": 32, + "superName": "sp", + "methods": { + "\u003cinit\u003e (Lwc;Ljava/lang/Class;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "wc$b": { + "name": "wc$b", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "pu" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/util/Random;)V": { + "access": 1 + } + } + }, + "wc$a": { + "name": "wc$a", + "access": 32, + "superName": "rl", + "methods": { + "\u003cinit\u003e (Lwc;Ljava/lang/Class;)V": { + "access": 1 + }, + "a (Lpr;)D": { + "access": 4, + "override": "rl" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "vq$2": { + "name": "vq$2", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "vq$1": { + "name": "vq$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "gz$a": { + "name": "gz$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lgz$a;": { + "access": 9 + }, + "values ()[Lgz$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "gz$b": { + "name": "gz$b", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a ()Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "d ()Leu;": { + "access": 1 + }, + "c ()Ladp$a;": { + "access": 1 + }, + "\u003cinit\u003e (Lgz;Lcom/mojang/authlib/GameProfile;ILadp$a;Leu;)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "agh$b": { + "name": "agh$b", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "values ()[Lagh$b;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lagh$b;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + } + } + }, + "axa$a": { + "name": "axa$a", + "access": 32, + "superName": "awi", + "methods": { + "a ()V": { + "access": 4, + "override": "awi" + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "a (IILzx;)V": { + "access": 2 + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + }, + "d (IIII)V": { + "access": 2 + }, + "e (II)V": { + "access": 2 + }, + "d ()I": { + "access": 4, + "override": "awi" + }, + "\u003cinit\u003e (Laxa;)V": { + "access": 1 + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "mb$1": { + "name": "mb$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/reflect/ParameterizedType" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "getRawType ()Ljava/lang/reflect/Type;": { + "access": 1, + "override": "java/lang/reflect/ParameterizedType" + }, + "getOwnerType ()Ljava/lang/reflect/Type;": { + "access": 1, + "override": "java/lang/reflect/ParameterizedType" + }, + "getActualTypeArguments ()[Ljava/lang/reflect/Type;": { + "access": 1, + "override": "java/lang/reflect/ParameterizedType" + } + } + }, + "bgf$d": { + "name": "bgf$d", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILcq;Z)V": { + "access": 2 + }, + "values ()[Lbgf$d;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lbgf$d;": { + "access": 9 + } + } + }, + "bgf$c": { + "name": "bgf$c", + "access": 16432, + "superName": "java/lang/Enum", + "methods": { + "a (Lbgf$c;)I": { + "access": 4104 + }, + "b (Lbgf$c;)I": { + "access": 4104 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lbgf$c;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lbgf$c;": { + "access": 9 + }, + "d (Lbgf$c;)I": { + "access": 4104 + }, + "a (Lcq;)Lbgf$c;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;IIIII)V": { + "access": 2 + }, + "c (Lbgf$c;)I": { + "access": 4104 + } + } + }, + "afe$1": { + "name": "afe$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "gz$1": { + "name": "gz$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "xs$1": { + "name": "xs$1", + "access": 32, + "superName": "oq", + "methods": { + "\u003cinit\u003e (Lxs;Ljava/lang/String;ZI)V": { + "access": 0 + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "p_ ()V": { + "access": 1, + "override": "og" + } + } + }, + "xs$2": { + "name": "xs$2", + "access": 32, + "superName": "yg", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "\u003cinit\u003e (Lxs;Log;III)V": { + "access": 0 + }, + "a ()I": { + "access": 1, + "override": "yg" + } + } + }, + "xs$3": { + "name": "xs$3", + "access": 32, + "superName": "yg", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "\u003cinit\u003e (Lxs;Log;III)V": { + "access": 0 + } + } + }, + "bkn$1": { + "name": "bkn$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "net/minecraft/realms/RealmsClickableScrolledSelectionList": { + "name": "net/minecraft/realms/RealmsClickableScrolledSelectionList", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "renderItem (IIIIII)V": { + "access": 1 + }, + "renderBackground ()V": { + "access": 1 + }, + "scroll (I)V": { + "access": 1 + }, + "renderSelected (IIILnet/minecraft/realms/Tezzelator;)V": { + "access": 1 + }, + "getMaxPosition ()I": { + "access": 1 + }, + "itemClicked (IIIII)V": { + "access": 1 + }, + "getScrollbarPosition ()I": { + "access": 1 + }, + "customMouseEvent (IIIFI)V": { + "access": 1 + }, + "\u003cinit\u003e (IIIII)V": { + "access": 1 + }, + "xm ()I": { + "access": 1 + }, + "getItemCount ()I": { + "access": 1 + }, + "selectItem (IZII)V": { + "access": 1 + }, + "render (IIF)V": { + "access": 1 + }, + "renderItem (IIIILnet/minecraft/realms/Tezzelator;II)V": { + "access": 4 + }, + "getScroll ()I": { + "access": 1 + }, + "renderList (IIII)V": { + "access": 4 + }, + "setLeftPos (I)V": { + "access": 1 + }, + "isSelectedItem (I)Z": { + "access": 1 + }, + "mouseEvent ()V": { + "access": 1 + }, + "ym ()I": { + "access": 1 + }, + "width ()I": { + "access": 1 + } + } + }, + "cr$1": { + "name": "cr$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "cr" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lck;Lzx;)Lzx;": { + "access": 1, + "override": "cr" + } + } + }, + "mb$a": { + "name": "mb$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer", + "com/google/gson/JsonSerializer" + ], + "methods": { + "serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lma;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;" + }, + "override": "com/google/gson/JsonSerializer" + }, + "\u003cinit\u003e (Lmb;)V": { + "access": 2 + }, + "\u003cinit\u003e (Lmb;Lmb$1;)V": { + "access": 4096 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lma;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "a (Lma;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 1 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lma;" + }, + "override": "com/google/gson/JsonDeserializer" + } + } + }, + "ayu$b": { + "name": "ayu$b", + "access": 32, + "superName": "yg", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "e ()Z": { + "access": 1, + "override": "yg" + }, + "a (Log;I)Z": { + "access": 1, + "override": "yg" + }, + "d ()Lzx;": { + "access": 1, + "override": "yg" + }, + "b (Lzx;)I": { + "access": 1, + "override": "yg" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "yg" + }, + "a ()I": { + "access": 1, + "override": "yg" + }, + "d (Lzx;)V": { + "access": 1, + "override": "yg" + }, + "f ()V": { + "access": 1, + "override": "yg" + }, + "\u003cinit\u003e (Layu;Lyg;I)V": { + "access": 1 + }, + "a (Lwn;Lzx;)V": { + "access": 1, + "override": "yg" + }, + "a (I)Lzx;": { + "access": 1, + "override": "yg" + }, + "a (Layu$b;)Lyg;": { + "access": 4104 + } + } + }, + "ayu$a": { + "name": "ayu$a", + "access": 32, + "superName": "xi", + "methods": { + "e ()Z": { + "access": 1 + }, + "a (F)V": { + "access": 1 + }, + "b (Lyg;)Z": { + "access": 1, + "override": "xi" + }, + "a (Lzx;Lyg;)Z": { + "access": 1, + "override": "xi" + }, + "\u003cinit\u003e (Lwn;)V": { + "access": 1 + }, + "a (IIZLwn;)V": { + "access": 4, + "override": "xi" + }, + "b (Lwn;I)Lzx;": { + "access": 1, + "override": "xi" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + } + } + }, + "aqi$a": { + "name": "aqi$a", + "access": 33, + "superName": "aqu", + "methods": { + "\u003cinit\u003e (Ladm;Ljava/util/Random;II)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "net/minecraft/realms/RealmsConnect$1": { + "name": "net/minecraft/realms/RealmsConnect$1", + "access": 32, + "superName": "java/lang/Thread", + "methods": { + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "\u003cinit\u003e (Lnet/minecraft/realms/RealmsConnect;Ljava/lang/String;Ljava/lang/String;I)V": { + "access": 0 + } + } + }, + "bnb$a": { + "name": "bnb$a", + "access": 32, + "superName": "java/io/InputStream", + "methods": { + "\u003cinit\u003e (Ljava/io/InputStream;Ljy;Ljava/lang/String;)V": { + "access": 1 + }, + "close ()V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "java/lang/AutoCloseable" + }, + "finalize ()V": { + "access": 4, + "exceptions": [ + "java/lang/Throwable" + ], + "override": "java/lang/Object" + }, + "read ()I": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "java/io/InputStream" + } + } + }, + "nr$1": { + "name": "nr$1", + "access": 32, + "superName": "com/google/gson/TypeAdapter", + "methods": { + "\u003cinit\u003e (Lnr;Ljava/util/Map;)V": { + "access": 0 + }, + "write (Lcom/google/gson/stream/JsonWriter;Ljava/lang/Object;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "com/google/gson/TypeAdapter" + }, + "read (Lcom/google/gson/stream/JsonReader;)Ljava/lang/Object;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "com/google/gson/TypeAdapter" + } + } + }, + "ajm$1": { + "name": "ajm$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lamc;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lamc;)Z": { + "access": 1 + } + } + }, + "ajm$2": { + "name": "ajm$2", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "n$1": { + "name": "n$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "m" + ], + "methods": { + "e ()Ladm;": { + "access": 1, + "override": "m" + }, + "a (ILjava/lang/String;)Z": { + "access": 1, + "override": "m" + }, + "u_ ()Z": { + "access": 1, + "override": "m" + }, + "f_ ()Leu;": { + "access": 1, + "override": "m" + }, + "c ()Lcj;": { + "access": 1, + "override": "m" + }, + "a (Leu;)V": { + "access": 1, + "override": "m" + }, + "\u003cinit\u003e (Ln;Lm;)V": { + "access": 0 + }, + "d ()Laui;": { + "access": 1, + "override": "m" + }, + "f ()Lpk;": { + "access": 1, + "override": "m" + }, + "a (Ln$a;I)V": { + "access": 1, + "override": "m" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + } + } + }, + "et$a": { + "name": "et$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "a (Ljava/lang/String;)Let$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Let$a;": { + "access": 9 + }, + "a ()Z": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;Z)V": { + "access": 2 + }, + "values ()[Let$a;": { + "access": 9 + } + } + }, + "bph$a": { + "name": "bph$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Z)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()F": { + "access": 1 + }, + "a (Lbph$a$a;)V": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "b ()F": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "e ()Lbph$a$a;": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "a (F)V": { + "access": 1 + }, + "b (F)V": { + "access": 1 + }, + "d ()I": { + "access": 1 + } + } + }, + "axv$a": { + "name": "axv$a", + "access": 32, + "superName": "awi", + "methods": { + "a ()V": { + "access": 4, + "override": "awi" + }, + "k ()I": { + "access": 4, + "override": "awi" + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "b ()I": { + "access": 4, + "override": "awi" + }, + "\u003cinit\u003e (Laxv;Lave;)V": { + "access": 1 + } + } + }, + "beh$a": { + "name": "beh$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bdv$a": { + "name": "bdv$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "n$a": { + "name": "n$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Ln$a;": { + "access": 9 + }, + "a (Ljava/lang/String;)Ln$a;": { + "access": 9 + }, + "c ()[Ljava/lang/String;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;)V": { + "access": 2 + }, + "valueOf (Ljava/lang/String;)Ln$a;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "auq$a": { + "name": "auq$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Lauq$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;I)V": { + "access": 2 + }, + "a ()[Ljava/lang/String;": { + "access": 9 + }, + "a (Ljava/lang/String;)Lauq$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Lauq$a;": { + "access": 9 + } + } + }, + "net/minecraft/realms/RealmsServerStatusPinger$1": { + "name": "net/minecraft/realms/RealmsServerStatusPinger$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "jp" + ], + "methods": { + "a (Leu;)V": { + "access": 1, + "override": "ep" + }, + "a (Ljq;)V": { + "access": 1, + "override": "jp" + }, + "a (Ljr;)V": { + "access": 1, + "override": "jp" + }, + "\u003cinit\u003e (Lnet/minecraft/realms/RealmsServerStatusPinger;Lnet/minecraft/realms/RealmsServerPing;Lek;Ljava/lang/String;)V": { + "access": 0 + } + } + }, + "als$1": { + "name": "als$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "gv$a": { + "name": "gv$a", + "access": 33, + "superName": "gv", + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (IBBBZ)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "gv$b": { + "name": "gv$b", + "access": 33, + "superName": "gv", + "methods": { + "\u003cinit\u003e (IBBBBBZ)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "gv$c": { + "name": "gv$c", + "access": 33, + "superName": "gv", + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e (IBBZ)V": { + "access": 1 + } + } + }, + "bde$a": { + "name": "bde$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "values ()[Lbde$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lbde$a;": { + "access": 9 + }, + "a ()Leu;": { + "access": 1 + } + } + }, + "aku$a": { + "name": "aku$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "e ()Z": { + "access": 1 + }, + "c ()[Ljava/lang/String;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "valueOf (Ljava/lang/String;)Laku$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Lzx;)V": { + "access": 2 + }, + "values ()[Laku$a;": { + "access": 9 + }, + "f ()Lzx;": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "a (Ljava/lang/String;)Laku$a;": { + "access": 9 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "b ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "re$a": { + "name": "re$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lre;ILrd;)V": { + "access": 1 + } + } + }, + "kz$1": { + "name": "kz$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "amq" + ], + "methods": { + "a (Lams;DD)V": { + "access": 1, + "override": "amq" + }, + "a (Lams;I)V": { + "access": 1, + "override": "amq" + }, + "b (Lams;I)V": { + "access": 1, + "override": "amq" + }, + "\u003cinit\u003e (Lkz;)V": { + "access": 0 + }, + "a (Lams;D)V": { + "access": 1, + "override": "amq" + }, + "b (Lams;D)V": { + "access": 1, + "override": "amq" + }, + "a (Lams;DDJ)V": { + "access": 1, + "override": "amq" + }, + "c (Lams;D)V": { + "access": 1, + "override": "amq" + } + } + }, + "bmu$1": { + "name": "bmu$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "qs$1": { + "name": "qs$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Lqs;)V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "ll$6": { + "name": "ll$6", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lll;Lek;)V": { + "access": 0 + } + } + }, + "ayi$b": { + "name": "ayi$b", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "awd$a" + ], + "methods": { + "\u003cinit\u003e (Layi;Lavb;)V": { + "access": 2 + }, + "a (IIIIII)Z": { + "access": 1, + "override": "awd$a" + }, + "b (IIIIII)V": { + "access": 1, + "override": "awd$a" + }, + "a (IIIIIIIZ)V": { + "access": 1, + "override": "awd$a" + }, + "\u003cinit\u003e (Layi;Lavb;Layi$1;)V": { + "access": 4096 + }, + "a (III)V": { + "access": 1, + "override": "awd$a" + } + } + }, + "ll$7": { + "name": "ll$7", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "io/netty/util/concurrent/GenericFutureListener" + ], + "methods": { + "operationComplete (Lio/netty/util/concurrent/Future;)V": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/util/concurrent/GenericFutureListener" + }, + "\u003cinit\u003e (Lll;Lek;Lfa;)V": { + "access": 0 + } + } + }, + "ayi$a": { + "name": "ayi$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "awd$a" + ], + "methods": { + "\u003cinit\u003e (Layi;Ljava/lang/String;)V": { + "access": 1 + }, + "a (IIIIII)Z": { + "access": 1, + "override": "awd$a" + }, + "b (IIIIII)V": { + "access": 1, + "override": "awd$a" + }, + "a (IIIIIIIZ)V": { + "access": 1, + "override": "awd$a" + }, + "a (III)V": { + "access": 1, + "override": "awd$a" + } + } + }, + "ll$4": { + "name": "ll$4", + "access": 32, + "superName": "io/netty/channel/ChannelInitializer", + "methods": { + "initChannel (Lio/netty/channel/Channel;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/channel/ChannelInitializer" + }, + "\u003cinit\u003e (Lll;)V": { + "access": 0 + } + } + }, + "ll$5": { + "name": "ll$5", + "access": 32, + "superName": "io/netty/channel/ChannelInitializer", + "methods": { + "initChannel (Lio/netty/channel/Channel;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/channel/ChannelInitializer" + }, + "\u003cinit\u003e (Lll;)V": { + "access": 0 + } + } + }, + "bhn$a": { + "name": "bhn$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lbhn$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lbhn$a;": { + "access": 9 + } + } + }, + "bhn$b": { + "name": "bhn$b", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lbhn$b;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lbhn$b;": { + "access": 9 + } + } + }, + "ll$2": { + "name": "ll$2", + "access": 48, + "superName": "no", + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "b ()Ljava/lang/Object;": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "()Lio/netty/channel/epoll/EpollEventLoopGroup;" + }, + "override": "no" + }, + "a ()Lio/netty/channel/epoll/EpollEventLoopGroup;": { + "access": 4 + } + } + }, + "ll$3": { + "name": "ll$3", + "access": 48, + "superName": "no", + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "b ()Ljava/lang/Object;": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "()Lio/netty/channel/local/LocalEventLoopGroup;" + }, + "override": "no" + }, + "a ()Lio/netty/channel/local/LocalEventLoopGroup;": { + "access": 4 + } + } + }, + "ll$1": { + "name": "ll$1", + "access": 48, + "superName": "no", + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "b ()Ljava/lang/Object;": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "()Lio/netty/channel/nio/NioEventLoopGroup;" + }, + "override": "no" + }, + "a ()Lio/netty/channel/nio/NioEventLoopGroup;": { + "access": 4 + } + } + }, + "ady$1": { + "name": "ady$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "o$12": { + "name": "o$12", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lpk;)Z": { + "access": 1 + }, + "\u003cinit\u003e (II)V": { + "access": 0 + } + } + }, + "o$11": { + "name": "o$11", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "\u003cinit\u003e (Lcj;IIII)V": { + "access": 0 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "o$10": { + "name": "o$10", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Ljava/lang/String;Z)V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "bei$a": { + "name": "bei$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "arm$1": { + "name": "arm$1", + "access": 48, + "superName": "arm", + "methods": { + "\u003cinit\u003e (Larn;)V": { + "access": 0 + }, + "c ()Z": { + "access": 1, + "override": "arm" + } + } + }, + "ig$a": { + "name": "ig$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Lig$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lig$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ady$b": { + "name": "ady$b", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Lady$b;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Lady$b;": { + "access": 9 + } + } + }, + "ady$c": { + "name": "ady$c", + "access": 33, + "superName": "oa$a", + "methods": { + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Ljava/lang/Class;III)V": { + "access": 1 + } + } + }, + "ady$a": { + "name": "ady$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()Lady$a;": { + "access": 1 + }, + "\u003cinit\u003e (FF)V": { + "access": 1 + } + } + }, + "tx$a": { + "name": "tx$a", + "access": 32, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Ltx;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "alt$1": { + "name": "alt$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "aqp$p$a": { + "name": "aqp$p$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Laqp$p$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Laqp$p$a;": { + "access": 9 + } + } + }, + "ais$1": { + "name": "ais$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "a (Lafe$b;)Z": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lafe$b;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "ais$2": { + "name": "ais$2", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bfl$1": { + "name": "bfl$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "afn$1": { + "name": "afn$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bdj$a": { + "name": "bdj$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "vz$b": { + "name": "vz$b", + "access": 32, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "f ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lvz;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "vz$a": { + "name": "vz$a", + "access": 32, + "superName": "rz", + "methods": { + "\u003cinit\u003e (Lvz;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "bcx$1": { + "name": "bcx$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "io/netty/util/concurrent/GenericFutureListener" + ], + "methods": { + "operationComplete (Lio/netty/util/concurrent/Future;)V": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/util/concurrent/GenericFutureListener" + }, + "\u003cinit\u003e (Lbcx;Ljavax/crypto/SecretKey;)V": { + "access": 0 + } + } + }, + "aqn$1": { + "name": "aqn$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bql$2": { + "name": "bql$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "tv/twitch/broadcast/IStatCallbacks" + ], + "methods": { + "statCallback (Ltv/twitch/broadcast/StatType;J)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStatCallbacks" + }, + "\u003cinit\u003e (Lbql;)V": { + "access": 0 + } + } + }, + "bql$1": { + "name": "bql$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "tv/twitch/broadcast/IStreamCallbacks" + ], + "methods": { + "getIngestServersCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/IngestList;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "getGameNameListCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/GameInfoList;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "sendEndSpanMetaDataCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "\u003cinit\u003e (Lbql;)V": { + "access": 0 + }, + "sendActionMetaDataCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "bufferUnlockCallback (J)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "runCommercialCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "loginCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/ChannelInfo;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "getStreamInfoCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/StreamInfo;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "getArchivingStateCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/ArchivingState;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "setStreamInfoCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "requestAuthTokenCallback (Ltv/twitch/ErrorCode;Ltv/twitch/AuthToken;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "stopCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "getUserInfoCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/UserInfo;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "sendStartSpanMetaDataCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "startCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + } + } + }, + "bql$3": { + "name": "bql$3", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bfl$p": { + "name": "bfl$p", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (II)V": { + "access": 1 + } + } + }, + "bpz$1": { + "name": "bpz$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/reflect/ParameterizedType" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "getRawType ()Ljava/lang/reflect/Type;": { + "access": 1, + "override": "java/lang/reflect/ParameterizedType" + }, + "getOwnerType ()Ljava/lang/reflect/Type;": { + "access": 1, + "override": "java/lang/reflect/ParameterizedType" + }, + "getActualTypeArguments ()[Ljava/lang/reflect/Type;": { + "access": 1, + "override": "java/lang/reflect/ParameterizedType" + } + } + }, + "awg$a": { + "name": "awg$a", + "access": 33, + "superName": "awg$f", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;ZZ)V": { + "access": 1 + }, + "a ()Z": { + "access": 1 + } + } + }, + "bfl$q": { + "name": "bfl$q", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "awg$b": { + "name": "awg$b", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (IZ)V": { + "access": 1025 + }, + "a (ILjava/lang/String;)V": { + "access": 1025 + }, + "a (IF)V": { + "access": 1025 + } + } + }, + "bfl$r": { + "name": "bfl$r", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "bpz$3": { + "name": "bpz$3", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bql$b": { + "name": "bql$b", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lbql$b;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lbql$b;": { + "access": 9 + } + } + }, + "bpz$2": { + "name": "bpz$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "bqb" + ], + "methods": { + "\u003cinit\u003e (Lbpz;Ljava/lang/String;Lbph$a;)V": { + "access": 0 + }, + "b ()Lbpw;": { + "access": 1 + }, + "g ()Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "()Lbpw;" + }, + "override": "bqb" + }, + "a ()I": { + "access": 1, + "override": "bqb" + } + } + }, + "bql$a": { + "name": "bql$a", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lbql;Lbql$b;)V": { + "access": 1025 + } + } + }, + "bfl$l": { + "name": "bfl$l", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "bfl$m": { + "name": "bfl$m", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "bfl$n": { + "name": "bfl$n", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "bfl$o": { + "name": "bfl$o", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Lbfl$o;": { + "access": 9 + }, + "values ()[Lbfl$o;": { + "access": 9 + } + } + }, + "aqn$a": { + "name": "aqn$a", + "access": 33, + "superName": "aqn$c", + "methods": { + "\u003cinit\u003e (Ljava/util/Random;II)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "bfl$a": { + "name": "bfl$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "ayi$1": { + "name": "ayi$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "bfl$b": { + "name": "bfl$b", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "bfl$c": { + "name": "bfl$c", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "aqn$d": { + "name": "aqn$d", + "access": 33, + "superName": "aqn$c", + "methods": { + "\u003cinit\u003e (Ljava/util/Random;II)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "aqn$c": { + "name": "aqn$c", + "access": 1056, + "superName": "aqt", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Laqe;I)Z": { + "access": 4 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "\u003cinit\u003e (Ljava/util/Random;IIIIII)V": { + "access": 4 + } + } + }, + "aqn$b": { + "name": "aqn$b", + "access": 33, + "superName": "aqn$c", + "methods": { + "\u003cinit\u003e (Ljava/util/Random;II)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "xk$1": { + "name": "xk$1", + "access": 32, + "superName": "oq", + "methods": { + "\u003cinit\u003e (Lxk;Ljava/lang/String;ZI)V": { + "access": 0 + }, + "p_ ()V": { + "access": 1, + "override": "og" + } + } + }, + "bfl$h": { + "name": "bfl$h", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "xk$2": { + "name": "xk$2", + "access": 32, + "superName": "yg", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "\u003cinit\u003e (Lxk;Log;IIILadm;Lcj;)V": { + "access": 0 + }, + "a (Lwn;Lzx;)V": { + "access": 1, + "override": "yg" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "yg" + } + } + }, + "bfl$i": { + "name": "bfl$i", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "bfl$j": { + "name": "bfl$j", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "awg$g": { + "name": "awg$g", + "access": 33, + "superName": "awg$f", + "methods": { + "e ()F": { + "access": 1 + }, + "g ()F": { + "access": 1 + }, + "\u003cinit\u003e (ILjava/lang/String;ZLavx$a;FFF)V": { + "access": 1 + }, + "f ()F": { + "access": 1 + }, + "a ()Lavx$a;": { + "access": 1 + } + } + }, + "bfl$k": { + "name": "bfl$k", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "bfl$d": { + "name": "bfl$d", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "awg$e": { + "name": "awg$e", + "access": 33, + "superName": "awg$f", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;Z)V": { + "access": 1 + } + } + }, + "bfl$e": { + "name": "bfl$e", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (FFFF)V": { + "access": 1 + } + } + }, + "awg$f": { + "name": "awg$f", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;Z)V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "bfl$f": { + "name": "bfl$f", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "awg$c": { + "name": "awg$c", + "access": 33, + "superName": "awg$f", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;ZLcom/google/common/base/Predicate;)V": { + "access": 1 + }, + "a ()Lcom/google/common/base/Predicate;": { + "access": 1 + } + } + }, + "bfl$g": { + "name": "bfl$g", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "awg$d": { + "name": "awg$d", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "awd$a" + ], + "methods": { + "a (Lavs;IIIZ)V": { + "access": 2 + }, + "\u003cinit\u003e (Lavp;Lavp;)V": { + "access": 1 + }, + "a (IIIIII)Z": { + "access": 1, + "override": "awd$a" + }, + "a (IIIIIIIZ)V": { + "access": 1, + "override": "awd$a" + }, + "a (Lavs;III)Z": { + "access": 2 + }, + "b ()Lavp;": { + "access": 1 + }, + "c (Lawg$d;)Lavp;": { + "access": 4104 + }, + "a ()Lavp;": { + "access": 1 + }, + "a (Lavw;III)V": { + "access": 2 + }, + "a (Lavw;IZ)V": { + "access": 2 + }, + "a (III)V": { + "access": 1, + "override": "awd$a" + }, + "a (Lawg$d;)Lavp;": { + "access": 4104 + }, + "b (IIIIII)V": { + "access": 1, + "override": "awd$a" + }, + "b (Lavs;III)V": { + "access": 2 + }, + "b (Lavp;III)V": { + "access": 2 + }, + "b (Lawg$d;)Lavp;": { + "access": 4104 + }, + "a (Lavp;III)Z": { + "access": 2 + }, + "a (Lavp;IIIZ)V": { + "access": 2 + }, + "a (Lavy;IIIZ)V": { + "access": 2 + } + } + }, + "akh$1": { + "name": "akh$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "cj$1": { + "name": "cj$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Iterable" + ], + "methods": { + "iterator ()Ljava/util/Iterator;": { + "access": 1, + "override": "java/lang/Iterable" + }, + "\u003cinit\u003e (Lcj;Lcj;)V": { + "access": 0 + } + } + }, + "cj$2": { + "name": "cj$2", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Iterable" + ], + "methods": { + "iterator ()Ljava/util/Iterator;": { + "access": 1, + "override": "java/lang/Iterable" + }, + "\u003cinit\u003e (Lcj;Lcj;)V": { + "access": 0 + } + } + }, + "afa$b": { + "name": "afa$b", + "access": 33, + "superName": "afa", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + } + } + }, + "afa$a": { + "name": "afa$a", + "access": 33, + "superName": "afa", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + } + } + }, + "avh$1": { + "name": "avh$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/reflect/ParameterizedType" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "getRawType ()Ljava/lang/reflect/Type;": { + "access": 1, + "override": "java/lang/reflect/ParameterizedType" + }, + "getOwnerType ()Ljava/lang/reflect/Type;": { + "access": 1, + "override": "java/lang/reflect/ParameterizedType" + }, + "getActualTypeArguments ()[Ljava/lang/reflect/Type;": { + "access": 1, + "override": "java/lang/reflect/ParameterizedType" + } + } + }, + "bjt$1": { + "name": "bjt$1", + "access": 32, + "superName": "bkx", + "methods": { + "a ()V": { + "access": 4, + "override": "bkn" + }, + "\u003cinit\u003e (Lbjt;Lbjl;)V": { + "access": 0 + } + } + }, + "avh$2": { + "name": "avh$2", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "akh$a": { + "name": "akh$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "values ()[Lakh$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "valueOf (Ljava/lang/String;)Lakh$a;": { + "access": 9 + } + } + }, + "abj$1": { + "name": "abj$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "bha$1": { + "name": "bha$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "bgo$1": { + "name": "bgo$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "cj$a": { + "name": "cj$a", + "access": 49, + "superName": "cj", + "methods": { + "p ()I": { + "access": 1, + "override": "df" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "d (Ldf;)Ldf;": { + "access": 4097, + "override": "df" + }, + "b (Lcj$a;I)I": { + "access": 4104 + }, + "n ()I": { + "access": 1, + "override": "df" + }, + "o ()I": { + "access": 1, + "override": "df" + }, + "c (III)Lcj$a;": { + "access": 1 + }, + "\u003cinit\u003e (III)V": { + "access": 1 + }, + "c (Lcj$a;I)I": { + "access": 4104 + }, + "a (Lcj$a;I)I": { + "access": 4104 + } + } + }, + "bha$a": { + "name": "bha$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Lbha$1;)V": { + "access": 4096 + } + } + }, + "net/minecraft/realms/RealmsSimpleScrolledSelectionList": { + "name": "net/minecraft/realms/RealmsSimpleScrolledSelectionList", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "renderItem (IIIIII)V": { + "access": 1 + }, + "renderBackground ()V": { + "access": 1 + }, + "scroll (I)V": { + "access": 1 + }, + "getMaxPosition ()I": { + "access": 1 + }, + "getScrollbarPosition ()I": { + "access": 1 + }, + "\u003cinit\u003e (IIIII)V": { + "access": 1 + }, + "xm ()I": { + "access": 1 + }, + "getItemCount ()I": { + "access": 1 + }, + "selectItem (IZII)V": { + "access": 1 + }, + "render (IIF)V": { + "access": 1 + }, + "renderItem (IIIILnet/minecraft/realms/Tezzelator;II)V": { + "access": 4 + }, + "getScroll ()I": { + "access": 1 + }, + "renderList (IIII)V": { + "access": 4 + }, + "isSelectedItem (I)Z": { + "access": 1 + }, + "mouseEvent ()V": { + "access": 1 + }, + "ym ()I": { + "access": 1 + }, + "width ()I": { + "access": 1 + } + } + }, + "bmh$1": { + "name": "bmh$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lbmh;Lbmi;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bmh$2": { + "name": "bmh$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lbmh;Lbmi;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bem$a": { + "name": "bem$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bmh$3": { + "name": "bmh$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lbmh;Lbmi;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "el$4": { + "name": "el$4", + "access": 16432, + "superName": "el", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;II)V": { + "access": 0 + } + } + }, + "el$3": { + "name": "el$3", + "access": 16432, + "superName": "el", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;II)V": { + "access": 0 + } + } + }, + "el$2": { + "name": "el$2", + "access": 16432, + "superName": "el", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;II)V": { + "access": 0 + } + } + }, + "el$1": { + "name": "el$1", + "access": 16432, + "superName": "el", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;II)V": { + "access": 0 + } + } + }, + "bem$b": { + "name": "bem$b", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "avh$a": { + "name": "avh$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;ZZ)V": { + "access": 2 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;ZZFFF)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lavh$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lavh$a;": { + "access": 9 + }, + "f ()F": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lavh$a;)F": { + "access": 4104 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "d (F)F": { + "access": 1 + }, + "a (I)Lavh$a;": { + "access": 9 + }, + "b ()Z": { + "access": 1 + }, + "f (F)F": { + "access": 4 + }, + "a (F)V": { + "access": 1 + }, + "e (F)F": { + "access": 1 + }, + "b (Lavh$a;)F": { + "access": 4104 + }, + "a ()Z": { + "access": 1 + }, + "c (F)F": { + "access": 1 + } + } + }, + "abj$b": { + "name": "abj$b", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "abs" + ], + "methods": { + "a (Lxp;)Lzx;": { + "access": 1, + "override": "abs" + }, + "b ()Lzx;": { + "access": 1, + "override": "abs" + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Labj$1;)V": { + "access": 4096 + }, + "a (Lxp;Ladm;)Z": { + "access": 1, + "override": "abs" + }, + "a ()I": { + "access": 1, + "override": "abs" + }, + "b (Lxp;)[Lzx;": { + "access": 1, + "override": "abs" + } + } + }, + "abj$a": { + "name": "abj$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "abs" + ], + "methods": { + "a (Lxp;)Lzx;": { + "access": 1, + "override": "abs" + }, + "b ()Lzx;": { + "access": 1, + "override": "abs" + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "c (Lxp;)Laku$a;": { + "access": 2 + }, + "\u003cinit\u003e (Labj$1;)V": { + "access": 4096 + }, + "a (Lxp;Ladm;)Z": { + "access": 1, + "override": "abs" + }, + "a ()I": { + "access": 1, + "override": "abs" + }, + "b (Lxp;)[Lzx;": { + "access": 1, + "override": "abs" + } + } + }, + "yj$1": { + "name": "yj$1", + "access": 48, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 4, + "override": "cn" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "bpx$2$1": { + "name": "bpx$2$1", + "access": 32, + "superName": "java/net/URLConnection", + "methods": { + "getInputStream ()Ljava/io/InputStream;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "java/net/URLConnection" + }, + "\u003cinit\u003e (Lbpx$2;Ljava/net/URL;)V": { + "access": 0 + }, + "connect ()V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "java/net/URLConnection" + } + } + }, + "nj$1": { + "name": "nj$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Lnu;Ljava/lang/String;Ljava/net/Proxy;Ljava/util/Map;Ljava/io/File;I)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "aiw$1": { + "name": "aiw$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "aji$a": { + "name": "aji$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "a (I)Laji$a;": { + "access": 9 + }, + "values ()[Laji$a;": { + "access": 9 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "valueOf (Ljava/lang/String;)Laji$a;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "net/minecraft/server/MinecraftServer": { + "name": "net/minecraft/server/MinecraftServer", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable", + "m", + "od", + "os" + ], + "methods": { + "G ()Ljava/lang/String;": { + "access": 1 + }, + "a (Z)V": { + "access": 4 + }, + "I ()I": { + "access": 1 + }, + "T ()Z": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/String;JLadr;Ljava/lang/String;)V": { + "access": 4 + }, + "R ()I": { + "access": 1 + }, + "z ()V": { + "access": 4 + }, + "a (Ljava/lang/Runnable;)Lcom/google/common/util/concurrent/ListenableFuture;": { + "access": 1, + "override": "od" + }, + "at ()I": { + "access": 1 + }, + "aF ()Llt;": { + "access": 1 + }, + "q ()Z": { + "access": 1025 + }, + "aE ()Lcom/mojang/authlib/GameProfileRepository;": { + "access": 1 + }, + "c (I)V": { + "access": 1 + }, + "a (Lkm;)V": { + "access": 1 + }, + "d (I)V": { + "access": 1 + }, + "aL ()J": { + "access": 1 + }, + "u_ ()Z": { + "access": 1, + "override": "m" + }, + "ap ()Llx;": { + "access": 1 + }, + "a (Ljava/util/concurrent/Callable;)Lcom/google/common/util/concurrent/ListenableFuture;": { + "access": 1 + }, + "ax ()Z": { + "access": 1 + }, + "a (ILjava/lang/String;)Z": { + "access": 1, + "override": "m" + }, + "a (Ljava/lang/String;Latp;)V": { + "access": 4 + }, + "B ()V": { + "access": 1 + }, + "H ()Ljava/lang/String;": { + "access": 1 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "s ()V": { + "access": 4 + }, + "S ()Ljava/lang/String;": { + "access": 1 + }, + "K ()[Ljava/lang/String;": { + "access": 1 + }, + "ao ()Z": { + "access": 1 + }, + "a (Leu;)V": { + "access": 1, + "override": "m" + }, + "l (Ljava/lang/String;)V": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "E ()Ljava/lang/String;": { + "access": 1 + }, + "ag ()Z": { + "access": 1 + }, + "O ()Z": { + "access": 1 + }, + "d (Z)V": { + "access": 1 + }, + "v ()Z": { + "access": 1 + }, + "c ()Lcj;": { + "access": 1, + "override": "m" + }, + "b (Ljava/lang/String;)V": { + "access": 36 + }, + "a (Ladm;Lcj;Lwn;)Z": { + "access": 1 + }, + "aJ ()Z": { + "access": 1, + "override": "od" + }, + "k (Ljava/lang/String;)V": { + "access": 1 + }, + "ah ()Z": { + "access": 1 + }, + "az ()J": { + "access": 9 + }, + "h ()Lbd;": { + "access": 4 + }, + "a (Ljava/security/KeyPair;)V": { + "access": 1 + }, + "D ()V": { + "access": 1 + }, + "i (Z)V": { + "access": 1 + }, + "X ()Z": { + "access": 1 + }, + "an ()I": { + "access": 1 + }, + "n ()Loj;": { + "access": 1025 + }, + "aH ()V": { + "access": 1 + }, + "ae ()Z": { + "access": 1025 + }, + "\u003cinit\u003e (Ljava/io/File;Ljava/net/Proxy;Ljava/io/File;)V": { + "access": 1 + }, + "c (Z)V": { + "access": 1 + }, + "aw ()I": { + "access": 1 + }, + "a (Lb;)V": { + "access": 4 + }, + "aA ()I": { + "access": 1 + }, + "as ()Z": { + "access": 1 + }, + "o ()Z": { + "access": 1025 + }, + "ac ()Ljava/lang/String;": { + "access": 1 + }, + "x ()V": { + "access": 4 + }, + "F ()I": { + "access": 1 + }, + "aj ()Z": { + "access": 1 + }, + "f ()Lpk;": { + "access": 1, + "override": "m" + }, + "M ()Z": { + "access": 1 + }, + "i (Ljava/lang/String;)V": { + "access": 1 + }, + "m ()Ladp$a;": { + "access": 1025 + }, + "main ([Ljava/lang/String;)V": { + "access": 9 + }, + "e ()Ladm;": { + "access": 1, + "override": "m" + }, + "d ()Laui;": { + "access": 1, + "override": "m" + }, + "g (Ljava/lang/String;)V": { + "access": 1 + }, + "a (I)Lle;": { + "access": 1 + }, + "a (Lm;Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1 + }, + "ab ()Ljava/lang/String;": { + "access": 1 + }, + "p ()I": { + "access": 1025 + }, + "g (Z)V": { + "access": 1 + }, + "al ()Z": { + "access": 1025 + }, + "f (Ljava/lang/String;)V": { + "access": 1 + }, + "j ()Ljava/lang/String;": { + "access": 33 + }, + "au ()V": { + "access": 1 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + }, + "V ()Ljava/lang/String;": { + "access": 1 + }, + "a_ (Ljava/lang/String;I)V": { + "access": 4 + }, + "i ()Z": { + "access": 1028, + "exceptions": [ + "java/io/IOException" + ] + }, + "b (Lb;)Lb;": { + "access": 1 + }, + "am ()Ljava/lang/String;": { + "access": 1 + }, + "e (Ljava/lang/String;)V": { + "access": 1 + }, + "aa ()V": { + "access": 1 + }, + "a (Ladp$a;)V": { + "access": 1 + }, + "u ()Ljava/lang/String;": { + "access": 1 + }, + "Y ()Latr;": { + "access": 1 + }, + "f (Z)V": { + "access": 1 + }, + "r ()Z": { + "access": 1025 + }, + "av ()Lor;": { + "access": 1 + }, + "a (Loj;)V": { + "access": 1 + }, + "aq ()Lll;": { + "access": 1 + }, + "C ()Z": { + "access": 1 + }, + "L ()[Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "Q ()Ljava/security/KeyPair;": { + "access": 1 + }, + "a_ (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + }, + "getServerModName ()Ljava/lang/String;": { + "access": 1 + }, + "a (Lor;)V": { + "access": 1, + "override": "os" + }, + "a (Ljava/util/UUID;)Lpk;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/net/Proxy;Ljava/io/File;)V": { + "access": 1 + }, + "k ()V": { + "access": 4 + }, + "J ()I": { + "access": 1 + }, + "a (Ljs;)V": { + "access": 2 + }, + "A ()V": { + "access": 1 + }, + "t ()V": { + "access": 1 + }, + "c (Ljava/lang/String;)V": { + "access": 1 + }, + "y ()Ljava/io/File;": { + "access": 1 + }, + "N ()Lnet/minecraft/server/MinecraftServer;": { + "access": 9 + }, + "aN ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "a (Llx;)V": { + "access": 1 + }, + "l ()Z": { + "access": 1025 + }, + "f_ ()Leu;": { + "access": 1, + "override": "m" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "aI ()I": { + "access": 1 + }, + "af ()Z": { + "access": 1 + }, + "w ()V": { + "access": 1 + }, + "ar ()Z": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 4 + }, + "aM ()Ljava/lang/Thread;": { + "access": 1 + }, + "j (Ljava/lang/String;)V": { + "access": 1 + }, + "ai ()Z": { + "access": 1025 + }, + "U ()Ljava/lang/String;": { + "access": 1 + }, + "aK ()I": { + "access": 1 + }, + "a (Lnet/minecraft/server/MinecraftServer;)Llx;": { + "access": 4104 + }, + "d (Ljava/lang/String;)Ljava/io/File;": { + "access": 1 + }, + "W ()Z": { + "access": 4 + }, + "ad ()Z": { + "access": 1, + "override": "os" + }, + "b (Z)V": { + "access": 1 + }, + "a (Ln$a;I)V": { + "access": 1, + "override": "m" + }, + "aB ()Z": { + "access": 1 + }, + "b (Lor;)V": { + "access": 1, + "override": "os" + }, + "aG ()Ljs;": { + "access": 1 + }, + "a (Ladp$a;Z)Ljava/lang/String;": { + "access": 1025 + }, + "e (Z)V": { + "access": 1 + }, + "ay ()Ljava/net/Proxy;": { + "access": 1 + }, + "aD ()Lcom/mojang/authlib/minecraft/MinecraftSessionService;": { + "access": 1 + }, + "h (Ljava/lang/String;)V": { + "access": 1 + }, + "h (Z)V": { + "access": 1 + }, + "ak ()Z": { + "access": 1 + }, + "P ()Ll;": { + "access": 1 + } + } + }, + "adp$a": { + "name": "adp$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "e ()Z": { + "access": 1 + }, + "values ()[Ladp$a;": { + "access": 9 + }, + "a (I)Ladp$a;": { + "access": 9 + }, + "a (Ljava/lang/String;)Ladp$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;)V": { + "access": 2 + }, + "valueOf (Ljava/lang/String;)Ladp$a;": { + "access": 9 + }, + "a (Lwl;)V": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "c ()Z": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "azp$1": { + "name": "azp$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "awx" + ], + "methods": { + "a (ZI)V": { + "access": 1, + "override": "awx" + }, + "\u003cinit\u003e (Lazp;)V": { + "access": 0 + } + } + }, + "xx$1": { + "name": "xx$1", + "access": 32, + "superName": "yg", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "\u003cinit\u003e (Lxx;Log;III)V": { + "access": 0 + } + } + }, + "xx$2": { + "name": "xx$2", + "access": 32, + "superName": "yg", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "\u003cinit\u003e (Lxx;Log;IIILtp;)V": { + "access": 0 + }, + "b ()Z": { + "access": 1, + "override": "yg" + } + } + }, + "yj$a": { + "name": "yj$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lyj$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;I[II)V": { + "access": 2 + }, + "b ()Lzw;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lyj$a;": { + "access": 9 + }, + "a (I)I": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "b (I)I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "bdn$a": { + "name": "bdn$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bdn$b": { + "name": "bdn$b", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "aif$1": { + "name": "aif$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Laio$a;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Laio$a;)Z": { + "access": 1 + } + } + }, + "aiw$a": { + "name": "aiw$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "valueOf (Ljava/lang/String;)Laiw$a;": { + "access": 9 + }, + "values ()[Laiw$a;": { + "access": 9 + }, + "a (I)Laiw$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "a ()I": { + "access": 1 + } + } + }, + "aky$1": { + "name": "aky$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ad$1": { + "name": "ad$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "m" + ], + "methods": { + "e ()Ladm;": { + "access": 1, + "override": "m" + }, + "a (ILjava/lang/String;)Z": { + "access": 1, + "override": "m" + }, + "u_ ()Z": { + "access": 1, + "override": "m" + }, + "f_ ()Leu;": { + "access": 1, + "override": "m" + }, + "c ()Lcj;": { + "access": 1, + "override": "m" + }, + "a (Leu;)V": { + "access": 1, + "override": "m" + }, + "d ()Laui;": { + "access": 1, + "override": "m" + }, + "f ()Lpk;": { + "access": 1, + "override": "m" + }, + "\u003cinit\u003e (Lad;Lpk;Lm;Lcj;DDD)V": { + "access": 0 + }, + "a (Ln$a;I)V": { + "access": 1, + "override": "m" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + } + } + }, + "afa$1": { + "name": "afa$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "net/minecraft/realms/RealmsEditBox": { + "name": "net/minecraft/realms/RealmsEditBox", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "mouseClicked (III)V": { + "access": 1 + }, + "isFocused ()Z": { + "access": 1 + }, + "render ()V": { + "access": 1 + }, + "\u003cinit\u003e (IIIII)V": { + "access": 1 + }, + "setValue (Ljava/lang/String;)V": { + "access": 1 + }, + "keyPressed (CI)V": { + "access": 1 + }, + "getValue ()Ljava/lang/String;": { + "access": 1 + }, + "tick ()V": { + "access": 1 + }, + "setIsEditable (Z)V": { + "access": 1 + }, + "setFocus (Z)V": { + "access": 1 + }, + "setMaxLength (I)V": { + "access": 1 + } + } + }, + "js$b": { + "name": "js$b", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer", + "com/google/gson/JsonSerializer" + ], + "methods": { + "serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Ljs;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;" + }, + "override": "com/google/gson/JsonSerializer" + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljs;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljs;" + }, + "override": "com/google/gson/JsonDeserializer" + }, + "a (Ljs;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 1 + } + } + }, + "js$a": { + "name": "js$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "c ()[Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "a ([Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "\u003cinit\u003e (II)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "js$c": { + "name": "js$c", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "net/minecraft/realms/RealmsSliderButton": { + "name": "net/minecraft/realms/RealmsSliderButton", + "access": 33, + "superName": "net/minecraft/realms/RealmsButton", + "methods": { + "clamp (F)F": { + "access": 1 + }, + "renderBg (II)V": { + "access": 1, + "override": "net/minecraft/realms/RealmsButton" + }, + "clicked (F)V": { + "access": 1 + }, + "\u003cinit\u003e (IIIIII)V": { + "access": 1 + }, + "toPct (F)F": { + "access": 1 + }, + "clampSteps (F)F": { + "access": 4 + }, + "released (II)V": { + "access": 1, + "override": "net/minecraft/realms/RealmsButton" + }, + "\u003cinit\u003e (IIIIIIFF)V": { + "access": 1 + }, + "getYImage (Z)I": { + "access": 1, + "override": "net/minecraft/realms/RealmsButton" + }, + "clicked (II)V": { + "access": 1, + "override": "net/minecraft/realms/RealmsButton" + }, + "getMessage ()Ljava/lang/String;": { + "access": 1 + }, + "toValue (F)F": { + "access": 1 + } + } + }, + "kr$3": { + "name": "kr$3", + "access": 32, + "superName": "java/awt/event/FocusAdapter", + "methods": { + "\u003cinit\u003e (Lkr;)V": { + "access": 0 + }, + "focusGained (Ljava/awt/event/FocusEvent;)V": { + "access": 1, + "override": "java/awt/event/FocusListener" + } + } + }, + "kr$4": { + "name": "kr$4", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "\u003cinit\u003e (Lkr;Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;)V": { + "access": 0 + } + } + }, + "kr$1": { + "name": "kr$1", + "access": 48, + "superName": "java/awt/event/WindowAdapter", + "methods": { + "\u003cinit\u003e (Lko;)V": { + "access": 0 + }, + "windowClosing (Ljava/awt/event/WindowEvent;)V": { + "access": 1, + "override": "java/awt/event/WindowListener" + } + } + }, + "aiz$a": { + "name": "aiz$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "values ()[Laiz$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Laiz$a;": { + "access": 9 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "a (I)Laiz$a;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "kr$2": { + "name": "kr$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/awt/event/ActionListener" + ], + "methods": { + "\u003cinit\u003e (Lkr;Ljavax/swing/JTextField;)V": { + "access": 0 + }, + "actionPerformed (Ljava/awt/event/ActionEvent;)V": { + "access": 1, + "override": "java/awt/event/ActionListener" + } + } + }, + "kr$5": { + "name": "kr$5", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Lkr;Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "tp$a": { + "name": "tp$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "pu" + ], + "methods": { + "\u003cinit\u003e (II)V": { + "access": 1 + } + } + }, + "ip$b": { + "name": "ip$b", + "access": 33, + "superName": "ip", + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (DDDFFZ)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "ip$a": { + "name": "ip$a", + "access": 33, + "superName": "ip", + "methods": { + "\u003cinit\u003e (DDDZ)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "ip$c": { + "name": "ip$c", + "access": 33, + "superName": "ip", + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "override": "ff" + }, + "\u003cinit\u003e (FFZ)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "cj$1$1": { + "name": "cj$1$1", + "access": 32, + "superName": "com/google/common/collect/AbstractIterator", + "methods": { + "\u003cinit\u003e (Lcj$1;)V": { + "access": 0 + }, + "a ()Lcj;": { + "access": 4 + }, + "computeNext ()Ljava/lang/Object;": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "()Lcj;" + }, + "override": "com/google/common/collect/AbstractIterator" + } + } + }, + "bal$a": { + "name": "bal$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "bah" + ], + "methods": { + "\u003cinit\u003e (Lbal;Laul;)V": { + "access": 1 + }, + "a (FI)V": { + "access": 1, + "override": "bah" + }, + "A_ ()Leu;": { + "access": 1, + "override": "bah" + }, + "a (Lbaf;)V": { + "access": 1, + "override": "bah" + }, + "B_ ()Z": { + "access": 1, + "override": "bah" + } + } + }, + "big$1": { + "name": "big$1", + "access": 32, + "superName": "bkx", + "methods": { + "a ()V": { + "access": 4, + "override": "bkn" + }, + "\u003cinit\u003e (Lbig;Lbjl;)V": { + "access": 0 + } + } + }, + "bnn$1": { + "name": "bnn$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "\u003cinit\u003e (Lbnn;)V": { + "access": 0 + }, + "a (Lbnk;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lbnk;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + } + } + }, + "ahw$1": { + "name": "ahw$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "tp$1": { + "name": "tp$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "akk$1": { + "name": "akk$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "js$a$a": { + "name": "js$a$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer", + "com/google/gson/JsonSerializer" + ], + "methods": { + "serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Ljs$a;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;" + }, + "override": "com/google/gson/JsonSerializer" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljs$a;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljs$a;" + }, + "override": "com/google/gson/JsonDeserializer" + }, + "a (Ljs$a;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 1 + } + } + }, + "vr$d": { + "name": "vr$d", + "access": 32, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lvr;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "vr$c": { + "name": "vr$c", + "access": 32, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lvr;)V": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "rd" + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "vr$b": { + "name": "vr$b", + "access": 32, + "superName": "qq", + "methods": { + "\u003cinit\u003e (Lvr;)V": { + "access": 1 + }, + "b (DDDD)Z": { + "access": 2 + }, + "c ()V": { + "access": 1, + "override": "qq" + } + } + }, + "vr$a": { + "name": "vr$a", + "access": 32, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lvr;)V": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "va$1": { + "name": "va$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ahw$a": { + "name": "ahw$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "values ()[Lahw$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "valueOf (Ljava/lang/String;)Lahw$a;": { + "access": 9 + }, + "a (Lcq$a;)Lahw$a;": { + "access": 9 + } + } + }, + "b$1": { + "name": "b$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lb;)V": { + "access": 0 + } + } + }, + "b$3": { + "name": "b$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lb;)V": { + "access": 0 + } + } + }, + "b$2": { + "name": "b$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lb;)V": { + "access": 0 + } + } + }, + "b$5": { + "name": "b$5", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lb;)V": { + "access": 0 + } + } + }, + "b$4": { + "name": "b$4", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lb;)V": { + "access": 0 + } + } + }, + "b$7": { + "name": "b$7", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lb;)V": { + "access": 0 + } + } + }, + "b$6": { + "name": "b$6", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lb;)V": { + "access": 0 + } + } + }, + "bec$4": { + "name": "bec$4", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lbec;I)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "agx$1": { + "name": "agx$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bec$1": { + "name": "bec$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "\u003cinit\u003e (Lbec;Lbeb;)V": { + "access": 0 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bec$2": { + "name": "bec$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lbec;I)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bec$3": { + "name": "bec$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "\u003cinit\u003e (Lbec;Lbeb;)V": { + "access": 0 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "va$a": { + "name": "va$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lva$a;": { + "access": 9 + }, + "values ()[Lva$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;)V": { + "access": 2 + }, + "a (I)Lva$a;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "aff$1$1": { + "name": "aff$1$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Laff$1;Lcj;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "agx$a": { + "name": "agx$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "valueOf (Ljava/lang/String;)Lagx$a;": { + "access": 9 + }, + "values ()[Lagx$a;": { + "access": 9 + } + } + }, + "net/minecraft/realms/RealmsVertexFormat": { + "name": "net/minecraft/realms/RealmsVertexFormat", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "getVertexFormat ()Lbmu;": { + "access": 1 + }, + "getColorOffset ()I": { + "access": 1 + }, + "clear ()V": { + "access": 1 + }, + "getNormalOffset ()I": { + "access": 1 + }, + "getIntegerSize ()I": { + "access": 1 + }, + "getElement (I)Lnet/minecraft/realms/RealmsVertexFormatElement;": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "getVertexSize ()I": { + "access": 1 + }, + "\u003cinit\u003e (Lbmu;)V": { + "access": 1 + }, + "getOffset (I)I": { + "access": 1 + }, + "getUvOffset (I)I": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "getElements ()Ljava/util/List;": { + "access": 1 + }, + "hasUv (I)Z": { + "access": 1 + }, + "from (Lbmu;)Lnet/minecraft/realms/RealmsVertexFormat;": { + "access": 1 + }, + "addElement (Lnet/minecraft/realms/RealmsVertexFormatElement;)Lnet/minecraft/realms/RealmsVertexFormat;": { + "access": 1 + }, + "getElementCount ()I": { + "access": 1 + }, + "hasNormal ()Z": { + "access": 1 + }, + "hasColor ()Z": { + "access": 1 + } + } + }, + "axq$b": { + "name": "axq$b", + "access": 32, + "superName": "awi", + "methods": { + "a ()V": { + "access": 4, + "override": "awi" + }, + "a (IILzw;I)V": { + "access": 2 + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "\u003cinit\u003e (Laxq;)V": { + "access": 1 + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + }, + "d (IIII)V": { + "access": 2 + }, + "e (II)V": { + "access": 2 + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "axq$a": { + "name": "axq$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lzw;ILjava/lang/String;Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "zv$1": { + "name": "zv$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bdq$a": { + "name": "bdq$a", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 4 + }, + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + } + } + }, + "aln$2": { + "name": "aln$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "m" + ], + "methods": { + "e ()Ladm;": { + "access": 1, + "override": "m" + }, + "a (ILjava/lang/String;)Z": { + "access": 1, + "override": "m" + }, + "u_ ()Z": { + "access": 1, + "override": "m" + }, + "f_ ()Leu;": { + "access": 1, + "override": "m" + }, + "c ()Lcj;": { + "access": 1, + "override": "m" + }, + "a (Leu;)V": { + "access": 1, + "override": "m" + }, + "d ()Laui;": { + "access": 1, + "override": "m" + }, + "f ()Lpk;": { + "access": 1, + "override": "m" + }, + "\u003cinit\u003e (Laln;Lwn;)V": { + "access": 0 + }, + "a (Ln$a;I)V": { + "access": 1, + "override": "m" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + } + } + }, + "bdq$b": { + "name": "bdq$b", + "access": 33, + "superName": "beb", + "methods": { + "a (I)V": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "S ()Laug;": { + "access": 1, + "override": "pk" + }, + "i (Z)V": { + "access": 1 + }, + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "ae ()Z": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "b (I)V": { + "access": 1 + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "c (F)F": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDDDDDLbec;)V": { + "access": 1 + } + } + }, + "aln$1": { + "name": "aln$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "m" + ], + "methods": { + "e ()Ladm;": { + "access": 1, + "override": "m" + }, + "a (ILjava/lang/String;)Z": { + "access": 1, + "override": "m" + }, + "u_ ()Z": { + "access": 1, + "override": "m" + }, + "f_ ()Leu;": { + "access": 1, + "override": "m" + }, + "c ()Lcj;": { + "access": 1, + "override": "m" + }, + "a (Leu;)V": { + "access": 1, + "override": "m" + }, + "d ()Laui;": { + "access": 1, + "override": "m" + }, + "f ()Lpk;": { + "access": 1, + "override": "m" + }, + "a (Ln$a;I)V": { + "access": 1, + "override": "m" + }, + "\u003cinit\u003e (Laln;)V": { + "access": 0 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + } + } + }, + "bdq$c": { + "name": "bdq$c", + "access": 33, + "superName": "beb", + "methods": { + "a (DI[I[IZZ)V": { + "access": 2 + }, + "a (DDDDDD[I[IZZ)V": { + "access": 2 + }, + "a ([I[IZZ)V": { + "access": 2 + }, + "l ()Z": { + "access": 2 + }, + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "\u003cinit\u003e (Ladm;DDDDDDLbec;Ldn;)V": { + "access": 1 + }, + "a (D[[D[I[IZZZ)V": { + "access": 2 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "a ()I": { + "access": 1, + "override": "beb" + } + } + }, + "afu$1": { + "name": "afu$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bdq$d": { + "name": "bdq$d", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "net/minecraft/realms/RealmsMth": { + "name": "net/minecraft/realms/RealmsMth", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "clampedLerp (DDD)D": { + "access": 9 + }, + "abs (F)F": { + "access": 9 + }, + "sin (F)F": { + "access": 9 + }, + "nextDouble (Ljava/util/Random;DD)D": { + "access": 9 + }, + "getInt (Ljava/lang/String;I)I": { + "access": 9 + }, + "ceil (F)I": { + "access": 9 + }, + "floor (F)I": { + "access": 9 + }, + "floor (D)I": { + "access": 9 + }, + "abs (I)I": { + "access": 9 + }, + "nextInt (Ljava/util/Random;II)I": { + "access": 9 + }, + "ceil (D)I": { + "access": 9 + }, + "clamp (DDD)D": { + "access": 9 + }, + "clamp (FFF)F": { + "access": 9 + }, + "absMax (DD)D": { + "access": 9 + }, + "wrapDegrees (F)F": { + "access": 9 + }, + "wrapDegrees (D)D": { + "access": 9 + }, + "fastFloor (D)I": { + "access": 9 + }, + "log2 (I)I": { + "access": 9 + }, + "getDouble (Ljava/lang/String;DD)D": { + "access": 9 + }, + "clamp (III)I": { + "access": 9 + }, + "average ([J)D": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "sqrt (D)F": { + "access": 9 + }, + "absFloor (D)I": { + "access": 9 + }, + "sqrt (F)F": { + "access": 9 + }, + "getInt (Ljava/lang/String;II)I": { + "access": 9 + }, + "getDouble (Ljava/lang/String;D)D": { + "access": 9 + }, + "lfloor (D)J": { + "access": 9 + }, + "cos (F)F": { + "access": 9 + }, + "roundUp (II)I": { + "access": 9 + }, + "intFloorDiv (II)I": { + "access": 9 + }, + "isEmpty (Ljava/lang/String;)Z": { + "access": 9 + }, + "smallestEncompassingPowerOfTwo (I)I": { + "access": 9 + }, + "nextFloat (Ljava/util/Random;FF)F": { + "access": 9 + } + } + }, + "bgi$a": { + "name": "bgi$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer" + ], + "methods": { + "c (Lcom/google/gson/JsonObject;)Lcq;": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgi;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgi;" + }, + "override": "com/google/gson/JsonDeserializer" + }, + "a (Lcom/google/gson/JsonObject;)I": { + "access": 4 + }, + "b (Lcom/google/gson/JsonObject;)Ljava/lang/String;": { + "access": 2 + } + } + }, + "net/minecraft/realms/Realms": { + "name": "net/minecraft/realms/Realms", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "getSessionId ()Ljava/lang/String;": { + "access": 9 + }, + "adventureId ()I": { + "access": 9 + }, + "creativeId ()I": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "getName ()Ljava/lang/String;": { + "access": 9 + }, + "uuidToName (Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "isTouchScreen ()Z": { + "access": 9 + }, + "survivalId ()I": { + "access": 9 + }, + "inTitleScreen ()Z": { + "access": 9 + }, + "sessionId ()Ljava/lang/String;": { + "access": 9 + }, + "setScreen (Lnet/minecraft/realms/RealmsScreen;)V": { + "access": 9 + }, + "spectatorId ()I": { + "access": 9 + }, + "getProxy ()Ljava/net/Proxy;": { + "access": 9 + }, + "getUUID ()Ljava/lang/String;": { + "access": 9 + }, + "clearResourcePack ()V": { + "access": 9 + }, + "setConnectedToRealms (Z)V": { + "access": 9 + }, + "currentTimeMillis ()J": { + "access": 9 + }, + "getGameDirectoryPath ()Ljava/lang/String;": { + "access": 9 + }, + "getRealmsNotificationsEnabled ()Z": { + "access": 9 + }, + "downloadResourcePack (Ljava/lang/String;Ljava/lang/String;)Lcom/google/common/util/concurrent/ListenableFuture;": { + "access": 9 + }, + "userName ()Ljava/lang/String;": { + "access": 9 + } + } + }, + "afh$3": { + "name": "afh$3", + "access": 48, + "superName": "afh$b", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "override": "afh$b" + }, + "b ()Ljava/lang/String;": { + "access": 1, + "override": "afh$b" + }, + "\u003cinit\u003e (Ljava/lang/String;FF)V": { + "access": 0 + } + } + }, + "afh$4": { + "name": "afh$4", + "access": 48, + "superName": "afh$b", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "override": "afh$b" + }, + "b ()Ljava/lang/String;": { + "access": 1, + "override": "afh$b" + }, + "\u003cinit\u003e (Ljava/lang/String;FF)V": { + "access": 0 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "afh$b" + } + } + }, + "afh$1": { + "name": "afh$1", + "access": 48, + "superName": "afh$b", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "override": "afh$b" + }, + "b ()Ljava/lang/String;": { + "access": 1, + "override": "afh$b" + }, + "\u003cinit\u003e (Ljava/lang/String;FF)V": { + "access": 0 + } + } + }, + "afy$a": { + "name": "afy$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ol" + ], + "methods": { + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "f_ ()Leu;": { + "access": 1, + "override": "op" + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "\u003cinit\u003e (Ladm;Lcj;)V": { + "access": 1 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + } + } + }, + "afh$2": { + "name": "afh$2", + "access": 48, + "superName": "afh$b", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "override": "afh$b" + }, + "\u003cinit\u003e (Ljava/lang/String;FF)V": { + "access": 0 + } + } + }, + "o$2": { + "name": "o$2", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lpk;)Z": { + "access": 1 + }, + "\u003cinit\u003e (II)V": { + "access": 0 + } + } + }, + "o$1": { + "name": "o$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Ljava/lang/String;Z)V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "o$4": { + "name": "o$4", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/Comparator" + ], + "methods": { + "\u003cinit\u003e (Lcj;)V": { + "access": 0 + }, + "a (Lpk;Lpk;)I": { + "access": 1 + }, + "compare (Ljava/lang/Object;Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;Lpk;)I" + }, + "override": "java/util/Comparator" + } + } + }, + "ant$1": { + "name": "ant$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "o$3": { + "name": "o$3", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "\u003cinit\u003e (Laug;)V": { + "access": 0 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "o$6": { + "name": "o$6", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lpk;)Z": { + "access": 1 + }, + "\u003cinit\u003e (II)V": { + "access": 0 + } + } + }, + "o$5": { + "name": "o$5", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "o$8": { + "name": "o$8", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Ljava/lang/String;Z)V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "eu$a": { + "name": "eu$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer", + "com/google/gson/JsonSerializer" + ], + "methods": { + "a (Lez;Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V": { + "access": 2 + }, + "a (Leu;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 1 + }, + "a (Ljava/lang/String;)Leu;": { + "access": 9 + }, + "serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Leu;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;" + }, + "override": "com/google/gson/JsonSerializer" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Leu;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Leu;" + }, + "override": "com/google/gson/JsonDeserializer" + }, + "a (Leu;)Ljava/lang/String;": { + "access": 9 + } + } + }, + "o$7": { + "name": "o$7", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lpk;)Z": { + "access": 1 + }, + "\u003cinit\u003e (I)V": { + "access": 0 + } + } + }, + "o$9": { + "name": "o$9", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "\u003cinit\u003e (Ljava/util/Map;)V": { + "access": 0 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "bkm$1": { + "name": "bkm$1", + "access": 32, + "superName": "bkx", + "methods": { + "a ()V": { + "access": 4, + "override": "bkn" + }, + "\u003cinit\u003e (Lbkm;Lbjl;)V": { + "access": 0 + } + } + }, + "afh$a": { + "name": "afh$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Lafh$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lafh$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "afh$b": { + "name": "afh$b", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "e ()F": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;FF)V": { + "access": 1 + }, + "d ()F": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "avo$1": { + "name": "avo$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Laum;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Laum;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Lavo;)V": { + "access": 0 + } + } + }, + "ant$a": { + "name": "ant$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Lant;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Ljava/lang/String;)Lant$a;": { + "access": 9 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "ant$b": { + "name": "ant$b", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer", + "com/google/gson/JsonSerializer" + ], + "methods": { + "serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lant$a;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;" + }, + "override": "com/google/gson/JsonSerializer" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lant$a;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "a (Lant$a;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 1 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lant$a;" + }, + "override": "com/google/gson/JsonDeserializer" + } + } + }, + "aql$s": { + "name": "aql$s", + "access": 33, + "superName": "aql$r", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcq;Laql$v;Ljava/util/Random;)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "aql$r": { + "name": "aql$r", + "access": 1057, + "superName": "aqt", + "methods": { + "a (Laqe;IIII)Z": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Laqe;IIZ)V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Laqe;IIIIIILalz;)V": { + "access": 4 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "\u003cinit\u003e (Lcq;Laqe;)V": { + "access": 1 + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "a (Ladm;Laqe;IIIIIIZ)V": { + "access": 4 + }, + "a (Ladm;Laqe;III)Z": { + "access": 4 + }, + "\u003cinit\u003e (ILcq;Laql$v;III)V": { + "access": 4 + }, + "b (III)I": { + "access": 28 + } + } + }, + "aql$q": { + "name": "aql$q", + "access": 33, + "superName": "aql$r", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcq;Laqe;)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "aql$p": { + "name": "aql$p", + "access": 33, + "superName": "aql$r", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcq;Laql$v;)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "or$1": { + "name": "or$1", + "access": 32, + "superName": "java/util/TimerTask", + "methods": { + "\u003cinit\u003e (Lor;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "aql$v": { + "name": "aql$v", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "a (I)Z": { + "access": 1 + }, + "a (Lcq;Laql$v;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1 + } + } + }, + "aql$u": { + "name": "aql$u", + "access": 33, + "superName": "aql$r", + "methods": { + "\u003cinit\u003e (Lcq;Laqe;I)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "aql$t": { + "name": "aql$t", + "access": 33, + "superName": "aql$r", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcq;Laql$v;Ljava/util/Random;)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "aql$k": { + "name": "aql$k", + "access": 33, + "superName": "aql$r", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcq;Laql$v;Ljava/util/Random;)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "aql$j": { + "name": "aql$j", + "access": 33, + "superName": "aql$r", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcq;Laql$v;Ljava/util/Random;)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "aql$i": { + "name": "aql$i", + "access": 1536, + "superName": "java/lang/Object", + "methods": { + "a (Laql$v;)Z": { + "access": 1025 + }, + "a (Lcq;Laql$v;Ljava/util/Random;)Laql$r;": { + "access": 1025 + } + } + }, + "aql$h": { + "name": "aql$h", + "access": 33, + "superName": "aql$r", + "methods": { + "f (Ladm;Ljava/util/Random;Laqe;)V": { + "access": 2 + }, + "a (Ljava/util/Random;)Ljava/util/List;": { + "access": 2 + }, + "d (Ladm;Ljava/util/Random;Laqe;)V": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Laqe;)V": { + "access": 2 + }, + "g (Ladm;Ljava/util/Random;Laqe;)V": { + "access": 2 + }, + "\u003cinit\u003e (Ljava/util/Random;IILcq;)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "e (Ladm;Ljava/util/Random;Laqe;)V": { + "access": 2 + }, + "a (ZILadm;Ljava/util/Random;Laqe;)V": { + "access": 2 + }, + "c (Ladm;Ljava/util/Random;Laqe;)V": { + "access": 2 + } + } + }, + "aql$o": { + "name": "aql$o", + "access": 33, + "superName": "aql$r", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcq;Laql$v;Ljava/util/Random;)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "aql$n": { + "name": "aql$n", + "access": 33, + "superName": "aql$r", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcq;Laql$v;Ljava/util/Random;)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "aql$m": { + "name": "aql$m", + "access": 33, + "superName": "aql$r", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcq;Laql$v;Ljava/util/Random;)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "aql$l": { + "name": "aql$l", + "access": 33, + "superName": "aql$r", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcq;Laql$v;Ljava/util/Random;)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "aez$a": { + "name": "aez$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ol" + ], + "methods": { + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "f_ ()Leu;": { + "access": 1, + "override": "op" + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "\u003cinit\u003e (Ladm;Lcj;)V": { + "access": 1 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + } + } + }, + "uk$1": { + "name": "uk$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "ang$a": { + "name": "ang$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (II)V": { + "access": 1 + } + } + }, + "ed$d": { + "name": "ed$d", + "access": 32, + "superName": "ed$a", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + }, + "a ()Leb;": { + "access": 1, + "exceptions": [ + "ec" + ], + "override": "ed$a" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ed$c": { + "name": "ed$c", + "access": 32, + "superName": "ed$a", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a ()Leb;": { + "access": 1, + "exceptions": [ + "ec" + ], + "override": "ed$a" + } + } + }, + "ed$b": { + "name": "ed$b", + "access": 32, + "superName": "ed$a", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a ()Leb;": { + "access": 1, + "exceptions": [ + "ec" + ], + "override": "ed$a" + } + } + }, + "ed$a": { + "name": "ed$a", + "access": 1056, + "superName": "java/lang/Object", + "methods": { + "a ()Leb;": { + "access": 1025, + "exceptions": [ + "ec" + ] + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "akb$a": { + "name": "akb$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "\u003cinit\u003e (Ljava/lang/String;IILarn;Ljava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "valueOf (Ljava/lang/String;)Lakb$a;": { + "access": 9 + }, + "c ()Larn;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "values ()[Lakb$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;IILarn;Ljava/lang/String;)V": { + "access": 2 + }, + "a (I)Lakb$a;": { + "access": 9 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "bpx$a": { + "name": "bpx$a", + "access": 32, + "superName": "paulscode/sound/SoundSystem", + "methods": { + "\u003cinit\u003e (Lbpx;Lbpx$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e (Lbpx;)V": { + "access": 2 + }, + "playing (Ljava/lang/String;)Z": { + "access": 1, + "override": "paulscode/sound/SoundSystem" + } + } + }, + "axd$1": { + "name": "axd$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "a (Ljava/lang/String;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Laxd;)V": { + "access": 0 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Ljava/lang/String;)Z" + }, + "override": "com/google/common/base/Predicate" + } + } + }, + "wm$1": { + "name": "wm$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "\u003cinit\u003e (Lwm;Lzx;)V": { + "access": 0 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "beg$a": { + "name": "beg$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "lm$3": { + "name": "lm$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Llm;Lff;)V": { + "access": 0 + } + } + }, + "lm$4": { + "name": "lm$4", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bdu$a": { + "name": "bdu$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "lm$1": { + "name": "lm$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "io/netty/util/concurrent/GenericFutureListener" + ], + "methods": { + "\u003cinit\u003e (Llm;Lfa;)V": { + "access": 0 + }, + "operationComplete (Lio/netty/util/concurrent/Future;)V": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/util/concurrent/GenericFutureListener" + } + } + }, + "amd$a": { + "name": "amd$a", + "access": 32, + "superName": "com/google/common/cache/CacheLoader", + "methods": { + "a (Lcj;)Lamc;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Ladm;Z)V": { + "access": 1 + }, + "load (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "(Lcj;)Lamc;" + }, + "override": "com/google/common/cache/CacheLoader" + } + } + }, + "lm$2": { + "name": "lm$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "\u003cinit\u003e (Llm;)V": { + "access": 0 + } + } + }, + "amd$b": { + "name": "amd$b", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()Lcq;": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "a (III)Lamc;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a ()Lcj;": { + "access": 1 + }, + "\u003cinit\u003e (Lcj;Lcq;Lcq;Lcom/google/common/cache/LoadingCache;III)V": { + "access": 1 + }, + "c ()Lcq;": { + "access": 1 + }, + "d ()I": { + "access": 1 + } + } + }, + "bqk$1": { + "name": "bqk$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "tv/twitch/chat/IChatAPIListener" + ], + "methods": { + "chatEmoticonDataDownloadCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/chat/IChatAPIListener" + }, + "chatInitializationCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/chat/IChatAPIListener" + }, + "chatShutdownCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/chat/IChatAPIListener" + }, + "\u003cinit\u003e (Lbqk;)V": { + "access": 0 + } + } + }, + "bqk$2": { + "name": "bqk$2", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bqk$a": { + "name": "bqk$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lbqk$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lbqk$a;": { + "access": 9 + } + } + }, + "bqk$c": { + "name": "bqk$c", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lbqk$c;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lbqk$c;": { + "access": 9 + } + } + }, + "bqk$b": { + "name": "bqk$b", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "tv/twitch/chat/IChatChannelListener" + ], + "methods": { + "chatStatusCallback (Ljava/lang/String;Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/chat/IChatChannelListener" + }, + "chatChannelUserChangeCallback (Ljava/lang/String;[Ltv/twitch/chat/ChatUserInfo;[Ltv/twitch/chat/ChatUserInfo;[Ltv/twitch/chat/ChatUserInfo;)V": { + "access": 1, + "override": "tv/twitch/chat/IChatChannelListener" + }, + "chatChannelTokenizedMessageCallback (Ljava/lang/String;[Ltv/twitch/chat/ChatTokenizedMessage;)V": { + "access": 1, + "override": "tv/twitch/chat/IChatChannelListener" + }, + "b (Ljava/lang/String;)Z": { + "access": 1 + }, + "chatClearCallback (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1, + "override": "tv/twitch/chat/IChatChannelListener" + }, + "i ()V": { + "access": 4 + }, + "d (Ljava/lang/String;)V": { + "access": 4 + }, + "chatChannelMembershipCallback (Ljava/lang/String;Ltv/twitch/chat/ChatEvent;Ltv/twitch/chat/ChatChannelInfo;)V": { + "access": 1, + "override": "tv/twitch/chat/IChatChannelListener" + }, + "\u003cinit\u003e (Lbqk;Ljava/lang/String;)V": { + "access": 1 + }, + "chatBadgeDataDownloadCallback (Ljava/lang/String;Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/chat/IChatChannelListener" + }, + "a (Lbqk$a;)V": { + "access": 4 + }, + "chatChannelRawMessageCallback (Ljava/lang/String;[Ltv/twitch/chat/ChatRawMessage;)V": { + "access": 1, + "override": "tv/twitch/chat/IChatChannelListener" + }, + "k ()V": { + "access": 2 + }, + "h ()V": { + "access": 4 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "a ()Lbqk$a;": { + "access": 1 + }, + "j ()V": { + "access": 4 + }, + "c (Ljava/lang/String;)V": { + "access": 4 + }, + "a (Z)Z": { + "access": 1 + } + } + }, + "awf$a": { + "name": "awf$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "awd$a" + ], + "methods": { + "a (IIIIII)Z": { + "access": 1, + "override": "awd$a" + }, + "b (IIIIII)V": { + "access": 1, + "override": "awd$a" + }, + "a (IIIIIIIZ)V": { + "access": 1, + "override": "awd$a" + }, + "\u003cinit\u003e (Lavs;Lavs;)V": { + "access": 1 + }, + "a (III)V": { + "access": 1, + "override": "awd$a" + } + } + }, + "bqk$e": { + "name": "bqk$e", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "e ()V": { + "access": 1025 + }, + "b (Ljava/lang/String;)V": { + "access": 1025 + }, + "d ()V": { + "access": 1025 + }, + "a (Ljava/lang/String;[Ltv/twitch/chat/ChatTokenizedMessage;)V": { + "access": 1025 + }, + "d (Ljava/lang/String;)V": { + "access": 1025 + }, + "a (Ljava/lang/String;[Ltv/twitch/chat/ChatRawMessage;)V": { + "access": 1025 + }, + "a (Ljava/lang/String;[Ltv/twitch/chat/ChatUserInfo;[Ltv/twitch/chat/ChatUserInfo;[Ltv/twitch/chat/ChatUserInfo;)V": { + "access": 1025 + }, + "a (Lbqk$c;)V": { + "access": 1025 + }, + "e (Ltv/twitch/ErrorCode;)V": { + "access": 1025 + }, + "a (Ljava/lang/String;)V": { + "access": 1025 + }, + "c (Ljava/lang/String;)V": { + "access": 1025 + }, + "d (Ltv/twitch/ErrorCode;)V": { + "access": 1025 + }, + "a (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1025 + } + } + }, + "bqk$d": { + "name": "bqk$d", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Lbqk$d;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lbqk$d;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bcy$3$1$1": { + "name": "bcy$3$1$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/util/concurrent/FutureCallback" + ], + "methods": { + "onSuccess (Ljava/lang/Object;)V": { + "access": 1, + "override": "com/google/common/util/concurrent/FutureCallback" + }, + "onFailure (Ljava/lang/Throwable;)V": { + "access": 1, + "override": "com/google/common/util/concurrent/FutureCallback" + }, + "\u003cinit\u003e (Lbcy$3$1;)V": { + "access": 0 + } + } + }, + "aqm$a": { + "name": "aqm$a", + "access": 33, + "superName": "aqu", + "methods": { + "\u003cinit\u003e (Ladm;Ljava/util/Random;II)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "aho$1": { + "name": "aho$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ty$a": { + "name": "ty$a", + "access": 32, + "superName": "sp", + "methods": { + "a (Lty$a;Lpr;Z)Z": { + "access": 4104 + }, + "\u003cinit\u003e (Lpy;Ljava/lang/Class;IZZLcom/google/common/base/Predicate;)V": { + "access": 1 + }, + "a (Lty$a;)D": { + "access": 4104 + } + } + }, + "oa$a": { + "name": "oa$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "beh$1": { + "name": "beh$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "anh$a": { + "name": "anh$a", + "access": 32, + "superName": "java/io/ByteArrayOutputStream", + "methods": { + "close ()V": { + "access": 1, + "override": "java/lang/AutoCloseable" + }, + "\u003cinit\u003e (Lanh;II)V": { + "access": 1 + } + } + }, + "aho$a": { + "name": "aho$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (I)Laho$a;": { + "access": 9 + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;)V": { + "access": 2 + }, + "values ()[Laho$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Laho$a;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "cm$b$a": { + "name": "cm$b$a", + "access": 32, + "superName": "com/google/common/collect/UnmodifiableIterator", + "methods": { + "b ()V": { + "access": 2 + }, + "hasNext ()Z": { + "access": 1, + "override": "java/util/Iterator" + }, + "\u003cinit\u003e (Ljava/lang/Class;[Ljava/lang/Iterable;)V": { + "access": 2 + }, + "a ()[Ljava/lang/Object;": { + "access": 1 + }, + "next ()Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "()[Ljava/lang/Object;" + }, + "override": "java/util/Iterator" + }, + "\u003cinit\u003e (Ljava/lang/Class;[Ljava/lang/Iterable;Lcm$1;)V": { + "access": 4096 + } + } + }, + "hv$a": { + "name": "hv$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "a (Ljava/lang/String;)Lhv$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "a ()[Ljava/lang/String;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Lhv$a;": { + "access": 9 + }, + "values ()[Lhv$a;": { + "access": 9 + } + } + }, + "akc$a": { + "name": "akc$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "valueOf (Ljava/lang/String;)Lakc$a;": { + "access": 9 + }, + "values ()[Lakc$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;)V": { + "access": 2 + }, + "a (I)Lakc$a;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "bgn$1": { + "name": "bgn$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "xl$a": { + "name": "xl$a", + "access": 32, + "superName": "yg", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "\u003cinit\u003e (Lxl;Log;III)V": { + "access": 1 + }, + "a ()I": { + "access": 1, + "override": "yg" + } + } + }, + "axi$1": { + "name": "axi$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "a (Ljava/lang/String;)Z": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Ljava/lang/String;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Laxi;)V": { + "access": 0 + } + } + }, + "bel$a": { + "name": "bel$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bdz$a": { + "name": "bdz$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "aju$a": { + "name": "aju$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "valueOf (Ljava/lang/String;)Laju$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "values ()[Laju$a;": { + "access": 9 + } + } + }, + "aju$b": { + "name": "aju$b", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "valueOf (Ljava/lang/String;)Laju$b;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "values ()[Laju$b;": { + "access": 9 + } + } + }, + "axz$a": { + "name": "axz$a", + "access": 32, + "superName": "avs", + "methods": { + "b (Lave;II)V": { + "access": 4, + "override": "avs" + }, + "\u003cinit\u003e (Laxz;IIILbpg;Z)V": { + "access": 1 + }, + "a (Lbpz;)V": { + "access": 1, + "override": "avs" + }, + "a (II)V": { + "access": 1, + "override": "avs" + }, + "a (Z)I": { + "access": 4, + "override": "avs" + }, + "c (Lave;II)Z": { + "access": 1, + "override": "avs" + } + } + }, + "bjb$1": { + "name": "bjb$1", + "access": 32, + "superName": "bkx", + "methods": { + "a ()V": { + "access": 4, + "override": "bkn" + }, + "\u003cinit\u003e (Lbjb;Lbjl;)V": { + "access": 0 + } + } + }, + "auu$a": { + "name": "auu$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "a (Ljava/lang/String;)Lauu$a;": { + "access": 9 + }, + "values ()[Lauu$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lauu$a;": { + "access": 9 + } + } + }, + "dn$2": { + "name": "dn$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Ldn;I)V": { + "access": 0 + } + } + }, + "dn$1": { + "name": "dn$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Ldn;Ljava/lang/String;)V": { + "access": 0 + } + } + }, + "ahz$a$5": { + "name": "ahz$a$5", + "access": 16432, + "superName": "ahz$a", + "methods": { + "d ()Lalz;": { + "access": 1, + "override": "ahz$a" + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V": { + "access": 0 + } + } + }, + "ahz$a$4": { + "name": "ahz$a$4", + "access": 16432, + "superName": "ahz$a", + "methods": { + "d ()Lalz;": { + "access": 1, + "override": "ahz$a" + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V": { + "access": 0 + } + } + }, + "ahz$a$6": { + "name": "ahz$a$6", + "access": 16432, + "superName": "ahz$a", + "methods": { + "d ()Lalz;": { + "access": 1, + "override": "ahz$a" + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V": { + "access": 0 + } + } + }, + "ahz$a$1": { + "name": "ahz$a$1", + "access": 16432, + "superName": "ahz$a", + "methods": { + "d ()Lalz;": { + "access": 1, + "override": "ahz$a" + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;)V": { + "access": 0 + } + } + }, + "ahz$a$3": { + "name": "ahz$a$3", + "access": 16432, + "superName": "ahz$a", + "methods": { + "d ()Lalz;": { + "access": 1, + "override": "ahz$a" + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V": { + "access": 0 + } + } + }, + "ahz$a$2": { + "name": "ahz$a$2", + "access": 16432, + "superName": "ahz$a", + "methods": { + "d ()Lalz;": { + "access": 1, + "override": "ahz$a" + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V": { + "access": 0 + } + } + }, + "tu$a": { + "name": "tu$a", + "access": 32, + "superName": "rl", + "methods": { + "\u003cinit\u003e (Ltu;)V": { + "access": 1 + }, + "a (Lpr;)D": { + "access": 4, + "override": "rl" + } + } + }, + "tu$b": { + "name": "tu$b", + "access": 16432, + "superName": "java/lang/Enum", + "methods": { + "a ()F": { + "access": 1 + }, + "b ()F": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;IFFII)V": { + "access": 2 + }, + "values ()[Ltu$b;": { + "access": 9 + }, + "c ()I": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "valueOf (Ljava/lang/String;)Ltu$b;": { + "access": 9 + } + } + }, + "ajd$a": { + "name": "ajd$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lcj;J)V": { + "access": 1 + } + } + }, + "azk$1": { + "name": "azk$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Lazk;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "net/minecraft/realms/RealmsServerAddress": { + "name": "net/minecraft/realms/RealmsServerAddress", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "parseString (Ljava/lang/String;)Lnet/minecraft/realms/RealmsServerAddress;": { + "access": 9 + }, + "getPort ()I": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 4 + }, + "getHost ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "iu$a": { + "name": "iu$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Liu$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Liu$a;": { + "access": 9 + } + } + }, + "ayf$c$1": { + "name": "ayf$c$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/Comparator" + ], + "methods": { + "a (Lmu;Lmu;)I": { + "access": 1 + }, + "\u003cinit\u003e (Layf$c;Layf;)V": { + "access": 0 + }, + "compare (Ljava/lang/Object;Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lmu;Lmu;)I" + }, + "override": "java/util/Comparator" + } + } + }, + "net/minecraft/realms/Tezzelator": { + "name": "net/minecraft/realms/Tezzelator", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "endVertex ()V": { + "access": 1 + }, + "tex2 (SS)V": { + "access": 1 + }, + "offset (DDD)V": { + "access": 1 + }, + "vertex (DDD)Lnet/minecraft/realms/Tezzelator;": { + "access": 1 + }, + "color (FFFF)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "normal (FFF)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "color (IIII)Lnet/minecraft/realms/RealmsBufferBuilder;": { + "access": 1 + }, + "end ()V": { + "access": 1 + }, + "tex (DD)Lnet/minecraft/realms/Tezzelator;": { + "access": 1 + }, + "begin (ILnet/minecraft/realms/RealmsVertexFormat;)V": { + "access": 1 + } + } + }, + "bfk$1": { + "name": "bfk$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lpk;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Lbfk;)V": { + "access": 0 + } + } + }, + "adk$a": { + "name": "adk$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Ladk$b;)V": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "e ()Ladk$b;": { + "access": 1 + }, + "b ()Z": { + "access": 1 + } + } + }, + "bfk$2": { + "name": "bfk$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lbfk;)V": { + "access": 0 + } + } + }, + "bfk$3": { + "name": "bfk$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "\u003cinit\u003e (Lbfk;II)V": { + "access": 0 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bfk$4": { + "name": "bfk$4", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lbfk;Lavr;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "adk$b": { + "name": "adk$b", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Ladk$b;": { + "access": 9 + }, + "values ()[Ladk$b;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "aqq$2": { + "name": "aqq$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Laqq;II)V": { + "access": 0 + } + } + }, + "aqq$1": { + "name": "aqq$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Laqq;II)V": { + "access": 0 + } + } + }, + "agw$a$1": { + "name": "agw$a$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lagw$a;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lagw$a;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Lagw$b;)V": { + "access": 0 + } + } + }, + "vw$b": { + "name": "vw$b", + "access": 32, + "superName": "sm", + "methods": { + "a (Lpy;Lpr;)V": { + "access": 4, + "override": "sm" + }, + "\u003cinit\u003e (Lvw;)V": { + "access": 1 + } + } + }, + "vw$a": { + "name": "vw$a", + "access": 32, + "superName": "sp", + "methods": { + "a ()Z": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lvw;)V": { + "access": 1 + } + } + }, + "aqq$3": { + "name": "aqq$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Laqq;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "wi$g": { + "name": "wi$g", + "access": 32, + "superName": "nz", + "methods": { + "a (Ljava/util/Random;)I": { + "access": 1 + }, + "\u003cinit\u003e (II)V": { + "access": 1 + } + } + }, + "wi$f": { + "name": "wi$f", + "access": 1536, + "superName": "java/lang/Object", + "methods": { + "a (Lada;Ljava/util/Random;)V": { + "access": 1025 + } + } + }, + "wi$e": { + "name": "wi$e", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "wi$f" + ], + "methods": { + "a (Lada;Ljava/util/Random;)V": { + "access": 1, + "override": "wi$f" + }, + "\u003cinit\u003e (Lzw;Lwi$g;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lzx;Lwi$g;)V": { + "access": 1 + } + } + }, + "wi$d": { + "name": "wi$d", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "wi$f" + ], + "methods": { + "a (Lada;Ljava/util/Random;)V": { + "access": 1, + "override": "wi$f" + }, + "\u003cinit\u003e (Lzw;Lwi$g;Lzw;Lwi$g;)V": { + "access": 1 + } + } + }, + "wi$c": { + "name": "wi$c", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "wi$f" + ], + "methods": { + "a (Lada;Ljava/util/Random;)V": { + "access": 1, + "override": "wi$f" + }, + "\u003cinit\u003e (Lzw;Lwi$g;)V": { + "access": 1 + } + } + }, + "wi$b": { + "name": "wi$b", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "wi$f" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lada;Ljava/util/Random;)V": { + "access": 1, + "override": "wi$f" + } + } + }, + "bpx$1$1": { + "name": "bpx$1$1", + "access": 32, + "superName": "paulscode/sound/SoundSystemLogger", + "methods": { + "errorMessage (Ljava/lang/String;Ljava/lang/String;I)V": { + "access": 1, + "override": "paulscode/sound/SoundSystemLogger" + }, + "importantMessage (Ljava/lang/String;I)V": { + "access": 1, + "override": "paulscode/sound/SoundSystemLogger" + }, + "message (Ljava/lang/String;I)V": { + "access": 1, + "override": "paulscode/sound/SoundSystemLogger" + }, + "\u003cinit\u003e (Lbpx$1;)V": { + "access": 0 + } + } + }, + "bhq$1": { + "name": "bhq$1", + "access": 48, + "superName": "bhq", + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "c (Ladf;)V": { + "access": 1, + "override": "bhq" + }, + "a (Ladf;)V": { + "access": 4, + "override": "bhq" + }, + "a (Lcq;Lcq;)Z": { + "access": 1, + "override": "bhq" + } + } + }, + "tu$g": { + "name": "tu$g", + "access": 32, + "superName": "rv", + "methods": { + "\u003cinit\u003e (Ltu;D)V": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "rd" + } + } + }, + "tu$h": { + "name": "tu$h", + "access": 32, + "superName": "ro", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Ltu;)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "a (Ladm;Lcj;)Z": { + "access": 4, + "override": "ro" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "tu$e": { + "name": "tu$e", + "access": 33, + "superName": "qo", + "methods": { + "a (Z)V": { + "access": 1 + }, + "b ()V": { + "access": 1, + "override": "qo" + }, + "\u003cinit\u003e (Ltu;Ltu;)V": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "c ()Z": { + "access": 1 + } + } + }, + "tu$f": { + "name": "tu$f", + "access": 32, + "superName": "qq", + "methods": { + "\u003cinit\u003e (Ltu;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "qq" + } + } + }, + "tu$c": { + "name": "tu$c", + "access": 32, + "superName": "qs", + "methods": { + "\u003cinit\u003e (Ltu;Ljava/lang/Class;FDD)V": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "rd" + } + } + }, + "tu$d": { + "name": "tu$d", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "pu" + ], + "methods": { + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "wi$a": { + "name": "wi$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "wi$f" + ], + "methods": { + "a (Lada;Ljava/util/Random;)V": { + "access": 1, + "override": "wi$f" + }, + "\u003cinit\u003e (Lzw;Lwi$g;)V": { + "access": 1 + } + } + }, + "bqn$1$1": { + "name": "bqn$1$1", + "access": 32, + "superName": "java/lang/Thread", + "methods": { + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "\u003cinit\u003e (Lbqn$1;Ljava/lang/String;)V": { + "access": 0 + } + } + }, + "pm$a": { + "name": "pm$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (III)V": { + "access": 1 + } + } + }, + "net/minecraft/realms/RealmsServerPing": { + "name": "net/minecraft/realms/RealmsServerPing", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "g$a": { + "name": "g$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lg$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lg$a;": { + "access": 9 + } + } + }, + "net/minecraft/realms/RealmsBufferBuilder": { + "name": "net/minecraft/realms/RealmsBufferBuilder", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "putBulkData ([I)V": { + "access": 1 + }, + "clear ()V": { + "access": 1 + }, + "fixupQuadColor (I)V": { + "access": 1 + }, + "normal (FFF)Lnet/minecraft/realms/RealmsBufferBuilder;": { + "access": 1 + }, + "getVertexFormat ()Lnet/minecraft/realms/RealmsVertexFormat;": { + "access": 1 + }, + "endVertex ()V": { + "access": 1 + }, + "fixupQuadColor (FFF)V": { + "access": 1 + }, + "from (Lbfd;)Lnet/minecraft/realms/RealmsBufferBuilder;": { + "access": 1 + }, + "postProcessFacePosition (DDD)V": { + "access": 1 + }, + "restoreState (Lbfd$a;)V": { + "access": 1 + }, + "faceTex2 (IIII)V": { + "access": 1 + }, + "color (FFFF)Lnet/minecraft/realms/RealmsBufferBuilder;": { + "access": 1 + }, + "postNormal (FFF)V": { + "access": 1 + }, + "getBuffer ()Ljava/nio/ByteBuffer;": { + "access": 1 + }, + "getDrawMode ()I": { + "access": 1 + }, + "color (IIII)Lnet/minecraft/realms/RealmsBufferBuilder;": { + "access": 1 + }, + "tex2 (II)Lnet/minecraft/realms/RealmsBufferBuilder;": { + "access": 1 + }, + "end ()V": { + "access": 1 + }, + "begin (ILbmu;)V": { + "access": 1 + }, + "tex (DD)Lnet/minecraft/realms/RealmsBufferBuilder;": { + "access": 1 + }, + "getVertexCount ()I": { + "access": 1 + }, + "\u003cinit\u003e (Lbfd;)V": { + "access": 1 + }, + "fixupVertexColor (FFFI)V": { + "access": 1 + }, + "offset (DDD)V": { + "access": 1 + }, + "vertex (DDD)Lnet/minecraft/realms/RealmsBufferBuilder;": { + "access": 1 + }, + "faceTint (FFFI)V": { + "access": 1 + }, + "sortQuads (FFF)V": { + "access": 1 + }, + "noColor ()V": { + "access": 1 + } + } + }, + "avx$a": { + "name": "avx$a", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (ILjava/lang/String;F)Ljava/lang/String;": { + "access": 1025 + } + } + }, + "ahb$1": { + "name": "ahb$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "xy$1": { + "name": "xy$1", + "access": 32, + "superName": "yg", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "\u003cinit\u003e (Lxy;Log;IIII)V": { + "access": 0 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "yg" + }, + "a ()I": { + "access": 1, + "override": "yg" + } + } + }, + "aea$3": { + "name": "aea$3", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "aea$a" + ], + "methods": { + "a (Lady;Lcj;)I": { + "access": 1, + "override": "aea$a" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "aea$1": { + "name": "aea$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "aea$a" + ], + "methods": { + "a (Lady;Lcj;)I": { + "access": 1, + "override": "aea$a" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "aea$2": { + "name": "aea$2", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "aea$a" + ], + "methods": { + "a (Lady;Lcj;)I": { + "access": 1, + "override": "aea$a" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "aer$a": { + "name": "aer$a", + "access": 33, + "superName": "aem", + "methods": { + "\u003cinit\u003e (ILady;)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1, + "override": "ady" + }, + "a (Ladm;Ljava/util/Random;Lans;IID)V": { + "access": 1, + "override": "ady" + } + } + }, + "bgr$1": { + "name": "bgr$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "go$a": { + "name": "go$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "net/minecraft/realms/RealmsDefaultVertexFormat": { + "name": "net/minecraft/realms/RealmsDefaultVertexFormat", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ajy$a": { + "name": "ajy$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "\u003cinit\u003e (Ljava/lang/String;IILarn;Ljava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "a (I)Lajy$a;": { + "access": 9 + }, + "values ()[Lajy$a;": { + "access": 9 + }, + "c ()Larn;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Lajy$a;": { + "access": 9 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "\u003cinit\u003e (Ljava/lang/String;IILarn;Ljava/lang/String;)V": { + "access": 2 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "aea$a": { + "name": "aea$a", + "access": 1536, + "superName": "java/lang/Object", + "methods": { + "a (Lady;Lcj;)I": { + "access": 1025 + } + } + }, + "le$a": { + "name": "le$a", + "access": 32, + "superName": "java/util/ArrayList", + "methods": { + "\u003cinit\u003e (Lle$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + } + } + }, + "agc$1": { + "name": "agc$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "a (Lafe$b;)Z": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lafe$b;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "aiv$1": { + "name": "aiv$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lalz;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lalz;)Z": { + "access": 1 + } + } + }, + "ajh$a": { + "name": "ajh$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "c ()Larn;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "valueOf (Ljava/lang/String;)Lajh$a;": { + "access": 9 + }, + "a (I)Lajh$a;": { + "access": 9 + }, + "values ()[Lajh$a;": { + "access": 9 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Larn;)V": { + "access": 2 + }, + "a ()I": { + "access": 1 + } + } + }, + "bgr$b": { + "name": "bgr$b", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Lbgr$b;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Lbgr$b;": { + "access": 9 + } + } + }, + "bgr$a": { + "name": "bgr$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer" + ], + "methods": { + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgr;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;Ljava/lang/String;)Lbgq;": { + "access": 2 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgr;" + }, + "override": "com/google/gson/JsonDeserializer" + } + } + }, + "net/minecraftforge/fml/relauncher/Side": { + "name": "net/minecraftforge/fml/relauncher/Side", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "isClient ()Z": { + "access": 1 + }, + "values ()[Lnet/minecraftforge/fml/relauncher/Side;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lnet/minecraftforge/fml/relauncher/Side;": { + "access": 9 + }, + "isServer ()Z": { + "access": 1 + } + } + }, + "we$1": { + "name": "we$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "le$1": { + "name": "le$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpr;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Lle;)V": { + "access": 0 + }, + "a (Lpr;)Z": { + "access": 1 + } + } + }, + "auh$a": { + "name": "auh$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Lauh$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Lauh$a;": { + "access": 9 + } + } + }, + "bdm$a": { + "name": "bdm$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bdm$b": { + "name": "bdm$b", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "agw$b": { + "name": "agw$b", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a ()Lagw;": { + "access": 1 + }, + "valueOf (Ljava/lang/String;)Lagw$b;": { + "access": 9 + }, + "values ()[Lagw$b;": { + "access": 9 + } + } + }, + "agw$a": { + "name": "agw$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "\u003cinit\u003e (Ljava/lang/String;ILagw$b;ILjava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "a ()Lagw$b;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;ILagw$b;ILjava/lang/String;)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "a (Lagw$b;)[Lagw$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lagw$a;": { + "access": 9 + }, + "values ()[Lagw$a;": { + "access": 9 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "a (Lagw$b;I)Lagw$a;": { + "access": 9 + } + } + }, + "bak$1": { + "name": "bak$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/Comparator" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lbdc;Lbdc;)I": { + "access": 1 + }, + "compare (Ljava/lang/Object;Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lbdc;Lbdc;)I" + }, + "override": "java/util/Comparator" + } + } + }, + "net/minecraft/realms/RealmsServerStatusPinger": { + "name": "net/minecraft/realms/RealmsServerStatusPinger", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "pingServer (Ljava/lang/String;Lnet/minecraft/realms/RealmsServerPing;)V": { + "access": 1, + "exceptions": [ + "java/net/UnknownHostException" + ] + }, + "access$000 ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "removeAll ()V": { + "access": 1 + }, + "tick ()V": { + "access": 1 + } + } + }, + "kb$3": { + "name": "kb$3", + "access": 48, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 1, + "override": "cn" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "kb$4": { + "name": "kb$4", + "access": 48, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 4, + "override": "cn" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lck;)V": { + "access": 4, + "override": "cn" + } + } + }, + "kb$1": { + "name": "kb$1", + "access": 48, + "superName": "ka", + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Ladm;Lcz;)Lwv;": { + "access": 4, + "override": "ka" + } + } + }, + "kb$2": { + "name": "kb$2", + "access": 48, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 1, + "override": "cn" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "kb$7": { + "name": "kb$7", + "access": 48, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 4, + "override": "cn" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lck;)V": { + "access": 4, + "override": "cn" + } + } + }, + "kb$8": { + "name": "kb$8", + "access": 48, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 4, + "override": "cn" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lck;)V": { + "access": 4, + "override": "cn" + } + } + }, + "kb$5": { + "name": "kb$5", + "access": 48, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 4, + "override": "cn" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lck;)V": { + "access": 4, + "override": "cn" + } + } + }, + "kb$6": { + "name": "kb$6", + "access": 48, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 4, + "override": "cn" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "sn$1": { + "name": "sn$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpr;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Lsn;)V": { + "access": 0 + }, + "a (Lpr;)Z": { + "access": 1 + } + } + }, + "ez$a": { + "name": "ez$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer", + "com/google/gson/JsonSerializer" + ], + "methods": { + "serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lez;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;" + }, + "override": "com/google/gson/JsonSerializer" + }, + "a (Lez;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lez;" + }, + "override": "com/google/gson/JsonDeserializer" + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lez;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + } + } + }, + "kb$9": { + "name": "kb$9", + "access": 48, + "superName": "ka", + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Ladm;Lcz;)Lwv;": { + "access": 4, + "override": "ka" + } + } + }, + "bfr$2": { + "name": "bfr$2", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ez$1": { + "name": "ez$1", + "access": 48, + "superName": "ez", + "methods": { + "e ()Z": { + "access": 1, + "override": "ez" + }, + "m ()Lez;": { + "access": 1, + "override": "ez" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "c (Ljava/lang/Boolean;)Lez;": { + "access": 1, + "override": "ez" + }, + "e (Ljava/lang/Boolean;)Lez;": { + "access": 1, + "override": "ez" + }, + "a (Ljava/lang/Boolean;)Lez;": { + "access": 1, + "override": "ez" + }, + "j ()Ljava/lang/String;": { + "access": 1, + "override": "ez" + }, + "d ()Z": { + "access": 1, + "override": "ez" + }, + "b ()Z": { + "access": 1, + "override": "ez" + }, + "h ()Let;": { + "access": 1, + "override": "ez" + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ez" + }, + "f ()Z": { + "access": 1, + "override": "ez" + }, + "a (Lez;)Lez;": { + "access": 1, + "override": "ez" + }, + "a (La;)Lez;": { + "access": 1, + "override": "ez" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Let;)Lez;": { + "access": 1, + "override": "ez" + }, + "b (Ljava/lang/Boolean;)Lez;": { + "access": 1, + "override": "ez" + }, + "d (Ljava/lang/Boolean;)Lez;": { + "access": 1, + "override": "ez" + }, + "a ()La;": { + "access": 1, + "override": "ez" + }, + "a (Lew;)Lez;": { + "access": 1, + "override": "ez" + }, + "n ()Lez;": { + "access": 1, + "override": "ez" + }, + "c ()Z": { + "access": 1, + "override": "ez" + }, + "i ()Lew;": { + "access": 1, + "override": "ez" + } + } + }, + "bfr$1": { + "name": "bfr$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lbfr;DDD)V": { + "access": 0 + } + } + }, + "c$2": { + "name": "c$2", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (I)V": { + "access": 0 + } + } + }, + "c$1": { + "name": "c$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (ILafh;)V": { + "access": 0 + } + } + }, + "c$3": { + "name": "c$3", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lcj;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "c$6": { + "name": "c$6", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lalz;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "c$7": { + "name": "c$7", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lcj;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "agf$a": { + "name": "agf$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Larn;)V": { + "access": 2 + }, + "d ()Larn;": { + "access": 1 + }, + "valueOf (Ljava/lang/String;)Lagf$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "values ()[Lagf$a;": { + "access": 9 + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "a (I)Lagf$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Larn;)V": { + "access": 2 + }, + "a ()I": { + "access": 1 + } + } + }, + "we$a": { + "name": "we$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "pu" + ], + "methods": { + "\u003cinit\u003e (Lwe;ZZ)V": { + "access": 2 + }, + "\u003cinit\u003e (Lwe;ZZLwe$1;)V": { + "access": 4096 + } + } + }, + "bdp$a": { + "name": "bdp$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "aaa": { + "name": "aaa", + "access": 33, + "superName": "yo", + "methods": { + "e_ (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "a (I)I": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (Lahs;)V": { + "access": 1 + }, + "a (Lzx;I)I": { + "access": 1, + "override": "zw" + } + } + }, + "aac": { + "name": "aac", + "access": 33, + "superName": "zw", + "methods": { + "e (Lzx;)Laba;": { + "access": 1, + "override": "zw" + }, + "d (Lzx;)I": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "aab": { + "name": "aab", + "access": 33, + "superName": "yy", + "methods": { + "a (Lzx;Ladm;Lpk;IZ)V": { + "access": 1, + "override": "zw" + }, + "a (ILadm;)Latg;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (Ladm;Lpk;Latg;)V": { + "access": 1 + }, + "a (Lzx;Lwn;Ljava/util/List;Z)V": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Ladm;)Latg;": { + "access": 1 + }, + "c (Lzx;Ladm;Lwn;)Lff;": { + "access": 1, + "override": "yy" + }, + "d (Lzx;Ladm;Lwn;)V": { + "access": 1, + "override": "zw" + } + } + }, + "aae": { + "name": "aae", + "access": 33, + "superName": "yo", + "methods": { + "\u003cinit\u003e (Lafh;Lafh;Lcom/google/common/base/Function;)V": { + "access": 1 + }, + "e_ (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (Lafh;Lafh;[Ljava/lang/String;)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "zw" + } + } + }, + "aad": { + "name": "aad", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Laad;)Lva$a;": { + "access": 4104 + }, + "\u003cinit\u003e (Lva$a;)V": { + "access": 1 + } + } + }, + "aag": { + "name": "aag", + "access": 33, + "superName": "za", + "methods": { + "a (Lzx;Lafh;)F": { + "access": 1, + "override": "zw" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lzw$a;)V": { + "access": 4 + }, + "b (Lafh;)Z": { + "access": 1, + "override": "zw" + } + } + }, + "aaf": { + "name": "aaf", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Lpr;)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "aai": { + "name": "aai", + "access": 33, + "superName": "zw", + "methods": { + "e (Lzx;)Laba;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "h (Lzx;)Ljava/util/List;": { + "access": 1 + }, + "g (I)I": { + "access": 1 + }, + "d (Lzx;)I": { + "access": 1, + "override": "zw" + }, + "h (I)Z": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "zw" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f (I)Z": { + "access": 9 + }, + "b (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lwn;Ljava/util/List;Z)V": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + }, + "f (Lzx;)Z": { + "access": 1, + "override": "zw" + }, + "e (I)Ljava/util/List;": { + "access": 1 + }, + "a (Lzx;I)I": { + "access": 1, + "override": "zw" + } + } + }, + "aah": { + "name": "aah", + "access": 33, + "superName": "yo", + "methods": { + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "zw" + } + } + }, + "aak": { + "name": "aak", + "access": 33, + "superName": "zw", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 4 + }, + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "g (Lzx;)Laaj;": { + "access": 1, + "override": "zw" + }, + "b (Ljava/lang/String;)Laak;": { + "access": 9 + }, + "a (Lzx;Lwn;Ljava/util/List;Z)V": { + "access": 1, + "override": "zw" + }, + "g ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "aaj": { + "name": "aaj", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILa;Ljava/lang/String;)V": { + "access": 2 + }, + "values ()[Laaj;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Laaj;": { + "access": 9 + } + } + }, + "aam": { + "name": "aam", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Lpr;)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzx;Lpr;Lpr;)Z": { + "access": 1, + "override": "zw" + } + } + }, + "aal": { + "name": "aal", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "aao": { + "name": "aao", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (Lafh;Lafh;)V": { + "access": 1 + } + } + }, + "dw$1": { + "name": "dw$1", + "access": 48, + "superName": "dw", + "methods": { + "a (J)V": { + "access": 1, + "override": "dw" + }, + "\u003cinit\u003e (J)V": { + "access": 0 + } + } + }, + "aan": { + "name": "aan", + "access": 33, + "superName": "zs", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (IFLafh;Lafh;)V": { + "access": 1 + } + } + }, + "aaq": { + "name": "aaq", + "access": 33, + "superName": "za", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lzw$a;)V": { + "access": 1 + }, + "b (Lafh;)Z": { + "access": 1, + "override": "zw" + } + } + }, + "aap": { + "name": "aap", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lafh;)F": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzx;Ladm;Lafh;Lcj;Lpr;)Z": { + "access": 1, + "override": "zw" + }, + "b (Lafh;)Z": { + "access": 1, + "override": "zw" + } + } + }, + "aas": { + "name": "aas", + "access": 33, + "superName": "zw", + "methods": { + "f (Lzx;)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "aar": { + "name": "aar", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "aau": { + "name": "aau", + "access": 33, + "superName": "yo", + "methods": { + "e_ (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "a (I)I": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (Lafh;Lahh;Lahh;)V": { + "access": 1 + }, + "a (Ladm;Lcj;Lcq;Lwn;Lzx;)Z": { + "access": 1, + "override": "yo" + }, + "a (Lzx;Ladm;Lcj;Ljava/lang/Object;)Z": { + "access": 2 + } + } + }, + "aat": { + "name": "aat", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "e_ (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "zw" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (I)I": { + "access": 1, + "override": "zw" + }, + "a (Ldn;)Z": { + "access": 1, + "override": "zw" + } + } + }, + "aaw": { + "name": "aaw", + "access": 33, + "superName": "zw", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "aav": { + "name": "aav", + "access": 33, + "superName": "yo", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "zw" + } + } + }, + "aay": { + "name": "aay", + "access": 33, + "superName": "zw", + "methods": { + "e (Lzx;)Laba;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lzx;)Z": { + "access": 1, + "override": "zw" + }, + "h ()Ljava/lang/String;": { + "access": 1 + }, + "d (Lzx;)I": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Ladm;Lafh;Lcj;Lpr;)Z": { + "access": 1, + "override": "zw" + }, + "b (Lafh;)Z": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lpr;Lpr;)Z": { + "access": 1, + "override": "zw" + }, + "i ()Lcom/google/common/collect/Multimap;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lafh;)F": { + "access": 1, + "override": "zw" + }, + "g ()F": { + "access": 1 + }, + "\u003cinit\u003e (Lzw$a;)V": { + "access": 1 + }, + "w_ ()Z": { + "access": 1, + "override": "zw" + }, + "b ()I": { + "access": 1, + "override": "zw" + } + } + }, + "aax": { + "name": "aax", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;IDDD)Lpk;": { + "access": 9 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "zw" + }, + "a (Lzx;I)I": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "aqt$1": { + "name": "aqt$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "aaz": { + "name": "aaz", + "access": 33, + "superName": "yo", + "methods": { + "e_ (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "a ([Ljava/lang/String;)Laaz;": { + "access": 1 + }, + "\u003cinit\u003e (Lafh;Z)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "zw" + }, + "a (Lzx;I)I": { + "access": 1, + "override": "zw" + } + } + }, + "abb": { + "name": "abb", + "access": 33, + "superName": "aaz", + "methods": { + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;I)I": { + "access": 1, + "override": "zw" + } + } + }, + "aba": { + "name": "aba", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Laba;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Laba;": { + "access": 9 + } + } + }, + "c$a": { + "name": "c$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/Object;)V": { + "access": 1 + } + } + }, + "abd": { + "name": "abd", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lwn;)V": { + "access": 2 + }, + "f (Lzx;)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)Z": { + "access": 9 + }, + "a (Lzx;Lwn;Ljava/util/List;Z)V": { + "access": 1, + "override": "zw" + }, + "h (Lzx;)I": { + "access": 9 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "yz$11": { + "name": "yz$11", + "access": 48, + "superName": "yz", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 0 + }, + "e ()Lzw;": { + "access": 1, + "override": "yz" + } + } + }, + "abc": { + "name": "abc", + "access": 33, + "superName": "zw", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)Z": { + "access": 9 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "yz$10": { + "name": "yz$10", + "access": 48, + "superName": "yz", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 0 + }, + "e ()Lzw;": { + "access": 1, + "override": "yz" + } + } + }, + "abe": { + "name": "abe", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;III)I": { + "access": 10 + }, + "c (I)Ljava/lang/String;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "d (II)I": { + "access": 10 + }, + "b (IZ)Ljava/util/List;": { + "access": 9 + }, + "a (ILjava/lang/String;)I": { + "access": 9 + }, + "c (II)I": { + "access": 10 + }, + "a (ZZZIIII)I": { + "access": 10 + }, + "a (IIIIII)I": { + "access": 9 + }, + "a (IIZZZ)I": { + "access": 10 + }, + "a (II)Z": { + "access": 9 + }, + "a (IZ)I": { + "access": 9 + }, + "h (I)I": { + "access": 10 + }, + "a (Ljava/util/Collection;)I": { + "access": 9 + }, + "a (I)I": { + "access": 9 + }, + "b (Ljava/util/Collection;)Z": { + "access": 9 + } + } + }, + "yz$12": { + "name": "yz$12", + "access": 48, + "superName": "yz", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 0 + }, + "e ()Lzw;": { + "access": 1, + "override": "yz" + } + } + }, + "net/minecraftforge/fml/relauncher/SideOnly": { + "name": "net/minecraftforge/fml/relauncher/SideOnly", + "access": 9729, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/annotation/Annotation" + ], + "methods": { + "value ()Lnet/minecraftforge/fml/relauncher/Side;": { + "access": 1025 + } + } + }, + "abh": { + "name": "abh", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "abs" + ], + "methods": { + "a (Lxp;)Lzx;": { + "access": 1, + "override": "abs" + }, + "b ()Lzx;": { + "access": 1, + "override": "abs" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lxp;Ladm;)Z": { + "access": 1, + "override": "abs" + }, + "a ()I": { + "access": 1, + "override": "abs" + }, + "b (Lxp;)[Lzx;": { + "access": 1, + "override": "abs" + } + } + }, + "bnm$3": { + "name": "bnm$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/util/concurrent/FutureCallback" + ], + "methods": { + "onSuccess (Ljava/lang/Object;)V": { + "access": 1, + "override": "com/google/common/util/concurrent/FutureCallback" + }, + "onFailure (Ljava/lang/Throwable;)V": { + "access": 1, + "override": "com/google/common/util/concurrent/FutureCallback" + }, + "\u003cinit\u003e (Lbnm;Ljava/io/File;Lcom/google/common/util/concurrent/SettableFuture;)V": { + "access": 0 + } + } + }, + "abj": { + "name": "abj", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Labt;)V": { + "access": 0 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "abi": { + "name": "abi", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Labt;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "abl": { + "name": "abl", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Labt;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "abk": { + "name": "abk", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "abs" + ], + "methods": { + "a (Lxp;)Lzx;": { + "access": 1, + "override": "abs" + }, + "b ()Lzx;": { + "access": 1, + "override": "abs" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lxp;Ladm;)Z": { + "access": 1, + "override": "abs" + }, + "a ()I": { + "access": 1, + "override": "abs" + }, + "b (Lxp;)[Lzx;": { + "access": 1, + "override": "abs" + } + } + }, + "abn": { + "name": "abn", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Labt;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "abm": { + "name": "abm", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "abs" + ], + "methods": { + "a (Lxp;)Lzx;": { + "access": 1, + "override": "abs" + }, + "b ()Lzx;": { + "access": 1, + "override": "abs" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lxp;Ladm;)Z": { + "access": 1, + "override": "abs" + }, + "a ()I": { + "access": 1, + "override": "abs" + }, + "b (Lxp;)[Lzx;": { + "access": 1, + "override": "abs" + } + } + }, + "abp": { + "name": "abp", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "abs" + ], + "methods": { + "a (Lxp;)Lzx;": { + "access": 1, + "override": "abs" + }, + "b ()Lzx;": { + "access": 1, + "override": "abs" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lxp;Ladm;)Z": { + "access": 1, + "override": "abs" + }, + "a ()I": { + "access": 1, + "override": "abs" + }, + "b (Lxp;)[Lzx;": { + "access": 1, + "override": "abs" + } + } + }, + "abo": { + "name": "abo", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lzx;Lzx;)Z": { + "access": 2 + }, + "a (Lzw;Lzx;F)V": { + "access": 1 + }, + "a (Lzx;Lzx;F)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lafh;Lzx;F)V": { + "access": 1 + }, + "b ()Ljava/util/Map;": { + "access": 1 + }, + "b (Lzx;)F": { + "access": 1 + }, + "a ()Labo;": { + "access": 9 + }, + "a (Lzx;)Lzx;": { + "access": 1 + } + } + }, + "abr": { + "name": "abr", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Labt;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "abq": { + "name": "abq", + "access": 33, + "superName": "abv", + "methods": { + "a (Lxp;)Lzx;": { + "access": 1, + "override": "abs" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lxp;Ladm;)Z": { + "access": 1, + "override": "abs" + } + } + }, + "abt": { + "name": "abt", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Lxp;Ladm;)[Lzx;": { + "access": 1 + }, + "a (Labs;)V": { + "access": 1 + }, + "a (Lxp;Ladm;)Lzx;": { + "access": 1 + }, + "a ()Labt;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/util/List;": { + "access": 1 + }, + "b (Lzx;[Ljava/lang/Object;)V": { + "access": 129 + }, + "a (Lzx;[Ljava/lang/Object;)Labv;": { + "access": 129 + } + } + }, + "abs": { + "name": "abs", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lxp;)Lzx;": { + "access": 1025 + }, + "b ()Lzx;": { + "access": 1025 + }, + "a (Lxp;Ladm;)Z": { + "access": 1025 + }, + "a ()I": { + "access": 1025 + }, + "b (Lxp;)[Lzx;": { + "access": 1025 + } + } + }, + "pz$a": { + "name": "pz$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Z)V": { + "access": 1 + }, + "a (Lpz$a;Z)Z": { + "access": 4104 + }, + "a (Ljava/lang/Object;)V": { + "access": 1 + }, + "b ()Ljava/lang/Object;": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "\u003cinit\u003e (IILjava/lang/Object;)V": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "abv": { + "name": "abv", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "abs" + ], + "methods": { + "a (Lxp;)Lzx;": { + "access": 1, + "override": "abs" + }, + "b ()Lzx;": { + "access": 1, + "override": "abs" + }, + "a (Lxp;IIZ)Z": { + "access": 2 + }, + "a (Lxp;Ladm;)Z": { + "access": 1, + "override": "abs" + }, + "\u003cinit\u003e (II[Lzx;Lzx;)V": { + "access": 1 + }, + "b (Lxp;)[Lzx;": { + "access": 1, + "override": "abs" + }, + "a ()I": { + "access": 1, + "override": "abs" + } + } + }, + "abu": { + "name": "abu", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "abs" + ], + "methods": { + "a (Lxp;)Lzx;": { + "access": 1, + "override": "abs" + }, + "b ()Lzx;": { + "access": 1, + "override": "abs" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lxp;Ladm;)Z": { + "access": 1, + "override": "abs" + }, + "a ()I": { + "access": 1, + "override": "abs" + }, + "b (Lxp;)[Lzx;": { + "access": 1, + "override": "abs" + } + } + }, + "aih$a": { + "name": "aih$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Larn;)V": { + "access": 2 + }, + "c ()Larn;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "values ()[Laih$a;": { + "access": 9 + }, + "a (I)Laih$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Laih$a;": { + "access": 9 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "bnm$1": { + "name": "bnm$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/io/FileFilter" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "accept (Ljava/io/File;)Z": { + "access": 1, + "override": "java/io/FileFilter" + } + } + }, + "abx": { + "name": "abx", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Labt;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bnm$2": { + "name": "bnm$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Lbnm;Lave;Laxr;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "abw": { + "name": "abw", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "abs" + ], + "methods": { + "a (Lxp;)Lzx;": { + "access": 1, + "override": "abs" + }, + "b ()Lzx;": { + "access": 1, + "override": "abs" + }, + "\u003cinit\u003e (Lzx;Ljava/util/List;)V": { + "access": 1 + }, + "a (Lxp;Ladm;)Z": { + "access": 1, + "override": "abs" + }, + "b (Lxp;)[Lzx;": { + "access": 1, + "override": "abs" + }, + "a ()I": { + "access": 1, + "override": "abs" + } + } + }, + "abz": { + "name": "abz", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Labt;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "aby": { + "name": "aby", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Labt;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bfr$a": { + "name": "bfr$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbfr;Lbht;Lcq;ILbfr$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e (Lbfr;Lbht;Lcq;I)V": { + "access": 2 + } + } + }, + "acc": { + "name": "acc", + "access": 33, + "superName": "aci", + "methods": { + "\u003cinit\u003e (ILjy;I)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "acb": { + "name": "acb", + "access": 33, + "superName": "aci", + "methods": { + "\u003cinit\u003e (ILjy;I)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "ace": { + "name": "ace", + "access": 33, + "superName": "aci", + "methods": { + "\u003cinit\u003e (ILjy;I)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "acd": { + "name": "acd", + "access": 33, + "superName": "aci", + "methods": { + "\u003cinit\u003e (ILjy;I)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "zw$a": { + "name": "zw$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lzw$a;": { + "access": 9 + }, + "b ()F": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c ()F": { + "access": 1 + }, + "f ()Lzw;": { + "access": 1 + }, + "values ()[Lzw$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;IIIFFI)V": { + "access": 2 + }, + "d ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "acg": { + "name": "acg", + "access": 33, + "superName": "aci", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "aci" + }, + "\u003cinit\u003e (ILjy;I)V": { + "access": 4 + }, + "a (Lzx;ILjava/util/Random;)Z": { + "access": 9 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "acf": { + "name": "acf", + "access": 33, + "superName": "aci", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "aci" + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "aci" + }, + "a (Lpr;Lpk;I)V": { + "access": 1, + "override": "aci" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (ILjy;II)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "a (ILpw;)F": { + "access": 1, + "override": "aci" + }, + "a (Laci;)Z": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "aci": { + "name": "aci", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a (Lzx;)Z": { + "access": 1 + }, + "a (Lpr;Lpk;I)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c (I)Laci;": { + "access": 9 + }, + "a (ILpw;)F": { + "access": 1 + }, + "b (Lpr;Lpk;I)V": { + "access": 1 + }, + "c (Ljava/lang/String;)Laci;": { + "access": 1 + }, + "b (I)I": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "c ()Ljava/util/Set;": { + "access": 9 + }, + "\u003cinit\u003e (ILjy;ILacj;)V": { + "access": 4 + }, + "b (Ljava/lang/String;)Laci;": { + "access": 9 + }, + "d ()I": { + "access": 1 + }, + "a (I)I": { + "access": 1 + }, + "a (ILow;)I": { + "access": 1 + }, + "a (Laci;)Z": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "d (I)Ljava/lang/String;": { + "access": 1 + } + } + }, + "ach": { + "name": "ach", + "access": 33, + "superName": "aci", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "aci" + }, + "\u003cinit\u003e (ILjy;I)V": { + "access": 4 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "ahz$1": { + "name": "ahz$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ack": { + "name": "ack", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Lpr;Lpk;)V": { + "access": 9 + }, + "a (Lpr;Lpk;)V": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "e (Lpr;)Z": { + "access": 9 + }, + "a ([Lzx;Low;)I": { + "access": 9 + }, + "a (Ljava/util/Random;IILzx;)I": { + "access": 9 + }, + "a (Lpr;)I": { + "access": 9 + }, + "b (ILzx;)Ljava/util/Map;": { + "access": 9 + }, + "a (Ljava/util/Random;Lzx;I)Lzx;": { + "access": 9 + }, + "a (Lack$c;Lzx;)V": { + "access": 10 + }, + "i (Lpr;)I": { + "access": 9 + }, + "b (Lpk;)I": { + "access": 9 + }, + "a (Lpk;)I": { + "access": 9 + }, + "h (Lpr;)I": { + "access": 9 + }, + "a (ILzx;)I": { + "access": 9 + }, + "f (Lpr;)I": { + "access": 9 + }, + "g (Lpr;)I": { + "access": 9 + }, + "a (Lack$c;[Lzx;)V": { + "access": 10 + }, + "a (Laci;Lpr;)Lzx;": { + "access": 9 + }, + "a (Lzx;)Ljava/util/Map;": { + "access": 9 + }, + "a (Lzx;Lpw;)F": { + "access": 9 + }, + "j (Lpr;)Z": { + "access": 9 + }, + "a (Ljava/util/Map;Lzx;)V": { + "access": 9 + }, + "b (Lpr;)I": { + "access": 9 + }, + "b (Ljava/util/Random;Lzx;I)Ljava/util/List;": { + "access": 9 + }, + "c (Lpr;)I": { + "access": 9 + }, + "a (I[Lzx;)I": { + "access": 9 + } + } + }, + "acj": { + "name": "acj", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lacj;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lzw;)Z": { + "access": 1 + }, + "values ()[Lacj;": { + "access": 9 + } + } + }, + "acm": { + "name": "acm", + "access": 33, + "superName": "aci", + "methods": { + "\u003cinit\u003e (ILjy;I)V": { + "access": 4 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "acl": { + "name": "acl", + "access": 33, + "superName": "oa$a", + "methods": { + "\u003cinit\u003e (Laci;I)V": { + "access": 1 + } + } + }, + "aco": { + "name": "aco", + "access": 33, + "superName": "aci", + "methods": { + "\u003cinit\u003e (ILjy;I)V": { + "access": 4 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "acn": { + "name": "acn", + "access": 33, + "superName": "aci", + "methods": { + "\u003cinit\u003e (ILjy;ILacj;)V": { + "access": 4 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "acq": { + "name": "acq", + "access": 33, + "superName": "aci", + "methods": { + "\u003cinit\u003e (ILjy;I)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "acp": { + "name": "acp", + "access": 33, + "superName": "aci", + "methods": { + "\u003cinit\u003e (ILjy;ILacj;)V": { + "access": 4 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "a (Laci;)Z": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "aqg$1": { + "name": "aqg$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "acs": { + "name": "acs", + "access": 33, + "superName": "aci", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "aci" + }, + "\u003cinit\u003e (ILjy;I)V": { + "access": 1 + }, + "a (ILjava/util/Random;)Z": { + "access": 9 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "b (Lpr;Lpk;I)V": { + "access": 1, + "override": "aci" + }, + "b (ILjava/util/Random;)I": { + "access": 9 + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "acr": { + "name": "acr", + "access": 33, + "superName": "aci", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "override": "aci" + }, + "a (Lpk;I)I": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (ILjy;II)V": { + "access": 1 + }, + "a (Lpk;D)D": { + "access": 9 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "a (ILow;)I": { + "access": 1, + "override": "aci" + }, + "a (Laci;)Z": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "acu": { + "name": "acu", + "access": 33, + "superName": "aci", + "methods": { + "\u003cinit\u003e (ILjy;I)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "act": { + "name": "act", + "access": 33, + "superName": "aci", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "aci" + }, + "\u003cinit\u003e (ILjy;I)V": { + "access": 4 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "a (Laci;)Z": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "acv": { + "name": "acv", + "access": 33, + "superName": "aci", + "methods": { + "\u003cinit\u003e (ILjy;I)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "aci" + }, + "b (I)I": { + "access": 1, + "override": "aci" + }, + "b ()I": { + "access": 1, + "override": "aci" + } + } + }, + "acy": { + "name": "acy", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a_ (Lzx;)V": { + "access": 1025 + }, + "a_ (Lwn;)V": { + "access": 1025 + }, + "a (Lada;)V": { + "access": 1025 + }, + "b_ (Lwn;)Lada;": { + "access": 1025 + }, + "f_ ()Leu;": { + "access": 1025 + }, + "a (Lacz;)V": { + "access": 1025 + }, + "v_ ()Lwn;": { + "access": 1025 + } + } + }, + "acz": { + "name": "acz", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "f ()I": { + "access": 1 + }, + "g ()V": { + "access": 1 + }, + "j ()Z": { + "access": 1 + }, + "i ()V": { + "access": 1 + }, + "h ()Z": { + "access": 1 + }, + "d ()Lzx;": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lzx;Lzx;Lzx;II)V": { + "access": 1 + }, + "\u003cinit\u003e (Lzx;Lzw;)V": { + "access": 1 + }, + "a ()Lzx;": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "b ()Lzx;": { + "access": 1 + }, + "\u003cinit\u003e (Lzx;Lzx;)V": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "\u003cinit\u003e (Ldn;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lzx;Lzx;Lzx;)V": { + "access": 1 + }, + "k ()Ldn;": { + "access": 1 + }, + "c ()Z": { + "access": 1 + } + } + }, + "afg$a": { + "name": "afg$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "valueOf (Ljava/lang/String;)Lafg$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "values ()[Lafg$a;": { + "access": 9 + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + } + } + }, + "ada": { + "name": "ada", + "access": 33, + "superName": "java/util/ArrayList", + "methods": { + "a (Lzx;Lzx;)Z": { + "access": 2 + }, + "a (Lzx;Lzx;I)Lacz;": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ldn;)V": { + "access": 1 + }, + "a ()Ldn;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Lem;)Lada;": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ldn;)V": { + "access": 1 + } + } + }, + "add": { + "name": "add", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "b (I)Z": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Lcj;": { + "access": 1025 + }, + "b (Ldn;)V": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1 + }, + "a (Ladm;)Lpk;": { + "access": 1 + }, + "a (I)V": { + "access": 1025 + }, + "f ()Ljava/lang/String;": { + "access": 2 + }, + "a (Ladd$a;)V": { + "access": 1 + }, + "h ()V": { + "access": 2 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "e ()D": { + "access": 1 + }, + "d ()D": { + "access": 1 + }, + "g ()Z": { + "access": 2 + }, + "c ()V": { + "access": 1 + }, + "i ()Ladd$a;": { + "access": 2 + }, + "a (Lpk;Z)Lpk;": { + "access": 2 + }, + "a ()Ladm;": { + "access": 1025 + } + } + }, + "adc": { + "name": "adc", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "m" + ], + "methods": { + "a (ILjava/lang/String;)Z": { + "access": 1, + "override": "m" + }, + "a (Z)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;)V": { + "access": 1 + }, + "f_ ()Leu;": { + "access": 1, + "override": "m" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ljava/lang/String;)V": { + "access": 1 + }, + "l ()Ljava/lang/String;": { + "access": 1 + }, + "i ()I": { + "access": 1025 + }, + "b (Ldn;)V": { + "access": 1 + }, + "m ()Z": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1 + }, + "a (Ln$a;I)V": { + "access": 1, + "override": "m" + }, + "a (Lio/netty/buffer/ByteBuf;)V": { + "access": 1025 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + }, + "a (Lwn;)Z": { + "access": 1 + }, + "b (Leu;)V": { + "access": 1 + }, + "u_ ()Z": { + "access": 1, + "override": "m" + }, + "h ()V": { + "access": 1025 + }, + "j ()I": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "n ()Ln;": { + "access": 1 + }, + "a (Leu;)V": { + "access": 1, + "override": "m" + }, + "k ()Leu;": { + "access": 1 + } + } + }, + "adf": { + "name": "adf", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Ladf;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "valueOf (Ljava/lang/String;)Ladf;": { + "access": 9 + } + } + }, + "ade": { + "name": "ade", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Lcj;Lafh;II)V": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "d ()Lafh;": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "adg": { + "name": "adg", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "f ()I": { + "access": 1 + }, + "a (II)J": { + "access": 9 + }, + "c ()I": { + "access": 1 + }, + "a (III)Lcj;": { + "access": 1 + }, + "\u003cinit\u003e (II)V": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "a ()I": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "a (I)Lcj;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "d ()I": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "adj": { + "name": "adj", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ([I)V": { + "access": 9 + }, + "a (DD)I": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c ()I": { + "access": 9 + }, + "b ()I": { + "access": 9 + }, + "a ()I": { + "access": 9 + } + } + }, + "adi": { + "name": "adi", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "e ()Ljava/util/List;": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lpk;DDDFLjava/util/List;)V": { + "access": 1 + }, + "b ()Ljava/util/Map;": { + "access": 1 + }, + "c ()Lpr;": { + "access": 1 + }, + "d ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lpk;DDDFZZLjava/util/List;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lpk;DDDFZZ)V": { + "access": 1 + } + } + }, + "adl": { + "name": "adl", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ([I)V": { + "access": 9 + }, + "a (DD)I": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "zw$8": { + "name": "zw$8", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "adk": { + "name": "adk", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;Ladk$b;)Z": { + "access": 1 + }, + "b (Ljava/lang/String;)Z": { + "access": 1 + }, + "a ()Ldn;": { + "access": 1 + }, + "b ()[Ljava/lang/String;": { + "access": 1 + }, + "e (Ljava/lang/String;)Z": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)Ljava/lang/String;": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/String;Ladk$b;)V": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1 + }, + "c (Ljava/lang/String;)I": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "zw$7": { + "name": "zw$7", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "adn": { + "name": "adn", + "access": 33, + "superName": "java/lang/Exception", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "adm": { + "name": "adm", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "adq" + ], + "methods": { + "a (IIZ)Z": { + "access": 4 + }, + "b (Lcj;Lafh;)V": { + "access": 1 + }, + "a (ZZ)V": { + "access": 1 + }, + "a (Lwn;Lcj;Lcq;)Z": { + "access": 1 + }, + "a (III)Ljava/util/Random;": { + "access": 1 + }, + "d (I)V": { + "access": 1 + }, + "ab ()I": { + "access": 1 + }, + "r (Lcj;)Lcj;": { + "access": 1 + }, + "e (F)Laui;": { + "access": 1 + }, + "a (Ljava/lang/Class;Laug;Lcom/google/common/base/Predicate;)Ljava/util/List;": { + "access": 1 + }, + "a (Laug;Larm;)Z": { + "access": 1 + }, + "g (Lpk;)V": { + "access": 1 + }, + "K ()J": { + "access": 1 + }, + "a (Ljava/lang/Class;)I": { + "access": 1 + }, + "d ()V": { + "access": 1 + }, + "i (Lcj;)Z": { + "access": 1 + }, + "a (IIII)V": { + "access": 1 + }, + "b (Ljava/lang/String;)I": { + "access": 1 + }, + "a (Lcj;Z)Z": { + "access": 1 + }, + "R ()Z": { + "access": 1 + }, + "a (Lamy;Z)Ljava/util/List;": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "a (Ljava/lang/Class;Ljava/lang/String;)Late;": { + "access": 1 + }, + "b (Lpk;Laug;)Ljava/util/List;": { + "access": 1 + }, + "v (Lcj;)Z": { + "access": 1 + }, + "a (Lpk;DDDFZZ)Ladi;": { + "access": 1 + }, + "c (Lcj;Lafh;II)V": { + "access": 1 + }, + "D ()V": { + "access": 4 + }, + "V ()I": { + "access": 1 + }, + "b (II)I": { + "access": 1 + }, + "b ()Ladm;": { + "access": 1 + }, + "v ()Laec;": { + "access": 1 + }, + "a (DDDLjava/lang/String;FF)V": { + "access": 1 + }, + "a (F)I": { + "access": 1 + }, + "y (Lcj;)I": { + "access": 1 + }, + "j (F)F": { + "access": 1 + }, + "a (Lpk;F)Laui;": { + "access": 1 + }, + "a (Ljava/lang/Class;Laug;)Ljava/util/List;": { + "access": 1 + }, + "n (Lcj;)V": { + "access": 1 + }, + "h ()V": { + "access": 4 + }, + "a (Lcj;Ljava/lang/String;)V": { + "access": 1 + }, + "d (Lpk;)Z": { + "access": 1 + }, + "c (Lcj;Z)I": { + "access": 1 + }, + "a (Lcj;Lcj;Z)Z": { + "access": 1 + }, + "b (DDDD)Z": { + "access": 1 + }, + "o (Lcj;)F": { + "access": 1 + }, + "d (Lcj;Lafh;)V": { + "access": 1 + }, + "N ()Lamv;": { + "access": 1 + }, + "a (Laui;Laui;ZZZ)Lauh;": { + "access": 1 + }, + "e (Lcj;Z)Z": { + "access": 1 + }, + "d (Lcj;)Z": { + "access": 1, + "override": "adq" + }, + "S ()Z": { + "access": 1 + }, + "m (Lcj;)Lcj;": { + "access": 1 + }, + "b (Lads;Lcj;)I": { + "access": 1 + }, + "E ()Ljava/util/List;": { + "access": 1 + }, + "a (Laui;Laui;)Lauh;": { + "access": 1 + }, + "a (Ljava/lang/Class;Lcom/google/common/base/Predicate;)Ljava/util/List;": { + "access": 1 + }, + "e (Lpk;)V": { + "access": 1 + }, + "b (Lcj;)Lady;": { + "access": 1, + "override": "adq" + }, + "A ()Ljava/lang/String;": { + "access": 1 + }, + "a (Lakw;)Z": { + "access": 1 + }, + "a (Laui;Laug;)F": { + "access": 1 + }, + "z (Lcj;)Z": { + "access": 1 + }, + "a (Laqe;)Z": { + "access": 1 + }, + "c (Ljava/util/Collection;)V": { + "access": 1 + }, + "F (Lcj;)Z": { + "access": 2 + }, + "f (Lcj;Z)Z": { + "access": 1 + }, + "J ()J": { + "access": 1 + }, + "M ()Lcj;": { + "access": 1 + }, + "a (Lams;Lpk;)Z": { + "access": 1 + }, + "a (IIIIIIZ)Z": { + "access": 2 + }, + "a (Lado;)V": { + "access": 1 + }, + "c (F)F": { + "access": 1 + }, + "a (Lcj;)Z": { + "access": 2 + }, + "a (Lcj;Lafh;)Z": { + "access": 1 + }, + "t (Lcj;)V": { + "access": 1 + }, + "a (Lcy;ZDDDDDD[I)V": { + "access": 129 + }, + "a (Ljava/util/Collection;)V": { + "access": 1 + }, + "b (F)F": { + "access": 1 + }, + "a (Lcj;Lafh;II)V": { + "access": 1 + }, + "e (Lcj;Lafh;)V": { + "access": 1 + }, + "w ()Z": { + "access": 1 + }, + "l (Lcj;)I": { + "access": 1 + }, + "a (IILamy;)V": { + "access": 4 + }, + "b (Lpk;)V": { + "access": 4 + }, + "a (ILcj;I)V": { + "access": 1 + }, + "q (Lcj;)Lcj;": { + "access": 1 + }, + "a (Ljava/lang/Class;Laug;Lpk;)Lpk;": { + "access": 1 + }, + "C (Lcj;)Z": { + "access": 1 + }, + "E (Lcj;)Lok;": { + "access": 1 + }, + "c (Laug;)Z": { + "access": 1 + }, + "a (Ladp;)V": { + "access": 1 + }, + "b (Ljava/util/Collection;)V": { + "access": 1 + }, + "a (Lads;Lcj;)I": { + "access": 1 + }, + "h (F)F": { + "access": 1 + }, + "b (Laqe;Z)Z": { + "access": 1 + }, + "a (Lcj;Lalz;)Z": { + "access": 1 + }, + "a (Lcj;Lafh;Lcq;)V": { + "access": 1 + }, + "i ()V": { + "access": 1 + }, + "W ()Z": { + "access": 1, + "override": "adq" + }, + "ad ()Z": { + "access": 1 + }, + "a (DDDD)Lwn;": { + "access": 1 + }, + "P ()Lato;": { + "access": 1 + }, + "a (Lafh;Lcj;Ljava/util/Random;)V": { + "access": 1 + }, + "w (Lcj;)Z": { + "access": 1 + }, + "a (Lcj;IZ)Z": { + "access": 1 + }, + "a (Lwn;ILcj;I)V": { + "access": 1 + }, + "b (Laug;)Z": { + "access": 1 + }, + "a (DDDDDDLdn;)V": { + "access": 1 + }, + "b (Lcj;Z)Z": { + "access": 1 + }, + "u (Lcj;)Z": { + "access": 1 + }, + "I ()V": { + "access": 1, + "exceptions": [ + "adn" + ] + }, + "c (I)V": { + "access": 1 + }, + "c (Lcj;Lcq;)I": { + "access": 1 + }, + "G ()Ladr;": { + "access": 1, + "override": "adq" + }, + "a (J)V": { + "access": 1 + }, + "z ()Ljava/lang/String;": { + "access": 1 + }, + "a (Lcj;Lakw;)V": { + "access": 1 + }, + "a (Lpk;Ljava/lang/String;FF)V": { + "access": 1 + }, + "a (Ladq;Lcj;)Z": { + "access": 9 + }, + "b (Lcj;I)I": { + "access": 1, + "override": "adq" + }, + "b (Lcj;Lcq;)Z": { + "access": 1 + }, + "D (Lcj;)Z": { + "access": 1 + }, + "B ()V": { + "access": 1 + }, + "a (Lads;Lcj;I)V": { + "access": 1 + }, + "\u003cinit\u003e (Latp;Lato;Lanm;Lnt;Z)V": { + "access": 4 + }, + "b (Ljava/util/UUID;)Lwn;": { + "access": 1 + }, + "f (Lcj;)Lamy;": { + "access": 1 + }, + "a (Lb;)Lc;": { + "access": 1 + }, + "a (Lpk;Laug;)Ljava/util/List;": { + "access": 1 + }, + "c (Lpk;)Z": { + "access": 1 + }, + "b (ILcj;I)V": { + "access": 1 + }, + "a (I)Lpk;": { + "access": 1 + }, + "x (Lcj;)Z": { + "access": 1 + }, + "a (Z)Z": { + "access": 1 + }, + "i (F)V": { + "access": 1 + }, + "s (Lcj;)Lakw;": { + "access": 1, + "override": "adq" + }, + "a (Lafh;Lcj;ZLcq;Lpk;Lzx;)Z": { + "access": 1 + }, + "f (F)Laui;": { + "access": 1 + }, + "ae ()Lth;": { + "access": 1 + }, + "g (Lcj;)Z": { + "access": 1 + }, + "a (Lpk;DDDFZ)Ladi;": { + "access": 1 + }, + "j (Lcj;)Z": { + "access": 1 + }, + "ac ()I": { + "access": 1 + }, + "c (II)Z": { + "access": 1 + }, + "a (Lwn;Ljava/lang/String;FF)V": { + "access": 1 + }, + "F ()I": { + "access": 1 + }, + "B (Lcj;)V": { + "access": 1 + }, + "h (Lpk;)V": { + "access": 1 + }, + "x ()I": { + "access": 1 + }, + "d (F)F": { + "access": 1 + }, + "g (F)F": { + "access": 1 + }, + "a (Laug;Lpk;)Z": { + "access": 1 + }, + "a (Lcj;Lcj;)Z": { + "access": 1 + }, + "c (ILcj;I)V": { + "access": 1 + }, + "d (Laug;)Z": { + "access": 1 + }, + "b (Lcj;Lcj;)V": { + "access": 1 + }, + "a (Lpk;B)V": { + "access": 1 + }, + "X ()D": { + "access": 1 + }, + "q ()I": { + "access": 1028 + }, + "a (Lpk;Z)V": { + "access": 1 + }, + "b (Lcj;Lafh;II)V": { + "access": 1 + }, + "Z ()Lauo;": { + "access": 1 + }, + "g ()V": { + "access": 1 + }, + "y ()F": { + "access": 1 + }, + "e (Laug;)Z": { + "access": 1 + }, + "a (Lpk;)V": { + "access": 4 + }, + "b (IIIIII)V": { + "access": 1 + }, + "k (Lcj;)I": { + "access": 1 + }, + "b (Ljava/lang/Class;Lcom/google/common/base/Predicate;)Ljava/util/List;": { + "access": 1 + }, + "H ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)Lwn;": { + "access": 1 + }, + "b (Laug;Larm;)Z": { + "access": 1 + }, + "U ()I": { + "access": 1 + }, + "c (Lads;Lcj;)Z": { + "access": 1 + }, + "A (Lcj;)I": { + "access": 1 + }, + "C ()V": { + "access": 4 + }, + "p (Lcj;)Lalz;": { + "access": 1, + "override": "adq" + }, + "L ()J": { + "access": 1 + }, + "T ()Laua;": { + "access": 1 + }, + "a (II)Lamy;": { + "access": 1 + }, + "a (Ljava/lang/String;Lcj;)Lcj;": { + "access": 1 + }, + "Q ()Ladk;": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "a (Lwn;Lcj;)Z": { + "access": 1 + }, + "c (Lcj;Lafh;)V": { + "access": 1 + }, + "a (Laqe;Z)Ljava/util/List;": { + "access": 1 + }, + "a (Lpk;Laug;Lcom/google/common/base/Predicate;)Ljava/util/List;": { + "access": 1 + }, + "a (IZDDDDDD[I)V": { + "access": 130 + }, + "a (Lcj;Lafh;I)V": { + "access": 1 + }, + "O ()Latp;": { + "access": 1 + }, + "a (Laug;)Ljava/util/List;": { + "access": 1 + }, + "c (Lcj;)Lafh;": { + "access": 1 + }, + "af ()Lams;": { + "access": 1 + }, + "b (Lado;)V": { + "access": 1 + }, + "e (Lcj;)Z": { + "access": 1 + }, + "a (Lcj;Lalz;I)Z": { + "access": 1 + }, + "a (DDDLjava/lang/String;FFZ)V": { + "access": 1 + }, + "a (Lcy;DDDDDD[I)V": { + "access": 129 + }, + "aa ()Loj;": { + "access": 1 + }, + "b (Lcj;Lakw;)V": { + "access": 1 + }, + "f (Lpk;)V": { + "access": 1 + }, + "a (Lcj;I)Z": { + "access": 1 + }, + "a (Laui;Laui;Z)Lauh;": { + "access": 1 + }, + "Y ()Ljava/util/Calendar;": { + "access": 1 + }, + "h (Lcj;)V": { + "access": 1 + }, + "b (Lakw;)V": { + "access": 1 + }, + "k ()Lamv;": { + "access": 1028 + }, + "a (Lpk;D)Lwn;": { + "access": 1 + }, + "a (Lcj;Lcq;)I": { + "access": 1, + "override": "adq" + }, + "k (F)V": { + "access": 1 + }, + "a (Lcj;Lads;)I": { + "access": 2 + }, + "a (Ljava/lang/String;Late;)V": { + "access": 1 + }, + "p ()V": { + "access": 4 + }, + "b (J)V": { + "access": 1 + }, + "a (Laug;Larm;Lpk;)Z": { + "access": 1 + }, + "d (Lcj;Z)Z": { + "access": 1 + } + } + }, + "zw$9": { + "name": "zw$9", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "adp": { + "name": "adp", + "access": 49, + "superName": "java/lang/Object", + "methods": { + "h ()Ladr;": { + "access": 1 + }, + "j ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (JLadp$a;ZZLadr;)V": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "a (I)Ladp$a;": { + "access": 9 + }, + "i ()Z": { + "access": 1 + }, + "\u003cinit\u003e (Lato;)V": { + "access": 1 + }, + "a ()Ladp;": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "a (Ljava/lang/String;)Ladp;": { + "access": 1 + }, + "d ()J": { + "access": 1 + }, + "c ()Z": { + "access": 1 + }, + "b ()Ladp;": { + "access": 1 + }, + "e ()Ladp$a;": { + "access": 1 + } + } + }, + "ado": { + "name": "ado", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lwn;ILcj;I)V": { + "access": 1025 + }, + "a (Ljava/lang/String;DDDFF)V": { + "access": 1025 + }, + "a (Lpk;)V": { + "access": 1025 + }, + "b (ILcj;I)V": { + "access": 1025 + }, + "b (Lpk;)V": { + "access": 1025 + }, + "a (ILcj;I)V": { + "access": 1025 + }, + "a (IZDDDDDD[I)V": { + "access": 1153 + }, + "a (Ljava/lang/String;Lcj;)V": { + "access": 1025 + }, + "b (Lcj;)V": { + "access": 1025 + }, + "a (IIIIII)V": { + "access": 1025 + }, + "a (Lwn;Ljava/lang/String;DDDFF)V": { + "access": 1025 + }, + "a (Lcj;)V": { + "access": 1025 + } + } + }, + "adr": { + "name": "adr", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "e ()Z": { + "access": 1 + }, + "i ()Ladr;": { + "access": 2 + }, + "a (I)Ladr;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "h ()Z": { + "access": 1 + }, + "j ()Ladr;": { + "access": 2 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (ILjava/lang/String;I)V": { + "access": 2 + }, + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 2 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "a (Z)Ladr;": { + "access": 2 + }, + "g ()I": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "a (Ljava/lang/String;)Ladr;": { + "access": 9 + } + } + }, + "adq": { + "name": "adq", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "b (Lcj;I)I": { + "access": 1025 + }, + "G ()Ladr;": { + "access": 1025 + }, + "s (Lcj;)Lakw;": { + "access": 1025 + }, + "b (Lcj;)Lady;": { + "access": 1025 + }, + "p (Lcj;)Lalz;": { + "access": 1025 + }, + "W ()Z": { + "access": 1025 + }, + "d (Lcj;)Z": { + "access": 1025 + }, + "a (Lcj;Lcq;)I": { + "access": 1025 + } + } + }, + "adt": { + "name": "adt", + "access": 49, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lps$a;Ladm;Lcj;)Z": { + "access": 9 + }, + "a (Lle;ZZZ)I": { + "access": 1 + }, + "a (Ladm;II)Lcj;": { + "access": 12 + }, + "a (Ladm;Lady;IIIILjava/util/Random;)V": { + "access": 9 + } + } + }, + "ads": { + "name": "ads", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Lads;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;II)V": { + "access": 2 + }, + "valueOf (Ljava/lang/String;)Lads;": { + "access": 9 + } + } + }, + "adv": { + "name": "adv", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "adq" + ], + "methods": { + "b (Lcj;I)I": { + "access": 1, + "override": "adq" + }, + "G ()Ladr;": { + "access": 1, + "override": "adq" + }, + "s (Lcj;)Lakw;": { + "access": 1, + "override": "adq" + }, + "b (Lcj;)Lady;": { + "access": 1, + "override": "adq" + }, + "p (Lcj;)Lalz;": { + "access": 1, + "override": "adq" + }, + "W ()Z": { + "access": 1, + "override": "adq" + }, + "\u003cinit\u003e (Ladm;Lcj;Lcj;I)V": { + "access": 1 + }, + "d (Lcj;)Z": { + "access": 1, + "override": "adq" + }, + "b (Lads;Lcj;)I": { + "access": 1 + }, + "a (Lcj;Lcq;)I": { + "access": 1, + "override": "adq" + }, + "a (Lads;Lcj;)I": { + "access": 2 + } + } + }, + "zw$2": { + "name": "zw$2", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "adu": { + "name": "adu", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (J)V": { + "access": 1 + }, + "a (Lpk;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Lle;)V": { + "access": 1 + }, + "b (Lpk;F)Z": { + "access": 1 + }, + "a (Lpk;F)V": { + "access": 1 + } + } + }, + "zw$1": { + "name": "zw$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "adx": { + "name": "adx", + "access": 33, + "superName": "ady", + "methods": { + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "zw$4": { + "name": "zw$4", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "adw": { + "name": "adw", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Comparable" + ], + "methods": { + "\u003cinit\u003e (Lcj;Lafh;)V": { + "access": 1 + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a (I)V": { + "access": 1 + }, + "a (Ladw;)I": { + "access": 1 + }, + "compareTo (Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Ladw;)I" + }, + "override": "java/lang/Comparable" + }, + "a ()Lafh;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (J)Ladw;": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "zw$3": { + "name": "zw$3", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "adz": { + "name": "adz", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "a (IILady;)Lady;": { + "access": 1 + }, + "a (Ladz;)Laec;": { + "access": 4104 + }, + "c (II)[Lady;": { + "access": 1 + }, + "a (II)Ladz$a;": { + "access": 1 + }, + "\u003cinit\u003e (Laec;)V": { + "access": 1 + } + } + }, + "zw$6": { + "name": "zw$6", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "ady": { + "name": "ady", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a (I)Lady;": { + "access": 4 + }, + "d (I)Lady;": { + "access": 4 + }, + "a (Lady$a;)Lady;": { + "access": 20 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a ()Laeb;": { + "access": 4 + }, + "a (FF)Lady;": { + "access": 4 + }, + "f ()Z": { + "access": 1 + }, + "l ()Ljava/lang/Class;": { + "access": 1 + }, + "b ()Lady;": { + "access": 4 + }, + "g ()F": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lans;IID)V": { + "access": 17 + }, + "m ()Lady$b;": { + "access": 1 + }, + "n ()[Lady;": { + "access": 9 + }, + "c ()Lady;": { + "access": 4 + }, + "a (ILady;)Lady;": { + "access": 9 + }, + "c (I)Lady;": { + "access": 4 + }, + "e ()Z": { + "access": 1 + }, + "a (F)I": { + "access": 1 + }, + "a (IZ)Lady;": { + "access": 4 + }, + "a (Ljava/lang/String;)Lady;": { + "access": 4 + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1 + }, + "j ()Z": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Lans;IID)V": { + "access": 1 + }, + "\u003cinit\u003e (I)V": { + "access": 4 + }, + "d ()Z": { + "access": 1 + }, + "a (Lcj;)F": { + "access": 17 + }, + "a (Lady;)Z": { + "access": 1 + }, + "a (Lpt;)Ljava/util/List;": { + "access": 1 + }, + "b (I)Lady;": { + "access": 4 + }, + "e (I)Lady;": { + "access": 9 + }, + "b (Lcj;)I": { + "access": 1 + }, + "k ()Lady;": { + "access": 4 + }, + "h ()I": { + "access": 17 + }, + "i ()F": { + "access": 17 + }, + "c (Lcj;)I": { + "access": 1 + }, + "a (Ljava/util/Random;)Laoh;": { + "access": 1 + }, + "a (Ljava/util/Random;Lcj;)Lagw$a;": { + "access": 1 + }, + "b (Ljava/util/Random;)Laot;": { + "access": 1 + } + } + }, + "zw$5": { + "name": "zw$5", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "ahz$a": { + "name": "ahz$a", + "access": 17441, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;)V": { + "access": 2 + }, + "a (I)Lahz$a;": { + "access": 9 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "a (Lalz;)Lahz$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "a ()I": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "d ()Lalz;": { + "access": 1025 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Lahz$1;)V": { + "access": 4096 + }, + "valueOf (Ljava/lang/String;)Lahz$a;": { + "access": 9 + }, + "values ()[Lahz$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Lahz$1;)V": { + "access": 4096 + } + } + }, + "aea": { + "name": "aea", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Ladq;Lcj;)I": { + "access": 9 + }, + "a (Ladq;Lcj;)I": { + "access": 9 + }, + "c (Ladq;Lcj;)I": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladq;Lcj;Laea$a;)I": { + "access": 10 + } + } + }, + "aqg$d": { + "name": "aqg$d", + "access": 33, + "superName": "aqt", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;)Laqe;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "aqg$c": { + "name": "aqg$c", + "access": 33, + "superName": "aqt", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (ILjava/util/Random;II)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + }, + "a (III)V": { + "access": 1, + "override": "aqt" + } + } + }, + "aec": { + "name": "aec", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lcj;)Lady;": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "a (Lcj;Lady;)Lady;": { + "access": 1 + }, + "a ([FIIII)[F": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (FI)F": { + "access": 1 + }, + "a ([Lady;IIII)[Lady;": { + "access": 1 + }, + "a (IIILjava/util/List;)Z": { + "access": 1 + }, + "a (IIILjava/util/List;Ljava/util/Random;)Lcj;": { + "access": 1 + }, + "a ()Ljava/util/List;": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "b ([Lady;IIII)[Lady;": { + "access": 1 + }, + "a ([Lady;IIIIZ)[Lady;": { + "access": 1 + }, + "\u003cinit\u003e (JLadr;Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "aqg$b": { + "name": "aqg$b", + "access": 33, + "superName": "aqt", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;)Laqe;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "aeb": { + "name": "aeb", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Lady;Lcj;)V": { + "access": 1 + }, + "b (ILaot;II)V": { + "access": 4 + }, + "a (Lady;)V": { + "access": 4 + }, + "a (ILaot;II)V": { + "access": 4 + } + } + }, + "aqg$a": { + "name": "aqg$a", + "access": 33, + "superName": "aqt", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "a (Ladm;Laqe;Ljava/util/Random;IIILjava/util/List;I)Z": { + "access": 4, + "override": "aqt" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;)Laqe;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "aee": { + "name": "aee", + "access": 33, + "superName": "ady", + "methods": { + "d (I)Lady;": { + "access": 4, + "override": "ady" + }, + "\u003cinit\u003e (IZ)V": { + "access": 4 + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1, + "override": "ady" + }, + "a (Ladm;Ljava/util/Random;Lans;IID)V": { + "access": 1, + "override": "ady" + }, + "a (Ljava/util/Random;)Laoh;": { + "access": 1, + "override": "ady" + }, + "b (Lady;)Laee;": { + "access": 2 + } + } + }, + "ko$2": { + "name": "ko$2", + "access": 32, + "superName": "java/lang/Thread", + "methods": { + "\u003cinit\u003e (Lko;Ljava/lang/String;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "aed": { + "name": "aed", + "access": 33, + "superName": "ady", + "methods": { + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1, + "override": "ady" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "ko$3": { + "name": "ko$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lko;)V": { + "access": 0 + } + } + }, + "aeg": { + "name": "aeg", + "access": 33, + "superName": "ady", + "methods": { + "d (I)Lady;": { + "access": 4, + "override": "ady" + }, + "a (IZ)Lady;": { + "access": 4, + "override": "ady" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1, + "override": "ady" + }, + "b (Lcj;)I": { + "access": 1, + "override": "ady" + }, + "a (Ljava/util/Random;)Laoh;": { + "access": 1, + "override": "ady" + }, + "\u003cinit\u003e (II)V": { + "access": 1 + }, + "a (Ljava/util/Random;Lcj;)Lagw$a;": { + "access": 1, + "override": "ady" + } + } + }, + "aef": { + "name": "aef", + "access": 33, + "superName": "aec", + "methods": { + "a (Lcj;)Lady;": { + "access": 1, + "override": "aec" + }, + "a ([FIIII)[F": { + "access": 1, + "override": "aec" + }, + "\u003cinit\u003e (Lady;F)V": { + "access": 1 + }, + "a ([Lady;IIII)[Lady;": { + "access": 1, + "override": "aec" + }, + "a (IIILjava/util/List;)Z": { + "access": 1, + "override": "aec" + }, + "b ([Lady;IIII)[Lady;": { + "access": 1, + "override": "aec" + }, + "a ([Lady;IIIIZ)[Lady;": { + "access": 1, + "override": "aec" + }, + "a (IIILjava/util/List;Ljava/util/Random;)Lcj;": { + "access": 1, + "override": "aec" + } + } + }, + "ko$1": { + "name": "ko$1", + "access": 32, + "superName": "java/lang/Thread", + "methods": { + "\u003cinit\u003e (Lko;Ljava/lang/String;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "aei": { + "name": "aei", + "access": 33, + "superName": "ady", + "methods": { + "d (I)Lady;": { + "access": 4, + "override": "ady" + }, + "\u003cinit\u003e (IZ)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1, + "override": "ady" + }, + "a (Ljava/util/Random;)Laoh;": { + "access": 1, + "override": "ady" + } + } + }, + "aeh": { + "name": "aeh", + "access": 33, + "superName": "ady", + "methods": { + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "aek": { + "name": "aek", + "access": 33, + "superName": "ady", + "methods": { + "a (J)V": { + "access": 2 + }, + "d (I)Lady;": { + "access": 4, + "override": "ady" + }, + "\u003cinit\u003e (IZZ)V": { + "access": 1 + }, + "b (Lcj;)I": { + "access": 1, + "override": "ady" + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1, + "override": "ady" + }, + "a (Ladm;Ljava/util/Random;Lans;IID)V": { + "access": 1, + "override": "ady" + }, + "c (Lcj;)I": { + "access": 1, + "override": "ady" + }, + "a (Ljava/util/Random;)Laoh;": { + "access": 1, + "override": "ady" + }, + "a (III)Lalz;": { + "access": 2 + } + } + }, + "ko$4": { + "name": "ko$4", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lko;)V": { + "access": 0 + } + } + }, + "aej": { + "name": "aej", + "access": 33, + "superName": "ady", + "methods": { + "\u003cinit\u003e (IZ)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1, + "override": "ady" + }, + "a (Ljava/util/Random;)Laoh;": { + "access": 1, + "override": "ady" + }, + "b (Ljava/util/Random;)Laot;": { + "access": 1, + "override": "ady" + } + } + }, + "aem": { + "name": "aem", + "access": 33, + "superName": "ady", + "methods": { + "a (Lady;)Z": { + "access": 1, + "override": "ady" + }, + "l ()Ljava/lang/Class;": { + "access": 1, + "override": "ady" + }, + "\u003cinit\u003e (ILady;)V": { + "access": 1 + }, + "g ()F": { + "access": 1, + "override": "ady" + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1, + "override": "ady" + }, + "b (Lcj;)I": { + "access": 1, + "override": "ady" + }, + "m ()Lady$b;": { + "access": 1, + "override": "ady" + }, + "a (Ladm;Ljava/util/Random;Lans;IID)V": { + "access": 1, + "override": "ady" + }, + "c (Lcj;)I": { + "access": 1, + "override": "ady" + }, + "a (Ljava/util/Random;)Laoh;": { + "access": 1, + "override": "ady" + } + } + }, + "ael": { + "name": "ael", + "access": 33, + "superName": "ady", + "methods": { + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "aeo": { + "name": "aeo", + "access": 33, + "superName": "ady", + "methods": { + "d (I)Lady;": { + "access": 4, + "override": "ady" + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1, + "override": "ady" + }, + "a (Ljava/util/Random;Lcj;)Lagw$a;": { + "access": 1, + "override": "ady" + }, + "\u003cinit\u003e (I)V": { + "access": 4 + } + } + }, + "aen": { + "name": "aen", + "access": 33, + "superName": "ady", + "methods": { + "m ()Lady$b;": { + "access": 1, + "override": "ady" + }, + "a (Ladm;Ljava/util/Random;Lans;IID)V": { + "access": 1, + "override": "ady" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "aeq": { + "name": "aeq", + "access": 33, + "superName": "ady", + "methods": { + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "aes": { + "name": "aes", + "access": 33, + "superName": "ady", + "methods": { + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "aer": { + "name": "aer", + "access": 33, + "superName": "ady", + "methods": { + "d (I)Lady;": { + "access": 4, + "override": "ady" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1, + "override": "ady" + }, + "a (Ljava/util/Random;)Laoh;": { + "access": 1, + "override": "ady" + }, + "\u003cinit\u003e (I)V": { + "access": 4 + } + } + }, + "aeu": { + "name": "aeu", + "access": 33, + "superName": "ady", + "methods": { + "d (I)Lady;": { + "access": 4, + "override": "ady" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1, + "override": "ady" + }, + "a (Ladm;Ljava/util/Random;Lans;IID)V": { + "access": 1, + "override": "ady" + }, + "a (Ljava/util/Random;)Laoh;": { + "access": 1, + "override": "ady" + }, + "\u003cinit\u003e (II)V": { + "access": 1 + }, + "b (Ljava/util/Random;)Laot;": { + "access": 1, + "override": "ady" + } + } + }, + "aet": { + "name": "aet", + "access": 33, + "superName": "ady", + "methods": { + "b (Lcj;)I": { + "access": 1, + "override": "ady" + }, + "a (Ladm;Ljava/util/Random;Lans;IID)V": { + "access": 1, + "override": "ady" + }, + "c (Lcj;)I": { + "access": 1, + "override": "ady" + }, + "a (Ljava/util/Random;)Laoh;": { + "access": 1, + "override": "ady" + }, + "a (Ljava/util/Random;Lcj;)Lagw$a;": { + "access": 1, + "override": "ady" + }, + "\u003cinit\u003e (I)V": { + "access": 4 + } + } + }, + "aew": { + "name": "aew", + "access": 33, + "superName": "aeb", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lady;)V": { + "access": 4, + "override": "aeb" + } + } + }, + "aev": { + "name": "aev", + "access": 33, + "superName": "ady", + "methods": { + "a (F)I": { + "access": 1, + "override": "ady" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "aey": { + "name": "aey", + "access": 33, + "superName": "afh", + "methods": { + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (Lalz;Z)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "aez": { + "name": "aez", + "access": 33, + "superName": "agr", + "methods": { + "a_ (Ladm;Lcj;)V": { + "access": 1, + "override": "agr" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Luy;)V": { + "access": 4, + "override": "agr" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lalz;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "agw$1": { + "name": "agw$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lagw$a;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lagw$a;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Lagw;)V": { + "access": 0 + } + } + }, + "afb": { + "name": "afb", + "access": 33, + "superName": "afh", + "methods": { + "\u003cinit\u003e ()V": { + "access": 4 + }, + "h ()F": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "afa": { + "name": "afa", + "access": 33, + "superName": "afc", + "methods": { + "\u003cinit\u003e ()V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lwn;Lcj;Lalz;Lakw;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;)Laug;": { + "access": 1, + "override": "afh" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "g ()Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "afd": { + "name": "afd", + "access": 1057, + "superName": "afh", + "methods": { + "a (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "k ()I": { + "access": 1, + "override": "afh" + }, + "a (Lcj;)Laug;": { + "access": 4 + }, + "a (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "m (Ladm;Lcj;)Z": { + "access": 2 + }, + "\u003cinit\u003e (Larm;Larn;)V": { + "access": 4 + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "i ()Z": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;I)Lalz;": { + "access": 1028 + }, + "a (Ladm;Lcj;Lalz;I)V": { + "access": 4 + }, + "e (Ladm;Lcj;)V": { + "access": 4 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "e (Lalz;)I": { + "access": 1028 + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "d (Lalz;)V": { + "access": 4 + }, + "f (Ladm;Lcj;)I": { + "access": 1028 + }, + "b (Ladq;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;)V": { + "access": 4 + }, + "a (Ladm;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "g ()Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "afc": { + "name": "afc", + "access": 1057, + "superName": "afh", + "interfaces": [ + "agq" + ], + "methods": { + "\u003cinit\u003e (Larm;)V": { + "access": 4 + }, + "a (Ladm;Lcj;Lalz;II)Z": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;Larn;)V": { + "access": 4 + }, + "e (Ladm;Lcj;)Z": { + "access": 4 + }, + "a (Ladm;Lcj;Lcq;)Z": { + "access": 4 + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + } + } + }, + "aff": { + "name": "aff", + "access": 33, + "superName": "afc", + "methods": { + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;)V": { + "access": 9 + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + } + } + }, + "fh$1": { + "name": "fh$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "\u003cinit\u003e (Lff;Lep;)V": { + "access": 0 + } + } + }, + "afe": { + "name": "afe", + "access": 1057, + "superName": "afh", + "methods": { + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "k ()I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Laui;Laui;)Lauh;": { + "access": 1, + "override": "afh" + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "n ()Lamo;": { + "access": 1025 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 4 + }, + "d (Lalz;)Z": { + "access": 9 + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)Z": { + "access": 9 + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Z)Lalz;": { + "access": 4 + }, + "\u003cinit\u003e (Z)V": { + "access": 4 + } + } + }, + "afh": { + "name": "afh", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ladm;Lcj;Lpk;)V": { + "access": 1 + }, + "a (Ladm;Lcj;Laui;Laui;)Lauh;": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1 + }, + "L ()Lyz;": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V": { + "access": 1 + }, + "q ()Z": { + "access": 1 + }, + "b (Ladm;Lcj;I)V": { + "access": 4 + }, + "h (Lalz;)I": { + "access": 1 + }, + "z ()Z": { + "access": 1 + }, + "b (Ladm;Lcj;Lcq;)Z": { + "access": 1 + }, + "d (Ladq;Lcj;)I": { + "access": 17 + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1 + }, + "a (F)Lafh;": { + "access": 4 + }, + "e ()Lama;": { + "access": 4 + }, + "a (Lalz;Z)Z": { + "access": 1 + }, + "a (Lafh;Lafh;)Z": { + "access": 9 + }, + "a (ILjy;Lafh;)V": { + "access": 10 + }, + "a (Ladm;Lcj;)Z": { + "access": 1 + }, + "a (Ladm;Lpk;)V": { + "access": 1 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1 + }, + "a (Ladq;Lcj;)V": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "s ()Z": { + "access": 1 + }, + "u ()Z": { + "access": 1 + }, + "b (Ladm;Lcj;)Laug;": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1 + }, + "I ()Z": { + "access": 4 + }, + "B ()D": { + "access": 17 + }, + "a (Lalz;)I": { + "access": 1 + }, + "b (F)Lafh;": { + "access": 4 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Lyz;)Lafh;": { + "access": 1 + }, + "O ()Z": { + "access": 1 + }, + "v ()Z": { + "access": 1 + }, + "b (Laui;)Z": { + "access": 2 + }, + "f (Lalz;)I": { + "access": 9 + }, + "g (Lalz;)Larn;": { + "access": 1 + }, + "a (Ladm;Lcj;Lwn;)V": { + "access": 1 + }, + "a (Ladm;Lwn;Lcj;Lalz;Lakw;)V": { + "access": 1 + }, + "a (Ladm;Lcj;Lzx;)V": { + "access": 9 + }, + "D ()D": { + "access": 17 + }, + "a (Ladi;)Z": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1 + }, + "c (Ladq;Lcj;)I": { + "access": 1 + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1 + }, + "a (Ljava/util/Random;)I": { + "access": 1 + }, + "j ()V": { + "access": 1 + }, + "c (F)Lafh;": { + "access": 4 + }, + "a (Ladm;Lcj;Lpk;Laui;)Laui;": { + "access": 1 + }, + "F ()D": { + "access": 17 + }, + "o ()Z": { + "access": 1 + }, + "a (Lpk;)F": { + "access": 1 + }, + "g (Ladm;Lcj;)F": { + "access": 1 + }, + "h ()F": { + "access": 1 + }, + "a (Ladm;Lcj;Lcq;Lzx;)Z": { + "access": 1 + }, + "M ()Z": { + "access": 1 + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1 + }, + "c (Ljava/lang/String;)Lafh;": { + "access": 1 + }, + "k (Ladm;Lcj;)V": { + "access": 1 + }, + "f ()Ljava/lang/String;": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1 + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1 + }, + "x ()Lafh;": { + "access": 4 + }, + "a (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1 + }, + "p ()I": { + "access": 1 + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1 + }, + "a (Lafh$b;)Lafh;": { + "access": 4 + }, + "J ()Z": { + "access": 1 + }, + "e (I)Lafh;": { + "access": 4 + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1 + }, + "S ()V": { + "access": 9 + }, + "a (Ladm;Lcj;Ladi;)V": { + "access": 1 + }, + "Q ()Lalz;": { + "access": 17 + }, + "\u003cinit\u003e (Larm;Larn;)V": { + "access": 1 + }, + "i ()Z": { + "access": 1 + }, + "H ()I": { + "access": 1 + }, + "P ()Lama;": { + "access": 1 + }, + "a (ILjava/util/Random;)I": { + "access": 1 + }, + "c (Laui;)Z": { + "access": 2 + }, + "b (Ljava/lang/String;)Lafh;": { + "access": 9 + }, + "a (Ladm;Lcj;Lalz;II)Z": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1 + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1 + }, + "d (I)Lalz;": { + "access": 9 + }, + "b (Ladq;Lcj;Lcq;)Z": { + "access": 1 + }, + "b (Lafh;)Z": { + "access": 1 + }, + "b (Ladq;Lcj;)Z": { + "access": 1 + }, + "K ()Lafh;": { + "access": 4 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1 + }, + "a (Lzw;)Lafh;": { + "access": 9 + }, + "A ()Z": { + "access": 1 + }, + "C ()D": { + "access": 17 + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1 + }, + "c ()Z": { + "access": 1 + }, + "a (Lwn;Ladm;Lcj;)F": { + "access": 1 + }, + "c (Lalz;)I": { + "access": 1 + }, + "k ()I": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lafh;)I": { + "access": 9 + }, + "a (FFFFFF)V": { + "access": 20 + }, + "w ()Z": { + "access": 1 + }, + "E ()D": { + "access": 17 + }, + "a (Ladm;Lcj;Lalz;Lpk;)V": { + "access": 1 + }, + "d (Ladm;Lcj;)Z": { + "access": 1 + }, + "a (Z)Lafh;": { + "access": 4 + }, + "b ()I": { + "access": 1 + }, + "b (Ladm;Lcj;Lalz;I)V": { + "access": 17 + }, + "a (ILjava/lang/String;Lafh;)V": { + "access": 10 + }, + "a (Ladm;Lcj;Lpk;F)V": { + "access": 1 + }, + "j (Ladm;Lcj;)I": { + "access": 1 + }, + "c (I)Lafh;": { + "access": 9 + }, + "a (I)Lalz;": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1 + }, + "R ()Lafh$a;": { + "access": 1 + }, + "i (Lalz;)Lzx;": { + "access": 4 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1 + }, + "b (Lalz;)Lalz;": { + "access": 1 + }, + "t ()Larm;": { + "access": 1 + }, + "y ()Z": { + "access": 1 + }, + "a (Laui;)Z": { + "access": 2 + }, + "a (Ladq;Lcj;I)I": { + "access": 1 + }, + "r ()I": { + "access": 1 + }, + "\u003cinit\u003e (Larm;)V": { + "access": 4 + }, + "a (Ladm;)I": { + "access": 1 + }, + "b (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lwn;)V": { + "access": 1 + }, + "d (Ladm;Lcj;Lalz;)V": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "j (Lalz;)V": { + "access": 20 + }, + "G ()D": { + "access": 17 + }, + "N ()Z": { + "access": 1 + }, + "l (Ladm;Lcj;)I": { + "access": 1 + } + } + }, + "afg": { + "name": "afg", + "access": 33, + "superName": "age", + "methods": { + "l ()V": { + "access": 2 + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "k ()I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "f (Ladm;Lcj;)Lwn;": { + "access": 2 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;I)Lcj;": { + "access": 9 + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)Z": { + "access": 12 + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;)V": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + } + } + }, + "afj": { + "name": "afj", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z": { + "access": 1025 + }, + "a (Ladm;Lcj;Lalz;Z)Z": { + "access": 1025 + }, + "b (Ladm;Ljava/util/Random;Lcj;Lalz;)V": { + "access": 1025 + } + } + }, + "afi": { + "name": "afi", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;)Lafh;": { + "access": 10 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "afl": { + "name": "afl", + "access": 33, + "superName": "afc", + "methods": { + "O ()Z": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "l (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + } + } + }, + "afk": { + "name": "afk", + "access": 33, + "superName": "afh", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + } + } + }, + "afn": { + "name": "afn", + "access": 1057, + "superName": "afh", + "methods": { + "a (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lcq;)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f (Ladm;Lcj;Lalz;)V": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)Z": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "i ()Z": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Z)V": { + "access": 4 + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;)Z": { + "access": 12 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "d (Lalz;)V": { + "access": 2 + }, + "a (Ladm;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "afm": { + "name": "afm", + "access": 33, + "superName": "afh", + "methods": { + "\u003cinit\u003e ()V": { + "access": 4 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;)V": { + "access": 4 + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;Larn;)V": { + "access": 4 + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)V": { + "access": 4 + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "c (Lafh;)Z": { + "access": 4 + }, + "f (Ladm;Lcj;Lalz;)Z": { + "access": 1 + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "afp": { + "name": "afp", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "O ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lwn;)V": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ladm;Lcj;Lalz;Lwn;)V": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;)Laug;": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)Z": { + "access": 2 + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "l (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "afo": { + "name": "afo", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)Z": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "afr": { + "name": "afr", + "access": 33, + "superName": "afh", + "methods": { + "O ()Z": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "k (Ladm;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "l (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;I)V": { + "access": 1 + } + } + }, + "afq": { + "name": "afq", + "access": 33, + "superName": "afz", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "n ()Lzw;": { + "access": 4, + "override": "afz" + }, + "l ()Lzw;": { + "access": 4, + "override": "afz" + } + } + }, + "aft": { + "name": "aft", + "access": 33, + "superName": "afh", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + } + } + }, + "afs": { + "name": "afs", + "access": 33, + "superName": "afc", + "methods": { + "a (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "O ()Z": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "n (Ladm;Lcj;)Z": { + "access": 2 + }, + "m (Ladm;Lcj;)Z": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "i ()Z": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (I)V": { + "access": 4 + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;)Loo;": { + "access": 1 + }, + "b (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)Lalz;": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + }, + "o (Ladm;Lcj;)Z": { + "access": 2 + }, + "f (Ladm;Lcj;Lalz;)Lalz;": { + "access": 1 + }, + "p (Ladm;Lcj;)Z": { + "access": 2 + }, + "l (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "afv": { + "name": "afv", + "access": 33, + "superName": "afh", + "methods": { + "\u003cinit\u003e (Larm;)V": { + "access": 1 + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "la$1": { + "name": "la$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lla;I)V": { + "access": 0 + } + } + }, + "afu": { + "name": "afu", + "access": 33, + "superName": "age", + "interfaces": [ + "afj" + ], + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "j (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f (Ladm;Lcj;Lalz;)V": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z": { + "access": 1, + "override": "afj" + }, + "a (Ladm;Lcj;Lalz;Z)Z": { + "access": 1, + "override": "afj" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)Z": { + "access": 1 + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Ljava/util/Random;Lcj;Lalz;)V": { + "access": 1, + "override": "afj" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "afx": { + "name": "afx", + "access": 33, + "superName": "agd", + "interfaces": [ + "agq" + ], + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lalz;)I": { + "access": 4, + "override": "agd" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f (Ladm;Lcj;Lalz;)I": { + "access": 4, + "override": "agd" + }, + "e (Ladm;Lcj;Lalz;)Z": { + "access": 4, + "override": "agd" + }, + "k (Ladm;Lcj;Lalz;)V": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "l (Lalz;)Z": { + "access": 4, + "override": "agd" + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;II)Z": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "a (Ladm;Lcq;Lcj;)Luo;": { + "access": 2 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "k (Lalz;)Lalz;": { + "access": 4, + "override": "agd" + }, + "j (Ladm;Lcj;Lalz;)I": { + "access": 2 + }, + "e (Lalz;)Lalz;": { + "access": 4, + "override": "agd" + }, + "d (Lalz;)I": { + "access": 4, + "override": "agd" + }, + "g (Ladm;Lcj;Lalz;)V": { + "access": 4, + "override": "agd" + } + } + }, + "afw": { + "name": "afw", + "access": 33, + "superName": "afc", + "methods": { + "O ()Z": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "l (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + } + } + }, + "afz": { + "name": "afz", + "access": 33, + "superName": "afm", + "interfaces": [ + "afj" + ], + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "l ()Lzw;": { + "access": 4 + }, + "a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z": { + "access": 1, + "override": "afj" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Z)Z": { + "access": 1, + "override": "afj" + }, + "a (Lafh;Ladm;Lcj;)F": { + "access": 12 + }, + "b (Ladm;Ljava/util/Random;Lcj;Lalz;)V": { + "access": 1, + "override": "afj" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "n ()Lzw;": { + "access": 4 + }, + "c (Lafh;)Z": { + "access": 4, + "override": "afm" + }, + "g (Ladm;Lcj;Lalz;)V": { + "access": 1 + }, + "f (Ladm;Lcj;Lalz;)Z": { + "access": 1, + "override": "afm" + } + } + }, + "afy": { + "name": "afy", + "access": 33, + "superName": "afh", + "methods": { + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + } + } + }, + "aga": { + "name": "aga", + "access": 33, + "superName": "afc", + "methods": { + "a (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "i ()Z": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;)V": { + "access": 1 + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + } + } + }, + "net/minecraft/realms/RealmsBridge": { + "name": "net/minecraft/realms/RealmsBridge", + "access": 33, + "superName": "net/minecraft/realms/RealmsScreen", + "methods": { + "getNotificationScreen (Laxu;)Lawr;": { + "access": 1 + }, + "init ()V": { + "access": 1, + "override": "net/minecraft/realms/RealmsScreen" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "switchToRealms (Laxu;)V": { + "access": 1 + } + } + }, + "p$1": { + "name": "p$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "\u003cinit\u003e (Lp;Llf;Lmw;)V": { + "access": 0 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lmq;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lmq;)Z": { + "access": 1 + } + } + }, + "agc": { + "name": "agc", + "access": 33, + "superName": "afe", + "methods": { + "a (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "O ()Z": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Ljava/lang/Class;[Lcom/google/common/base/Predicate;)Ljava/util/List;": { + "access": 132 + }, + "a (Lcj;)Laug;": { + "access": 2 + }, + "n ()Lamo;": { + "access": 1, + "override": "afe" + }, + "a (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;)I": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)V": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "i ()Z": { + "access": 1, + "override": "afh" + }, + "l (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + } + } + }, + "agb": { + "name": "agb", + "access": 33, + "superName": "afm", + "methods": { + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (Ladm;Lwn;Lcj;Lalz;Lakw;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "c (Lafh;)Z": { + "access": 4, + "override": "afm" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + } + } + }, + "age": { + "name": "age", + "access": 1057, + "superName": "afh", + "methods": { + "\u003cinit\u003e (Larm;)V": { + "access": 4 + }, + "\u003cinit\u003e (Larm;Larn;)V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "agd": { + "name": "agd", + "access": 1057, + "superName": "age", + "methods": { + "a (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lalz;)I": { + "access": 4 + }, + "f (Ladm;Lcj;Lalz;)I": { + "access": 4 + }, + "a (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)Z": { + "access": 4 + }, + "h (Ladm;Lcj;Lalz;)V": { + "access": 4 + }, + "e (Ladm;Lcj;)Z": { + "access": 1 + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladq;Lcj;Lalz;)I": { + "access": 4 + }, + "i ()Z": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "l (Lalz;)Z": { + "access": 4 + }, + "c (Lafh;)Z": { + "access": 4 + }, + "i (Ladm;Lcj;Lalz;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Z)V": { + "access": 4 + }, + "c (Ladq;Lcj;Lcq;)I": { + "access": 4 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "m (Lalz;)I": { + "access": 4 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "e (Lafh;)Z": { + "access": 1 + }, + "b (Lafh;)Z": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "d (Lafh;)Z": { + "access": 9 + }, + "k (Lalz;)Lalz;": { + "access": 1028 + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + }, + "e (Lalz;)Lalz;": { + "access": 1028 + }, + "d (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "g (Ladm;Lcj;Lalz;)V": { + "access": 4 + }, + "d (Lalz;)I": { + "access": 1028 + }, + "b (Ladq;Lcj;Lalz;)Z": { + "access": 1 + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "vo$b": { + "name": "vo$b", + "access": 32, + "superName": "sp", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lvo;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "agg": { + "name": "agg", + "access": 33, + "superName": "afc", + "methods": { + "O ()Z": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Lck;)Lcz;": { + "access": 9 + }, + "b (I)Lcq;": { + "access": 9 + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "b (Lalz;)Lalz;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "a (Lzx;)Lcr;": { + "access": 4 + }, + "e (Ladm;Lcj;Lalz;)V": { + "access": 2 + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;)V": { + "access": 4 + }, + "l (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + } + } + }, + "vo$a": { + "name": "vo$a", + "access": 32, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "a (Ladm;Lcj;Lafh;Lafh;Lafh;)Z": { + "access": 2 + }, + "\u003cinit\u003e (Lvo;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "agf": { + "name": "agf", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "j (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + } + } + }, + "agi": { + "name": "agi", + "access": 33, + "superName": "afm", + "interfaces": [ + "afj" + ], + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lwn;Lcj;Lalz;Lakw;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladq;Lcj;)Lagi$b;": { + "access": 1 + }, + "e (Ladm;Lcj;Lalz;)V": { + "access": 4, + "override": "afm" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;Lalz;)Z": { + "access": 1, + "override": "afm" + }, + "a (Ladm;Lcj;Lagi$b;I)V": { + "access": 1 + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Lwn;)Z": { + "access": 2 + }, + "j (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "R ()Lafh$a;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z": { + "access": 1, + "override": "afj" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Z)Z": { + "access": 1, + "override": "afj" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;I)I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Ljava/util/Random;Lcj;Lalz;)V": { + "access": 1, + "override": "afj" + }, + "a (Ladm;Lcj;Lalz;Lwn;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + } + } + }, + "agh": { + "name": "agh", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "k ()I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Laui;Laui;)Lauh;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Z)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i (I)Z": { + "access": 12 + }, + "b (I)I": { + "access": 12 + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "g (I)Z": { + "access": 12 + }, + "e (Ladq;Lcj;)I": { + "access": 9 + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "f (Ladq;Lcj;)Z": { + "access": 9 + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + }, + "j (I)Z": { + "access": 12 + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "l ()Lzw;": { + "access": 2 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "k (I)V": { + "access": 2 + }, + "h (Ladq;Lcj;)Lcq;": { + "access": 9 + }, + "\u003cinit\u003e (Larm;)V": { + "access": 4 + }, + "b (Ladm;Lcj;)Laug;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;)V": { + "access": 1, + "override": "afh" + }, + "f (I)Lcq;": { + "access": 9 + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "agk": { + "name": "agk", + "access": 33, + "superName": "agg", + "methods": { + "a (Lzx;)Lcr;": { + "access": 4, + "override": "agg" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "f (Ladm;Lcj;)V": { + "access": 4, + "override": "agg" + } + } + }, + "agj": { + "name": "agj", + "access": 33, + "superName": "afh", + "methods": { + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lwn;)V": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;)I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;)V": { + "access": 2 + }, + "e (Ladm;Lcj;)V": { + "access": 2 + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "bgh$1": { + "name": "bgh$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "agm": { + "name": "agm", + "access": 33, + "superName": "afc", + "methods": { + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + } + } + }, + "agl": { + "name": "agl", + "access": 33, + "superName": "ahv", + "methods": { + "\u003cinit\u003e (Larm;)V": { + "access": 4 + }, + "f (Ladm;Lcj;)Ljava/util/Set;": { + "access": 2 + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;I)I": { + "access": 4 + }, + "a (Ladm;Lcj;ILcq;)I": { + "access": 2 + }, + "f (Ladm;Lcj;Lalz;)V": { + "access": 2 + }, + "g (Ladm;Lcj;Lalz;)Z": { + "access": 2 + }, + "h (Ladm;Lcj;Lalz;)Z": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;I)V": { + "access": 2 + } + } + }, + "ago": { + "name": "ago", + "access": 33, + "superName": "afh", + "methods": { + "O ()Z": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "l (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + } + } + }, + "agn": { + "name": "agn", + "access": 33, + "superName": "afc", + "methods": { + "\u003cinit\u003e (Larm;)V": { + "access": 4 + }, + "a (Ladm;Lcj;Lalz;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "agq": { + "name": "agq", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Ladm;I)Lakw;": { + "access": 1025 + } + } + }, + "agp": { + "name": "agp", + "access": 33, + "superName": "afc", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "I ()Z": { + "access": 4, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + } + } + }, + "ags": { + "name": "ags", + "access": 33, + "superName": "afh", + "methods": { + "a (Ladm;Lcj;Lpk;F)V": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;)Z": { + "access": 2 + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)Z": { + "access": 2 + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "bot$2": { + "name": "bot$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "bmb" + ], + "methods": { + "\u003cinit\u003e (Lbot;Ljava/util/Set;)V": { + "access": 0 + }, + "a (Lbmh;)V": { + "access": 1, + "override": "bmb" + } + } + }, + "amc$1": { + "name": "amc$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lamc;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lamc;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Lcom/google/common/base/Predicate;)V": { + "access": 0 + } + } + }, + "agr": { + "name": "agr", + "access": 33, + "superName": "afh", + "methods": { + "\u003cinit\u003e (Larm;)V": { + "access": 1 + }, + "a (Ladm;)I": { + "access": 1, + "override": "afh" + }, + "a_ (Ladm;Lcj;)V": { + "access": 1 + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)Z": { + "access": 9 + }, + "a (Luy;)V": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;)V": { + "access": 2 + } + } + }, + "bot$1": { + "name": "bot$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/Comparator" + ], + "methods": { + "a (Lbov;Lbov;)I": { + "access": 1 + }, + "\u003cinit\u003e (Lbot;)V": { + "access": 0 + }, + "compare (Ljava/lang/Object;Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lbov;Lbov;)I" + }, + "override": "java/util/Comparator" + } + } + }, + "agu": { + "name": "agu", + "access": 33, + "superName": "age", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Laio$a;)V": { + "access": 1 + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "vo$c": { + "name": "vo$c", + "access": 32, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lvo;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "agt": { + "name": "agt", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "e (Ladq;Lcj;)Z": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;)V": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;Larn;)V": { + "access": 1 + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + } + } + }, + "agw": { + "name": "agw", + "access": 1057, + "superName": "afm", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "R ()Lafh$a;": { + "access": 1, + "override": "afh" + }, + "n ()Lamo;": { + "access": 1 + }, + "l ()Lagw$b;": { + "access": 1025 + } + } + }, + "agv": { + "name": "agv", + "access": 33, + "superName": "afh", + "methods": { + "l ()V": { + "access": 9 + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "d (Lafh;)I": { + "access": 2 + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f (Ladm;Lcj;)Z": { + "access": 2 + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)Z": { + "access": 4 + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "e (Ladq;Lcj;)Z": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;ILjava/util/Random;I)V": { + "access": 2 + }, + "c (Lafh;)I": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "A ()Z": { + "access": 1, + "override": "afh" + }, + "m (Ladm;Lcj;)I": { + "access": 2 + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "N ()Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "a (Lafh;II)V": { + "access": 1 + } + } + }, + "agy": { + "name": "agy", + "access": 33, + "superName": "aih", + "methods": { + "l ()Z": { + "access": 1, + "override": "ahh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "agx": { + "name": "agx", + "access": 33, + "superName": "afc", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "j (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f (Ladm;Lcj;)Lalg;": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "M ()Z": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;I)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;)V": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Lafh;I)Z": { + "access": 2 + } + } + }, + "bma$1": { + "name": "bma$1", + "access": 32, + "superName": "java/lang/Thread", + "methods": { + "\u003cinit\u003e (Lbma;Ljava/lang/String;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "bef$a": { + "name": "bef$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "agz": { + "name": "agz", + "access": 33, + "superName": "akb", + "methods": { + "l ()Z": { + "access": 1, + "override": "ahh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "net/minecraft/realms/RealmsScreen": { + "name": "net/minecraft/realms/RealmsScreen", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "buttonClicked (Lnet/minecraft/realms/RealmsButton;)V": { + "access": 1 + }, + "keyboardEvent ()V": { + "access": 1 + }, + "fontDrawShadow (Ljava/lang/String;III)V": { + "access": 1 + }, + "init ()V": { + "access": 1 + }, + "buttonsAdd (Lnet/minecraft/realms/RealmsButton;)V": { + "access": 1 + }, + "mouseDragged (IIIJ)V": { + "access": 1 + }, + "drawString (Ljava/lang/String;III)V": { + "access": 1 + }, + "blit (IIIIII)V": { + "access": 1 + }, + "bind (Ljava/lang/String;)V": { + "access": 9 + }, + "newButton (IIILjava/lang/String;)Lnet/minecraft/realms/RealmsButton;": { + "access": 9 + }, + "render (IIF)V": { + "access": 1 + }, + "getLocalizedString (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;": { + "access": 137 + }, + "height ()I": { + "access": 1 + }, + "mouseClicked (III)V": { + "access": 1 + }, + "fontWidth (Ljava/lang/String;)I": { + "access": 1 + }, + "mouseEvent ()V": { + "access": 1 + }, + "removed ()V": { + "access": 1 + }, + "init (Lave;II)V": { + "access": 1 + }, + "blit (IIFFIIIIFF)V": { + "access": 9 + }, + "renderTooltip (Ljava/lang/String;II)V": { + "access": 1 + }, + "width ()I": { + "access": 1 + }, + "getLevelStorageSource ()Lnet/minecraft/realms/RealmsAnvilLevelStorageSource;": { + "access": 1 + }, + "bindFace (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 9 + }, + "fillGradient (IIIIII)V": { + "access": 1 + }, + "isPauseScreen ()Z": { + "access": 1 + }, + "buttons ()Ljava/util/List;": { + "access": 1 + }, + "renderBackground ()V": { + "access": 1 + }, + "renderTooltip (Ljava/util/List;II)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "fontLineHeight ()I": { + "access": 1 + }, + "newEditBox (IIIII)Lnet/minecraft/realms/RealmsEditBox;": { + "access": 1 + }, + "keyPressed (CI)V": { + "access": 1 + }, + "drawString (Ljava/lang/String;IIIZ)V": { + "access": 1 + }, + "blit (IIFFIIFF)V": { + "access": 9 + }, + "tick ()V": { + "access": 1 + }, + "newButton (IIIIILjava/lang/String;)Lnet/minecraft/realms/RealmsButton;": { + "access": 9 + }, + "mouseReleased (III)V": { + "access": 1 + }, + "getProxy ()Lawr;": { + "access": 1 + }, + "buttonsRemove (Lnet/minecraft/realms/RealmsButton;)V": { + "access": 1 + }, + "fontSplit (Ljava/lang/String;I)Ljava/util/List;": { + "access": 1 + }, + "renderBackground (I)V": { + "access": 1 + }, + "renderTooltip (Lzx;II)V": { + "access": 1 + }, + "drawCenteredString (Ljava/lang/String;III)V": { + "access": 1 + }, + "confirmResult (ZI)V": { + "access": 1 + }, + "buttonsClear ()V": { + "access": 1 + }, + "getLocalizedString (Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + } + } + }, + "ahb": { + "name": "ahb", + "access": 33, + "superName": "afc", + "methods": { + "O ()Z": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (ZLadm;Lcj;)V": { + "access": 9 + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lalz;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)V": { + "access": 2 + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "l (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Z)V": { + "access": 4 + } + } + }, + "aha": { + "name": "aha", + "access": 33, + "superName": "akr", + "methods": { + "l ()Z": { + "access": 1, + "override": "ahh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "ahd": { + "name": "ahd", + "access": 33, + "superName": "afh", + "methods": { + "\u003cinit\u003e (Larm;)V": { + "access": 1 + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (ILjava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + } + } + }, + "ahc": { + "name": "ahc", + "access": 33, + "superName": "ahj", + "methods": { + "I ()Z": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e (Larm;Z)V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "ahf": { + "name": "ahf", + "access": 33, + "superName": "agr", + "methods": { + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + } + } + }, + "ahe": { + "name": "ahe", + "access": 33, + "superName": "afh", + "interfaces": [ + "afj" + ], + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z": { + "access": 1, + "override": "afj" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Z)Z": { + "access": 1, + "override": "afj" + }, + "a (Ladq;Lcj;I)I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Ljava/util/Random;Lcj;Lalz;)V": { + "access": 1, + "override": "afj" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "h (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "H ()I": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + } + } + }, + "ahh": { + "name": "ahh", + "access": 1057, + "superName": "afh", + "methods": { + "j (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "l ()Z": { + "access": 1025 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "n ()Lamo;": { + "access": 1025 + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;)V": { + "access": 1 + }, + "I ()Z": { + "access": 4, + "override": "afh" + }, + "b (I)Ljava/lang/String;": { + "access": 1025 + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "c (Lafh;)Z": { + "access": 12 + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "a (Lzx;)Ljava/lang/Object;": { + "access": 1025 + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "ahg": { + "name": "ahg", + "access": 33, + "superName": "aih", + "methods": { + "l ()Z": { + "access": 1, + "override": "ahh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "ahj": { + "name": "ahj", + "access": 33, + "superName": "afh", + "methods": { + "\u003cinit\u003e (Larm;Z)V": { + "access": 4 + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;ZLarn;)V": { + "access": 4 + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "ahi": { + "name": "ahi", + "access": 33, + "superName": "akb", + "methods": { + "l ()Z": { + "access": 1, + "override": "ahh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "ahl": { + "name": "ahl", + "access": 33, + "superName": "afh", + "methods": { + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bdt$b": { + "name": "bdt$b", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "ahk": { + "name": "ahk", + "access": 33, + "superName": "akr", + "methods": { + "l ()Z": { + "access": 1, + "override": "ahh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "ahn": { + "name": "ahn", + "access": 33, + "superName": "afc", + "methods": { + "O ()Z": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "b (I)Lcq;": { + "access": 9 + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f (I)Z": { + "access": 9 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)V": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "l (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "ahm": { + "name": "ahm", + "access": 33, + "superName": "ajg", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "i (Lalz;)Lzx;": { + "access": 4, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + } + } + }, + "ahp": { + "name": "ahp", + "access": 33, + "superName": "ahj", + "methods": { + "k ()I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lwn;Lcj;Lalz;Lakw;)V": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + } + } + }, + "aho": { + "name": "aho", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;Larn;Lafh;)V": { + "access": 1 + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + } + } + }, + "ahr": { + "name": "ahr", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lcq;)Z": { + "access": 4 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;)Laug;": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "ahq": { + "name": "ahq", + "access": 33, + "superName": "afc", + "methods": { + "O ()Z": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)V": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lzx;)V": { + "access": 1 + }, + "l (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + } + } + }, + "ahs": { + "name": "ahs", + "access": 1057, + "superName": "akg", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (I)Laio$a;": { + "access": 1025 + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "b (Z)V": { + "access": 1 + }, + "w ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;I)I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "h (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "H ()I": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "d (Lalz;)I": { + "access": 4 + }, + "e (Ladm;Lcj;)V": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;I)V": { + "access": 4 + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "ahv": { + "name": "ahv", + "access": 1057, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (I)F": { + "access": 9 + }, + "e (Ladm;Lcj;Lalz;)Z": { + "access": 1 + }, + "c (Ladq;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "h (Ladq;Lcj;)Laui;": { + "access": 4 + }, + "e (Ladq;Lcj;)I": { + "access": 4 + }, + "g (Ladq;Lcj;)Z": { + "access": 1 + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)V": { + "access": 4 + }, + "a (Ladm;Lcj;Lpk;Laui;)Laui;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Z)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "f (Ladq;Lcj;)I": { + "access": 4 + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;I)I": { + "access": 1, + "override": "afh" + }, + "b (Larm;)Lajw;": { + "access": 9 + }, + "b (Ladq;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;)V": { + "access": 4 + }, + "a (Ladm;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Larm;)Lagl;": { + "access": 9 + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Larm;)D": { + "access": 9 + } + } + }, + "ahu": { + "name": "ahu", + "access": 33, + "superName": "afh", + "methods": { + "a (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lcq;)Z": { + "access": 12 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Lcq;)I": { + "access": 9 + }, + "e (Ladm;Lcj;Lalz;)Z": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "i ()Z": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "nt$a": { + "name": "nt$a", + "access": 49, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Comparable" + ], + "methods": { + "compareTo (Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lnt$a;)I" + }, + "override": "java/lang/Comparable" + }, + "\u003cinit\u003e (Ljava/lang/String;DD)V": { + "access": 1 + }, + "a (Lnt$a;)I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "ahx": { + "name": "ahx", + "access": 33, + "superName": "afh", + "methods": { + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (ILjava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + } + } + }, + "vo$1": { + "name": "vo$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "a (Lvp;)Z": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lvp;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Lvo;)V": { + "access": 0 + } + } + }, + "ahw": { + "name": "ahw", + "access": 1057, + "superName": "ajg", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + } + } + }, + "ahz": { + "name": "ahz", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "j (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i (Lalz;)Lzx;": { + "access": 4, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "d (Lalz;)Z": { + "access": 9 + } + } + }, + "ahy": { + "name": "ahy", + "access": 33, + "superName": "afc", + "methods": { + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "b ()I": { + "access": 1, + "override": "afh" + } + } + }, + "aia": { + "name": "aia", + "access": 33, + "superName": "afm", + "interfaces": [ + "afj" + ], + "methods": { + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z": { + "access": 1, + "override": "afj" + }, + "c (Lafh;)Z": { + "access": 4, + "override": "afm" + }, + "f (Ladm;Lcj;Lalz;)Z": { + "access": 1, + "override": "afm" + }, + "a (Ladm;Lcj;Lalz;Z)Z": { + "access": 1, + "override": "afj" + }, + "b (Ladm;Ljava/util/Random;Lcj;Lalz;)V": { + "access": 1, + "override": "afj" + }, + "d (Ladm;Lcj;Lalz;Ljava/util/Random;)Z": { + "access": 1 + } + } + }, + "aic": { + "name": "aic", + "access": 33, + "superName": "afh", + "methods": { + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "aib": { + "name": "aib", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + } + } + }, + "bdt$a": { + "name": "bdt$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "aie": { + "name": "aie", + "access": 33, + "superName": "afh", + "methods": { + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bdc$2": { + "name": "bdc$2", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "aid": { + "name": "aid", + "access": 33, + "superName": "afm", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "c (Lafh;)Z": { + "access": 4, + "override": "afm" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;Lalz;)Z": { + "access": 1, + "override": "afm" + } + } + }, + "bdc$1": { + "name": "bdc$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "bnp$a" + ], + "methods": { + "\u003cinit\u003e (Lbdc;)V": { + "access": 0 + }, + "a (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Ljy;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V": { + "access": 1, + "override": "bnp$a" + } + } + }, + "aig": { + "name": "aig", + "access": 33, + "superName": "ahw", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i (Lalz;)Lzx;": { + "access": 4, + "override": "afh" + } + } + }, + "aif": { + "name": "aif", + "access": 33, + "superName": "ahs", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "j (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i (Lalz;)Lzx;": { + "access": 4, + "override": "afh" + }, + "b (I)Laio$a;": { + "access": 1, + "override": "ahs" + }, + "a (Ladm;Lwn;Lcj;Lalz;Lakw;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;I)V": { + "access": 4, + "override": "ahs" + } + } + }, + "aii": { + "name": "aii", + "access": 33, + "superName": "afc", + "methods": { + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;II)Z": { + "access": 1, + "override": "afh" + }, + "b (I)Ljava/lang/String;": { + "access": 2 + }, + "a (Ladm;Lcj;Lwn;)V": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "b ()I": { + "access": 1, + "override": "afh" + } + } + }, + "aih": { + "name": "aih", + "access": 1057, + "superName": "ahh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "n ()Lamo;": { + "access": 1, + "override": "ahh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "b (I)Ljava/lang/String;": { + "access": 1, + "override": "ahh" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzx;)Ljava/lang/Object;": { + "access": 1, + "override": "ahh" + } + } + }, + "aik": { + "name": "aik", + "access": 33, + "superName": "ahs", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i (Lalz;)Lzx;": { + "access": 4, + "override": "afh" + }, + "b (I)Laio$a;": { + "access": 1, + "override": "ahs" + }, + "a (Ladm;Lwn;Lcj;Lalz;Lakw;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;I)I": { + "access": 1, + "override": "afh" + }, + "h (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "d (Lalz;)I": { + "access": 4, + "override": "ahs" + }, + "a (Ladm;Lcj;Lalz;I)V": { + "access": 4, + "override": "ahs" + } + } + }, + "bao$d": { + "name": "bao$d", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 1 + } + } + }, + "aij": { + "name": "aij", + "access": 33, + "superName": "afh", + "methods": { + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + } + } + }, + "bao$e": { + "name": "bao$e", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lavm;Lcom/mojang/authlib/properties/PropertyMap;Lcom/mojang/authlib/properties/PropertyMap;Ljava/net/Proxy;)V": { + "access": 1 + } + } + }, + "aim": { + "name": "aim", + "access": 33, + "superName": "afh", + "methods": { + "\u003cinit\u003e (Larn;)V": { + "access": 1 + }, + "j (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "a (ILjava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + } + } + }, + "axc$b": { + "name": "axc$b", + "access": 32, + "superName": "awi", + "methods": { + "\u003cinit\u003e (Laxc;)V": { + "access": 1 + }, + "a ()V": { + "access": 4, + "override": "awi" + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "a (IILjy;)V": { + "access": 2 + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "ail": { + "name": "ail", + "access": 33, + "superName": "ahw", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i (Lalz;)Lzx;": { + "access": 4, + "override": "afh" + } + } + }, + "aio": { + "name": "aio", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ain": { + "name": "ain", + "access": 33, + "superName": "afh", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + } + } + }, + "axc$a": { + "name": "axc$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljy;Lant$a;)V": { + "access": 1 + } + } + }, + "afx$1": { + "name": "afx$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Lafx;Lcq;)V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "aiq": { + "name": "aiq", + "access": 33, + "superName": "afz", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "n ()Lzw;": { + "access": 4, + "override": "afz" + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "l ()Lzw;": { + "access": 4, + "override": "afz" + } + } + }, + "aip": { + "name": "aip", + "access": 33, + "superName": "ahj", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lcq$a;)I": { + "access": 9 + }, + "f (Ladm;Lcj;)Lamd$b;": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)Z": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + } + } + }, + "ais": { + "name": "ais", + "access": 33, + "superName": "afe", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;ZI)Z": { + "access": 4 + }, + "n ()Lamo;": { + "access": 1, + "override": "afe" + }, + "b (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 4, + "override": "afe" + }, + "a (Ladm;Lcj;ZILafe$b;)Z": { + "access": 4 + } + } + }, + "air": { + "name": "air", + "access": 33, + "superName": "afh", + "methods": { + "a (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;Larn;)V": { + "access": 1 + }, + "i ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "aiu": { + "name": "aiu", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ait": { + "name": "ait", + "access": 33, + "superName": "afd", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "e (Lalz;)I": { + "access": 4, + "override": "afd" + }, + "a (Lalz;I)Lalz;": { + "access": 4, + "override": "afd" + }, + "f (Ladm;Lcj;)I": { + "access": 4, + "override": "afd" + }, + "\u003cinit\u003e (Larm;Lait$a;)V": { + "access": 4 + } + } + }, + "aiw": { + "name": "aiw", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i (Lalz;)Lzx;": { + "access": 4, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + } + } + }, + "aiv": { + "name": "aiv", + "access": 33, + "superName": "age", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "T ()Lamd;": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "n ()Lamd;": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "U ()Lamd;": { + "access": 4 + }, + "l ()Lamd;": { + "access": 4 + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)Z": { + "access": 1 + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;)V": { + "access": 2 + } + } + }, + "aiy": { + "name": "aiy", + "access": 33, + "superName": "agw", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "l ()Lagw$b;": { + "access": 1, + "override": "agw" + } + } + }, + "aix": { + "name": "aix", + "access": 33, + "superName": "afe", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "n ()Lamo;": { + "access": 1, + "override": "afe" + }, + "b (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 4, + "override": "afe" + } + } + }, + "aiz": { + "name": "aiz", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bgh$a": { + "name": "bgh$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer" + ], + "methods": { + "b (Lcom/google/gson/JsonObject;)F": { + "access": 2 + }, + "a (Ljava/lang/String;)Lcq;": { + "access": 2 + }, + "e (Lcom/google/gson/JsonObject;)Lorg/lwjgl/util/vector/Vector3f;": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map;": { + "access": 2 + }, + "a (Lcom/google/gson/JsonObject;)Lbgj;": { + "access": 2 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgh;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "d (Lcom/google/gson/JsonObject;)Lorg/lwjgl/util/vector/Vector3f;": { + "access": 2 + }, + "a (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lorg/lwjgl/util/vector/Vector3f;": { + "access": 2 + }, + "c (Lcom/google/gson/JsonObject;)Lcq$a;": { + "access": 2 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgh;" + }, + "override": "com/google/gson/JsonDeserializer" + }, + "b (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map;": { + "access": 2 + } + } + }, + "ajb": { + "name": "ajb", + "access": 33, + "superName": "afh", + "methods": { + "a (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "d (Ladq;Lcj;Lcq;)Z": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (I)I": { + "access": 2 + }, + "i ()Z": { + "access": 1, + "override": "afh" + }, + "c (Ladq;Lcj;Lcq;)Lajb$a;": { + "access": 2 + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)V": { + "access": 2 + }, + "a (Ladm;Lcj;I)I": { + "access": 2 + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "e (Ladq;Lcj;)Z": { + "access": 12 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "d (Lalz;)Z": { + "access": 12 + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;I)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcj;Lalz;)Lalz;": { + "access": 2 + }, + "e (Ladm;Lcj;Lalz;)Lalz;": { + "access": 2 + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Lcq;)Z": { + "access": 12 + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "ail$1": { + "name": "ail$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Laio$a;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Laio$a;)Z": { + "access": 1 + } + } + }, + "aja": { + "name": "aja", + "access": 33, + "superName": "afh", + "methods": { + "a (Ladm;Lcj;Lwn;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "i (Lalz;)Lzx;": { + "access": 4, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (ILjava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;)V": { + "access": 2 + }, + "e (Ladm;Lcj;)V": { + "access": 2 + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + } + } + }, + "ail$2": { + "name": "ail$2", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ajd": { + "name": "ajd", + "access": 33, + "superName": "akf", + "methods": { + "a (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Z)Z": { + "access": 2 + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "g (Ladm;Lcj;Lalz;)Z": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "b (Lafh;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;)I": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "i ()Z": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Z)V": { + "access": 4 + } + } + }, + "ajc": { + "name": "ajc", + "access": 33, + "superName": "afh", + "methods": { + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "i (Lalz;)Lzx;": { + "access": 4, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + } + } + }, + "ajf": { + "name": "ajf", + "access": 33, + "superName": "agd", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "k (Lalz;)Lalz;": { + "access": 4, + "override": "agd" + }, + "e (Lalz;)Lalz;": { + "access": 4, + "override": "agd" + }, + "c (Lafh;)Z": { + "access": 4, + "override": "agd" + }, + "d (Lalz;)I": { + "access": 4, + "override": "agd" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;Lalz;)Z": { + "access": 1, + "override": "agd" + }, + "\u003cinit\u003e (Z)V": { + "access": 4 + } + } + }, + "bao$b": { + "name": "bao$b", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/io/File;Ljava/io/File;Ljava/io/File;Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "aje": { + "name": "aje", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)Z": { + "access": 20 + }, + "a (Ladq;Lcj;I)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)Z": { + "access": 1 + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "bao$c": { + "name": "bao$c", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (ZLjava/lang/String;)V": { + "access": 1 + } + } + }, + "ajh": { + "name": "ajh", + "access": 33, + "superName": "agr", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ajg": { + "name": "ajg", + "access": 1057, + "superName": "afh", + "methods": { + "\u003cinit\u003e (Larm;)V": { + "access": 4 + }, + "\u003cinit\u003e (Larm;Larn;)V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bao$a": { + "name": "bao$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (IIZZ)V": { + "access": 1 + } + } + }, + "ajj": { + "name": "ajj", + "access": 33, + "superName": "afm", + "interfaces": [ + "afj" + ], + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1 + }, + "a (Ladm;Lcj;Laio$a;)Z": { + "access": 1 + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z": { + "access": 1, + "override": "afj" + }, + "d (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Z)Z": { + "access": 1, + "override": "afj" + }, + "b (Ladm;Ljava/util/Random;Lcj;Lalz;)V": { + "access": 1, + "override": "afj" + }, + "a (Ladm;Lcj;IILaio$a;)Z": { + "access": 2 + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "afh" + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + } + } + }, + "aji": { + "name": "aji", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ajl": { + "name": "ajl", + "access": 33, + "superName": "afc", + "methods": { + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;)Laug;": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "g ()Z": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;)Z": { + "access": 1, + "override": "afh" + } + } + }, + "ajk": { + "name": "ajk", + "access": 33, + "superName": "afh", + "methods": { + "\u003cinit\u003e (Larm;)V": { + "access": 1 + }, + "I ()Z": { + "access": 4, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (ILjava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + } + } + }, + "ajn": { + "name": "ajn", + "access": 33, + "superName": "ahj", + "methods": { + "a (Ladm;Lcj;Lpk;F)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lpk;)V": { + "access": 1, + "override": "afh" + } + } + }, + "ajm": { + "name": "ajm", + "access": 33, + "superName": "afc", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "j (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalo;)V": { + "access": 1 + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "n ()Lamd;": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "l ()Lamd;": { + "access": 4 + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;)V": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lzx;)Z": { + "access": 1 + } + } + }, + "ajp": { + "name": "ajp", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lwn;Lcj;Lalz;Lakw;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)Z": { + "access": 2 + }, + "b (Ladq;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "b (I)V": { + "access": 4 + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "ajo": { + "name": "ajo", + "access": 33, + "superName": "afh", + "methods": { + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + } + } + }, + "ajr": { + "name": "ajr", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)V": { + "access": 4 + }, + "e (Ladm;Lcj;)Z": { + "access": 2 + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "afh" + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + } + } + }, + "ajq": { + "name": "ajq", + "access": 33, + "superName": "afh", + "methods": { + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "ajt": { + "name": "ajt", + "access": 33, + "superName": "akd", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + } + } + }, + "ajs": { + "name": "ajs", + "access": 33, + "superName": "ahj", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;)V": { + "access": 1 + }, + "I ()Z": { + "access": 4, + "override": "afh" + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + } + } + }, + "ajv": { + "name": "ajv", + "access": 33, + "superName": "ajl", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + } + } + }, + "aju": { + "name": "aju", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lwn;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Laui;Laui;)Lauh;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Ladi;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lalz;)Z": { + "access": 9 + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "c (Ladq;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "i (Ladq;Lcj;)Z": { + "access": 1 + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "c (Lafh;)Z": { + "access": 9 + }, + "h (Ladq;Lcj;)Z": { + "access": 1 + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lpk;Laui;)Laui;": { + "access": 1, + "override": "afh" + }, + "e (Ladq;Lcj;)V": { + "access": 1 + }, + "a (Lpk;)F": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Z)Z": { + "access": 1, + "override": "afh" + }, + "g (Ladq;Lcj;)I": { + "access": 1 + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "f (Ladq;Lcj;)I": { + "access": 1 + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;)I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;)Laug;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Lalz;)V": { + "access": 4 + }, + "d (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "A ()Z": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "ajx": { + "name": "ajx", + "access": 33, + "superName": "afm", + "interfaces": [ + "afj" + ], + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "l ()Lzw;": { + "access": 4 + }, + "a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z": { + "access": 1, + "override": "afj" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Z)Z": { + "access": 1, + "override": "afj" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;I)I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Ljava/util/Random;Lcj;Lalz;)V": { + "access": 1, + "override": "afj" + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "h (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Lafh;)V": { + "access": 4 + }, + "c (Lafh;)Z": { + "access": 4, + "override": "afm" + }, + "g (Ladm;Lcj;Lalz;)V": { + "access": 1 + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + } + } + }, + "ajw": { + "name": "ajw", + "access": 33, + "superName": "ahv", + "methods": { + "\u003cinit\u003e (Larm;)V": { + "access": 4 + }, + "f (Ladm;Lcj;)Z": { + "access": 4 + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;Lalz;)V": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "m (Ladm;Lcj;)Z": { + "access": 2 + } + } + }, + "ajz": { + "name": "ajz", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ajy": { + "name": "ajy", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + } + } + }, + "aka": { + "name": "aka", + "access": 33, + "superName": "afn", + "methods": { + "\u003cinit\u003e ()V": { + "access": 4 + } + } + }, + "afx$a": { + "name": "afx$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "values ()[Lafx$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lafx$a;": { + "access": 9 + } + } + }, + "akc": { + "name": "akc", + "access": 33, + "superName": "afm", + "interfaces": [ + "afj" + ], + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "j (Ladm;Lcj;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "R ()Lafh$a;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lwn;Lcj;Lalz;Lakw;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z": { + "access": 1, + "override": "afj" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Z)Z": { + "access": 1, + "override": "afj" + }, + "a (Ladq;Lcj;I)I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Ljava/util/Random;Lcj;Lalz;)V": { + "access": 1, + "override": "afj" + }, + "h (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "H ()I": { + "access": 1, + "override": "afh" + }, + "a (ILjava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;Lalz;)Z": { + "access": 1, + "override": "afm" + } + } + }, + "akb": { + "name": "akb", + "access": 1057, + "superName": "ahh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "n ()Lamo;": { + "access": 1, + "override": "ahh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "b (I)Ljava/lang/String;": { + "access": 1, + "override": "ahh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzx;)Ljava/lang/Object;": { + "access": 1, + "override": "ahh" + } + } + }, + "ake": { + "name": "ake", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lpr;)V": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladi;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Ladi;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + } + } + }, + "bfe$1": { + "name": "bfe$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "akd": { + "name": "akd", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;Z)V": { + "access": 4 + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "I ()Z": { + "access": 4, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "c (Lafh;)Z": { + "access": 17 + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "akg": { + "name": "akg", + "access": 33, + "superName": "afh", + "methods": { + "\u003cinit\u003e (Larm;Z)V": { + "access": 4 + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "akf": { + "name": "akf", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Laui;Laui;)Lauh;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lcq;)Z": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)Z": { + "access": 4 + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)Z": { + "access": 2 + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "f (Ladm;Lcj;Lalz;)Z": { + "access": 4 + }, + "c (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "aki": { + "name": "aki", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "c (Ladq;Lcj;Lalz;Lcq;)Z": { + "access": 9 + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)V": { + "access": 2 + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;)V": { + "access": 2 + } + } + }, + "akh": { + "name": "akh", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "b (I)Lcq;": { + "access": 12 + }, + "a (Ladm;Lcj;Laui;Laui;)Lauh;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "d (Lalz;)V": { + "access": 1 + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Lcq;)I": { + "access": 12 + }, + "b (Ladq;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;)V": { + "access": 4 + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;)Laug;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "c (Lafh;)Z": { + "access": 10 + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "akk": { + "name": "akk", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lwn;Lcj;Lalz;Lakw;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)Z": { + "access": 2 + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "h (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "H ()I": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "c (Lafh;)Z": { + "access": 2 + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Lcq;)Lamk;": { + "access": 9 + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;I)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "d (Lalz;)I": { + "access": 9 + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "akj": { + "name": "akj", + "access": 33, + "superName": "afh", + "methods": { + "a (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;ZZZZ)V": { + "access": 2 + }, + "e (Ladm;Lcj;Lalz;)Z": { + "access": 2 + }, + "b (Ladm;Lcj;Lalz;Ljava/util/Random;)V": { + "access": 1, + "override": "afh" + }, + "i ()Z": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;)V": { + "access": 2 + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;ZZILalz;)V": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;Lalz;Lcq;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "akm": { + "name": "akm", + "access": 33, + "superName": "ajl", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + } + } + }, + "akl": { + "name": "akl", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "e (Ladq;Lcj;)Z": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "b (Ladq;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ladq;Lcj;)Lalz;": { + "access": 1, + "override": "afh" + } + } + }, + "ako": { + "name": "ako", + "access": 33, + "superName": "afh", + "methods": { + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "I ()Z": { + "access": 4, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()Ladf;": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "akn": { + "name": "akn", + "access": 33, + "superName": "afm", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "h (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "H ()I": { + "access": 1, + "override": "afh" + }, + "c (Lafh;)Z": { + "access": 4, + "override": "afm" + }, + "f (Ladm;Lcj;Lalz;)Z": { + "access": 1, + "override": "afm" + }, + "a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;I)I": { + "access": 1, + "override": "afh" + } + } + }, + "akq": { + "name": "akq", + "access": 33, + "superName": "afn", + "methods": { + "\u003cinit\u003e ()V": { + "access": 4 + } + } + }, + "akp": { + "name": "akp", + "access": 33, + "superName": "afd", + "methods": { + "a (Ladm;)I": { + "access": 1, + "override": "afh" + }, + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Larm;I)V": { + "access": 4 + }, + "\u003cinit\u003e (Larm;ILarn;)V": { + "access": 4 + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "e (Lalz;)I": { + "access": 4, + "override": "afd" + }, + "a (Lalz;I)Lalz;": { + "access": 4, + "override": "afd" + }, + "f (Ladm;Lcj;)I": { + "access": 4, + "override": "afd" + } + } + }, + "aks": { + "name": "aks", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)Z": { + "access": 2 + }, + "e (Ladm;Lcj;)Z": { + "access": 2 + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "b (I)V": { + "access": 4 + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "akr": { + "name": "akr", + "access": 1057, + "superName": "ahh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "g (Lalz;)Larn;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "n ()Lamo;": { + "access": 1, + "override": "ahh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "b (I)Ljava/lang/String;": { + "access": 1, + "override": "ahh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Lzx;)Ljava/lang/Object;": { + "access": 1, + "override": "ahh" + } + } + }, + "aku": { + "name": "aku", + "access": 33, + "superName": "akw", + "methods": { + "e ()Ljava/util/List;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/util/List;": { + "access": 1 + }, + "c (Lzx;)I": { + "access": 9 + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "b (Lzx;)I": { + "access": 9 + }, + "a (Lzx;)V": { + "access": 1 + }, + "h ()V": { + "access": 2 + }, + "e (Lzx;)V": { + "access": 9 + }, + "a (Ldn;ILdu;)V": { + "access": 9 + }, + "y_ ()Lff;": { + "access": 1, + "override": "akw" + }, + "b ()I": { + "access": 1 + }, + "d ()Ldu;": { + "access": 1 + }, + "g ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "akt": { + "name": "akt", + "access": 33, + "superName": "agw", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "l ()Lagw$b;": { + "access": 1, + "override": "agw" + } + } + }, + "akw": { + "name": "akw", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/Class;Ljava/lang/String;)V": { + "access": 10 + }, + "E ()V": { + "access": 1 + }, + "u ()I": { + "access": 1 + }, + "a (Ladm;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (DDD)D": { + "access": 1 + }, + "D ()V": { + "access": 1 + }, + "s ()D": { + "access": 1 + }, + "z ()Ladm;": { + "access": 1 + }, + "y_ ()Lff;": { + "access": 1 + }, + "G ()Ljava/util/Map;": { + "access": 4104 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c (II)Z": { + "access": 1 + }, + "c (Ldn;)Lakw;": { + "access": 9 + }, + "b (Ldn;)V": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1 + }, + "v ()Lcj;": { + "access": 1 + }, + "p_ ()V": { + "access": 1 + }, + "a (Lc;)V": { + "access": 1 + }, + "y ()V": { + "access": 1 + }, + "F ()Z": { + "access": 1 + }, + "w ()Lafh;": { + "access": 1 + }, + "x ()Z": { + "access": 1 + }, + "t ()Z": { + "access": 1 + }, + "a (Lcj;)V": { + "access": 1 + } + } + }, + "akv": { + "name": "akv", + "access": 33, + "superName": "alk", + "interfaces": [ + "km", + "og" + ], + "methods": { + "l ()V": { + "access": 1, + "override": "og" + }, + "b (ILzx;)Z": { + "access": 1, + "override": "og" + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "m ()V": { + "access": 1 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + }, + "b (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "s ()D": { + "access": 1, + "override": "akw" + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "h (I)I": { + "access": 2 + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "y_ ()Lff;": { + "access": 1, + "override": "akw" + }, + "a (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (II)Lzx;": { + "access": 1, + "override": "og" + }, + "o ()F": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c (II)Z": { + "access": 1, + "override": "akw" + }, + "B ()V": { + "access": 2 + }, + "a (ILzx;)V": { + "access": 1, + "override": "og" + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "A ()V": { + "access": 2 + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "n ()Ljava/util/List;": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "km" + } + } + }, + "aip$a": { + "name": "aip$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ladm;Lcj;Lcq$a;)V": { + "access": 1 + }, + "d (Laip$a;)Lcq;": { + "access": 4104 + }, + "e ()V": { + "access": 1 + }, + "c ()I": { + "access": 4 + }, + "a (Lcj;Lcq;)I": { + "access": 4 + }, + "c (Laip$a;)I": { + "access": 4104 + }, + "d ()Z": { + "access": 1 + }, + "a (Laip$a;)I": { + "access": 4104 + }, + "e (Laip$a;)Lcj;": { + "access": 4104 + }, + "a ()I": { + "access": 1 + }, + "a (Lafh;)Z": { + "access": 4 + }, + "b (Laip$a;)I": { + "access": 4104 + }, + "b ()I": { + "access": 1 + } + } + }, + "aky": { + "name": "aky", + "access": 33, + "superName": "alk", + "interfaces": [ + "km", + "og" + ], + "methods": { + "l ()V": { + "access": 1, + "override": "og" + }, + "E ()V": { + "access": 1, + "override": "akw" + }, + "b (ILzx;)Z": { + "access": 1, + "override": "og" + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "b (Lcj;)Z": { + "access": 2 + }, + "a (Laky;Lcq;)V": { + "access": 2 + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "m ()V": { + "access": 1 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + }, + "b (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "a (Lcq;)Laky;": { + "access": 4 + }, + "a (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (II)Lzx;": { + "access": 1, + "override": "og" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c (II)Z": { + "access": 1, + "override": "akw" + }, + "a (ILzx;)V": { + "access": 1, + "override": "og" + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "n ()I": { + "access": 1 + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "y ()V": { + "access": 1, + "override": "akw" + }, + "c ()V": { + "access": 1, + "override": "km" + } + } + }, + "akx": { + "name": "akx", + "access": 33, + "superName": "alk", + "interfaces": [ + "km", + "ot" + ], + "methods": { + "l ()V": { + "access": 1, + "override": "og" + }, + "b (ILzx;)Z": { + "access": 1, + "override": "og" + }, + "a (ILzx;Lcq;)Z": { + "access": 1, + "override": "ot" + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c (ILzx;)I": { + "access": 2 + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + }, + "b (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "n ()Z": { + "access": 2 + }, + "a (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (II)Lzx;": { + "access": 1, + "override": "og" + }, + "a (Lcq;)[I": { + "access": 1, + "override": "ot" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "m ()[Z": { + "access": 1 + }, + "a (ILzx;)V": { + "access": 1, + "override": "og" + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "o ()V": { + "access": 2 + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "c ()V": { + "access": 1, + "override": "km" + }, + "b (ILzx;Lcq;)Z": { + "access": 1, + "override": "ot" + } + } + }, + "akz": { + "name": "akz", + "access": 33, + "superName": "akw", + "methods": { + "c ()Ln;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "F ()Z": { + "access": 1, + "override": "akw" + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "b ()Ladc;": { + "access": 1 + }, + "y_ ()Lff;": { + "access": 1, + "override": "akw" + } + } + }, + "wn$1": { + "name": "wn$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "alb": { + "name": "alb", + "access": 33, + "superName": "akw", + "interfaces": [ + "km" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "km" + } + } + }, + "ala": { + "name": "ala", + "access": 33, + "superName": "akw", + "methods": { + "a (I)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "b ()I": { + "access": 1 + } + } + }, + "ald": { + "name": "ald", + "access": 33, + "superName": "alc", + "methods": { + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + } + } + }, + "alc": { + "name": "alc", + "access": 33, + "superName": "alk", + "interfaces": [ + "og" + ], + "methods": { + "l ()V": { + "access": 1, + "override": "og" + }, + "b (ILzx;)Z": { + "access": 1, + "override": "og" + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + }, + "b (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "a (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (II)Lzx;": { + "access": 1, + "override": "og" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (ILzx;)V": { + "access": 1, + "override": "og" + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "a (Lzx;)I": { + "access": 1 + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "m ()I": { + "access": 1 + } + } + }, + "alf": { + "name": "alf", + "access": 33, + "superName": "akw", + "interfaces": [ + "km" + ], + "methods": { + "b ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c (II)Z": { + "access": 1, + "override": "akw" + }, + "y ()V": { + "access": 1, + "override": "akw" + }, + "d ()V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "km" + }, + "a (Lwn;)Z": { + "access": 1 + } + } + }, + "ale": { + "name": "ale", + "access": 33, + "superName": "akw", + "interfaces": [ + "km", + "ol" + ], + "methods": { + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "f_ ()Leu;": { + "access": 1, + "override": "op" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "c ()V": { + "access": 1, + "override": "km" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + } + } + }, + "alh": { + "name": "alh", + "access": 33, + "superName": "alk", + "interfaces": [ + "km", + "ot" + ], + "methods": { + "l ()V": { + "access": 1, + "override": "og" + }, + "b (ILzx;)Z": { + "access": 1, + "override": "og" + }, + "a (ILzx;Lcq;)Z": { + "access": 1, + "override": "ot" + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "m ()Z": { + "access": 1 + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + }, + "b (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Log;)Z": { + "access": 9 + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "c (Lzx;)Z": { + "access": 9 + }, + "a (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (II)Lzx;": { + "access": 1, + "override": "og" + }, + "n ()V": { + "access": 1 + }, + "a (Lcq;)[I": { + "access": 1, + "override": "ot" + }, + "o ()Z": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (ILzx;)V": { + "access": 1, + "override": "og" + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "b (Lzx;)I": { + "access": 9 + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "a (Lzx;)I": { + "access": 1 + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "c ()V": { + "access": 1, + "override": "km" + }, + "b (ILzx;Lcq;)Z": { + "access": 1, + "override": "ot" + } + } + }, + "alg": { + "name": "alg", + "access": 33, + "superName": "akw", + "methods": { + "b ()Lzw;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Lzw;I)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "\u003cinit\u003e (Lzw;I)V": { + "access": 1 + }, + "y_ ()Lff;": { + "access": 1, + "override": "akw" + } + } + }, + "alj": { + "name": "alj", + "access": 33, + "superName": "alk", + "interfaces": [ + "ali", + "km" + ], + "methods": { + "b (Log;Lcq;)Z": { + "access": 10 + }, + "l ()V": { + "access": 1, + "override": "og" + }, + "b (ILzx;)Z": { + "access": 1, + "override": "og" + }, + "a (Log;Lcq;)Z": { + "access": 2 + }, + "c (Log;Lzx;ILcq;)Lzx;": { + "access": 10 + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "b (Ladm;DDD)Log;": { + "access": 9 + }, + "m ()Z": { + "access": 1 + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "q ()Z": { + "access": 2 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + }, + "d (I)V": { + "access": 1 + }, + "b (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "n ()Z": { + "access": 1 + }, + "b (Log;Lzx;ILcq;)Z": { + "access": 10 + }, + "a (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (II)Lzx;": { + "access": 1, + "override": "og" + }, + "r ()Z": { + "access": 2 + }, + "a (Lzx;Lzx;)Z": { + "access": 10 + }, + "a (Lali;)Z": { + "access": 9 + }, + "o ()Z": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "A ()D": { + "access": 1, + "override": "ali" + }, + "a (ILzx;)V": { + "access": 1, + "override": "og" + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ladm;DDD)Ljava/util/List;": { + "access": 9 + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Log;Luz;)Z": { + "access": 9 + }, + "a (Log;Lzx;ILcq;)Z": { + "access": 10 + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "p_ ()V": { + "access": 1, + "override": "og" + }, + "a (Log;Lzx;Lcq;)Lzx;": { + "access": 9 + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "p ()Z": { + "access": 2 + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "H ()Log;": { + "access": 2 + }, + "a (Lali;Log;ILcq;)Z": { + "access": 10 + }, + "b (Lali;)Log;": { + "access": 9 + }, + "B ()D": { + "access": 1, + "override": "ali" + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "C ()D": { + "access": 1, + "override": "ali" + }, + "c ()V": { + "access": 1, + "override": "km" + } + } + }, + "ali": { + "name": "ali", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "og" + ], + "methods": { + "B ()D": { + "access": 1025 + }, + "A ()D": { + "access": 1025 + }, + "z ()Ladm;": { + "access": 1025 + }, + "C ()D": { + "access": 1025 + } + } + }, + "all": { + "name": "all", + "access": 33, + "superName": "akw", + "interfaces": [ + "km" + ], + "methods": { + "b ()Ladd;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c (II)Z": { + "access": 1, + "override": "akw" + }, + "F ()Z": { + "access": 1, + "override": "akw" + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "c ()V": { + "access": 1, + "override": "km" + }, + "y_ ()Lff;": { + "access": 1, + "override": "akw" + } + } + }, + "alk": { + "name": "alk", + "access": 1057, + "superName": "akw", + "interfaces": [ + "ol", + "oo" + ], + "methods": { + "i ()Lon;": { + "access": 1, + "override": "oo" + }, + "r_ ()Z": { + "access": 1, + "override": "oo" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "f_ ()Leu;": { + "access": 1, + "override": "op" + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Lon;)V": { + "access": 1, + "override": "oo" + } + } + }, + "aln": { + "name": "aln", + "access": 33, + "superName": "akw", + "methods": { + "a (Laln;)Ln;": { + "access": 4104 + }, + "a (Z)V": { + "access": 1 + }, + "b (Lwn;)Z": { + "access": 1 + }, + "a (Lwn;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Lwn;": { + "access": 1 + }, + "F ()Z": { + "access": 1, + "override": "akw" + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "y_ ()Lff;": { + "access": 1, + "override": "akw" + }, + "d ()Ln;": { + "access": 1 + }, + "b ()Z": { + "access": 1 + } + } + }, + "alm": { + "name": "alm", + "access": 33, + "superName": "akw", + "methods": { + "b ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ladm;Lcj;)V": { + "access": 1 + } + } + }, + "alp": { + "name": "alp", + "access": 33, + "superName": "akw", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "alo": { + "name": "alo", + "access": 33, + "superName": "akw", + "methods": { + "a (I)V": { + "access": 1 + }, + "e ()V": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "a (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "c ()I": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "d ()I": { + "access": 1 + }, + "y_ ()Lff;": { + "access": 1, + "override": "akw" + }, + "b (I)V": { + "access": 1 + }, + "b (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/authlib/GameProfile;": { + "access": 9 + } + } + }, + "awd$a": { + "name": "awd$a", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (IIIIII)Z": { + "access": 1025 + }, + "b (IIIIII)V": { + "access": 1025 + }, + "a (IIIIIIIZ)V": { + "access": 1025 + }, + "a (III)V": { + "access": 1025 + } + } + }, + "bhk$1": { + "name": "bhk$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "alt": { + "name": "alt", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "b (I)Lcq;": { + "access": 9 + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "d (Lalz;)V": { + "access": 1 + }, + "a (Ladm;Lcj;Lalz;Lwn;)V": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "e (Lalz;)V": { + "access": 2 + }, + "a (Ljava/util/Random;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladq;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + } + } + }, + "als": { + "name": "als", + "access": 33, + "superName": "afh", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;II)Z": { + "access": 1, + "override": "afh" + }, + "b (I)Lcq;": { + "access": 9 + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lcq;)Z": { + "access": 2 + }, + "a (Ladm;Lcj;Lpr;)Lcq;": { + "access": 9 + }, + "a (Ladm;Lcj;Lcq;Z)Z": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "b (Lalz;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Lafh;Ladm;Lcj;Lcq;Z)Z": { + "access": 9 + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lcq;FFFILpr;)Lalz;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "e (Ladm;Lcj;Lalz;)V": { + "access": 2 + }, + "a (Ladm;Lcj;Lalz;Lpr;Lzx;)V": { + "access": 1, + "override": "afh" + }, + "j ()V": { + "access": 1, + "override": "afh" + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + } + } + }, + "alv": { + "name": "alv", + "access": 33, + "superName": "afc", + "methods": { + "c (Lalz;)I": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Laui;Laui;)Lauh;": { + "access": 1, + "override": "afh" + }, + "a (I)Lalz;": { + "access": 1, + "override": "afh" + }, + "e ()Lama;": { + "access": 4, + "override": "afh" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lalz;FI)V": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lafh;)V": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Ljava/util/Random;I)Lzw;": { + "access": 1, + "override": "afh" + }, + "a (Ladm;I)Lakw;": { + "access": 1, + "override": "agq" + }, + "a (Ladq;Lcj;)V": { + "access": 1, + "override": "afh" + }, + "d ()Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;)Laug;": { + "access": 1, + "override": "afh" + }, + "c (Ladm;Lcj;)Lzw;": { + "access": 1, + "override": "afh" + }, + "b (Ladm;Lcj;Lcq;)Z": { + "access": 1, + "override": "afh" + }, + "a (Ladm;Lcj;Lalz;FLcq;)Laug;": { + "access": 1 + }, + "d (Ladm;Lcj;)Z": { + "access": 1, + "override": "afh" + }, + "d (Ladm;Lcj;Lalz;)V": { + "access": 1, + "override": "afh" + }, + "e (Ladq;Lcj;)Lalu;": { + "access": 2 + }, + "c ()Z": { + "access": 1, + "override": "afh" + }, + "a (Lalz;Lcq;ZZ)Lakw;": { + "access": 9 + } + } + }, + "alu": { + "name": "alu", + "access": 33, + "superName": "akw", + "interfaces": [ + "km" + ], + "methods": { + "u ()I": { + "access": 1, + "override": "akw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (F)F": { + "access": 1 + }, + "b (F)F": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "d ()Z": { + "access": 1 + }, + "d (F)F": { + "access": 1 + }, + "\u003cinit\u003e (Lalz;Lcq;ZZ)V": { + "access": 1 + }, + "h ()V": { + "access": 1 + }, + "e ()Lcq;": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "a (FF)V": { + "access": 2 + }, + "c ()V": { + "access": 1, + "override": "km" + }, + "b ()Lalz;": { + "access": 1 + }, + "c (F)F": { + "access": 1 + } + } + }, + "alw": { + "name": "alw", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ladm;Lcj;Lcq;Z)V": { + "access": 1 + }, + "a (Lcj;)Z": { + "access": 2 + }, + "d ()Ljava/util/List;": { + "access": 1 + }, + "b (Lcj;)Z": { + "access": 2 + }, + "c ()Ljava/util/List;": { + "access": 1 + }, + "a (II)V": { + "access": 2 + }, + "a ()Z": { + "access": 1 + } + } + }, + "alz": { + "name": "alz", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "b ()Lcom/google/common/collect/ImmutableMap;": { + "access": 1025 + }, + "b (Lamo;)Ljava/lang/Comparable;": { + "access": 1025 + }, + "a (Lamo;)Lalz;": { + "access": 1025 + }, + "a ()Ljava/util/Collection;": { + "access": 1025 + }, + "a (Lamo;Ljava/lang/Comparable;)Lalz;": { + "access": 1025 + }, + "c ()Lafh;": { + "access": 1025 + } + } + }, + "aly": { + "name": "aly", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "alz" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Lamo;)Lalz;": { + "access": 1, + "override": "alz" + }, + "a (Ljava/util/Collection;Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 12 + } + } + }, + "aqk$a": { + "name": "aqk$a", + "access": 33, + "superName": "aqu", + "methods": { + "a (Ladm;Ljava/util/Random;Laqe;)V": { + "access": 1, + "override": "aqu" + }, + "\u003cinit\u003e (Ladm;Ljava/util/Random;II)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;II)V": { + "access": 2 + }, + "b (Ldn;)V": { + "access": 1, + "override": "aqu" + }, + "a (Ladg;)Z": { + "access": 1, + "override": "aqu" + }, + "a (Ldn;)V": { + "access": 1, + "override": "aqu" + }, + "b (Ladg;)V": { + "access": 1, + "override": "aqu" + } + } + }, + "ama": { + "name": "ama", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "e ()Ljava/util/List;": { + "access": 2 + }, + "\u003cinit\u003e (Lafh;[Lamo;)V": { + "access": 129 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "d ()Ljava/util/Collection;": { + "access": 1 + }, + "a ()Lcom/google/common/collect/ImmutableList;": { + "access": 1 + }, + "b ()Lalz;": { + "access": 1 + }, + "c ()Lafh;": { + "access": 1 + } + } + }, + "amc": { + "name": "amc", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "d ()Lcj;": { + "access": 1 + }, + "a (Lcom/google/common/base/Predicate;)Lcom/google/common/base/Predicate;": { + "access": 9 + }, + "a ()Lalz;": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lcj;Z)V": { + "access": 1 + }, + "b ()Lakw;": { + "access": 1 + } + } + }, + "ame": { + "name": "ame", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()Lamd;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a ([Ljava/lang/String;)Lame;": { + "access": 129 + }, + "a (CLcom/google/common/base/Predicate;)Lame;": { + "access": 1 + }, + "d ()V": { + "access": 2 + }, + "a ()Lame;": { + "access": 9 + }, + "c ()[[[Lcom/google/common/base/Predicate;": { + "access": 2 + } + } + }, + "amd": { + "name": "amd", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lcj;Lcq;Lcq;III)Lcj;": { + "access": 12 + }, + "a (Ladm;Z)Lcom/google/common/cache/LoadingCache;": { + "access": 9 + }, + "a (Lcj;Lcq;Lcq;Lcom/google/common/cache/LoadingCache;)Lamd$b;": { + "access": 2 + }, + "c ()I": { + "access": 1 + }, + "a (Ladm;Lcj;)Lamd$b;": { + "access": 1 + }, + "\u003cinit\u003e ([[[Lcom/google/common/base/Predicate;)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "amg": { + "name": "amg", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lalz;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Lafh;)V": { + "access": 2 + }, + "a (Lafh;)Lamg;": { + "access": 9 + }, + "a (Lalz;)Z": { + "access": 1 + } + } + }, + "amh": { + "name": "amh", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lalz;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lamo;Lcom/google/common/base/Predicate;)Lamh;": { + "access": 1 + }, + "\u003cinit\u003e (Lama;)V": { + "access": 2 + }, + "a (Lalz;)Z": { + "access": 1 + }, + "a (Lafh;)Lamh;": { + "access": 9 + } + } + }, + "ln$1": { + "name": "ln$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "amk": { + "name": "amk", + "access": 33, + "superName": "amj", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 4 + }, + "c ()Ljava/util/Collection;": { + "access": 1, + "override": "amo" + }, + "a (Ljava/lang/Comparable;)Ljava/lang/String;": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljava/lang/Boolean;)Ljava/lang/String;" + }, + "override": "amo" + }, + "a (Ljava/lang/String;)Lamk;": { + "access": 9 + }, + "a (Ljava/lang/Boolean;)Ljava/lang/String;": { + "access": 1 + } + } + }, + "amj": { + "name": "amj", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "amo" + ], + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "amo" + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/Class;)V": { + "access": 4 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "b ()Ljava/lang/Class;": { + "access": 1, + "override": "amo" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "amm": { + "name": "amm", + "access": 33, + "superName": "amj", + "methods": { + "a (Ljava/lang/Enum;)Ljava/lang/String;": { + "access": 1 + }, + "c ()Ljava/util/Collection;": { + "access": 1, + "override": "amo" + }, + "a (Ljava/lang/Comparable;)Ljava/lang/String;": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljava/lang/Enum;)Ljava/lang/String;" + }, + "override": "amo" + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)V": { + "access": 4 + }, + "a (Ljava/lang/String;Ljava/lang/Class;)Lamm;": { + "access": 9 + }, + "a (Ljava/lang/String;Ljava/lang/Class;[Ljava/lang/Enum;)Lamm;": { + "access": 137 + }, + "a (Ljava/lang/String;Ljava/lang/Class;Lcom/google/common/base/Predicate;)Lamm;": { + "access": 9 + }, + "a (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)Lamm;": { + "access": 9 + } + } + }, + "aml": { + "name": "aml", + "access": 33, + "superName": "amm", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/util/Collection;)V": { + "access": 4 + }, + "a (Ljava/lang/String;Lcom/google/common/base/Predicate;)Laml;": { + "access": 9 + }, + "a (Ljava/lang/String;Ljava/util/Collection;)Laml;": { + "access": 9 + }, + "a (Ljava/lang/String;)Laml;": { + "access": 9 + } + } + }, + "amo": { + "name": "amo", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1025 + }, + "c ()Ljava/util/Collection;": { + "access": 1025 + }, + "a (Ljava/lang/Comparable;)Ljava/lang/String;": { + "access": 1025 + }, + "b ()Ljava/lang/Class;": { + "access": 1025 + } + } + }, + "amn": { + "name": "amn", + "access": 33, + "superName": "amj", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Ljava/lang/String;II)Lamn;": { + "access": 9 + }, + "c ()Ljava/util/Collection;": { + "access": 1, + "override": "amo" + }, + "a (Ljava/lang/Comparable;)Ljava/lang/String;": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljava/lang/Integer;)Ljava/lang/String;" + }, + "override": "amo" + }, + "\u003cinit\u003e (Ljava/lang/String;II)V": { + "access": 4 + }, + "a (Ljava/lang/Integer;)Ljava/lang/String;": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "amq": { + "name": "amq", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lams;DD)V": { + "access": 1025 + }, + "a (Lams;I)V": { + "access": 1025 + }, + "b (Lams;I)V": { + "access": 1025 + }, + "a (Lams;D)V": { + "access": 1025 + }, + "b (Lams;D)V": { + "access": 1025 + }, + "a (Lams;DDJ)V": { + "access": 1025 + }, + "c (Lams;D)V": { + "access": 1025 + } + } + }, + "abt$1": { + "name": "abt$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/Comparator" + ], + "methods": { + "\u003cinit\u003e (Labt;)V": { + "access": 0 + }, + "a (Labs;Labs;)I": { + "access": 1 + }, + "compare (Ljava/lang/Object;Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Labs;Labs;)I" + }, + "override": "java/util/Comparator" + } + } + }, + "ams": { + "name": "ams", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()Lamr;": { + "access": 1 + }, + "p ()I": { + "access": 1 + }, + "a (Lamq;)V": { + "access": 1 + }, + "a (Lcj;)Z": { + "access": 1 + }, + "c (D)V": { + "access": 1 + }, + "f ()D": { + "access": 1 + }, + "j ()D": { + "access": 1 + }, + "a (Ladg;)Z": { + "access": 1 + }, + "c (I)V": { + "access": 1 + }, + "c (DD)V": { + "access": 1 + }, + "g ()D": { + "access": 1 + }, + "b ()D": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "a (D)V": { + "access": 1 + }, + "o ()D": { + "access": 1 + }, + "a (Lpk;)D": { + "access": 1 + }, + "h ()D": { + "access": 1 + }, + "c ()D": { + "access": 1 + }, + "i ()J": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Laug;)Z": { + "access": 1 + }, + "n ()D": { + "access": 1 + }, + "k ()Ljava/util/List;": { + "access": 4 + }, + "b (DD)D": { + "access": 1 + }, + "l ()I": { + "access": 1 + }, + "e ()D": { + "access": 1 + }, + "b (D)V": { + "access": 1 + }, + "d ()D": { + "access": 1 + }, + "a (DDJ)V": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "q ()I": { + "access": 1 + }, + "m ()D": { + "access": 1 + } + } + }, + "amr": { + "name": "amr", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lamr;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;II)V": { + "access": 2 + }, + "values ()[Lamr;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "amw": { + "name": "amw", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (I)Z": { + "access": 2 + }, + "a (III)I": { + "access": 1 + }, + "a (IIII)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (II)V": { + "access": 1 + }, + "c (I)I": { + "access": 2 + }, + "b (III)I": { + "access": 2 + }, + "a (I)I": { + "access": 1 + }, + "a ()[B": { + "access": 1 + }, + "\u003cinit\u003e ([B)V": { + "access": 1 + } + } + }, + "amv": { + "name": "amv", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "e ()Z": { + "access": 1025 + }, + "a (Lamv;II)V": { + "access": 1025 + }, + "a (Lamv;Lamy;II)Z": { + "access": 1025 + }, + "a (Ladm;Ljava/lang/String;Lcj;)Lcj;": { + "access": 1025 + }, + "d ()Z": { + "access": 1025 + }, + "f ()Ljava/lang/String;": { + "access": 1025 + }, + "g ()I": { + "access": 1025 + }, + "a (II)Z": { + "access": 1025 + }, + "d (II)Lamy;": { + "access": 1025 + }, + "a (Lcj;)Lamy;": { + "access": 1025 + }, + "c ()V": { + "access": 1025 + }, + "a (Lamy;II)V": { + "access": 1025 + }, + "a (ZLnu;)Z": { + "access": 1025 + }, + "a (Lpt;Lcj;)Ljava/util/List;": { + "access": 1025 + } + } + }, + "amy": { + "name": "amy", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "g (Z)V": { + "access": 1 + }, + "j ()Ladg;": { + "access": 1 + }, + "a (Lcj;Lamy$a;)Lakw;": { + "access": 1 + }, + "a (Lcj;Lalz;)Lalz;": { + "access": 1 + }, + "g (Lcj;)Lalz;": { + "access": 1 + }, + "d (Lcj;)Z": { + "access": 1 + }, + "g (III)I": { + "access": 2 + }, + "a (Lpk;)V": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "i ()Z": { + "access": 1 + }, + "g ()I": { + "access": 1 + }, + "a (Lakw;)V": { + "access": 1 + }, + "e (III)I": { + "access": 2 + }, + "a (Lcj;Lakw;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;II)V": { + "access": 1 + }, + "s ()[Lne;": { + "access": 1 + }, + "f (Z)V": { + "access": 1 + }, + "f (Lcj;)I": { + "access": 1 + }, + "e ()V": { + "access": 1 + }, + "a (Lads;Lcj;I)V": { + "access": 1 + }, + "d ()V": { + "access": 1 + }, + "c (III)V": { + "access": 2 + }, + "a (Lpk;I)V": { + "access": 1 + }, + "h (Lcj;)Lcj;": { + "access": 1 + }, + "u ()Z": { + "access": 1 + }, + "a (IIII)V": { + "access": 2 + }, + "v ()I": { + "access": 1 + }, + "a (Lcj;)Lafh;": { + "access": 1 + }, + "a (II)Z": { + "access": 1 + }, + "b (Lcj;)I": { + "access": 1 + }, + "a (Lamv;Lamv;II)V": { + "access": 1 + }, + "d (II)V": { + "access": 2 + }, + "c ()V": { + "access": 1 + }, + "t ()Z": { + "access": 1 + }, + "f (III)Lafh;": { + "access": 2 + }, + "a (Ljava/lang/Class;Laug;Ljava/util/List;Lcom/google/common/base/Predicate;)V": { + "access": 1 + }, + "a (Z)Z": { + "access": 1 + }, + "l ()V": { + "access": 1 + }, + "d (Z)V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (III)Lafh;": { + "access": 1 + }, + "a ([B)V": { + "access": 1 + }, + "c (J)V": { + "access": 1 + }, + "m ()V": { + "access": 1 + }, + "a ()V": { + "access": 4 + }, + "e (Lcj;)V": { + "access": 1 + }, + "a (Lcj;I)I": { + "access": 1 + }, + "a (Lcq;)V": { + "access": 2 + }, + "b (Lpk;)V": { + "access": 1 + }, + "r ()Ljava/util/Map;": { + "access": 1 + }, + "e (II)Z": { + "access": 2 + }, + "b (II)I": { + "access": 1 + }, + "c (Z)V": { + "access": 1 + }, + "w ()J": { + "access": 1 + }, + "a (Lads;Lcj;)I": { + "access": 1 + }, + "a ([Lamz;)V": { + "access": 1 + }, + "n ()V": { + "access": 1 + }, + "o ()Z": { + "access": 1 + }, + "c (II)Z": { + "access": 1 + }, + "a (Lcj;Laec;)Lady;": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lans;II)V": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "p ()Ladm;": { + "access": 1 + }, + "h ()[Lamz;": { + "access": 1 + }, + "d (III)V": { + "access": 2 + }, + "a (Lpk;Laug;Ljava/util/List;Lcom/google/common/base/Predicate;)V": { + "access": 1 + }, + "k ()[B": { + "access": 1 + }, + "a ([I)V": { + "access": 1 + }, + "a ([BIZ)V": { + "access": 1 + }, + "e (Z)V": { + "access": 1 + }, + "y ()V": { + "access": 2 + }, + "q ()[I": { + "access": 1 + }, + "i (Lcj;)Lakw;": { + "access": 2 + }, + "h (Z)V": { + "access": 2 + }, + "c (Lcj;)I": { + "access": 1 + }, + "a (J)Ljava/util/Random;": { + "access": 1 + }, + "b (J)V": { + "access": 1 + } + } + }, + "amx": { + "name": "amx", + "access": 33, + "superName": "amy", + "methods": { + "b ()V": { + "access": 1, + "override": "amy" + }, + "a (Lcj;Lamy$a;)Lakw;": { + "access": 1, + "override": "amy" + }, + "d (Lcj;)Z": { + "access": 1, + "override": "amy" + }, + "a ()V": { + "access": 1, + "override": "amy" + }, + "e (Lcj;)V": { + "access": 1, + "override": "amy" + }, + "a (Lcj;I)I": { + "access": 1, + "override": "amy" + }, + "a (Lpk;)V": { + "access": 1, + "override": "amy" + }, + "f ()Z": { + "access": 1, + "override": "amy" + }, + "a (Lakw;)V": { + "access": 1, + "override": "amy" + }, + "b (Lpk;)V": { + "access": 1, + "override": "amy" + }, + "b (II)I": { + "access": 1, + "override": "amy" + }, + "a (Lcj;Lakw;)V": { + "access": 1, + "override": "amy" + }, + "\u003cinit\u003e (Ladm;II)V": { + "access": 1 + }, + "a (Lads;Lcj;)I": { + "access": 1, + "override": "amy" + }, + "e ()V": { + "access": 1, + "override": "amy" + }, + "c (II)Z": { + "access": 1, + "override": "amy" + }, + "a (Lads;Lcj;I)V": { + "access": 1, + "override": "amy" + }, + "d ()V": { + "access": 1, + "override": "amy" + }, + "a (Lpk;I)V": { + "access": 1, + "override": "amy" + }, + "a (Lpk;Laug;Ljava/util/List;Lcom/google/common/base/Predicate;)V": { + "access": 1, + "override": "amy" + }, + "a (Lcj;)Lafh;": { + "access": 1, + "override": "amy" + }, + "a (II)Z": { + "access": 1, + "override": "amy" + }, + "b (Lcj;)I": { + "access": 1, + "override": "amy" + }, + "c (Lcj;)I": { + "access": 1, + "override": "amy" + }, + "c ()V": { + "access": 1, + "override": "amy" + }, + "a (J)Ljava/util/Random;": { + "access": 1, + "override": "amy" + }, + "a (Ljava/lang/Class;Laug;Ljava/util/List;Lcom/google/common/base/Predicate;)V": { + "access": 1, + "override": "amy" + }, + "a (Z)Z": { + "access": 1, + "override": "amy" + } + } + }, + "amz": { + "name": "amz", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "e ()V": { + "access": 1 + }, + "i ()Lamw;": { + "access": 1 + }, + "a (Lamw;)V": { + "access": 1 + }, + "a ([C)V": { + "access": 1 + }, + "a (IIILalz;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1 + }, + "b (Lamw;)V": { + "access": 1 + }, + "a (IIII)V": { + "access": 1 + }, + "\u003cinit\u003e (IZ)V": { + "access": 1 + }, + "d (III)I": { + "access": 1 + }, + "c (III)I": { + "access": 1 + }, + "e (III)I": { + "access": 1 + }, + "g ()[C": { + "access": 1 + }, + "a (III)Lalz;": { + "access": 1 + }, + "a ()Z": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "h ()Lamw;": { + "access": 1 + }, + "b (IIII)V": { + "access": 1 + }, + "b (III)Lafh;": { + "access": 1 + } + } + }, + "ana": { + "name": "ana", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (III)I": { + "access": 1 + }, + "\u003cinit\u003e ([BI)V": { + "access": 1 + } + } + }, + "and": { + "name": "and", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1025 + }, + "b (Ladm;Lamy;)V": { + "access": 1025, + "exceptions": [ + "java/io/IOException" + ] + }, + "b ()V": { + "access": 1025 + }, + "a (Ladm;II)Lamy;": { + "access": 1025, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ladm;Lamy;)V": { + "access": 1025, + "exceptions": [ + "java/io/IOException", + "adn" + ] + } + } + }, + "anh": { + "name": "anh", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "b (II)Ljava/io/DataOutputStream;": { + "access": 1 + }, + "a (II)Ljava/io/DataInputStream;": { + "access": 33 + }, + "c (II)Z": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c ()V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "e (II)I": { + "access": 2 + }, + "a (II[BI)V": { + "access": 36 + }, + "d (II)Z": { + "access": 2 + }, + "a (I[BI)V": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (III)V": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "b (III)V": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + } + } + }, + "ang": { + "name": "ang", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ldn;)Lang$a;": { + "access": 9 + }, + "a (Lang$a;Ldn;Laec;)V": { + "access": 9 + } + } + }, + "anj": { + "name": "anj", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "and", + "aud" + ], + "methods": { + "b (Ladg;Ldn;)V": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ladg;Ldn;)V": { + "access": 4 + }, + "b ()V": { + "access": 1, + "override": "and" + }, + "a (Lamy;Ladm;Ldn;)V": { + "access": 2 + }, + "a (Ladm;Ldn;)Lamy;": { + "access": 2 + }, + "a (Ladm;II)Lamy;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "and" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;IILdn;)Lamy;": { + "access": 4 + }, + "a ()V": { + "access": 1, + "override": "and" + }, + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "b (Ladm;Lamy;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "and" + }, + "a (Ladm;Lamy;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException", + "adn" + ], + "override": "and" + }, + "c ()Z": { + "access": 1, + "override": "aud" + } + } + }, + "ani": { + "name": "ani", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 41 + }, + "c (Ljava/io/File;II)Ljava/io/DataInputStream;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/io/File;II)Lanh;": { + "access": 41 + }, + "d (Ljava/io/File;II)Ljava/io/DataOutputStream;": { + "access": 9 + } + } + }, + "ann": { + "name": "ann", + "access": 33, + "superName": "anm", + "methods": { + "e ()Z": { + "access": 1, + "override": "anm" + }, + "b ()V": { + "access": 1, + "override": "anm" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "anm" + }, + "b (II)Z": { + "access": 1, + "override": "anm" + }, + "d ()Z": { + "access": 1, + "override": "anm" + }, + "a (JF)F": { + "access": 1, + "override": "anm" + }, + "a ()V": { + "access": 4, + "override": "anm" + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "anm" + }, + "b (FF)Laui;": { + "access": 1, + "override": "anm" + }, + "c ()Lamv;": { + "access": 1, + "override": "anm" + }, + "a (II)Z": { + "access": 1, + "override": "anm" + }, + "r ()Lams;": { + "access": 1, + "override": "anm" + } + } + }, + "ayf$e": { + "name": "ayf$e", + "access": 1056, + "superName": "awi", + "methods": { + "b (II)V": { + "access": 4, + "override": "awi" + }, + "\u003cinit\u003e (Layf;Lave;)V": { + "access": 4 + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "a (Lmu;II)V": { + "access": 4 + }, + "a ()V": { + "access": 4, + "override": "awi" + }, + "d (I)V": { + "access": 4 + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "b (I)Ljava/lang/String;": { + "access": 1028 + }, + "a (Lmw;IIZ)V": { + "access": 4 + }, + "a (IILbfx;)V": { + "access": 4, + "override": "awi" + }, + "a (II)V": { + "access": 4, + "override": "awi" + }, + "b ()I": { + "access": 20, + "override": "awi" + }, + "c (I)Lmu;": { + "access": 20 + } + } + }, + "anm": { + "name": "anm", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "m ()Laec;": { + "access": 1 + }, + "b ()V": { + "access": 4 + }, + "a (Ladm;)V": { + "access": 17 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f ()F": { + "access": 1 + }, + "h ()Lcj;": { + "access": 1 + }, + "b (II)Z": { + "access": 1 + }, + "p ()[F": { + "access": 1 + }, + "j ()D": { + "access": 1 + }, + "a (JF)F": { + "access": 1 + }, + "a ()V": { + "access": 4 + }, + "a (I)Lanm;": { + "access": 9 + }, + "b (FF)Laui;": { + "access": 1 + }, + "n ()Z": { + "access": 1 + }, + "a (J)I": { + "access": 1 + }, + "e ()Z": { + "access": 1 + }, + "o ()Z": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "i ()I": { + "access": 1 + }, + "l ()Ljava/lang/String;": { + "access": 1025 + }, + "d ()Z": { + "access": 1 + }, + "k ()Ljava/lang/String;": { + "access": 1025 + }, + "c ()Lamv;": { + "access": 1 + }, + "a (II)Z": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "r ()Lams;": { + "access": 1 + }, + "a (FF)[F": { + "access": 1 + }, + "q ()I": { + "access": 1 + } + } + }, + "ayf$d": { + "name": "ayf$d", + "access": 32, + "superName": "awi", + "methods": { + "a ()V": { + "access": 4, + "override": "awi" + }, + "k ()I": { + "access": 4, + "override": "awi" + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "\u003cinit\u003e (Layf;Lave;)V": { + "access": 1 + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "anp": { + "name": "anp", + "access": 33, + "superName": "anm", + "methods": { + "e ()Z": { + "access": 1, + "override": "anm" + }, + "b ()V": { + "access": 1, + "override": "anm" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "f ()F": { + "access": 1, + "override": "anm" + }, + "i ()I": { + "access": 1, + "override": "anm" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "anm" + }, + "h ()Lcj;": { + "access": 1, + "override": "anm" + }, + "b (II)Z": { + "access": 1, + "override": "anm" + }, + "d ()Z": { + "access": 1, + "override": "anm" + }, + "a (JF)F": { + "access": 1, + "override": "anm" + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "anm" + }, + "c ()Lamv;": { + "access": 1, + "override": "anm" + }, + "b (FF)Laui;": { + "access": 1, + "override": "anm" + }, + "a (II)Z": { + "access": 1, + "override": "anm" + }, + "g ()Z": { + "access": 1, + "override": "anm" + }, + "a (FF)[F": { + "access": 1, + "override": "anm" + } + } + }, + "ayf$c": { + "name": "ayf$c", + "access": 32, + "superName": "ayf$e", + "methods": { + "b (I)Ljava/lang/String;": { + "access": 4, + "override": "ayf$e" + }, + "a (IILbfx;)V": { + "access": 4, + "override": "awi" + }, + "\u003cinit\u003e (Layf;Lave;)V": { + "access": 1 + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + } + } + }, + "wn$b": { + "name": "wn$b", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lwn$b;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;)V": { + "access": 2 + }, + "values ()[Lwn$b;": { + "access": 9 + }, + "a ()I": { + "access": 1 + }, + "a (I)Lwn$b;": { + "access": 9 + } + } + }, + "ano": { + "name": "ano", + "access": 33, + "superName": "anm", + "methods": { + "k ()Ljava/lang/String;": { + "access": 1, + "override": "anm" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "anm" + } + } + }, + "ayf$b": { + "name": "ayf$b", + "access": 32, + "superName": "awi", + "methods": { + "a ()V": { + "access": 4, + "override": "awi" + }, + "k ()I": { + "access": 4, + "override": "awi" + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "\u003cinit\u003e (Layf;Lave;)V": { + "access": 1 + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "wn$a": { + "name": "wn$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lwn$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lwn$a;": { + "access": 9 + } + } + }, + "anr": { + "name": "anr", + "access": 33, + "superName": "any", + "methods": { + "a (Ladm;IIIILans;)V": { + "access": 4, + "override": "any" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (JIILans;DDDFFFIID)V": { + "access": 4 + } + } + }, + "ayf$a": { + "name": "ayf$a", + "access": 32, + "superName": "ayf$e", + "methods": { + "b (I)Ljava/lang/String;": { + "access": 4, + "override": "ayf$e" + }, + "a (IILbfx;)V": { + "access": 4, + "override": "awi" + }, + "\u003cinit\u003e (Layf;Lave;)V": { + "access": 1 + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + } + } + }, + "ant": { + "name": "ant", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lant$a;)V": { + "access": 2 + }, + "\u003cinit\u003e (Lant$a;Lant$1;)V": { + "access": 4096 + } + } + }, + "ans": { + "name": "ans", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (ILalz;)V": { + "access": 1 + }, + "a (I)Lalz;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (III)Lalz;": { + "access": 1 + }, + "a (IIILalz;)V": { + "access": 1 + } + } + }, + "anv": { + "name": "anv", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "amv" + ], + "methods": { + "e ()Z": { + "access": 1, + "override": "amv" + }, + "a (Lamv;II)V": { + "access": 1, + "override": "amv" + }, + "a (Lamv;Lamy;II)Z": { + "access": 1, + "override": "amv" + }, + "a (Ladm;Ljava/lang/String;Lcj;)Lcj;": { + "access": 1, + "override": "amv" + }, + "d ()Z": { + "access": 1, + "override": "amv" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "amv" + }, + "\u003cinit\u003e (Ladm;JZLjava/lang/String;)V": { + "access": 1 + }, + "g ()I": { + "access": 1, + "override": "amv" + }, + "a (II)Z": { + "access": 1, + "override": "amv" + }, + "d (II)Lamy;": { + "access": 1, + "override": "amv" + }, + "a (Lcj;)Lamy;": { + "access": 1, + "override": "amv" + }, + "c ()V": { + "access": 1, + "override": "amv" + }, + "a (Lamy;II)V": { + "access": 1, + "override": "amv" + }, + "a (ZLnu;)Z": { + "access": 1, + "override": "amv" + }, + "a (Lpt;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "amv" + } + } + }, + "anu": { + "name": "anu", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "amv" + ], + "methods": { + "e ()Z": { + "access": 1, + "override": "amv" + }, + "b (II)Lalz;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lamv;II)V": { + "access": 1, + "override": "amv" + }, + "a (Lamv;Lamy;II)Z": { + "access": 1, + "override": "amv" + }, + "a (Ladm;Ljava/lang/String;Lcj;)Lcj;": { + "access": 1, + "override": "amv" + }, + "d ()Z": { + "access": 1, + "override": "amv" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "amv" + }, + "g ()I": { + "access": 1, + "override": "amv" + }, + "a (II)Z": { + "access": 1, + "override": "amv" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "d (II)Lamy;": { + "access": 1, + "override": "amv" + }, + "a (Lcj;)Lamy;": { + "access": 1, + "override": "amv" + }, + "c ()V": { + "access": 1, + "override": "amv" + }, + "a (Lamy;II)V": { + "access": 1, + "override": "amv" + }, + "a (ZLnu;)Z": { + "access": 1, + "override": "amv" + }, + "a (Lpt;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "amv" + } + } + }, + "anx": { + "name": "anx", + "access": 33, + "superName": "any", + "methods": { + "a (Ladm;IIIILans;)V": { + "access": 4, + "override": "any" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (JIILans;DDDFFFIID)V": { + "access": 4 + }, + "a (Lalz;Lalz;)Z": { + "access": 4 + }, + "a (JIILans;DDD)V": { + "access": 4 + } + } + }, + "anw": { + "name": "anw", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "amv" + ], + "methods": { + "e ()Z": { + "access": 1, + "override": "amv" + }, + "a (Lamv;II)V": { + "access": 1, + "override": "amv" + }, + "a (Lamv;Lamy;II)Z": { + "access": 1, + "override": "amv" + }, + "b (IILans;)V": { + "access": 1 + }, + "a (Ladm;Ljava/lang/String;Lcj;)Lcj;": { + "access": 1, + "override": "amv" + }, + "d ()Z": { + "access": 1, + "override": "amv" + }, + "a ([DIIIIII)[D": { + "access": 2 + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "amv" + }, + "\u003cinit\u003e (Ladm;ZJ)V": { + "access": 1 + }, + "g ()I": { + "access": 1, + "override": "amv" + }, + "a (II)Z": { + "access": 1, + "override": "amv" + }, + "d (II)Lamy;": { + "access": 1, + "override": "amv" + }, + "a (Lcj;)Lamy;": { + "access": 1, + "override": "amv" + }, + "a (IILans;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "amv" + }, + "a (Lamy;II)V": { + "access": 1, + "override": "amv" + }, + "a (ZLnu;)Z": { + "access": 1, + "override": "amv" + }, + "a (Lpt;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "amv" + } + } + }, + "anz": { + "name": "anz", + "access": 33, + "superName": "any", + "methods": { + "a (Ladm;IIIILans;)V": { + "access": 4, + "override": "any" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (JIILans;DDDFFFIID)V": { + "access": 4 + }, + "a (JIILans;DDD)V": { + "access": 4 + } + } + }, + "any": { + "name": "any", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ladm;IIIILans;)V": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lamv;Ladm;IILans;)V": { + "access": 1 + } + } + }, + "net/minecraft/server/MinecraftServer$4": { + "name": "net/minecraft/server/MinecraftServer$4", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "aoa": { + "name": "aoa", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "amv" + ], + "methods": { + "e ()Z": { + "access": 1, + "override": "amv" + }, + "a (IILans;[Lady;)V": { + "access": 1 + }, + "a (Lamv;II)V": { + "access": 1, + "override": "amv" + }, + "a (Lamv;Lamy;II)Z": { + "access": 1, + "override": "amv" + }, + "a (Ladm;Ljava/lang/String;Lcj;)Lcj;": { + "access": 1, + "override": "amv" + }, + "d ()Z": { + "access": 1, + "override": "amv" + }, + "a (III)V": { + "access": 2 + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "amv" + }, + "\u003cinit\u003e (Ladm;JZLjava/lang/String;)V": { + "access": 1 + }, + "g ()I": { + "access": 1, + "override": "amv" + }, + "a (II)Z": { + "access": 1, + "override": "amv" + }, + "d (II)Lamy;": { + "access": 1, + "override": "amv" + }, + "a (Lcj;)Lamy;": { + "access": 1, + "override": "amv" + }, + "a (IILans;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "amv" + }, + "a (Lamy;II)V": { + "access": 1, + "override": "amv" + }, + "a (ZLnu;)Z": { + "access": 1, + "override": "amv" + }, + "a (Lpt;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "amv" + } + } + }, + "aob": { + "name": "aob", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "amv" + ], + "methods": { + "e ()Z": { + "access": 1, + "override": "amv" + }, + "\u003cinit\u003e (Ladm;J)V": { + "access": 1 + }, + "a (Lamv;II)V": { + "access": 1, + "override": "amv" + }, + "a (Lamv;Lamy;II)Z": { + "access": 1, + "override": "amv" + }, + "a (Ladm;Ljava/lang/String;Lcj;)Lcj;": { + "access": 1, + "override": "amv" + }, + "d ()Z": { + "access": 1, + "override": "amv" + }, + "a ([DIIIIII)[D": { + "access": 2 + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "amv" + }, + "g ()I": { + "access": 1, + "override": "amv" + }, + "a (Lans;)V": { + "access": 1 + }, + "a (II)Z": { + "access": 1, + "override": "amv" + }, + "d (II)Lamy;": { + "access": 1, + "override": "amv" + }, + "a (Lcj;)Lamy;": { + "access": 1, + "override": "amv" + }, + "a (IILans;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "amv" + }, + "a (Lamy;II)V": { + "access": 1, + "override": "amv" + }, + "a (ZLnu;)Z": { + "access": 1, + "override": "amv" + }, + "a (Lpt;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "amv" + } + } + }, + "aoi": { + "name": "aoi", + "access": 33, + "superName": "aoh", + "methods": { + "a (I)F": { + "access": 0 + }, + "a (Lcj;Lcj;)I": { + "access": 0 + }, + "a (Lcj;Lcj;Lafh;)V": { + "access": 0 + }, + "b ()V": { + "access": 0 + }, + "e ()V": { + "access": 1, + "override": "aot" + }, + "b (Lcj;Lcj;)Lahw$a;": { + "access": 2 + }, + "d ()V": { + "access": 0 + }, + "c (I)Z": { + "access": 0 + }, + "b (I)F": { + "access": 0 + }, + "a ()V": { + "access": 0 + }, + "f ()Z": { + "access": 2 + }, + "b (Lcj;)I": { + "access": 2 + }, + "c ()V": { + "access": 0 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + }, + "a (Lcj;FLalz;)V": { + "access": 0 + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + }, + "a (Lcj;)V": { + "access": 0 + } + } + }, + "aoh": { + "name": "aoh", + "access": 1057, + "superName": "aot", + "methods": { + "a (Lafh;)Z": { + "access": 4 + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1 + }, + "a (Ladm;Lcj;)V": { + "access": 4 + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + } + } + }, + "aok": { + "name": "aok", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e (Lafh;I)V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "aoj": { + "name": "aoj", + "access": 33, + "superName": "aoh", + "methods": { + "\u003cinit\u003e (ZZ)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "net/minecraft/server/MinecraftServer$1": { + "name": "net/minecraft/server/MinecraftServer$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "nu" + ], + "methods": { + "a ()V": { + "access": 1, + "override": "nu" + }, + "a (I)V": { + "access": 1, + "override": "nu" + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;)V": { + "access": 0 + }, + "a (Ljava/lang/String;)V": { + "access": 1, + "override": "nu" + }, + "b (Ljava/lang/String;)V": { + "access": 1, + "override": "nu" + }, + "c (Ljava/lang/String;)V": { + "access": 1, + "override": "nu" + } + } + }, + "aom": { + "name": "aom", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e (Lafm;)V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "net/minecraft/server/MinecraftServer$2": { + "name": "net/minecraft/server/MinecraftServer$2", + "access": 48, + "superName": "java/lang/Thread", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Lko;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "aol": { + "name": "aol", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e (Ljava/util/List;I)V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "net/minecraft/server/MinecraftServer$3": { + "name": "net/minecraft/server/MinecraftServer$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "aon": { + "name": "aon", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "aoq": { + "name": "aoq", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "aop": { + "name": "aop", + "access": 33, + "superName": "aot", + "methods": { + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "aos": { + "name": "aos", + "access": 33, + "superName": "aot", + "methods": { + "a (Lagi$b;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "aor": { + "name": "aor", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "aou": { + "name": "aou", + "access": 33, + "superName": "aot", + "methods": { + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + }, + "a (Lagw;Lagw$a;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lagw;Lagw$a;)V": { + "access": 1 + } + } + }, + "aot": { + "name": "aot", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "e ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1025 + }, + "a (Ladm;Lcj;Lalz;)V": { + "access": 4 + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + } + } + }, + "aow": { + "name": "aow", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "aov": { + "name": "aov", + "access": 33, + "superName": "apv", + "methods": { + "\u003cinit\u003e (Lalz;Lalz;)V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "aoy": { + "name": "aoy", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e (Lafh;Z)V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "aox": { + "name": "aox", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "aoz": { + "name": "aoz", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "bgm$a": { + "name": "bgm$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer" + ], + "methods": { + "a (Lcom/google/gson/JsonDeserializationContext;Ljava/util/Map$Entry;)Lbgm$d;": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgm;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "a (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List;": { + "access": 4 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgm;" + }, + "override": "com/google/gson/JsonDeserializer" + } + } + }, + "bgm$c": { + "name": "bgm$c", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a ()Ljy;": { + "access": 1 + }, + "b ()Lbor;": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "c ()Z": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Ljy;Lbor;ZI)V": { + "access": 1 + } + } + }, + "apb": { + "name": "apb", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "bgm$b": { + "name": "bgm$b", + "access": 33, + "superName": "java/lang/RuntimeException", + "methods": { + "\u003cinit\u003e (Lbgm;)V": { + "access": 4 + } + } + }, + "apa": { + "name": "apa", + "access": 33, + "superName": "aot", + "methods": { + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "apd": { + "name": "apd", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "apc": { + "name": "apc", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "apf": { + "name": "apf", + "access": 33, + "superName": "apg", + "methods": { + "\u003cinit\u003e (ZZ)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;IIIILjava/util/Random;)V": { + "access": 2 + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1, + "override": "aoh" + }, + "c (Ladm;Lcj;)V": { + "access": 2 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + }, + "b (Ladm;Lcj;)V": { + "access": 2 + } + } + }, + "aae$1": { + "name": "aae$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ([Ljava/lang/String;)V": { + "access": 0 + } + } + }, + "ape": { + "name": "ape", + "access": 33, + "superName": "apg", + "methods": { + "\u003cinit\u003e (ZIILalz;Lalz;)V": { + "access": 1 + }, + "c (Ladm;Lcj;I)V": { + "access": 2 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + }, + "a (Ladm;Ljava/util/Random;Lcj;Lamk;)V": { + "access": 2 + } + } + }, + "aph": { + "name": "aph", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "bph$a$a": { + "name": "bph$a$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Lbph$a$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "a (Ljava/lang/String;)Lbph$a$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lbph$a$a;": { + "access": 9 + } + } + }, + "apg": { + "name": "apg", + "access": 1057, + "superName": "aoh", + "methods": { + "a (Ladm;Ljava/util/Random;Lcj;I)Z": { + "access": 4 + }, + "b (Ladm;Lcj;I)V": { + "access": 4 + }, + "\u003cinit\u003e (ZIILalz;Lalz;)V": { + "access": 1 + }, + "c (Ladm;Lcj;I)Z": { + "access": 2 + }, + "a (Ladm;Lcj;I)V": { + "access": 4 + }, + "a (Ljava/util/Random;)I": { + "access": 4 + }, + "a (Lcj;Ladm;)Z": { + "access": 2 + } + } + }, + "apj": { + "name": "apj", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e (Lalz;I)V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + }, + "\u003cinit\u003e (Lalz;ILcom/google/common/base/Predicate;)V": { + "access": 1 + } + } + }, + "api": { + "name": "api", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/util/Random;)Ljava/lang/String;": { + "access": 2 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "apl": { + "name": "apl", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "bgm$d": { + "name": "bgm$d", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/util/List;)V": { + "access": 1 + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "b ()Ljava/util/List;": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Lbgm$d;)Ljava/lang/String;": { + "access": 4104 + } + } + }, + "apk": { + "name": "apk", + "access": 33, + "superName": "aoh", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "apn": { + "name": "apn", + "access": 33, + "superName": "aoh", + "methods": { + "a (Ladm;Lcj;I)Z": { + "access": 2 + }, + "a (Ladm;III)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + }, + "b (Ladm;Lcj;)V": { + "access": 2 + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + } + } + }, + "apm": { + "name": "apm", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "app": { + "name": "app", + "access": 33, + "superName": "aoh", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c (Ladm;Lcj;)V": { + "access": 2 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + }, + "b (Ladm;Lcj;)V": { + "access": 2 + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + } + } + }, + "apo": { + "name": "apo", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e (Lafh;I)V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "apr": { + "name": "apr", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "apq": { + "name": "apq", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "apt": { + "name": "apt", + "access": 33, + "superName": "aoh", + "methods": { + "a (Ladm;Lcj;Lamk;)V": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "aps": { + "name": "aps", + "access": 33, + "superName": "aoh", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + } + } + }, + "apv": { + "name": "apv", + "access": 33, + "superName": "aoh", + "methods": { + "a (Ladm;Lcj;Lamk;)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + }, + "b (Ladm;Lcj;Lamk;)V": { + "access": 2 + }, + "\u003cinit\u003e (ZILalz;Lalz;Z)V": { + "access": 1 + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + }, + "a (Ladm;ILcj;Lcq;)V": { + "access": 2 + } + } + }, + "apu": { + "name": "apu", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e (Lakc$a;)V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "bfj$1": { + "name": "bfj$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "apx": { + "name": "apx", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "apw": { + "name": "apw", + "access": 33, + "superName": "aot", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ladm;Ljava/util/Random;Lcj;)Z": { + "access": 1, + "override": "aot" + } + } + }, + "apz": { + "name": "apz", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (I)V": { + "access": 1 + }, + "e ()Lapz;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (ILjava/lang/String;)Ljava/util/List;": { + "access": 10 + }, + "c ()Ljava/util/List;": { + "access": 1 + }, + "b ()Ljava/util/Map;": { + "access": 1 + }, + "d ()V": { + "access": 1 + }, + "a (ILjava/lang/String;I)Laqa;": { + "access": 10 + }, + "a (Ljava/lang/String;)Lapz;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "aqa": { + "name": "aqa", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "f ()I": { + "access": 2 + }, + "c ()Lalz;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (IILafh;)V": { + "access": 1 + }, + "e ()Lafh;": { + "access": 2 + }, + "d ()I": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "\u003cinit\u003e (IILafh;I)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "\u003cinit\u003e (ILafh;)V": { + "access": 1 + } + } + }, + "blt$a": { + "name": "blt$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;I)V": { + "access": 2 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 4 + }, + "d ()Ljava/util/Map;": { + "access": 4 + }, + "c ()I": { + "access": 4 + }, + "valueOf (Ljava/lang/String;)Lblt$a;": { + "access": 9 + }, + "values ()[Lblt$a;": { + "access": 9 + } + } + }, + "aqe": { + "name": "aqe", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ([I)V": { + "access": 1 + }, + "\u003cinit\u003e (Ldf;Ldf;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "\u003cinit\u003e (IIII)V": { + "access": 1 + }, + "a (IIIIII)Laqe;": { + "access": 9 + }, + "a (Laqe;)Z": { + "access": 1 + }, + "a (IIIIIIIIILcq;)Laqe;": { + "access": 9 + }, + "b ()Ldf;": { + "access": 1 + }, + "f ()Ldf;": { + "access": 1 + }, + "a (III)V": { + "access": 1 + }, + "a ()Laqe;": { + "access": 9 + }, + "g ()Lds;": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "b (Laqe;)V": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (IIIIII)V": { + "access": 1 + }, + "\u003cinit\u003e (Laqe;)V": { + "access": 1 + }, + "b (Ldf;)Z": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "a (IIII)Z": { + "access": 1 + } + } + }, + "aqg": { + "name": "aqg", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 9 + }, + "b (Laqt;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt;": { + "access": 10 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt;": { + "access": 10 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/util/List;": { + "access": 4104 + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt;": { + "access": 4104 + } + } + }, + "aqf": { + "name": "aqf", + "access": 33, + "superName": "aqq", + "methods": { + "\u003cinit\u003e (Ljava/util/Map;)V": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "aqq" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (II)Z": { + "access": 4, + "override": "aqq" + }, + "b (II)Laqu;": { + "access": 4, + "override": "aqq" + } + } + }, + "aqi": { + "name": "aqi", + "access": 33, + "superName": "aqq", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "override": "aqq" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Ljava/util/List;": { + "access": 1 + }, + "a (II)Z": { + "access": 4, + "override": "aqq" + }, + "b (II)Laqu;": { + "access": 4, + "override": "aqq" + } + } + }, + "aqh": { + "name": "aqh", + "access": 33, + "superName": "aqu", + "methods": { + "\u003cinit\u003e (Ladm;Ljava/util/Random;II)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "aqk": { + "name": "aqk", + "access": 33, + "superName": "aqq", + "methods": { + "\u003cinit\u003e (Ljava/util/Map;)V": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "aqq" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/util/List;": { + "access": 1 + }, + "a (II)Z": { + "access": 4, + "override": "aqq" + }, + "b (II)Laqu;": { + "access": 4, + "override": "aqq" + } + } + }, + "aqj": { + "name": "aqj", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Laqj$n;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$m;": { + "access": 4104 + }, + "c ()[Laqj$n;": { + "access": 4104 + }, + "b (Laqj$n;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$m;": { + "access": 10 + }, + "b ()[Laqj$n;": { + "access": 4104 + } + } + }, + "pr$1": { + "name": "pr$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Lpr;)V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "aqm": { + "name": "aqm", + "access": 33, + "superName": "aqq", + "methods": { + "\u003cinit\u003e (Ljava/util/Map;)V": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "aqq" + }, + "a (Lcj;)Z": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/util/List;": { + "access": 1 + }, + "a (II)Z": { + "access": 4, + "override": "aqq" + }, + "b (II)Laqu;": { + "access": 4, + "override": "aqq" + } + } + }, + "aql": { + "name": "aql", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 9 + } + } + }, + "aqo": { + "name": "aqo", + "access": 33, + "superName": "aqq", + "methods": { + "\u003cinit\u003e (Ljava/util/Map;)V": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "aqq" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (II)Z": { + "access": 4, + "override": "aqq" + }, + "z_ ()Ljava/util/List;": { + "access": 4, + "override": "aqq" + }, + "b (II)Laqu;": { + "access": 4, + "override": "aqq" + } + } + }, + "aqn": { + "name": "aqn", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 9 + } + } + }, + "aqq": { + "name": "aqq", + "access": 1057, + "superName": "any", + "methods": { + "a (IILaqu;)V": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;)V": { + "access": 2 + }, + "b (Lcj;)Z": { + "access": 1 + }, + "a (Ladm;Lcj;)Z": { + "access": 1 + }, + "z_ ()Ljava/util/List;": { + "access": 4 + }, + "c (Lcj;)Laqu;": { + "access": 4 + }, + "a ()Ljava/lang/String;": { + "access": 1025 + }, + "a (Ladm;IIIILans;)V": { + "access": 20, + "override": "any" + }, + "a (II)Z": { + "access": 1028 + }, + "a (Ladm;Ljava/util/Random;Ladg;)Z": { + "access": 1 + }, + "b (Ladm;Lcj;)Lcj;": { + "access": 1 + }, + "b (II)Laqu;": { + "access": 1028 + } + } + }, + "aqp": { + "name": "aqp", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 9 + }, + "b ()V": { + "access": 9 + }, + "a (Ljava/lang/Class;)Ljava/lang/Class;": { + "access": 4104 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c (Laqp$m;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt;": { + "access": 10 + }, + "a (Ljava/lang/Class;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$p;": { + "access": 10 + }, + "d ()Z": { + "access": 10 + }, + "a (Laqp$m;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt;": { + "access": 4104 + }, + "b (Laqp$m;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$p;": { + "access": 10 + }, + "c ()Laqp$k;": { + "access": 4104 + } + } + }, + "aql$1": { + "name": "aql$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "aqs": { + "name": "aqs", + "access": 33, + "superName": "ate", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "b (II)Ljava/lang/String;": { + "access": 9 + }, + "a ()Ldn;": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "ate" + }, + "a (Ldn;)V": { + "access": 1, + "override": "ate" + }, + "a (Ldn;II)V": { + "access": 1 + } + } + }, + "aqr": { + "name": "aqr", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/Class;Ljava/lang/String;)V": { + "access": 8 + }, + "a (Ldn;Ladm;)Laqu;": { + "access": 9 + }, + "b (Ldn;Ladm;)Laqt;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Laqu;)Ljava/lang/String;": { + "access": 9 + }, + "a (Laqt;)Ljava/lang/String;": { + "access": 9 + }, + "b (Ljava/lang/Class;Ljava/lang/String;)V": { + "access": 10 + } + } + }, + "aqu": { + "name": "aqu", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a (Ladm;Ljava/util/Random;Laqe;)V": { + "access": 1 + }, + "f ()I": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1 + }, + "a (II)Ldn;": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;II)V": { + "access": 4 + }, + "a (Ladg;)Z": { + "access": 1 + }, + "b ()Ljava/util/LinkedList;": { + "access": 1 + }, + "\u003cinit\u003e (II)V": { + "access": 1 + }, + "b (Ladg;)V": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "a ()Laqe;": { + "access": 1 + }, + "a (Ladm;Ldn;)V": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "c ()V": { + "access": 4 + }, + "a (Ladm;Ljava/util/Random;I)V": { + "access": 4 + } + } + }, + "aqt": { + "name": "aqt", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a (Ladm;Laqe;Ljava/util/Random;IIILcq;)V": { + "access": 4 + }, + "b ()Ldn;": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "a (Ladm;Laqe;Ljava/util/Random;FIIIIIILalz;Lalz;Z)V": { + "access": 4 + }, + "a (Ladm;IIILaqe;)Lalz;": { + "access": 4 + }, + "a (Ladm;Laqe;Ljava/util/Random;IIILjava/util/List;I)Z": { + "access": 4 + }, + "a (Ladm;Laqe;IIIIIILalz;Lalz;Z)V": { + "access": 4 + }, + "a (Ladm;Laqe;)Z": { + "access": 4 + }, + "b (II)I": { + "access": 4 + }, + "a (Ladm;Laqe;IIIIIILalz;Z)V": { + "access": 4 + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1 + }, + "a (Ladm;Laqe;IIIIIIZLjava/util/Random;Laqt$a;)V": { + "access": 4 + }, + "a (II)I": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "d (I)I": { + "access": 4 + }, + "b (Ldn;)V": { + "access": 1028 + }, + "a (Ldn;)V": { + "access": 1028 + }, + "a (Ladm;Laqe;Ljava/util/Random;IIIILjava/util/List;I)Z": { + "access": 4 + }, + "\u003cinit\u003e (I)V": { + "access": 4 + }, + "b (Ladm;IIILaqe;)V": { + "access": 4 + }, + "a (Lafh;I)I": { + "access": 4 + }, + "a (Ladm;Lalz;IIILaqe;)V": { + "access": 4 + }, + "a (Ladm;Laqe;Ljava/util/Random;FIIILalz;)V": { + "access": 4 + }, + "a (Ljava/util/List;Laqe;)Laqt;": { + "access": 9 + }, + "a (III)V": { + "access": 1 + }, + "a (Ladm;Ldn;)V": { + "access": 1 + }, + "a (Ladm;Laqe;IIIIII)V": { + "access": 4 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1025 + }, + "d ()I": { + "access": 1 + }, + "c ()Laqe;": { + "access": 1 + }, + "b (Ladm;Lalz;IIILaqe;)V": { + "access": 4 + } + } + }, + "aqw": { + "name": "aqw", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 9 + }, + "a (Ljava/util/List;)I": { + "access": 10 + }, + "e (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt;": { + "access": 10 + }, + "c (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$n;": { + "access": 10 + }, + "d (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt;": { + "access": 10 + }, + "a (Ljava/util/Random;I)Ljava/util/List;": { + "access": 9 + }, + "a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt;": { + "access": 4104 + }, + "b (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt;": { + "access": 4104 + }, + "a (Laqw$k;Laqw$e;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$n;": { + "access": 10 + } + } + }, + "aqv": { + "name": "aqv", + "access": 33, + "superName": "aqq", + "methods": { + "\u003cinit\u003e (Ljava/util/Map;)V": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "aqq" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (II)Z": { + "access": 4, + "override": "aqq" + }, + "b (II)Laqu;": { + "access": 4, + "override": "aqq" + } + } + }, + "xm$a": { + "name": "xm$a", + "access": 32, + "superName": "yg", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "\u003cinit\u003e (Lxm;Log;III)V": { + "access": 1 + }, + "a ()I": { + "access": 1, + "override": "yg" + } + } + }, + "xm$b": { + "name": "xm$b", + "access": 32, + "superName": "yg", + "methods": { + "\u003cinit\u003e (Lwn;Log;III)V": { + "access": 1 + }, + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "b_ (Lzx;)Z": { + "access": 9 + }, + "a (Lwn;Lzx;)V": { + "access": 1, + "override": "yg" + }, + "a ()I": { + "access": 1, + "override": "yg" + } + } + }, + "bqj$2": { + "name": "bqj$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "tv/twitch/broadcast/IStatCallbacks" + ], + "methods": { + "statCallback (Ltv/twitch/broadcast/StatType;J)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStatCallbacks" + }, + "\u003cinit\u003e (Lbqj;)V": { + "access": 0 + } + } + }, + "arb": { + "name": "arb", + "access": 33, + "superName": "arh", + "methods": { + "a (IDDD)D": { + "access": 17 + }, + "a (IDD)D": { + "access": 17 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/util/Random;)V": { + "access": 1 + }, + "a ([DDDDIIIDDDD)V": { + "access": 1 + }, + "b (DDD)D": { + "access": 17 + } + } + }, + "bqj$1": { + "name": "bqj$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "tv/twitch/broadcast/IStreamCallbacks" + ], + "methods": { + "getIngestServersCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/IngestList;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "getGameNameListCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/GameInfoList;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "sendEndSpanMetaDataCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "sendActionMetaDataCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "bufferUnlockCallback (J)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "\u003cinit\u003e (Lbqj;)V": { + "access": 0 + }, + "runCommercialCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "loginCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/ChannelInfo;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "getStreamInfoCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/StreamInfo;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "getArchivingStateCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/ArchivingState;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "setStreamInfoCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "requestAuthTokenCallback (Ltv/twitch/ErrorCode;Ltv/twitch/AuthToken;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "stopCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "getUserInfoCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/UserInfo;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "sendStartSpanMetaDataCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + }, + "startCallback (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "tv/twitch/broadcast/IStreamCallbacks" + } + } + }, + "ard": { + "name": "ard", + "access": 33, + "superName": "arh", + "methods": { + "\u003cinit\u003e (Ljava/util/Random;I)V": { + "access": 1 + }, + "a ([DDDIIDDDD)[D": { + "access": 1 + }, + "a ([DDDIIDDD)[D": { + "access": 1 + }, + "a (DD)D": { + "access": 1 + } + } + }, + "bqj$3": { + "name": "bqj$3", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "arc": { + "name": "arc", + "access": 33, + "superName": "arh", + "methods": { + "a ([DIIIIDDD)[D": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/util/Random;I)V": { + "access": 1 + }, + "a ([DIIIIIIDDD)[D": { + "access": 1 + } + } + }, + "arh": { + "name": "arh", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "arg": { + "name": "arg", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ([DDDIIDDD)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (D)I": { + "access": 10 + }, + "\u003cinit\u003e (Ljava/util/Random;)V": { + "access": 1 + }, + "a ([IDD)D": { + "access": 10 + }, + "a (DD)D": { + "access": 1 + } + } + }, + "arj": { + "name": "arj", + "access": 33, + "superName": "arm", + "methods": { + "\u003cinit\u003e (Larn;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "arm" + }, + "c ()Z": { + "access": 1, + "override": "arm" + }, + "b ()Z": { + "access": 1, + "override": "arm" + } + } + }, + "arl": { + "name": "arl", + "access": 33, + "superName": "arm", + "methods": { + "\u003cinit\u003e (Larn;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "arm" + }, + "d ()Z": { + "access": 1, + "override": "arm" + }, + "c ()Z": { + "access": 1, + "override": "arm" + } + } + }, + "ark": { + "name": "ark", + "access": 33, + "superName": "arm", + "methods": { + "\u003cinit\u003e (Larn;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "arm" + }, + "c ()Z": { + "access": 1, + "override": "arm" + }, + "b ()Z": { + "access": 1, + "override": "arm" + } + } + }, + "arn": { + "name": "arn", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (II)V": { + "access": 2 + }, + "a (I)I": { + "access": 1 + } + } + }, + "arm": { + "name": "arm", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "n ()Larm;": { + "access": 4 + }, + "l ()Z": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f ()Larm;": { + "access": 4 + }, + "j ()Z": { + "access": 1 + }, + "o ()Larm;": { + "access": 4 + }, + "h ()Z": { + "access": 1 + }, + "g ()Larm;": { + "access": 4 + }, + "d ()Z": { + "access": 1 + }, + "s ()Larm;": { + "access": 2 + }, + "b ()Z": { + "access": 1 + }, + "i ()Larm;": { + "access": 1 + }, + "r ()Larn;": { + "access": 1 + }, + "\u003cinit\u003e (Larn;)V": { + "access": 1 + }, + "k ()Z": { + "access": 1 + }, + "p ()Larm;": { + "access": 4 + }, + "m ()I": { + "access": 1 + }, + "a ()Z": { + "access": 1 + }, + "c ()Z": { + "access": 1 + } + } + }, + "aro": { + "name": "aro", + "access": 33, + "superName": "arm", + "methods": { + "\u003cinit\u003e (Larn;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "arm" + }, + "c ()Z": { + "access": 1, + "override": "arm" + }, + "b ()Z": { + "access": 1, + "override": "arm" + } + } + }, + "bqj$b": { + "name": "bqj$b", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1025 + }, + "a (Ltv/twitch/broadcast/IngestList;)V": { + "access": 1025 + }, + "c (Ltv/twitch/ErrorCode;)V": { + "access": 1025 + }, + "b ()V": { + "access": 1025 + }, + "a (Ltv/twitch/ErrorCode;)V": { + "access": 1025 + }, + "c ()V": { + "access": 1025 + }, + "a (Ltv/twitch/ErrorCode;[Ltv/twitch/broadcast/GameInfo;)V": { + "access": 1025 + }, + "a (Ltv/twitch/broadcast/StreamInfo;)V": { + "access": 1025 + }, + "b (Ltv/twitch/ErrorCode;)V": { + "access": 1025 + }, + "a (Ltv/twitch/ErrorCode;Ltv/twitch/AuthToken;)V": { + "access": 1025 + }, + "a (Lbqj$a;)V": { + "access": 1025 + } + } + }, + "arr": { + "name": "arr", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "d (IIII)[I": { + "access": 2 + }, + "\u003cinit\u003e (JLase;Larr$a;)V": { + "access": 1 + }, + "c (IIII)[I": { + "access": 2 + }, + "e (IIII)[I": { + "access": 2 + } + } + }, + "bqj$a": { + "name": "bqj$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Lbqj$a;": { + "access": 9 + }, + "values ()[Lbqj$a;": { + "access": 9 + } + } + }, + "arq": { + "name": "arq", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + } + } + }, + "bpx$2": { + "name": "bpx$2", + "access": 48, + "superName": "java/net/URLStreamHandler", + "methods": { + "openConnection (Ljava/net/URL;)Ljava/net/URLConnection;": { + "access": 4, + "override": "java/net/URLStreamHandler" + }, + "\u003cinit\u003e (Ljy;)V": { + "access": 0 + } + } + }, + "art": { + "name": "art", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + } + } + }, + "ars": { + "name": "ars", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + } + } + }, + "arv": { + "name": "arv", + "access": 33, + "superName": "ase", + "methods": { + "a ([I[IIIIIII)Z": { + "access": 2 + }, + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + }, + "b ([I[IIIIIII)Z": { + "access": 2 + }, + "b (II)Z": { + "access": 2 + } + } + }, + "aru": { + "name": "aru", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + } + } + }, + "arw": { + "name": "arw", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;Ladr;Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "asa": { + "name": "asa", + "access": 33, + "superName": "asr", + "methods": { + "b (IIII)I": { + "access": 4, + "override": "ase" + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + } + } + }, + "bpx$1": { + "name": "bpx$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "\u003cinit\u003e (Lbpx;)V": { + "access": 0 + } + } + }, + "mm$a": { + "name": "mm$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "c ()[B": { + "access": 1 + }, + "b ()[B": { + "access": 1 + }, + "\u003cinit\u003e (Lmm;Ljava/net/DatagramPacket;)V": { + "access": 1 + }, + "a (J)Ljava/lang/Boolean;": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "aql$c": { + "name": "aql$c", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "aql$i" + ], + "methods": { + "a (Laql$v;)Z": { + "access": 1, + "override": "aql$i" + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Laql$1;)V": { + "access": 4096 + }, + "a (Lcq;Laql$v;Ljava/util/Random;)Laql$r;": { + "access": 1, + "override": "aql$i" + } + } + }, + "asc": { + "name": "asc", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 41 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 41 + }, + "a (I)[I": { + "access": 41 + } + } + }, + "bfj$b": { + "name": "bfj$b", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (IIILbfj$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e (III)V": { + "access": 2 + } + } + }, + "aql$b": { + "name": "aql$b", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "aql$i" + ], + "methods": { + "a (Laql$v;)Z": { + "access": 1, + "override": "aql$i" + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Laql$1;)V": { + "access": 4096 + }, + "a (Lcq;Laql$v;Ljava/util/Random;)Laql$r;": { + "access": 1, + "override": "aql$i" + } + } + }, + "aql$a": { + "name": "aql$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "aql$i" + ], + "methods": { + "a (Laql$v;)Z": { + "access": 1, + "override": "aql$i" + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Laql$1;)V": { + "access": 4096 + }, + "a (Lcq;Laql$v;Ljava/util/Random;)Laql$r;": { + "access": 1, + "override": "aql$i" + } + } + }, + "ase": { + "name": "ase", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "b (IIII)I": { + "access": 4 + }, + "a (IIII)[I": { + "access": 1025 + }, + "b (I)Z": { + "access": 12 + }, + "a (J)V": { + "access": 1 + }, + "a ([I)I": { + "access": 132 + }, + "a (II)Z": { + "access": 12 + }, + "a (JLadr;Ljava/lang/String;)[Lase;": { + "access": 9 + }, + "a (JJ)V": { + "access": 1 + }, + "\u003cinit\u003e (J)V": { + "access": 1 + }, + "a (I)I": { + "access": 4 + } + } + }, + "asd": { + "name": "asd", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (J)V": { + "access": 1 + } + } + }, + "ahn$1": { + "name": "ahn$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lcq;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lcq;)Z": { + "access": 1 + } + } + }, + "aql$g": { + "name": "aql$g", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "aql$i" + ], + "methods": { + "a (Laql$v;)Z": { + "access": 1, + "override": "aql$i" + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Laql$1;)V": { + "access": 4096 + }, + "a (Lcq;Laql$v;Ljava/util/Random;)Laql$r;": { + "access": 1, + "override": "aql$i" + } + } + }, + "asg": { + "name": "asg", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (JLase;Lase;)V": { + "access": 1 + } + } + }, + "aql$f": { + "name": "aql$f", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "aql$i" + ], + "methods": { + "a (Laql$v;)Z": { + "access": 1, + "override": "aql$i" + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Laql$1;)V": { + "access": 4096 + }, + "a (Lcq;Laql$v;Ljava/util/Random;)Laql$r;": { + "access": 1, + "override": "aql$i" + } + } + }, + "asf": { + "name": "asf", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + } + } + }, + "aql$e": { + "name": "aql$e", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "aql$i" + ], + "methods": { + "a (Laql$v;)Z": { + "access": 1, + "override": "aql$i" + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Laql$1;)V": { + "access": 4096 + }, + "a (Lcq;Laql$v;Ljava/util/Random;)Laql$r;": { + "access": 1, + "override": "aql$i" + } + } + }, + "asi": { + "name": "asi", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + } + } + }, + "aql$d": { + "name": "aql$d", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "aql$i" + ], + "methods": { + "a (Laql$v;)Z": { + "access": 1, + "override": "aql$i" + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Laql$1;)V": { + "access": 4096 + }, + "a (Lcq;Laql$v;Ljava/util/Random;)Laql$r;": { + "access": 1, + "override": "aql$i" + } + } + }, + "ash": { + "name": "ash", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + } + } + }, + "bfj$a": { + "name": "bfj$a", + "access": 49, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ask": { + "name": "ask", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "a (J)V": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;Lase;)V": { + "access": 1 + } + } + }, + "asj": { + "name": "asj", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + }, + "c (I)I": { + "access": 2 + } + } + }, + "asm": { + "name": "asm", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + } + } + }, + "asl": { + "name": "asl", + "access": 33, + "superName": "ase", + "methods": { + "a ([I[IIIIII)V": { + "access": 2 + }, + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "d (I)Z": { + "access": 2 + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + }, + "c (I)Z": { + "access": 2 + } + } + }, + "asq": { + "name": "asq", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + } + } + }, + "akf$1": { + "name": "akf$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lcq;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lcq;)Z": { + "access": 1 + } + } + }, + "aqp$o": { + "name": "aqp$o", + "access": 33, + "superName": "aqp$p", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$o;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "kb$14": { + "name": "kb$14", + "access": 48, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 1, + "override": "cn" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lck;)V": { + "access": 4, + "override": "cn" + } + } + }, + "asr": { + "name": "asr", + "access": 33, + "superName": "ase", + "methods": { + "a (IIII)[I": { + "access": 1, + "override": "ase" + }, + "\u003cinit\u003e (JLase;)V": { + "access": 1 + }, + "b (JLase;I)Lase;": { + "access": 9 + } + } + }, + "aqp$n": { + "name": "aqp$n", + "access": 33, + "superName": "aqp$p", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$n;": { + "access": 9 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "kb$15": { + "name": "kb$15", + "access": 48, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 1, + "override": "cn" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lck;)V": { + "access": 4, + "override": "cn" + } + } + }, + "asu": { + "name": "asu", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "e ()Z": { + "access": 1 + }, + "a (I)V": { + "access": 2 + }, + "a (Lasv;)Lasv;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Lasv;": { + "access": 1 + }, + "a (Lasv;F)V": { + "access": 1 + }, + "b (I)V": { + "access": 2 + } + } + }, + "ack$b": { + "name": "ack$b", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "ack$c" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Lack$1;)V": { + "access": 4096 + }, + "a (Laci;I)V": { + "access": 1, + "override": "ack$c" + } + } + }, + "aqp$m": { + "name": "aqp$m", + "access": 33, + "superName": "aqp$l", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (ILjava/util/Random;II)V": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1, + "override": "aqt" + } + } + }, + "kb$16": { + "name": "kb$16", + "access": 48, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 1, + "override": "cn" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lck;)V": { + "access": 4, + "override": "cn" + } + } + }, + "akf$2": { + "name": "akf$2", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ack$a": { + "name": "ack$a", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "ack$c" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Lack$1;)V": { + "access": 4096 + }, + "a (Laci;I)V": { + "access": 1, + "override": "ack$c" + } + } + }, + "aqp$l": { + "name": "aqp$l", + "access": 33, + "superName": "aqp$p", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$l;": { + "access": 9 + }, + "\u003cinit\u003e (ILjava/util/Random;II)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "asw": { + "name": "asw", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "a (Ladq;Lpk;)V": { + "access": 1 + }, + "a (Lpk;)Lasv;": { + "access": 1025 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lpk;DDD)Lasv;": { + "access": 1025 + }, + "a ([Lasv;Lpk;Lasv;Lasv;F)I": { + "access": 1025 + }, + "a (III)Lasv;": { + "access": 4 + } + } + }, + "asv": { + "name": "asv", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a (III)I": { + "access": 9 + }, + "b (Lasv;)F": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Lasv;)F": { + "access": 1 + }, + "a ()Z": { + "access": 1 + }, + "\u003cinit\u003e (III)V": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "asy": { + "name": "asy", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ladq;Lpk;Lpk;F)Lasx;": { + "access": 1 + }, + "a (Lasv;Lasv;)Lasx;": { + "access": 2 + }, + "\u003cinit\u003e (Lasw;)V": { + "access": 1 + }, + "a (Lpk;Lasv;Lasv;F)Lasx;": { + "access": 2 + }, + "a (Ladq;Lpk;Lcj;F)Lasx;": { + "access": 1 + }, + "a (Ladq;Lpk;DDDF)Lasx;": { + "access": 2 + } + } + }, + "asx": { + "name": "asx", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Laui;)Z": { + "access": 1 + }, + "c ()Lasv;": { + "access": 1 + }, + "c (I)V": { + "access": 1 + }, + "b ()Z": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "a (I)Lasv;": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "a (Lpk;)Laui;": { + "access": 1 + }, + "a (Lasx;)Z": { + "access": 1 + }, + "a (Lpk;I)Laui;": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "\u003cinit\u003e ([Lasv;)V": { + "access": 1 + } + } + }, + "aqp$p": { + "name": "aqp$p", + "access": 1056, + "superName": "aqt", + "methods": { + "a (Laqp$m;Ljava/util/List;Ljava/util/Random;II)Laqt;": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/util/Random;)Laqp$p$a;": { + "access": 4 + }, + "c (Laqp$m;Ljava/util/List;Ljava/util/Random;II)Laqt;": { + "access": 4 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;Laqp$p$a;III)V": { + "access": 4 + }, + "\u003cinit\u003e (I)V": { + "access": 4 + }, + "a (Laqe;)Z": { + "access": 12 + }, + "b (Laqp$m;Ljava/util/List;Ljava/util/Random;II)Laqt;": { + "access": 4 + } + } + }, + "aqp$g": { + "name": "aqp$g", + "access": 33, + "superName": "aqp$p", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$g;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "asz": { + "name": "asz", + "access": 33, + "superName": "asw", + "methods": { + "a ()V": { + "access": 1, + "override": "asw" + }, + "a (Ladq;Lpk;)V": { + "access": 1, + "override": "asw" + }, + "a (Lpk;)Lasv;": { + "access": 1, + "override": "asw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lpk;DDD)Lasv;": { + "access": 1, + "override": "asw" + }, + "a ([Lasv;Lpk;Lasv;Lasv;F)I": { + "access": 1, + "override": "asw" + }, + "a (Lpk;III)Lasv;": { + "access": 2 + }, + "b (Lpk;III)I": { + "access": 2 + } + } + }, + "aqp$f": { + "name": "aqp$f", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "a ()Z": { + "access": 1 + }, + "a (I)Z": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/Class;II)V": { + "access": 1 + } + } + }, + "aqp$e": { + "name": "aqp$e", + "access": 33, + "superName": "aqp$p", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$e;": { + "access": 9 + } + } + }, + "aqp$d": { + "name": "aqp$d", + "access": 33, + "superName": "aqp$p", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$d;": { + "access": 9 + } + } + }, + "ack$d": { + "name": "ack$d", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "ack$c" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Lack$1;)V": { + "access": 4096 + }, + "a (Laci;I)V": { + "access": 1, + "override": "ack$c" + } + } + }, + "aqp$k": { + "name": "aqp$k", + "access": 32, + "superName": "aqt$a", + "methods": { + "\u003cinit\u003e (Laqp$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "a (Ljava/util/Random;IIIZ)V": { + "access": 1, + "override": "aqt$a" + } + } + }, + "ack$c": { + "name": "ack$c", + "access": 1536, + "superName": "java/lang/Object", + "methods": { + "a (Laci;I)V": { + "access": 1025 + } + } + }, + "aqp$j": { + "name": "aqp$j", + "access": 33, + "superName": "aqp$p", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$j;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "aqp$i": { + "name": "aqp$i", + "access": 33, + "superName": "aqp$d", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "ata": { + "name": "ata", + "access": 33, + "superName": "asw", + "methods": { + "d (Z)V": { + "access": 1 + }, + "e ()Z": { + "access": 1 + }, + "a (Lpk;)Lasv;": { + "access": 1, + "override": "asw" + }, + "a (Z)V": { + "access": 1 + }, + "a (Ladq;Lpk;IIIIIIZZZ)I": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "a (Lpk;III)I": { + "access": 2 + }, + "b ()Z": { + "access": 1 + }, + "a ()V": { + "access": 1, + "override": "asw" + }, + "a (Ladq;Lpk;)V": { + "access": 1, + "override": "asw" + }, + "a (Lpk;IIII)Lasv;": { + "access": 2 + }, + "a (Lpk;DDD)Lasv;": { + "access": 1, + "override": "asw" + }, + "a ([Lasv;Lpk;Lasv;Lasv;F)I": { + "access": 1, + "override": "asw" + }, + "c (Z)V": { + "access": 1 + } + } + }, + "ack$e": { + "name": "ack$e", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "ack$c" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Lack$1;)V": { + "access": 4096 + }, + "a (Laci;I)V": { + "access": 1, + "override": "ack$c" + } + } + }, + "aqp$h": { + "name": "aqp$h", + "access": 33, + "superName": "aqp$p", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$h;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "amy$1": { + "name": "amy$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "\u003cinit\u003e (Lamy;III)V": { + "access": 0 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "amy$2": { + "name": "amy$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lamy;Lcj;)V": { + "access": 0 + } + } + }, + "atf": { + "name": "atf", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Latf;)V": { + "access": 1 + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (BBBB)V": { + "access": 1 + }, + "a ()B": { + "access": 1 + }, + "d ()B": { + "access": 1 + }, + "c ()B": { + "access": 1 + }, + "b ()B": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "ate": { + "name": "ate", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1025 + }, + "a (Ldn;)V": { + "access": 1025 + }, + "c ()V": { + "access": 1 + }, + "d ()Z": { + "access": 1 + } + } + }, + "atg": { + "name": "atg", + "access": 33, + "superName": "ate", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a (ILadm;Ljava/lang/String;DDD)V": { + "access": 2 + }, + "a (DDI)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "ate" + }, + "a (Lwn;)Latg$a;": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1, + "override": "ate" + }, + "a (II)V": { + "access": 1 + }, + "a (Lwn;Lzx;)V": { + "access": 1 + }, + "a (Lzx;Ladm;Lwn;)Lff;": { + "access": 1 + } + } + }, + "atj": { + "name": "atj", + "access": 33, + "superName": "atm", + "methods": { + "a ()V": { + "access": 1, + "override": "atp" + }, + "a (Lato;Ldn;)V": { + "access": 1, + "override": "atp" + }, + "a (Lanm;)Land;": { + "access": 1, + "override": "atp" + }, + "\u003cinit\u003e (Ljava/io/File;Ljava/lang/String;Z)V": { + "access": 1 + } + } + }, + "amy$3": { + "name": "amy$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lamy;Lcj;)V": { + "access": 0 + } + } + }, + "atl": { + "name": "atl", + "access": 33, + "superName": "ato", + "methods": { + "d (Z)V": { + "access": 1, + "override": "ato" + }, + "a (Z)V": { + "access": 1, + "override": "ato" + }, + "v ()Z": { + "access": 1, + "override": "ato" + }, + "f ()J": { + "access": 1, + "override": "ato" + }, + "a ()Ldn;": { + "access": 1, + "override": "ato" + }, + "c (J)V": { + "access": 1, + "override": "ato" + }, + "g ()J": { + "access": 1, + "override": "ato" + }, + "f (I)V": { + "access": 1, + "override": "ato" + }, + "w ()Z": { + "access": 1, + "override": "ato" + }, + "c (I)V": { + "access": 1, + "override": "ato" + }, + "x ()Ladk;": { + "access": 1, + "override": "ato" + }, + "a (I)V": { + "access": 1, + "override": "ato" + }, + "u ()Ladr;": { + "access": 1, + "override": "ato" + }, + "\u003cinit\u003e (Lato;)V": { + "access": 1 + }, + "r ()Ladp$a;": { + "access": 1, + "override": "ato" + }, + "z ()Z": { + "access": 1, + "override": "ato" + }, + "a (Ljava/lang/String;)V": { + "access": 1, + "override": "ato" + }, + "n ()Z": { + "access": 1, + "override": "ato" + }, + "a (Ladr;)V": { + "access": 1, + "override": "ato" + }, + "c (Z)V": { + "access": 1, + "override": "ato" + }, + "o ()I": { + "access": 1, + "override": "ato" + }, + "g (I)V": { + "access": 1, + "override": "ato" + }, + "b ()J": { + "access": 1, + "override": "ato" + }, + "a (Loj;)V": { + "access": 1, + "override": "ato" + }, + "y ()Loj;": { + "access": 1, + "override": "ato" + }, + "e (I)V": { + "access": 1, + "override": "ato" + }, + "a (Ldn;)Ldn;": { + "access": 1, + "override": "ato" + }, + "c ()I": { + "access": 1, + "override": "ato" + }, + "b (Z)V": { + "access": 1, + "override": "ato" + }, + "s ()Z": { + "access": 1, + "override": "ato" + }, + "p ()Z": { + "access": 1, + "override": "ato" + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ato" + }, + "e ()I": { + "access": 1, + "override": "ato" + }, + "l ()I": { + "access": 1, + "override": "ato" + }, + "e (Z)V": { + "access": 1, + "override": "ato" + }, + "i ()Ldn;": { + "access": 1, + "override": "ato" + }, + "h ()J": { + "access": 1, + "override": "ato" + }, + "m ()J": { + "access": 1, + "override": "ato" + }, + "d ()I": { + "access": 1, + "override": "ato" + }, + "b (J)V": { + "access": 1, + "override": "ato" + }, + "t ()Z": { + "access": 1, + "override": "ato" + }, + "b (I)V": { + "access": 1, + "override": "ato" + }, + "q ()I": { + "access": 1, + "override": "ato" + }, + "a (Lcj;)V": { + "access": 1, + "override": "ato" + } + } + }, + "atk": { + "name": "atk", + "access": 33, + "superName": "atn", + "methods": { + "b (Ljava/lang/String;)Z": { + "access": 1, + "override": "atr" + }, + "a (Ljava/io/File;Ljava/lang/Iterable;Laec;IILnu;)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c ()I": { + "access": 4 + }, + "d ()V": { + "access": 1, + "override": "atr" + }, + "a (Ljava/lang/String;Lnu;)Z": { + "access": 1, + "override": "atr" + }, + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "a (Ljava/io/File;Ljava/io/File;Laec;IILnu;)V": { + "access": 2 + }, + "a (Ljava/lang/String;)Z": { + "access": 1, + "override": "atr" + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "atr" + }, + "b ()Ljava/util/List;": { + "access": 1, + "exceptions": [ + "atq" + ], + "override": "atr" + }, + "a (Ljava/lang/String;Z)Latp;": { + "access": 1, + "override": "atr" + }, + "g (Ljava/lang/String;)V": { + "access": 2 + }, + "a (Ljava/io/File;Ljava/util/Collection;)V": { + "access": 2 + } + } + }, + "atn": { + "name": "atn", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "atr" + ], + "methods": { + "b (Ljava/lang/String;)Z": { + "access": 1, + "override": "atr" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f (Ljava/lang/String;)Z": { + "access": 1, + "override": "atr" + }, + "a ([Ljava/io/File;)Z": { + "access": 12 + }, + "d ()V": { + "access": 1, + "override": "atr" + }, + "a (Ljava/lang/String;Lnu;)Z": { + "access": 1, + "override": "atr" + }, + "d (Ljava/lang/String;)Z": { + "access": 1, + "override": "atr" + }, + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "a (Ljava/lang/String;)Z": { + "access": 1, + "override": "atr" + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "atr" + }, + "e (Ljava/lang/String;)Z": { + "access": 1, + "override": "atr" + }, + "b ()Ljava/util/List;": { + "access": 1, + "exceptions": [ + "atq" + ], + "override": "atr" + }, + "c (Ljava/lang/String;)Lato;": { + "access": 1, + "override": "atr" + }, + "a (Ljava/lang/String;Z)Latp;": { + "access": 1, + "override": "atr" + }, + "a (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1, + "override": "atr" + } + } + }, + "atm": { + "name": "atm", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "atp", + "aty" + ], + "methods": { + "a (Ljava/lang/String;)Ljava/io/File;": { + "access": 1, + "override": "atp" + }, + "d ()Lato;": { + "access": 1, + "override": "atp" + }, + "b (Lwn;)Ldn;": { + "access": 1, + "override": "aty" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lato;Ldn;)V": { + "access": 1, + "override": "atp" + }, + "a (Lato;)V": { + "access": 1, + "override": "atp" + }, + "a (Lanm;)Land;": { + "access": 1, + "override": "atp" + }, + "a ()V": { + "access": 1, + "override": "atp" + }, + "f ()[Ljava/lang/String;": { + "access": 1, + "override": "aty" + }, + "a (Lwn;)V": { + "access": 1, + "override": "aty" + }, + "h ()V": { + "access": 2 + }, + "e ()Laty;": { + "access": 1, + "override": "atp" + }, + "c ()V": { + "access": 1, + "exceptions": [ + "adn" + ], + "override": "atp" + }, + "\u003cinit\u003e (Ljava/io/File;Ljava/lang/String;Z)V": { + "access": 1 + }, + "b ()Ljava/io/File;": { + "access": 1, + "override": "atp" + }, + "g ()Ljava/lang/String;": { + "access": 1, + "override": "atp" + } + } + }, + "atp": { + "name": "atp", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1025 + }, + "a (Ljava/lang/String;)Ljava/io/File;": { + "access": 1025 + }, + "d ()Lato;": { + "access": 1025 + }, + "e ()Laty;": { + "access": 1025 + }, + "a (Lato;Ldn;)V": { + "access": 1025 + }, + "a (Lato;)V": { + "access": 1025 + }, + "c ()V": { + "access": 1025, + "exceptions": [ + "adn" + ] + }, + "a (Lanm;)Land;": { + "access": 1025 + }, + "b ()Ljava/io/File;": { + "access": 1025 + }, + "g ()Ljava/lang/String;": { + "access": 1025 + } + } + }, + "kb$10": { + "name": "kb$10", + "access": 48, + "superName": "ka", + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Ladm;Lcz;)Lwv;": { + "access": 4, + "override": "ka" + } + } + }, + "ato": { + "name": "ato", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "g (Z)V": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "f ()J": { + "access": 1 + }, + "a ()Ldn;": { + "access": 1 + }, + "o (Lato;)Ladp$a;": { + "access": 4104 + }, + "i (I)V": { + "access": 1 + }, + "f (D)V": { + "access": 1 + }, + "n (Lato;)Z": { + "access": 4104 + }, + "g ()J": { + "access": 1 + }, + "\u003cinit\u003e (Ladp;Ljava/lang/String;)V": { + "access": 1 + }, + "c (I)V": { + "access": 1 + }, + "B ()Ljava/lang/String;": { + "access": 1 + }, + "H ()D": { + "access": 1 + }, + "j (I)V": { + "access": 1 + }, + "\u003cinit\u003e (Ldn;)V": { + "access": 1 + }, + "u ()Ladr;": { + "access": 1 + }, + "a (D)V": { + "access": 1 + }, + "\u003cinit\u003e (Lato;)V": { + "access": 1 + }, + "r ()Ladp$a;": { + "access": 1 + }, + "z ()Z": { + "access": 1 + }, + "a (Ladp$a;)V": { + "access": 1 + }, + "a (Ladr;)V": { + "access": 1 + }, + "o ()I": { + "access": 1 + }, + "f (Z)V": { + "access": 1 + }, + "b (Lato;)Z": { + "access": 4104 + }, + "d (Lato;)I": { + "access": 4104 + }, + "I ()D": { + "access": 1 + }, + "a (Loj;)V": { + "access": 1 + }, + "y ()Loj;": { + "access": 1 + }, + "j (Lato;)I": { + "access": 4104 + }, + "K ()I": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "e (I)V": { + "access": 1 + }, + "l (Lato;)Z": { + "access": 4104 + }, + "c ()I": { + "access": 1 + }, + "A ()I": { + "access": 1 + }, + "s ()Z": { + "access": 1 + }, + "k (I)V": { + "access": 1 + }, + "k ()Ljava/lang/String;": { + "access": 1 + }, + "e (Lato;)I": { + "access": 4104 + }, + "e ()I": { + "access": 1 + }, + "J ()I": { + "access": 1 + }, + "l ()I": { + "access": 1 + }, + "m ()J": { + "access": 1 + }, + "C ()D": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "t ()Z": { + "access": 1 + }, + "k (Lato;)I": { + "access": 4104 + }, + "b (I)V": { + "access": 1 + }, + "q (Lato;)Z": { + "access": 4104 + }, + "d (Z)V": { + "access": 1 + }, + "v ()Z": { + "access": 1 + }, + "c (D)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f (Lato;)I": { + "access": 4104 + }, + "c (J)V": { + "access": 1 + }, + "D ()D": { + "access": 1 + }, + "i (Lato;)I": { + "access": 4104 + }, + "f (I)V": { + "access": 1 + }, + "w ()Z": { + "access": 1 + }, + "x ()Ladk;": { + "access": 1 + }, + "p (Lato;)Z": { + "access": 4104 + }, + "a (I)V": { + "access": 1 + }, + "E ()D": { + "access": 1 + }, + "a (Ldn;Ldn;)V": { + "access": 2 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "n ()Z": { + "access": 1 + }, + "c (Z)V": { + "access": 1 + }, + "a (Ladp;)V": { + "access": 1 + }, + "c (Lato;)Ljava/lang/String;": { + "access": 4104 + }, + "g (I)V": { + "access": 1 + }, + "b ()J": { + "access": 1 + }, + "d (D)V": { + "access": 1 + }, + "m (Lato;)I": { + "access": 4104 + }, + "g (Lato;)J": { + "access": 4104 + }, + "e (J)V": { + "access": 1 + }, + "F ()J": { + "access": 1 + }, + "a (Ldn;)Ldn;": { + "access": 1 + }, + "e (D)V": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "p ()Z": { + "access": 1 + }, + "a (Lc;)V": { + "access": 1 + }, + "h (Lato;)J": { + "access": 4104 + }, + "e (Z)V": { + "access": 1 + }, + "b (D)V": { + "access": 1 + }, + "i ()Ldn;": { + "access": 1 + }, + "h ()J": { + "access": 1 + }, + "b (J)V": { + "access": 1 + }, + "G ()D": { + "access": 1 + }, + "a (Lato;)Ladr;": { + "access": 4104 + }, + "q ()I": { + "access": 1 + }, + "a (Lcj;)V": { + "access": 1 + } + } + }, + "kb$11": { + "name": "kb$11", + "access": 48, + "superName": "ka", + "methods": { + "a ()F": { + "access": 4, + "override": "ka" + }, + "b ()F": { + "access": 4, + "override": "ka" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Ladm;Lcz;)Lwv;": { + "access": 4, + "override": "ka" + } + } + }, + "atr": { + "name": "atr", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;)Z": { + "access": 1025 + }, + "b (Ljava/lang/String;)Z": { + "access": 1025 + }, + "a ()Ljava/lang/String;": { + "access": 1025 + }, + "e (Ljava/lang/String;)Z": { + "access": 1025 + }, + "b ()Ljava/util/List;": { + "access": 1025, + "exceptions": [ + "atq" + ] + }, + "c (Ljava/lang/String;)Lato;": { + "access": 1025 + }, + "f (Ljava/lang/String;)Z": { + "access": 1025 + }, + "a (Ljava/lang/String;Z)Latp;": { + "access": 1025 + }, + "d ()V": { + "access": 1025 + }, + "a (Ljava/lang/String;Lnu;)Z": { + "access": 1025 + }, + "d (Ljava/lang/String;)Z": { + "access": 1025 + }, + "a (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1025 + } + } + }, + "kb$12": { + "name": "kb$12", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "cr" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lck;Lzx;)Lzx;": { + "access": 1, + "override": "cr" + } + } + }, + "atq": { + "name": "atq", + "access": 33, + "superName": "java/lang/Exception", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "kb$13": { + "name": "kb$13", + "access": 48, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 1, + "override": "cn" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "ats": { + "name": "ats", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Comparable" + ], + "methods": { + "e ()J": { + "access": 1 + }, + "f ()Ladp$a;": { + "access": 1 + }, + "compareTo (Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lats;)I" + }, + "override": "java/lang/Comparable" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;JJLadp$a;ZZZ)V": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "a (Lats;)I": { + "access": 1 + }, + "h ()Z": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "c ()J": { + "access": 1 + } + } + }, + "atx": { + "name": "atx", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "atp" + ], + "methods": { + "a ()V": { + "access": 1, + "override": "atp" + }, + "a (Ljava/lang/String;)Ljava/io/File;": { + "access": 1, + "override": "atp" + }, + "d ()Lato;": { + "access": 1, + "override": "atp" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "e ()Laty;": { + "access": 1, + "override": "atp" + }, + "a (Lato;Ldn;)V": { + "access": 1, + "override": "atp" + }, + "a (Lato;)V": { + "access": 1, + "override": "atp" + }, + "c ()V": { + "access": 1, + "exceptions": [ + "adn" + ], + "override": "atp" + }, + "a (Lanm;)Land;": { + "access": 1, + "override": "atp" + }, + "b ()Ljava/io/File;": { + "access": 1, + "override": "atp" + }, + "g ()Ljava/lang/String;": { + "access": 1, + "override": "atp" + } + } + }, + "atz": { + "name": "atz", + "access": 33, + "superName": "aua", + "methods": { + "a ()V": { + "access": 1, + "override": "aua" + }, + "a (Ljava/lang/String;Late;)V": { + "access": 1, + "override": "aua" + }, + "a (Ljava/lang/Class;Ljava/lang/String;)Late;": { + "access": 1, + "override": "aua" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)I": { + "access": 1, + "override": "aua" + } + } + }, + "aty": { + "name": "aty", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "f ()[Ljava/lang/String;": { + "access": 1025 + }, + "a (Lwn;)V": { + "access": 1025 + }, + "b (Lwn;)Ldn;": { + "access": 1025 + } + } + }, + "aua": { + "name": "aua", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "a (Ljava/lang/String;Late;)V": { + "access": 1 + }, + "a (Ljava/lang/Class;Ljava/lang/String;)Late;": { + "access": 1 + }, + "b ()V": { + "access": 2 + }, + "a (Ljava/lang/String;)I": { + "access": 1 + }, + "\u003cinit\u003e (Latp;)V": { + "access": 1 + }, + "a (Late;)V": { + "access": 2 + } + } + }, + "auc": { + "name": "auc", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "b ()V": { + "access": 1, + "exceptions": [ + "java/lang/InterruptedException" + ] + }, + "a (Laud;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a ()Lauc;": { + "access": 9 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "c ()V": { + "access": 2 + } + } + }, + "aud": { + "name": "aud", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "c ()Z": { + "access": 1025 + } + } + }, + "aug": { + "name": "aug", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Laug;)Z": { + "access": 1 + }, + "c (Laug;D)D": { + "access": 1 + }, + "a ()D": { + "access": 1 + }, + "a (Laui;Laui;)Lauh;": { + "access": 1 + }, + "b (Laui;)Z": { + "access": 2 + }, + "a (DDDDDD)Laug;": { + "access": 9 + }, + "a (Laui;)Z": { + "access": 1 + }, + "b (DDD)Laug;": { + "access": 1 + }, + "\u003cinit\u003e (Lcj;Lcj;)V": { + "access": 1 + }, + "d (DDD)Laug;": { + "access": 1 + }, + "b ()Z": { + "access": 1 + }, + "a (Laug;)Laug;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "d (Laui;)Z": { + "access": 2 + }, + "b (Laug;D)D": { + "access": 1 + }, + "c (Laui;)Z": { + "access": 2 + }, + "\u003cinit\u003e (DDDDDD)V": { + "access": 1 + }, + "a (DDD)Laug;": { + "access": 1 + }, + "c (DDD)Laug;": { + "access": 1 + }, + "a (Laug;D)D": { + "access": 1 + } + } + }, + "aui": { + "name": "aui", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ldf;)V": { + "access": 1 + }, + "b (F)Laui;": { + "access": 1 + }, + "b (DDD)Laui;": { + "access": 1 + }, + "d (Laui;)Laui;": { + "access": 1 + }, + "e (Laui;)Laui;": { + "access": 1 + }, + "b ()D": { + "access": 1 + }, + "a ()Laui;": { + "access": 1 + }, + "g (Laui;)D": { + "access": 1 + }, + "c (Laui;)Laui;": { + "access": 1 + }, + "c (Laui;D)Laui;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Laui;)Laui;": { + "access": 1 + }, + "b (Laui;)D": { + "access": 1 + }, + "a (Laui;D)Laui;": { + "access": 1 + }, + "a (DDD)Laui;": { + "access": 1 + }, + "b (Laui;D)Laui;": { + "access": 1 + }, + "\u003cinit\u003e (DDD)V": { + "access": 1 + }, + "a (F)Laui;": { + "access": 1 + }, + "f (Laui;)D": { + "access": 1 + } + } + }, + "auh": { + "name": "auh", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lpk;Laui;)V": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Laui;Lcq;)V": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "\u003cinit\u003e (Lpk;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lauh$a;Laui;Lcq;Lcj;)V": { + "access": 1 + }, + "\u003cinit\u003e (Laui;Lcq;Lcj;)V": { + "access": 1 + } + } + }, + "auk": { + "name": "auk", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "c ()Lauu;": { + "access": 1 + }, + "\u003cinit\u003e (Lauo;Ljava/lang/String;Lauu;)V": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Lauu$a;)V": { + "access": 1 + }, + "a ()Lauo;": { + "access": 1 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "e ()Lauu$a;": { + "access": 1 + } + } + }, + "aum": { + "name": "aum", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Z)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f ()Lauo;": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Ljava/util/List;)V": { + "access": 1 + }, + "c (I)V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "e ()Ljava/lang/String;": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "\u003cinit\u003e (Lauo;Lauk;Ljava/lang/String;)V": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "d ()Lauk;": { + "access": 1 + } + } + }, + "aul": { + "name": "aul", + "access": 33, + "superName": "auq", + "methods": { + "k ()I": { + "access": 1 + }, + "d (Ljava/lang/String;)Ljava/lang/String;": { + "access": 1, + "override": "auq" + }, + "a (Z)V": { + "access": 1 + }, + "b (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Lauq$a;)V": { + "access": 1 + }, + "h ()Z": { + "access": 1, + "override": "auq" + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "a (Lauq;Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "j ()Lauq$a;": { + "access": 1, + "override": "auq" + }, + "a (I)V": { + "access": 1 + }, + "l ()La;": { + "access": 1 + }, + "f ()Ljava/lang/String;": { + "access": 1 + }, + "i ()Lauq$a;": { + "access": 1, + "override": "auq" + }, + "\u003cinit\u003e (Lauo;Ljava/lang/String;)V": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1, + "override": "auq" + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "e ()Ljava/lang/String;": { + "access": 1 + }, + "b (Lauq$a;)V": { + "access": 1 + }, + "d ()Ljava/util/Collection;": { + "access": 1, + "override": "auq" + }, + "g ()Z": { + "access": 1, + "override": "auq" + }, + "c (Ljava/lang/String;)V": { + "access": 1 + }, + "a (La;)V": { + "access": 1 + } + } + }, + "tv$1": { + "name": "tv$1", + "access": 32, + "superName": "xi", + "methods": { + "\u003cinit\u003e (Ltv;)V": { + "access": 0 + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + } + } + }, + "auo": { + "name": "auo", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Laul;)V": { + "access": 1 + }, + "i (Lauk;)Ljava/util/Collection;": { + "access": 1 + }, + "a (ILauk;)V": { + "access": 1 + }, + "a (Ljava/lang/String;Lauk;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f (Ljava/lang/String;)Z": { + "access": 1 + }, + "b (Lauk;)V": { + "access": 1 + }, + "a (Lpk;)V": { + "access": 1 + }, + "h (Ljava/lang/String;)Laul;": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "c (Lauk;)V": { + "access": 1 + }, + "i (Ljava/lang/String;)I": { + "access": 9 + }, + "a (Ljava/lang/String;Ljava/lang/String;)Z": { + "access": 1 + }, + "k (Lauk;)V": { + "access": 1 + }, + "e (Ljava/lang/String;)Laul;": { + "access": 1 + }, + "d (Laul;)V": { + "access": 1 + }, + "c (Ljava/lang/String;Lauk;)Laum;": { + "access": 1 + }, + "a (Laum;)V": { + "access": 1 + }, + "e ()Ljava/util/Collection;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "d (Ljava/lang/String;Lauk;)V": { + "access": 1 + }, + "a (Lauk;)V": { + "access": 1 + }, + "a (Ljava/lang/String;Laul;)V": { + "access": 1 + }, + "a (Lauu;)Ljava/util/Collection;": { + "access": 1 + }, + "b (Ljava/lang/String;)Lauk;": { + "access": 1 + }, + "f ()Ljava/util/Collection;": { + "access": 1 + }, + "g ()Ljava/util/Collection;": { + "access": 1 + }, + "a (I)Lauk;": { + "access": 1 + }, + "d (Ljava/lang/String;)Laul;": { + "access": 1 + }, + "b (Laul;)V": { + "access": 1 + }, + "c (Ljava/lang/String;)Ljava/util/Map;": { + "access": 1 + }, + "b (Ljava/lang/String;Lauk;)Z": { + "access": 1 + }, + "b (I)Ljava/lang/String;": { + "access": 9 + }, + "c ()Ljava/util/Collection;": { + "access": 1 + }, + "a (Ljava/lang/String;Lauu;)Lauk;": { + "access": 1 + }, + "c (Laul;)V": { + "access": 1 + }, + "h ()[Ljava/lang/String;": { + "access": 9 + }, + "d ()Ljava/util/Collection;": { + "access": 1 + } + } + }, + "auq": { + "name": "auq", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "j ()Lauq$a;": { + "access": 1025 + }, + "d (Ljava/lang/String;)Ljava/lang/String;": { + "access": 1025 + }, + "i ()Lauq$a;": { + "access": 1025 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1025 + }, + "a (Lauq;)Z": { + "access": 1 + }, + "h ()Z": { + "access": 1025 + }, + "g ()Z": { + "access": 1025 + }, + "d ()Ljava/util/Collection;": { + "access": 1025 + } + } + }, + "aup": { + "name": "aup", + "access": 33, + "superName": "ate", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Ldu;)V": { + "access": 4 + }, + "d (Ldn;)V": { + "access": 4 + }, + "a (Lauo;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c (Ldn;)V": { + "access": 4 + }, + "b (Ldn;)V": { + "access": 1, + "override": "ate" + }, + "a (Ldn;)V": { + "access": 1, + "override": "ate" + }, + "c (Ldu;)V": { + "access": 4 + }, + "b (Ldu;)V": { + "access": 4 + }, + "a (Laul;Ldu;)V": { + "access": 4 + }, + "a ()Ldu;": { + "access": 4 + }, + "b ()Ldu;": { + "access": 4 + }, + "e ()Ldu;": { + "access": 4 + } + } + }, + "aus": { + "name": "aus", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "auu" + ], + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Ljava/util/List;)I": { + "access": 1, + "override": "auu" + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "auu" + }, + "c ()Lauu$a;": { + "access": 1, + "override": "auu" + }, + "b ()Z": { + "access": 1, + "override": "auu" + } + } + }, + "aur": { + "name": "aur", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "auu" + ], + "methods": { + "a (Ljava/util/List;)I": { + "access": 1, + "override": "auu" + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "auu" + }, + "\u003cinit\u003e (Ljava/lang/String;La;)V": { + "access": 1 + }, + "c ()Lauu$a;": { + "access": 1, + "override": "auu" + }, + "b ()Z": { + "access": 1, + "override": "auu" + } + } + }, + "auu": { + "name": "auu", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/util/List;)I": { + "access": 1025 + }, + "a ()Ljava/lang/String;": { + "access": 1025 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c ()Lauu$a;": { + "access": 1025 + }, + "b ()Z": { + "access": 1025 + } + } + }, + "amy$a": { + "name": "amy$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lamy$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lamy$a;": { + "access": 9 + } + } + }, + "aut": { + "name": "aut", + "access": 33, + "superName": "aus", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Ljava/util/List;)I": { + "access": 1, + "override": "auu" + }, + "c ()Lauu$a;": { + "access": 1, + "override": "auu" + }, + "b ()Z": { + "access": 1, + "override": "auu" + } + } + }, + "auv": { + "name": "auv", + "access": 33, + "superName": "aus", + "methods": { + "\u003cinit\u003e (Lmw;)V": { + "access": 1 + } + } + }, + "auz": { + "name": "auz", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()Laui;": { + "access": 9 + }, + "a (Lwn;Z)V": { + "access": 9 + }, + "b ()F": { + "access": 9 + }, + "e ()F": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f ()F": { + "access": 9 + }, + "d ()F": { + "access": 9 + }, + "c ()F": { + "access": 9 + }, + "a (Ladm;Lpk;F)Lafh;": { + "access": 9 + }, + "a (Lpk;D)Laui;": { + "access": 9 + } + } + }, + "avb": { + "name": "avb", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Comparable" + ], + "methods": { + "b ()V": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i ()I": { + "access": 1 + }, + "a (IZ)V": { + "access": 9 + }, + "d ()Z": { + "access": 1 + }, + "a (Lavb;)I": { + "access": 1 + }, + "a ()V": { + "access": 9 + }, + "a (I)V": { + "access": 9 + }, + "compareTo (Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lavb;)I" + }, + "override": "java/lang/Comparable" + }, + "f ()Z": { + "access": 1 + }, + "c ()Ljava/util/Set;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 1 + }, + "e ()Ljava/lang/String;": { + "access": 1 + }, + "h ()I": { + "access": 1 + }, + "j ()V": { + "access": 2 + }, + "b (I)V": { + "access": 1 + }, + "g ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "ava": { + "name": "ava", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (ILeu;I)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a ()Leu;": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "avd": { + "name": "avd", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (II)V": { + "access": 41 + }, + "a (I)I": { + "access": 41 + }, + "b (I)V": { + "access": 41 + }, + "c (I)Ljava/nio/ByteBuffer;": { + "access": 41 + }, + "f (I)Ljava/nio/IntBuffer;": { + "access": 9 + }, + "h (I)Ljava/nio/FloatBuffer;": { + "access": 9 + } + } + }, + "avc": { + "name": "avc", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 9 + }, + "a (FFFF)Ljava/nio/FloatBuffer;": { + "access": 10 + }, + "b ()V": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (DDDD)Ljava/nio/FloatBuffer;": { + "access": 10 + }, + "c ()V": { + "access": 9 + } + } + }, + "avf": { + "name": "avf", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()V": { + "access": 1 + } + } + }, + "axy$a": { + "name": "axy$a", + "access": 32, + "superName": "awi", + "methods": { + "\u003cinit\u003e (Laxy;)V": { + "access": 1 + }, + "a ()V": { + "access": 4, + "override": "awi" + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + }, + "d ()I": { + "access": 4, + "override": "awi" + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "ave": { + "name": "ave", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "od", + "os" + ], + "methods": { + "a (Ljava/io/InputStream;)Ljava/nio/ByteBuffer;": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "q ()V": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "a (Ljava/lang/Runnable;)Lcom/google/common/util/concurrent/ListenableFuture;": { + "access": 1, + "override": "od" + }, + "b (Lave;)Lbns;": { + "access": 4104 + }, + "ae ()Lbgd;": { + "access": 1 + }, + "B ()Lcom/google/common/util/concurrent/ListenableFuture;": { + "access": 1 + }, + "a (J)V": { + "access": 2 + }, + "am ()V": { + "access": 2, + "exceptions": [ + "org/lwjgl/LWJGLException", + "java/io/IOException" + ] + }, + "K ()Z": { + "access": 1 + }, + "a (Ljava/util/concurrent/Callable;)Lcom/google/common/util/concurrent/ListenableFuture;": { + "access": 1 + }, + "M ()Lcom/mojang/authlib/properties/PropertyMap;": { + "access": 1 + }, + "f ()Latr;": { + "access": 1 + }, + "X ()Lbpv$a;": { + "access": 1 + }, + "Y ()Lbqm;": { + "access": 1 + }, + "\u003cinit\u003e (Lbao;)V": { + "access": 1 + }, + "av ()V": { + "access": 2 + }, + "s ()V": { + "access": 1 + }, + "ai ()I": { + "access": 9 + }, + "d ()Z": { + "access": 1 + }, + "S ()Lbns;": { + "access": 1 + }, + "ao ()V": { + "access": 2 + }, + "a (II)V": { + "access": 2 + }, + "ax ()V": { + "access": 2 + }, + "b (I)V": { + "access": 2 + }, + "v ()Z": { + "access": 9 + }, + "az ()V": { + "access": 2 + }, + "Q ()Lbni;": { + "access": 1 + }, + "W ()Lbpz;": { + "access": 1 + }, + "b (Ljava/lang/String;)V": { + "access": 2 + }, + "aA ()Ljava/lang/String;": { + "access": 2 + }, + "aq ()V": { + "access": 2, + "exceptions": [ + "org/lwjgl/LWJGLException" + ] + }, + "aJ ()Z": { + "access": 1, + "override": "od" + }, + "m ()V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/String;Ladp;)V": { + "access": 1 + }, + "N ()Lcom/mojang/authlib/properties/PropertyMap;": { + "access": 1 + }, + "j ()I": { + "access": 1 + }, + "af ()Lbiu;": { + "access": 1 + }, + "a (Lbde;)V": { + "access": 1 + }, + "a (Lb;)V": { + "access": 1 + }, + "ak ()Ljava/util/Map;": { + "access": 9 + }, + "as ()Z": { + "access": 10 + }, + "P ()Lbmj;": { + "access": 1 + }, + "ac ()Lpk;": { + "access": 1 + }, + "V ()Z": { + "access": 1 + }, + "o ()V": { + "access": 1 + }, + "h ()V": { + "access": 1 + }, + "F ()Z": { + "access": 1 + }, + "ab ()Lbnp;": { + "access": 1 + }, + "x ()Z": { + "access": 9 + }, + "a (Lave;)Ljava/lang/String;": { + "access": 4104 + }, + "r ()Lbpv;": { + "access": 1 + }, + "I ()Lor;": { + "access": 1 + }, + "al ()Z": { + "access": 1 + }, + "g ()V": { + "access": 1 + }, + "R ()Lbnm;": { + "access": 1 + }, + "aa ()Lcom/mojang/authlib/minecraft/MinecraftSessionService;": { + "access": 1 + }, + "au ()V": { + "access": 2, + "exceptions": [ + "org/lwjgl/LWJGLException" + ] + }, + "a (Lbdb;Ljava/lang/String;)V": { + "access": 1 + }, + "U ()Z": { + "access": 1 + }, + "a (Lpk;)V": { + "access": 1 + }, + "b (Lb;)Lb;": { + "access": 1 + }, + "H ()V": { + "access": 9 + }, + "u ()Lbcy;": { + "access": 1 + }, + "T ()Lbmh;": { + "access": 1 + }, + "an ()V": { + "access": 2 + }, + "e ()V": { + "access": 1 + }, + "A ()Lave;": { + "access": 9 + }, + "a (IIIIIIIIII)V": { + "access": 1 + }, + "aw ()V": { + "access": 2 + }, + "a (Laxu;)V": { + "access": 1 + }, + "a (Lor;)V": { + "access": 1, + "override": "os" + }, + "Z ()V": { + "access": 1 + }, + "b ()Lbfw;": { + "access": 1 + }, + "J ()J": { + "access": 9 + }, + "ay ()V": { + "access": 2 + }, + "C ()I": { + "access": 9 + }, + "k ()Z": { + "access": 1 + }, + "a (Lbdb;)V": { + "access": 1 + }, + "L ()Lavm;": { + "access": 1 + }, + "a (Lbmj;)V": { + "access": 2, + "exceptions": [ + "org/lwjgl/LWJGLException" + ] + }, + "ap ()V": { + "access": 2, + "exceptions": [ + "org/lwjgl/LWJGLException" + ] + }, + "t ()Z": { + "access": 17 + }, + "l ()V": { + "access": 1 + }, + "ag ()Lbjh;": { + "access": 1 + }, + "E ()Z": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lzw;ILakw;)Lzx;": { + "access": 2 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "w ()Z": { + "access": 9 + }, + "ah ()Lbfn;": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "aj ()Lnh;": { + "access": 1 + }, + "ar ()V": { + "access": 2 + }, + "c (Lb;)V": { + "access": 1 + }, + "n ()V": { + "access": 1 + }, + "G ()Lbpo;": { + "access": 1 + }, + "D ()Lbde;": { + "access": 1 + }, + "i ()V": { + "access": 4 + }, + "O ()Ljava/net/Proxy;": { + "access": 1 + }, + "ad ()Z": { + "access": 1, + "override": "os" + }, + "b (Z)V": { + "access": 2 + }, + "b (Lor;)V": { + "access": 1, + "override": "os" + }, + "p ()V": { + "access": 1 + }, + "at ()V": { + "access": 2 + } + } + }, + "bek$a": { + "name": "bek$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "avh": { + "name": "avh", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lavh$a;F)V": { + "access": 1 + }, + "c (I)Ljava/lang/String;": { + "access": 9 + }, + "b ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/lang/String;)F": { + "access": 2 + }, + "a ([Ljava/lang/String;I)Ljava/lang/String;": { + "access": 10 + }, + "a (Lbpg;F)V": { + "access": 1 + }, + "\u003cinit\u003e (Lave;Ljava/io/File;)V": { + "access": 1 + }, + "a (Lavh$a;)F": { + "access": 1 + }, + "a (Lavh$a;I)V": { + "access": 1 + }, + "b (Lavh$a;)Z": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "a (Lwo;)V": { + "access": 1 + }, + "c (Lavh$a;)Ljava/lang/String;": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "d ()Ljava/util/Set;": { + "access": 1 + }, + "a (Lwo;Z)V": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "a (Lavb;I)V": { + "access": 1 + }, + "a (Lbpg;)F": { + "access": 1 + }, + "a (Lavb;)Z": { + "access": 9 + } + } + }, + "avj": { + "name": "avj", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/io/File;IILbfw;)Leu;": { + "access": 9 + }, + "a (Ljava/io/File;Ljava/lang/String;IILbfw;)Leu;": { + "access": 9 + }, + "a (Ljava/io/File;)Ljava/io/File;": { + "access": 10 + } + } + }, + "avi": { + "name": "avi", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "nu" + ], + "methods": { + "a ()V": { + "access": 1, + "override": "nu" + }, + "a (I)V": { + "access": 1, + "override": "nu" + }, + "b (Ljava/lang/String;)V": { + "access": 1, + "override": "nu" + }, + "a (Ljava/lang/String;)V": { + "access": 1, + "override": "nu" + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "d (Ljava/lang/String;)V": { + "access": 2 + }, + "c (Ljava/lang/String;)V": { + "access": 1, + "override": "nu" + } + } + }, + "avl": { + "name": "avl", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "\u003cinit\u003e (F)V": { + "access": 1 + } + } + }, + "avk": { + "name": "avk", + "access": 33, + "superName": "java/lang/Error", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "avn": { + "name": "avn", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnj" + ], + "methods": { + "a (Ljava/lang/String;III)I": { + "access": 1 + }, + "e (Ljava/lang/String;I)I": { + "access": 2 + }, + "d (Ljava/lang/String;)Ljava/lang/String;": { + "access": 2 + }, + "a (Z)V": { + "access": 1 + }, + "a (Ljava/lang/String;IIII)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (C)I": { + "access": 1 + }, + "a (Ljava/lang/String;IIIIZ)I": { + "access": 2 + }, + "a (Ljava/lang/String;IZ)Ljava/lang/String;": { + "access": 1 + }, + "c (C)Z": { + "access": 10 + }, + "b (CZ)F": { + "access": 2 + }, + "b ()Z": { + "access": 1 + }, + "d (C)Z": { + "access": 10 + }, + "a (Ljava/lang/String;IIIZ)V": { + "access": 2 + }, + "a ()Z": { + "access": 1 + }, + "a (Ljava/lang/String;FFI)I": { + "access": 1 + }, + "a (Ljava/lang/String;FFIZ)I": { + "access": 1 + }, + "e ()V": { + "access": 2 + }, + "a (Ljava/lang/String;)I": { + "access": 1 + }, + "a (C)I": { + "access": 1 + }, + "b (Ljava/lang/String;FFIZ)I": { + "access": 2 + }, + "d ()V": { + "access": 2 + }, + "\u003cinit\u003e (Lavh;Ljy;Lbmj;Z)V": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "a (Lbni;)V": { + "access": 1, + "override": "bnj" + }, + "a (I)Ljy;": { + "access": 2 + }, + "a (Ljava/lang/String;I)Ljava/lang/String;": { + "access": 1 + }, + "d (Ljava/lang/String;I)Ljava/lang/String;": { + "access": 0 + }, + "a (CZ)F": { + "access": 2 + }, + "a (Ljava/lang/String;Z)V": { + "access": 2 + }, + "c (Ljava/lang/String;I)Ljava/util/List;": { + "access": 1 + }, + "c ()V": { + "access": 2 + }, + "a (IZ)F": { + "access": 2 + }, + "b (Ljava/lang/String;I)I": { + "access": 1 + }, + "b (Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "b (I)V": { + "access": 2 + }, + "c (Ljava/lang/String;)Ljava/lang/String;": { + "access": 2 + } + } + }, + "avm": { + "name": "avm", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "f ()Lavm$a;": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "e ()Lcom/mojang/authlib/GameProfile;": { + "access": 1 + } + } + }, + "avp": { + "name": "avp", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (IILbmi;II)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (IIFFIIIIFF)V": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIIIII)V": { + "access": 4 + }, + "a (Lavn;Ljava/lang/String;III)V": { + "access": 1 + }, + "a (FFIIII)V": { + "access": 1 + }, + "c (Lavn;Ljava/lang/String;III)V": { + "access": 1 + }, + "a (IIII)V": { + "access": 4 + }, + "b (IIIIII)V": { + "access": 1 + }, + "b (IIII)V": { + "access": 4 + }, + "a (IIIII)V": { + "access": 9 + }, + "a (IIFFIIFF)V": { + "access": 9 + } + } + }, + "avo": { + "name": "avo", + "access": 33, + "superName": "avp", + "methods": { + "b (Lavr;)V": { + "access": 1 + }, + "e (Lavr;)V": { + "access": 2 + }, + "h ()Lawh;": { + "access": 1 + }, + "f ()Lavn;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "d ()Lavt;": { + "access": 1 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "b (Lavr;I)V": { + "access": 1 + }, + "a (Lauk;Lavr;)V": { + "access": 2 + }, + "a (IIIFLwn;)V": { + "access": 2 + }, + "b ()Z": { + "access": 4 + }, + "a ()V": { + "access": 1 + }, + "a (F)V": { + "access": 1 + }, + "a (FLavr;)V": { + "access": 2 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "j ()V": { + "access": 2 + }, + "i ()V": { + "access": 1 + }, + "a (Lavr;F)V": { + "access": 4 + }, + "b (FLavr;)V": { + "access": 2 + }, + "d (Lavr;)V": { + "access": 2 + }, + "a (Lavr;)V": { + "access": 1 + }, + "g ()Lawm;": { + "access": 1 + }, + "a (Lavr;I)V": { + "access": 1 + }, + "a (Leu;Z)V": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "a (Ljava/lang/String;Z)V": { + "access": 1 + }, + "c (Lavr;)V": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/String;III)V": { + "access": 1 + } + } + }, + "avr": { + "name": "avr", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "e ()I": { + "access": 1 + }, + "c ()D": { + "access": 1 + }, + "d ()D": { + "access": 1 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "avq": { + "name": "avq", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbmj;)V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "a (Latg;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Latg;)Lavq$a;": { + "access": 2 + }, + "a (Lavq;)Lbmj;": { + "access": 4104 + }, + "a (Latg;Z)V": { + "access": 1 + }, + "b ()Ljy;": { + "access": 4104 + } + } + }, + "avt": { + "name": "avt", + "access": 33, + "superName": "avp", + "methods": { + "e ()Z": { + "access": 1 + }, + "a (F)I": { + "access": 9 + }, + "f ()I": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "h ()F": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c ()Ljava/util/List;": { + "access": 1 + }, + "i ()I": { + "access": 1 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "d ()V": { + "access": 1 + }, + "a (Leu;IIZ)V": { + "access": 2 + }, + "b (F)I": { + "access": 9 + }, + "c (I)V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "a (II)Leu;": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "g ()I": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Leu;)V": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "a (Leu;I)V": { + "access": 1 + } + } + }, + "avs": { + "name": "avs", + "access": 33, + "superName": "avp", + "methods": { + "\u003cinit\u003e (IIIIILjava/lang/String;)V": { + "access": 1 + }, + "b (II)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lave;II)V": { + "access": 1 + }, + "a (Z)I": { + "access": 4 + }, + "\u003cinit\u003e (IIILjava/lang/String;)V": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "b (Lave;II)V": { + "access": 4 + }, + "a (Lbpz;)V": { + "access": 1 + }, + "a (II)V": { + "access": 1 + }, + "a ()Z": { + "access": 1 + }, + "c (Lave;II)Z": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "bmf$a": { + "name": "bmf$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Comparable" + ], + "methods": { + "e ()Z": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "compareTo (Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lbmf$a;)I" + }, + "override": "java/lang/Comparable" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Lbmf$a;)I": { + "access": 1 + }, + "a ()Lbmi;": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "d ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lbmi;I)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "avv": { + "name": "avv", + "access": 33, + "superName": "avp", + "methods": { + "a ()V": { + "access": 4 + }, + "b (Lavr;)V": { + "access": 4 + }, + "e ()V": { + "access": 2 + }, + "c (IIII)I": { + "access": 2 + }, + "b ()Ljava/util/List;": { + "access": 4 + }, + "c ()Ljava/util/List;": { + "access": 4 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "a (Lavr;)V": { + "access": 1 + }, + "d ()Z": { + "access": 2 + }, + "a (J)J": { + "access": 10 + }, + "a (IIF)I": { + "access": 2 + } + } + }, + "bdy$a": { + "name": "bdy$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bmf$b": { + "name": "bmf$b", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()Lbmf$a;": { + "access": 1 + }, + "a (Lbmf$a;)Z": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "c ()I": { + "access": 1 + }, + "\u003cinit\u003e (IIII)V": { + "access": 1 + }, + "a (Ljava/util/List;)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "avu": { + "name": "avu", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Leu;ILavn;ZZ)Ljava/util/List;": { + "access": 9 + }, + "a (Ljava/lang/String;Z)Ljava/lang/String;": { + "access": 9 + } + } + }, + "avx": { + "name": "avx", + "access": 33, + "superName": "avs", + "methods": { + "b (Lave;II)V": { + "access": 4, + "override": "avs" + }, + "a (FZ)V": { + "access": 1 + }, + "e ()Ljava/lang/String;": { + "access": 2 + }, + "a (F)V": { + "access": 1 + }, + "\u003cinit\u003e (Lawg$b;IIILjava/lang/String;FFFLavx$a;)V": { + "access": 1 + }, + "d ()F": { + "access": 1 + }, + "c ()F": { + "access": 1 + }, + "a (II)V": { + "access": 1, + "override": "avs" + }, + "a (Z)I": { + "access": 4, + "override": "avs" + }, + "c (Lave;II)Z": { + "access": 1, + "override": "avs" + } + } + }, + "avw": { + "name": "avw", + "access": 33, + "superName": "avp", + "methods": { + "d (Z)V": { + "access": 1 + }, + "p ()I": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "b (Ljava/lang/String;)V": { + "access": 1 + }, + "g ()V": { + "access": 1 + }, + "i (I)V": { + "access": 1 + }, + "a (Lawg$b;)V": { + "access": 1 + }, + "m ()Z": { + "access": 1 + }, + "a (CI)Z": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "f (I)V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "d (I)V": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "f ()V": { + "access": 1 + }, + "c (Z)V": { + "access": 1 + }, + "o ()I": { + "access": 1 + }, + "g (I)V": { + "access": 1 + }, + "r ()Z": { + "access": 1 + }, + "\u003cinit\u003e (ILavn;IIII)V": { + "access": 1 + }, + "a (II)I": { + "access": 1 + }, + "e ()V": { + "access": 1 + }, + "e (I)V": { + "access": 1 + }, + "i ()I": { + "access": 1 + }, + "j ()Z": { + "access": 1 + }, + "h (I)V": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "a (III)V": { + "access": 1 + }, + "a (Lcom/google/common/base/Predicate;)V": { + "access": 1 + }, + "a (IIZ)I": { + "access": 1 + }, + "e (Z)V": { + "access": 1 + }, + "c (IIII)V": { + "access": 2 + }, + "h ()I": { + "access": 1 + }, + "c (I)I": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "b (I)V": { + "access": 1 + } + } + }, + "avz": { + "name": "avz", + "access": 33, + "superName": "avs", + "methods": { + "a (Lave;II)V": { + "access": 1, + "override": "avs" + }, + "\u003cinit\u003e (III)V": { + "access": 1 + } + } + }, + "avy": { + "name": "avy", + "access": 33, + "superName": "avp", + "methods": { + "\u003cinit\u003e (Lavn;IIIIII)V": { + "access": 1 + }, + "a ()Lavy;": { + "access": 1 + }, + "b (Lave;II)V": { + "access": 4 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Lave;II)V": { + "access": 1 + } + } + }, + "awc": { + "name": "awc", + "access": 33, + "superName": "avs", + "methods": { + "a (Lave;II)V": { + "access": 1, + "override": "avs" + }, + "b (Z)V": { + "access": 1 + }, + "\u003cinit\u003e (III)V": { + "access": 1 + }, + "c ()Z": { + "access": 1 + } + } + }, + "awb": { + "name": "awb", + "access": 33, + "superName": "avs", + "methods": { + "\u003cinit\u003e (Lawg$b;IIILjava/lang/String;Z)V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 2 + }, + "b (Z)V": { + "access": 1 + }, + "c (Lave;II)Z": { + "access": 1, + "override": "avs" + } + } + }, + "awe": { + "name": "awe", + "access": 33, + "superName": "avs", + "methods": { + "\u003cinit\u003e (IIIIILjava/lang/String;)V": { + "access": 1 + }, + "c ()Lavh$a;": { + "access": 1 + }, + "\u003cinit\u003e (IIILavh$a;Ljava/lang/String;)V": { + "access": 1 + }, + "\u003cinit\u003e (IIILjava/lang/String;)V": { + "access": 1 + } + } + }, + "awd": { + "name": "awd", + "access": 1057, + "superName": "awi", + "methods": { + "a ()V": { + "access": 4, + "override": "awi" + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "b (III)Z": { + "access": 1 + }, + "\u003cinit\u003e (Lave;IIIII)V": { + "access": 1 + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + }, + "c (III)Z": { + "access": 1 + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "b (I)Lawd$a;": { + "access": 1025 + }, + "a (III)V": { + "access": 4, + "override": "awi" + } + } + }, + "awg": { + "name": "awg", + "access": 33, + "superName": "awd", + "methods": { + "a (IILawg$a;)Lawb;": { + "access": 2 + }, + "f ()I": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "d (I)Lavp;": { + "access": 1 + }, + "g ()Lavp;": { + "access": 1 + }, + "c (I)V": { + "access": 1 + }, + "a (IILawg$c;)Lavw;": { + "access": 2 + }, + "a (Lawg$f;IZ)Lavp;": { + "access": 2 + }, + "a (IILawg$e;Z)Lavy;": { + "access": 2 + }, + "e (II)V": { + "access": 2 + }, + "b ()I": { + "access": 1, + "override": "awi" + }, + "i ()V": { + "access": 1 + }, + "c ()I": { + "access": 1, + "override": "awi" + }, + "s ()V": { + "access": 2 + }, + "a (IILawg$g;)Lavx;": { + "access": 2 + }, + "b (I)Lawd$a;": { + "access": 4097, + "bouncer": { + "name": "e", + "desc": "(I)Lawg$d;" + }, + "override": "awd" + }, + "e ()I": { + "access": 1 + }, + "b (III)Z": { + "access": 1, + "override": "awd" + }, + "h ()V": { + "access": 1 + }, + "a (CI)V": { + "access": 1 + }, + "t ()V": { + "access": 2 + }, + "\u003cinit\u003e (Lave;IIIIILawg$b;[[Lawg$f;)V": { + "access": 129 + }, + "a (Lavp;Z)V": { + "access": 2 + }, + "d ()I": { + "access": 4, + "override": "awi" + }, + "e (I)Lawg$d;": { + "access": 1 + } + } + }, + "awf": { + "name": "awf", + "access": 33, + "superName": "awd", + "methods": { + "a (Lave;IILavh$a;)Lavs;": { + "access": 2 + }, + "c ()I": { + "access": 1, + "override": "awi" + }, + "\u003cinit\u003e (Lave;IIIII[Lavh$a;)V": { + "access": 129 + }, + "d ()I": { + "access": 4, + "override": "awi" + }, + "c (I)Lawf$a;": { + "access": 1 + }, + "b (I)Lawd$a;": { + "access": 4097, + "bouncer": { + "name": "c", + "desc": "(I)Lawf$a;" + }, + "override": "awd" + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "awi": { + "name": "awi", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "l ()V": { + "access": 4 + }, + "d (Z)V": { + "access": 1 + }, + "k ()I": { + "access": 4 + }, + "b (II)V": { + "access": 4 + }, + "i (I)V": { + "access": 1 + }, + "a (Lavs;)V": { + "access": 1 + }, + "a (IIIIII)V": { + "access": 1028 + }, + "a (I)Z": { + "access": 1028 + }, + "q ()Z": { + "access": 1 + }, + "a (ZI)V": { + "access": 4 + }, + "a ()V": { + "access": 1028 + }, + "g (I)Z": { + "access": 1 + }, + "b ()I": { + "access": 1028 + }, + "\u003cinit\u003e (Lave;IIIII)V": { + "access": 1 + }, + "h (I)V": { + "access": 1 + }, + "a (IIF)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "n ()I": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "a (III)V": { + "access": 4 + }, + "r ()I": { + "access": 1 + }, + "a (IZII)V": { + "access": 1028 + }, + "c (II)I": { + "access": 1 + }, + "a (IIII)V": { + "access": 1 + }, + "a (IILbfx;)V": { + "access": 4 + }, + "c (IIII)V": { + "access": 4 + }, + "d (II)V": { + "access": 1 + }, + "m ()I": { + "access": 1 + }, + "a (II)V": { + "access": 4 + }, + "p ()V": { + "access": 1 + }, + "d ()I": { + "access": 4 + }, + "b (IIII)V": { + "access": 4 + } + } + }, + "awh": { + "name": "awh", + "access": 33, + "superName": "avp", + "methods": { + "a (Lbdc;)Ljava/lang/String;": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "b (Leu;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lave;Lavo;)V": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "a (Lauk;ILjava/lang/String;IILbdc;)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIILbdc;)V": { + "access": 4 + }, + "a (Leu;)V": { + "access": 1 + }, + "a (ILauo;Lauk;)V": { + "access": 1 + } + } + }, + "awk": { + "name": "awk", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "a (IIII)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "c ()I": { + "access": 2 + }, + "a (II)V": { + "access": 1 + }, + "b ()I": { + "access": 2 + } + } + }, + "awj": { + "name": "awj", + "access": 33, + "superName": "avs", + "methods": { + "b (Lave;II)V": { + "access": 4, + "override": "avs" + }, + "\u003cinit\u003e (IIILavh$a;)V": { + "access": 1 + }, + "a (II)V": { + "access": 1, + "override": "avs" + }, + "a (Z)I": { + "access": 4, + "override": "avs" + }, + "c (Lave;II)Z": { + "access": 1, + "override": "avs" + }, + "\u003cinit\u003e (IIILavh$a;FF)V": { + "access": 1 + } + } + }, + "awm": { + "name": "awm", + "access": 33, + "superName": "avp", + "interfaces": [ + "bai" + ], + "methods": { + "a (Lavr;FIFLbaj;)V": { + "access": 4 + }, + "a (I)V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "a (Lavr;F)V": { + "access": 1 + }, + "c ()F": { + "access": 2 + }, + "a (IIFFLbah;)V": { + "access": 2 + }, + "a ()Z": { + "access": 1 + }, + "a (Lavr;)V": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "a (Lbaf;)V": { + "access": 1, + "override": "bai" + } + } + }, + "awq": { + "name": "awq", + "access": 33, + "superName": "awi", + "methods": { + "k ()I": { + "access": 4, + "override": "awi" + }, + "f ()I": { + "access": 1 + }, + "\u003cinit\u003e (Lnet/minecraft/realms/RealmsClickableScrolledSelectionList;IIIII)V": { + "access": 1 + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "a ()V": { + "access": 4, + "override": "awi" + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "e ()I": { + "access": 1 + }, + "g ()I": { + "access": 1 + }, + "a (IIILnet/minecraft/realms/Tezzelator;)V": { + "access": 1 + }, + "d ()I": { + "access": 4, + "override": "awi" + }, + "p ()V": { + "access": 1, + "override": "awi" + }, + "b (IIII)V": { + "access": 4, + "override": "awi" + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "awp": { + "name": "awp", + "access": 33, + "superName": "avs", + "methods": { + "\u003cinit\u003e (Lnet/minecraft/realms/RealmsButton;IIILjava/lang/String;)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "c (Z)I": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "a (Z)I": { + "access": 1, + "override": "avs" + }, + "\u003cinit\u003e (Lnet/minecraft/realms/RealmsButton;IIILjava/lang/String;II)V": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "b (Lave;II)V": { + "access": 1, + "override": "avs" + }, + "g ()I": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "f ()Lnet/minecraft/realms/RealmsButton;": { + "access": 1 + }, + "a (II)V": { + "access": 1, + "override": "avs" + }, + "c (Lave;II)Z": { + "access": 1, + "override": "avs" + }, + "b ()I": { + "access": 1, + "override": "avs" + } + } + }, + "aws": { + "name": "aws", + "access": 33, + "superName": "awi", + "methods": { + "a ()V": { + "access": 4, + "override": "awi" + }, + "k ()I": { + "access": 4, + "override": "awi" + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "f ()I": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "\u003cinit\u003e (Lnet/minecraft/realms/RealmsScrolledSelectionList;IIIII)V": { + "access": 1 + }, + "g ()I": { + "access": 1 + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + }, + "d ()I": { + "access": 4, + "override": "awi" + }, + "p ()V": { + "access": 1, + "override": "awi" + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "awr": { + "name": "awr", + "access": 33, + "superName": "axu", + "methods": { + "l ()V": { + "access": 1, + "override": "axu" + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "b (Lnet/minecraft/realms/RealmsButton;)V": { + "access": 1 + }, + "a (Lzx;II)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 17, + "override": "axu" + }, + "a (IIIIII)V": { + "access": 1, + "override": "avp" + }, + "c (Ljava/lang/String;)I": { + "access": 1 + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "a (ZI)V": { + "access": 1, + "override": "awx" + }, + "a ()Lnet/minecraft/realms/RealmsScreen;": { + "access": 1 + }, + "a (Ljava/lang/String;IIIZ)V": { + "access": 1 + }, + "\u003cinit\u003e (Lnet/minecraft/realms/RealmsScreen;)V": { + "access": 1 + }, + "b (IIIIII)V": { + "access": 1, + "override": "avp" + }, + "a (Ljava/util/List;II)V": { + "access": 1, + "override": "axu" + }, + "a (Ljava/lang/String;II)V": { + "access": 1, + "override": "axu" + }, + "b_ (I)V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "i ()V": { + "access": 1 + }, + "d ()Z": { + "access": 1, + "override": "axu" + }, + "a (III)V": { + "access": 1, + "override": "axu" + }, + "b (III)V": { + "access": 1, + "override": "axu" + }, + "b (Ljava/lang/String;III)V": { + "access": 1 + }, + "k ()V": { + "access": 1, + "override": "axu" + }, + "a (IIIJ)V": { + "access": 1, + "override": "axu" + }, + "a (Ljava/lang/String;III)V": { + "access": 1 + }, + "a (CI)V": { + "access": 1, + "override": "axu" + }, + "h ()I": { + "access": 1 + }, + "a (Ljava/lang/String;I)Ljava/util/List;": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "axu" + }, + "j ()Ljava/util/List;": { + "access": 1 + }, + "a (Lnet/minecraft/realms/RealmsButton;)V": { + "access": 1 + } + } + }, + "awu": { + "name": "awu", + "access": 33, + "superName": "axu", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;Lavh;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + } + } + }, + "awt": { + "name": "awt", + "access": 33, + "superName": "awi", + "methods": { + "k ()I": { + "access": 4, + "override": "awi" + }, + "f ()I": { + "access": 1 + }, + "a (IIF)V": { + "access": 1, + "override": "awi" + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "a ()V": { + "access": 4, + "override": "awi" + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "e ()I": { + "access": 1 + }, + "g ()I": { + "access": 1 + }, + "\u003cinit\u003e (Lnet/minecraft/realms/RealmsSimpleScrolledSelectionList;IIIII)V": { + "access": 1 + }, + "d ()I": { + "access": 4, + "override": "awi" + }, + "p ()V": { + "access": 1, + "override": "awi" + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "aww": { + "name": "aww", + "access": 33, + "superName": "awy", + "methods": { + "a ()V": { + "access": 1 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Lawx;Ljava/lang/String;IZ)V": { + "access": 1 + }, + "f ()V": { + "access": 1 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + } + } + }, + "awv": { + "name": "awv", + "access": 33, + "superName": "axu", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "d ()Z": { + "access": 1, + "override": "axu" + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "a ()V": { + "access": 1 + }, + "k ()V": { + "access": 1, + "override": "axu" + }, + "a ([Ljava/lang/String;)V": { + "access": 1 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (Ljava/lang/String;Z)V": { + "access": 4, + "override": "axu" + }, + "b (I)V": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 2 + } + } + }, + "awy": { + "name": "awy", + "access": 33, + "superName": "axu", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Lawx;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V": { + "access": 1 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "\u003cinit\u003e (Lawx;Ljava/lang/String;Ljava/lang/String;I)V": { + "access": 1 + }, + "b (I)V": { + "access": 1 + } + } + }, + "awx": { + "name": "awx", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (ZI)V": { + "access": 1025 + } + } + }, + "awz": { + "name": "awz", + "access": 33, + "superName": "axu", + "methods": { + "a ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;Lave;Ljava/lang/String;I)V": { + "access": 1 + }, + "a (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cinit\u003e (Laxu;Lave;Lbde;)V": { + "access": 1 + }, + "b (Lawz;)Lek;": { + "access": 4104 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "c (Lawz;)Laxu;": { + "access": 4104 + }, + "a (Lawz;Lek;)Lek;": { + "access": 4104 + }, + "a (Lawz;)Z": { + "access": 4104 + } + } + }, + "axb": { + "name": "axb", + "access": 33, + "superName": "axu", + "methods": { + "a (Z)V": { + "access": 2 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a (Lato;)V": { + "access": 1 + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "a ()V": { + "access": 2 + }, + "a (Latr;Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "h ()V": { + "access": 2 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "f ()V": { + "access": 2 + }, + "\u003cinit\u003e (Laxu;)V": { + "access": 1 + }, + "g ()Z": { + "access": 2 + } + } + }, + "axa": { + "name": "axa", + "access": 33, + "superName": "axu", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "c (Laxa;)F": { + "access": 4104 + }, + "e (Laxa;)Lapz;": { + "access": 4104 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a (Laxa;)F": { + "access": 4104 + }, + "b (Laxa;)F": { + "access": 4104 + }, + "k ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Laxb;Ljava/lang/String;)V": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "f ()V": { + "access": 1 + }, + "g ()Z": { + "access": 2 + }, + "d (Laxa;)F": { + "access": 4104 + } + } + }, + "axd": { + "name": "axd", + "access": 33, + "superName": "axu", + "interfaces": [ + "avx$a", + "awg$b" + ], + "methods": { + "a (Z)V": { + "access": 2 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "g ()V": { + "access": 2 + }, + "i ()V": { + "access": 2 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a (IZ)V": { + "access": 1, + "override": "awg$b" + }, + "b (Z)V": { + "access": 2 + }, + "a (ILjava/lang/String;)V": { + "access": 1, + "override": "awg$b" + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "b (III)V": { + "access": 4, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;Ljava/lang/String;)V": { + "access": 1 + }, + "k ()V": { + "access": 1, + "override": "axu" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "h ()V": { + "access": 2 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (F)V": { + "access": 2 + }, + "f ()V": { + "access": 2 + }, + "b (IF)Ljava/lang/String;": { + "access": 2 + }, + "a (ILjava/lang/String;F)Ljava/lang/String;": { + "access": 1, + "override": "avx$a" + }, + "b (I)V": { + "access": 2 + }, + "a (IF)V": { + "access": 1, + "override": "awg$b" + } + } + }, + "axc": { + "name": "axc", + "access": 33, + "superName": "axu", + "methods": { + "f ()Ljava/util/List;": { + "access": 4104 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "b (Laxc;)Lavw;": { + "access": 4104 + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a (Laxc;IIII)V": { + "access": 4104 + }, + "c (Laxc;IIII)V": { + "access": 4104 + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "b (Laxc;IIII)V": { + "access": 4104 + }, + "a (Laxc;)Laxc$b;": { + "access": 4104 + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "a ()V": { + "access": 1 + }, + "k ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Laxd;)V": { + "access": 1 + }, + "d (Laxc;IIII)V": { + "access": 4104 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "g ()Z": { + "access": 2 + } + } + }, + "axf": { + "name": "axf", + "access": 33, + "superName": "axu", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "c ()V": { + "access": 1, + "override": "axu" + } + } + }, + "axe": { + "name": "axe", + "access": 33, + "superName": "axu", + "interfaces": [ + "awx" + ], + "methods": { + "a (ZI)V": { + "access": 1, + "override": "awx" + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "d ()Z": { + "access": 1, + "override": "axu" + } + } + }, + "axh": { + "name": "axh", + "access": 33, + "superName": "axu", + "methods": { + "\u003cinit\u003e (Laxu;Ljava/lang/String;Leu;)V": { + "access": 1 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + } + } + }, + "axg": { + "name": "axg", + "access": 33, + "superName": "axu", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;Lbde;)V": { + "access": 1 + }, + "a (III)V": { + "access": 4, + "override": "axu" + } + } + }, + "axj": { + "name": "axj", + "access": 33, + "superName": "axu", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + } + } + }, + "axi": { + "name": "axi", + "access": 33, + "superName": "axu", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;Lbde;)V": { + "access": 1 + }, + "a (III)V": { + "access": 4, + "override": "axu" + } + } + }, + "axl": { + "name": "axl", + "access": 33, + "superName": "axu", + "methods": { + "c (Laxl;)Lawe;": { + "access": 4104 + }, + "d (Laxl;)Lawe;": { + "access": 4104 + }, + "k ()V": { + "access": 1, + "override": "axu" + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;Lavh;Lbns;)V": { + "access": 1 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a (Laxl;)Lbns;": { + "access": 4104 + }, + "b (Laxl;)Lavh;": { + "access": 4104 + } + } + }, + "axk": { + "name": "axk", + "access": 33, + "superName": "awv", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "f ()V": { + "access": 2 + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + } + } + }, + "axn": { + "name": "axn", + "access": 33, + "superName": "axu", + "interfaces": [ + "awx" + ], + "methods": { + "a (ZI)V": { + "access": 1, + "override": "awx" + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;Lavh;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a (Loj;)Ljava/lang/String;": { + "access": 1 + } + } + }, + "axp": { + "name": "axp", + "access": 33, + "superName": "axu", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + } + } + }, + "axo": { + "name": "axo", + "access": 33, + "superName": "axu", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + } + } + }, + "axr": { + "name": "axr", + "access": 33, + "superName": "axu", + "interfaces": [ + "nu" + ], + "methods": { + "a ()V": { + "access": 1, + "override": "nu" + }, + "a (I)V": { + "access": 1, + "override": "nu" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1, + "override": "nu" + }, + "b (Ljava/lang/String;)V": { + "access": 1, + "override": "nu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "c (Ljava/lang/String;)V": { + "access": 1, + "override": "nu" + } + } + }, + "axq": { + "name": "axq", + "access": 33, + "superName": "axu", + "methods": { + "a (Ljava/lang/String;Lzw;Lady;Ljava/util/List;[Laqa;)V": { + "access": 138 + }, + "f ()Ljava/util/List;": { + "access": 4104 + }, + "d (Laxq;)F": { + "access": 4104 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "a (Ljava/lang/String;Lzw;Lady;[Laqa;)V": { + "access": 138 + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "b (Laxq;)F": { + "access": 4104 + }, + "\u003cinit\u003e (Laxa;)V": { + "access": 1 + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "a (Ljava/lang/String;Lzw;ILady;Ljava/util/List;[Laqa;)V": { + "access": 138 + }, + "c (Laxq;)F": { + "access": 4104 + }, + "f (Laxq;)Lavw;": { + "access": 4104 + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "a ()V": { + "access": 1 + }, + "k ()V": { + "access": 1, + "override": "axu" + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "g ()Z": { + "access": 2 + }, + "e (Laxq;)Laxq$b;": { + "access": 4104 + }, + "a (Laxq;)F": { + "access": 4104 + } + } + }, + "axt": { + "name": "axt", + "access": 33, + "superName": "axu", + "methods": { + "\u003cinit\u003e (Laxu;Ljava/lang/String;)V": { + "access": 1 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "a (III)V": { + "access": 4, + "override": "axu" + } + } + }, + "bgq$a": { + "name": "bgq$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer" + ], + "methods": { + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgq;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lcom/google/gson/JsonObject;Ljava/lang/String;Lorg/lwjgl/util/vector/Vector3f;)Lorg/lwjgl/util/vector/Vector3f;": { + "access": 2 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgq;" + }, + "override": "com/google/gson/JsonDeserializer" + } + } + }, + "axs": { + "name": "axs", + "access": 33, + "superName": "axu", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Lbcy;)V": { + "access": 1 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "d ()Z": { + "access": 1, + "override": "axu" + } + } + }, + "axl$a": { + "name": "axl$a", + "access": 32, + "superName": "awi", + "methods": { + "a ()V": { + "access": 4, + "override": "awi" + }, + "\u003cinit\u003e (Laxl;Lave;)V": { + "access": 1 + }, + "k ()I": { + "access": 4, + "override": "awi" + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "axv": { + "name": "axv", + "access": 33, + "superName": "axu", + "interfaces": [ + "awx" + ], + "methods": { + "f (Laxv;)Lavs;": { + "access": 4104 + }, + "g (Laxv;)Ljava/lang/String;": { + "access": 4104 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "e (Laxv;)Lavs;": { + "access": 4104 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i (I)V": { + "access": 1 + }, + "i (Laxv;)Ljava/lang/String;": { + "access": 4104 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a ()V": { + "access": 1 + }, + "a (ZI)V": { + "access": 1, + "override": "awx" + }, + "k ()V": { + "access": 1, + "override": "axu" + }, + "b (I)Ljava/lang/String;": { + "access": 4 + }, + "a (Lawx;Ljava/lang/String;I)Lawy;": { + "access": 9 + }, + "h (Laxv;)Ljava/text/DateFormat;": { + "access": 4104 + }, + "h (I)Ljava/lang/String;": { + "access": 4 + }, + "b (Laxv;)I": { + "access": 4104 + }, + "f ()V": { + "access": 2, + "exceptions": [ + "atq" + ] + }, + "a (Laxv;I)I": { + "access": 4104 + }, + "\u003cinit\u003e (Laxu;)V": { + "access": 1 + }, + "d (Laxv;)Lavs;": { + "access": 4104 + }, + "j (Laxv;)[Ljava/lang/String;": { + "access": 4104 + }, + "a (Laxv;)Ljava/util/List;": { + "access": 4104 + }, + "c (Laxv;)Lavs;": { + "access": 4104 + } + } + }, + "axu": { + "name": "axu", + "access": 1057, + "superName": "avp", + "interfaces": [ + "awx" + ], + "methods": { + "l ()V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lave;II)V": { + "access": 1 + }, + "a (Lzx;II)V": { + "access": 4 + }, + "f (I)Z": { + "access": 9 + }, + "a (Lavs;)V": { + "access": 4 + }, + "f (Ljava/lang/String;)V": { + "access": 1 + }, + "m ()V": { + "access": 1 + }, + "q ()Z": { + "access": 9 + }, + "c (I)V": { + "access": 1 + }, + "a (ZI)V": { + "access": 1, + "override": "awx" + }, + "g (I)Z": { + "access": 9 + }, + "d (I)Z": { + "access": 9 + }, + "e (Ljava/lang/String;)V": { + "access": 9 + }, + "a (Ljava/util/List;II)V": { + "access": 4 + }, + "a (Ljava/lang/String;II)V": { + "access": 4 + }, + "b (Ljava/lang/String;Z)V": { + "access": 1 + }, + "a (Ljava/net/URI;)V": { + "access": 2 + }, + "r ()Z": { + "access": 9 + }, + "e (I)Z": { + "access": 9 + }, + "e ()V": { + "access": 1 + }, + "b_ (I)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (IIF)V": { + "access": 1 + }, + "a (Leu;II)V": { + "access": 4 + }, + "d ()Z": { + "access": 1 + }, + "a (III)V": { + "access": 4 + }, + "b (III)V": { + "access": 4 + }, + "s ()Z": { + "access": 9 + }, + "a (IIIJ)V": { + "access": 4 + }, + "k ()V": { + "access": 1 + }, + "b (Lave;II)V": { + "access": 1 + }, + "o ()Ljava/lang/String;": { + "access": 9 + }, + "a (CI)V": { + "access": 4 + }, + "a (Ljava/lang/String;Z)V": { + "access": 4 + }, + "c ()V": { + "access": 1 + }, + "a (Leu;)Z": { + "access": 4 + }, + "a (II)V": { + "access": 1 + }, + "p ()V": { + "access": 1 + } + } + }, + "awz$1": { + "name": "awz$1", + "access": 32, + "superName": "java/lang/Thread", + "methods": { + "\u003cinit\u003e (Lawz;Ljava/lang/String;Ljava/lang/String;I)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "axx": { + "name": "axx", + "access": 33, + "superName": "axu", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;)V": { + "access": 1 + }, + "a (Lwo;)Ljava/lang/String;": { + "access": 2 + }, + "a (Laxx;Lwo;)Ljava/lang/String;": { + "access": 4104 + } + } + }, + "axw": { + "name": "axw", + "access": 33, + "superName": "axu", + "methods": { + "a ()V": { + "access": 2 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;)V": { + "access": 1 + } + } + }, + "axz": { + "name": "axz", + "access": 33, + "superName": "axu", + "methods": { + "a (Lbpg;)Ljava/lang/String;": { + "access": 4 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;Lavh;)V": { + "access": 1 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a (Laxz;)Lavh;": { + "access": 4104 + } + } + }, + "axy": { + "name": "axy", + "access": 33, + "superName": "axu", + "methods": { + "k ()V": { + "access": 1, + "override": "axu" + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;Lavh;)V": { + "access": 1 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Laxy;)Ljava/util/List;": { + "access": 4104 + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "b (Laxy;)Ljava/util/List;": { + "access": 4104 + } + } + }, + "bfn$1": { + "name": "bfn$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "aya": { + "name": "aya", + "access": 33, + "superName": "axu", + "interfaces": [ + "awx" + ], + "methods": { + "c (II)V": { + "access": 2 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "b (II)V": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "b (IIF)V": { + "access": 2 + }, + "c (IIF)V": { + "access": 2 + }, + "d ()Z": { + "access": 1, + "override": "axu" + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "a (ZI)V": { + "access": 1, + "override": "awx" + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (F)V": { + "access": 2 + }, + "f ()V": { + "access": 2 + }, + "a ()Z": { + "access": 2 + } + } + }, + "ayc": { + "name": "ayc", + "access": 33, + "superName": "axu", + "methods": { + "a ()V": { + "access": 2 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "b (IIF)V": { + "access": 2 + }, + "d ()Z": { + "access": 1, + "override": "axu" + } + } + }, + "ayb": { + "name": "ayb", + "access": 33, + "superName": "axu", + "methods": { + "k ()V": { + "access": 1, + "override": "axu" + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;Lavh;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "b (III)V": { + "access": 4, + "override": "axu" + } + } + }, + "aye": { + "name": "aye", + "access": 33, + "superName": "axu", + "interfaces": [ + "ayg" + ], + "methods": { + "a ()V": { + "access": 1, + "override": "ayg" + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "f ()V": { + "access": 4 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;Lnb;)V": { + "access": 1 + }, + "b (IIF)V": { + "access": 4 + }, + "a (Lafh;)Lbmi;": { + "access": 2 + }, + "d ()Z": { + "access": 1, + "override": "axu" + } + } + }, + "ayd": { + "name": "ayd", + "access": 33, + "superName": "avp", + "methods": { + "a (Lmq;)V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lmq;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "c ()V": { + "access": 2 + } + } + }, + "ayg": { + "name": "ayg", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1025 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ayf": { + "name": "ayf", + "access": 33, + "superName": "axu", + "interfaces": [ + "ayg" + ], + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "d (Layf;)Lavn;": { + "access": 4104 + }, + "b (II)V": { + "access": 2 + }, + "g (Layf;)Lavn;": { + "access": 4104 + }, + "g ()V": { + "access": 1 + }, + "b (Layf;)Lnb;": { + "access": 4104 + }, + "c (Layf;)Lavn;": { + "access": 4104 + }, + "h (Layf;)Lavn;": { + "access": 4104 + }, + "j (Layf;)Lavn;": { + "access": 4104 + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "k (Layf;)Lavn;": { + "access": 4104 + }, + "l (Layf;)Lavn;": { + "access": 4104 + }, + "i (Layf;)Lavn;": { + "access": 4104 + }, + "b (Layf;IIIIII)V": { + "access": 4104 + }, + "a (Layf;)Lavn;": { + "access": 4104 + }, + "a ()V": { + "access": 1, + "override": "ayg" + }, + "f ()V": { + "access": 1 + }, + "f (Layf;)Lavn;": { + "access": 4104 + }, + "e (Layf;)Lavn;": { + "access": 4104 + }, + "a (Layf;IIII)V": { + "access": 4104 + }, + "a (Layf;IILzw;)V": { + "access": 4104 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (IILzw;)V": { + "access": 2 + }, + "d ()Z": { + "access": 1, + "override": "axu" + }, + "q (Layf;)Lavn;": { + "access": 4104 + }, + "p (Layf;)Lavn;": { + "access": 4104 + }, + "k ()V": { + "access": 1, + "override": "axu" + }, + "n (Layf;)Lavn;": { + "access": 4104 + }, + "s (Layf;)Lavn;": { + "access": 4104 + }, + "m (Layf;)Lavn;": { + "access": 4104 + }, + "c (IIII)V": { + "access": 2 + }, + "r (Layf;)Lavn;": { + "access": 4104 + }, + "\u003cinit\u003e (Laxu;Lnb;)V": { + "access": 1 + }, + "a (Layf;IIIIII)V": { + "access": 4104 + }, + "o (Layf;)Lavn;": { + "access": 4104 + } + } + }, + "ayi": { + "name": "ayi", + "access": 33, + "superName": "awd", + "methods": { + "b (Layi;)Layj;": { + "access": 4104 + }, + "\u003cinit\u003e (Layj;Lave;)V": { + "access": 1 + }, + "c (Layi;)I": { + "access": 4104 + }, + "a (Layi;)Lave;": { + "access": 4104 + }, + "c ()I": { + "access": 1, + "override": "awi" + }, + "d ()I": { + "access": 4, + "override": "awi" + }, + "b (I)Lawd$a;": { + "access": 1, + "override": "awd" + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "ayj": { + "name": "ayj", + "access": 33, + "superName": "axu", + "methods": { + "k ()V": { + "access": 1, + "override": "axu" + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;Lavh;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "b (III)V": { + "access": 4, + "override": "axu" + } + } + }, + "bdl$a": { + "name": "bdl$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "aym": { + "name": "aym", + "access": 33, + "superName": "ayl", + "interfaces": [ + "xn" + ], + "methods": { + "a (Lxi;Ljava/util/List;)V": { + "access": 1, + "override": "xn" + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "b (II)V": { + "access": 4, + "override": "ayl" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "a (Lxi;II)V": { + "access": 1, + "override": "xn" + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "a ()V": { + "access": 2 + }, + "a (Lxi;Log;)V": { + "access": 1, + "override": "xn" + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "\u003cinit\u003e (Lwm;Ladm;)V": { + "access": 1 + }, + "a (Lxi;ILzx;)V": { + "access": 1, + "override": "xn" + }, + "a (FII)V": { + "access": 4, + "override": "ayl" + } + } + }, + "ayl": { + "name": "ayl", + "access": 1057, + "superName": "axu", + "methods": { + "a (Lzx;IILjava/lang/String;)V": { + "access": 2 + }, + "a (Lyg;)V": { + "access": 2 + }, + "b (I)Z": { + "access": 4 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "b (II)V": { + "access": 4 + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lyg;II)Z": { + "access": 2 + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "d ()Z": { + "access": 1, + "override": "axu" + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "b (III)V": { + "access": 4, + "override": "axu" + }, + "a ()V": { + "access": 2 + }, + "a (IIIJ)V": { + "access": 4, + "override": "axu" + }, + "\u003cinit\u003e (Lxi;)V": { + "access": 1 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (Lyg;III)V": { + "access": 4 + }, + "c (IIIIII)Z": { + "access": 4 + }, + "a (FII)V": { + "access": 1028 + }, + "c (II)Lyg;": { + "access": 2 + } + } + }, + "ayo": { + "name": "ayo", + "access": 33, + "superName": "axu", + "methods": { + "a ()Ljy;": { + "access": 4104 + }, + "a (Z)V": { + "access": 2 + }, + "h ()Ljava/lang/String;": { + "access": 2 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "g ()V": { + "access": 2 + }, + "b (Ljava/lang/String;)V": { + "access": 2 + }, + "b (II)Leu;": { + "access": 1 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "c (CI)V": { + "access": 2 + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "b (CI)V": { + "access": 2 + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "\u003cinit\u003e (Lwn;Lzx;Z)V": { + "access": 1 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (Ljava/lang/String;)V": { + "access": 2 + }, + "f ()V": { + "access": 2 + }, + "a (Leu;)Z": { + "access": 4, + "override": "axu" + } + } + }, + "ayn": { + "name": "ayn", + "access": 33, + "superName": "ayl", + "methods": { + "a ()Ljy;": { + "access": 4104 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "b (II)V": { + "access": 4, + "override": "ayl" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Layn;Ljava/lang/String;II)V": { + "access": 4104 + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "\u003cinit\u003e (Lwm;Log;)V": { + "access": 1 + }, + "b (Layn;Ljava/lang/String;II)V": { + "access": 4104 + }, + "c (Layn;Ljava/lang/String;II)V": { + "access": 4104 + }, + "a (FII)V": { + "access": 4, + "override": "ayl" + } + } + }, + "ayq": { + "name": "ayq", + "access": 33, + "superName": "axu", + "methods": { + "a ()V": { + "access": 2 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Ladc;)V": { + "access": 1 + }, + "a (III)V": { + "access": 4, + "override": "axu" + } + } + }, + "hs$a": { + "name": "hs$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lhs$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lhs$a;": { + "access": 9 + } + } + }, + "ayp": { + "name": "ayp", + "access": 33, + "superName": "ayl", + "methods": { + "b (II)V": { + "access": 4, + "override": "ayl" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lwm;Log;)V": { + "access": 1 + }, + "a (FII)V": { + "access": 4, + "override": "ayl" + } + } + }, + "ays": { + "name": "ays", + "access": 33, + "superName": "ayl", + "methods": { + "b (II)V": { + "access": 4, + "override": "ayl" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lwm;Ladm;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lwm;Ladm;Lcj;)V": { + "access": 1 + }, + "a (FII)V": { + "access": 4, + "override": "ayl" + } + } + }, + "ayr": { + "name": "ayr", + "access": 33, + "superName": "ayl", + "methods": { + "b (II)V": { + "access": 4, + "override": "ayl" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Log;Log;)V": { + "access": 1 + }, + "a (FII)V": { + "access": 4, + "override": "ayl" + } + } + }, + "ayu": { + "name": "ayu", + "access": 33, + "superName": "ayw", + "methods": { + "b (Lyz;II)Z": { + "access": 4 + }, + "f ()I": { + "access": 1 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "b (II)V": { + "access": 4, + "override": "ayl" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lyz;)V": { + "access": 2 + }, + "a (Lzx;II)V": { + "access": 4, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a (Lyz;II)Z": { + "access": 4 + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "b (III)V": { + "access": 4, + "override": "axu" + }, + "g ()Loq;": { + "access": 4104 + }, + "a ()V": { + "access": 4, + "override": "ayw" + }, + "k ()V": { + "access": 1, + "override": "axu" + }, + "i ()Z": { + "access": 2 + }, + "h ()V": { + "access": 2 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (Lyg;III)V": { + "access": 4, + "override": "ayl" + }, + "a (Lyz;)V": { + "access": 4 + }, + "\u003cinit\u003e (Lwn;)V": { + "access": 1 + }, + "a (FII)V": { + "access": 4, + "override": "ayl" + } + } + }, + "ayt": { + "name": "ayt", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "xn" + ], + "methods": { + "a (Lxi;Ljava/util/List;)V": { + "access": 1, + "override": "xn" + }, + "a (Lxi;Log;)V": { + "access": 1, + "override": "xn" + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "a (Lxi;ILzx;)V": { + "access": 1, + "override": "xn" + }, + "a (Lxi;II)V": { + "access": 1, + "override": "xn" + } + } + }, + "ayw": { + "name": "ayw", + "access": 1057, + "superName": "ayl", + "methods": { + "a ()V": { + "access": 4 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Lxi;)V": { + "access": 1 + }, + "f ()V": { + "access": 2 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + } + } + }, + "ayv": { + "name": "ayv", + "access": 33, + "superName": "ayl", + "methods": { + "b (II)V": { + "access": 4, + "override": "ayl" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lwm;Log;)V": { + "access": 1 + }, + "a (FII)V": { + "access": 4, + "override": "ayl" + } + } + }, + "ayy": { + "name": "ayy", + "access": 33, + "superName": "ayl", + "methods": { + "a ()V": { + "access": 1 + }, + "b (II)V": { + "access": 4, + "override": "ayl" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Lwm;Ladm;Lop;)V": { + "access": 1 + }, + "a (FII)V": { + "access": 4, + "override": "ayl" + }, + "a (III)V": { + "access": 4, + "override": "axu" + } + } + }, + "ayx": { + "name": "ayx", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (J)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "a ()Layx;": { + "access": 9 + } + } + }, + "aiu$a": { + "name": "aiu$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "valueOf (Ljava/lang/String;)Laiu$a;": { + "access": 9 + }, + "a (I)Laiu$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "values ()[Laiu$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "a ()I": { + "access": 1 + } + } + }, + "ayz": { + "name": "ayz", + "access": 33, + "superName": "ayl", + "methods": { + "b (II)V": { + "access": 4, + "override": "ayl" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "h (I)I": { + "access": 2 + }, + "\u003cinit\u003e (Lwm;Log;)V": { + "access": 1 + }, + "i (I)I": { + "access": 2 + }, + "a (FII)V": { + "access": 4, + "override": "ayl" + } + } + }, + "aqp$3": { + "name": "aqp$3", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "aqp$2": { + "name": "aqp$2", + "access": 48, + "superName": "aqp$f", + "methods": { + "a (I)Z": { + "access": 1, + "override": "aqp$f" + }, + "\u003cinit\u003e (Ljava/lang/Class;II)V": { + "access": 0 + } + } + }, + "aqp$1": { + "name": "aqp$1", + "access": 48, + "superName": "aqp$f", + "methods": { + "a (I)Z": { + "access": 1, + "override": "aqp$f" + }, + "\u003cinit\u003e (Ljava/lang/Class;II)V": { + "access": 0 + } + } + }, + "azb": { + "name": "azb", + "access": 33, + "superName": "ayl", + "methods": { + "b (II)V": { + "access": 4, + "override": "ayl" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Log;Log;Ltp;)V": { + "access": 1 + }, + "a (FII)V": { + "access": 4, + "override": "ayl" + } + } + }, + "aza": { + "name": "aza", + "access": 33, + "superName": "ayl", + "methods": { + "b (II)V": { + "access": 4, + "override": "ayl" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lwm;Log;)V": { + "access": 1 + }, + "a (FII)V": { + "access": 4, + "override": "ayl" + } + } + }, + "azd": { + "name": "azd", + "access": 33, + "superName": "ayl", + "methods": { + "a ()Lacy;": { + "access": 1 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "b (II)V": { + "access": 4, + "override": "ayl" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "f ()Ljy;": { + "access": 4104 + }, + "a (FII)V": { + "access": 4, + "override": "ayl" + }, + "\u003cinit\u003e (Lwm;Lacy;Ladm;)V": { + "access": 1 + } + } + }, + "azc": { + "name": "azc", + "access": 33, + "superName": "ayw", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "b (II)V": { + "access": 4, + "override": "ayl" + }, + "a (IIIFFLpr;)V": { + "access": 9 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "\u003cinit\u003e (Lwn;)V": { + "access": 1 + }, + "a (FII)V": { + "access": 4, + "override": "ayl" + } + } + }, + "aze": { + "name": "aze", + "access": 33, + "superName": "axu", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Laln;)V": { + "access": 1 + } + } + }, + "azh": { + "name": "azh", + "access": 33, + "superName": "axu", + "interfaces": [ + "awx" + ], + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "e ()V": { + "access": 1, + "override": "axu" + }, + "a (Lazk;I)Z": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i ()V": { + "access": 2 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "b (Lazk;IZ)V": { + "access": 1 + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "b (III)V": { + "access": 4, + "override": "axu" + }, + "a ()V": { + "access": 1 + }, + "a (ZI)V": { + "access": 1, + "override": "awx" + }, + "k ()V": { + "access": 1, + "override": "axu" + }, + "g ()Lbdg;": { + "access": 1 + }, + "h ()Lbdf;": { + "access": 1 + }, + "a (CI)V": { + "access": 4, + "override": "axu" + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "f ()V": { + "access": 1 + }, + "a (Lazk;IZ)V": { + "access": 1 + }, + "\u003cinit\u003e (Laxu;)V": { + "access": 1 + }, + "a (Lbde;)V": { + "access": 2 + }, + "b (I)V": { + "access": 1 + }, + "b (Lazk;I)Z": { + "access": 1 + } + } + }, + "azj": { + "name": "azj", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "awd$a" + ], + "methods": { + "a (IIIIII)Z": { + "access": 1, + "override": "awd$a" + }, + "b (IIIIII)V": { + "access": 1, + "override": "awd$a" + }, + "a (IIIIIIIZ)V": { + "access": 1, + "override": "awd$a" + }, + "a ()Lbpq$a;": { + "access": 1 + }, + "\u003cinit\u003e (Lazh;Lbpq$a;)V": { + "access": 4 + }, + "a (III)V": { + "access": 1, + "override": "awd$a" + } + } + }, + "azi": { + "name": "azi", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "awd$a" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (IIIIII)Z": { + "access": 1, + "override": "awd$a" + }, + "b (IIIIII)V": { + "access": 1, + "override": "awd$a" + }, + "a (IIIIIIIZ)V": { + "access": 1, + "override": "awd$a" + }, + "a (III)V": { + "access": 1, + "override": "awd$a" + } + } + }, + "azl": { + "name": "azl", + "access": 33, + "superName": "awd", + "methods": { + "a (Lbdf;)V": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "\u003cinit\u003e (Lazh;Lave;IIIII)V": { + "access": 1 + }, + "c ()I": { + "access": 1, + "override": "awi" + }, + "a (Ljava/util/List;)V": { + "access": 1 + }, + "d ()I": { + "access": 4, + "override": "awi" + }, + "b (I)Lawd$a;": { + "access": 1, + "override": "awd" + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "b ()I": { + "access": 4, + "override": "awi" + }, + "c (I)V": { + "access": 1 + } + } + }, + "akw$2": { + "name": "akw$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "\u003cinit\u003e (Lakw;)V": { + "access": 0 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "azk": { + "name": "azk", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "awd$a" + ], + "methods": { + "a ()Lbde;": { + "access": 1 + }, + "a (Lazk;)Lbde;": { + "access": 4104 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lazh;Lbde;)V": { + "access": 4 + }, + "a (IIIIII)Z": { + "access": 1, + "override": "awd$a" + }, + "b (IIIIII)V": { + "access": 1, + "override": "awd$a" + }, + "a (IIIIIIIZ)V": { + "access": 1, + "override": "awd$a" + }, + "a (IILjy;)V": { + "access": 4 + }, + "c ()V": { + "access": 2 + }, + "b (Lazk;)Lazh;": { + "access": 4104 + }, + "b ()Z": { + "access": 2 + }, + "a (III)V": { + "access": 1, + "override": "awd$a" + } + } + }, + "ack$1": { + "name": "ack$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "akw$1": { + "name": "akw$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "\u003cinit\u003e (Lakw;)V": { + "access": 0 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bqn$1": { + "name": "bqn$1", + "access": 32, + "superName": "java/lang/Thread", + "methods": { + "\u003cinit\u003e (Lbqn;Ljava/lang/String;Lcom/mojang/authlib/properties/Property;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "akw$3": { + "name": "akw$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "\u003cinit\u003e (Lakw;)V": { + "access": 0 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "azp": { + "name": "azp", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "awd$a" + ], + "methods": { + "e ()Z": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIIIII)Z": { + "access": 1, + "override": "awd$a" + }, + "a (IIIIIIIZ)V": { + "access": 1, + "override": "awd$a" + }, + "d ()V": { + "access": 1028 + }, + "h ()Z": { + "access": 4 + }, + "c ()Ljava/lang/String;": { + "access": 1028 + }, + "a ()I": { + "access": 1028 + }, + "a (III)V": { + "access": 1, + "override": "awd$a" + }, + "f ()Z": { + "access": 4 + }, + "i ()Z": { + "access": 4 + }, + "b ()Ljava/lang/String;": { + "access": 1028 + }, + "b (IIIIII)V": { + "access": 1, + "override": "awd$a" + }, + "g ()Z": { + "access": 4 + }, + "\u003cinit\u003e (Lazo;)V": { + "access": 1 + } + } + }, + "azo": { + "name": "azo", + "access": 33, + "superName": "axu", + "methods": { + "f ()Ljava/util/List;": { + "access": 1 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "a (Lazp;)Z": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "g ()V": { + "access": 1 + }, + "b (Lazp;)Ljava/util/List;": { + "access": 1 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a (III)V": { + "access": 4, + "override": "axu" + }, + "b (III)V": { + "access": 4, + "override": "axu" + }, + "k ()V": { + "access": 1, + "override": "axu" + }, + "a ()Ljava/util/List;": { + "access": 1 + }, + "\u003cinit\u003e (Laxu;)V": { + "access": 1 + } + } + }, + "azr": { + "name": "azr", + "access": 33, + "superName": "azp", + "methods": { + "j ()Lbnm$a;": { + "access": 1 + }, + "\u003cinit\u003e (Lazo;Lbnm$a;)V": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 4, + "override": "azp" + }, + "d ()V": { + "access": 4, + "override": "azp" + }, + "c ()Ljava/lang/String;": { + "access": 4, + "override": "azp" + }, + "a ()I": { + "access": 4, + "override": "azp" + } + } + }, + "azq": { + "name": "azq", + "access": 33, + "superName": "azp", + "methods": { + "e ()Z": { + "access": 4, + "override": "azp" + }, + "f ()Z": { + "access": 4, + "override": "azp" + }, + "i ()Z": { + "access": 4, + "override": "azp" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 4, + "override": "azp" + }, + "h ()Z": { + "access": 4, + "override": "azp" + }, + "d ()V": { + "access": 4, + "override": "azp" + }, + "g ()Z": { + "access": 4, + "override": "azp" + }, + "\u003cinit\u003e (Lazo;)V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 4, + "override": "azp" + }, + "a ()I": { + "access": 4, + "override": "azp" + } + } + }, + "azt": { + "name": "azt", + "access": 33, + "superName": "azu", + "methods": { + "e ()Ljava/lang/String;": { + "access": 4, + "override": "azu" + }, + "\u003cinit\u003e (Lave;IILjava/util/List;)V": { + "access": 1 + } + } + }, + "azv": { + "name": "azv", + "access": 33, + "superName": "azu", + "methods": { + "e ()Ljava/lang/String;": { + "access": 4, + "override": "azu" + }, + "\u003cinit\u003e (Lave;IILjava/util/List;)V": { + "access": 1 + } + } + }, + "azu": { + "name": "azu", + "access": 1057, + "superName": "awd", + "methods": { + "f ()Ljava/util/List;": { + "access": 1 + }, + "a (IILbfx;)V": { + "access": 4, + "override": "awi" + }, + "e ()Ljava/lang/String;": { + "access": 1028 + }, + "\u003cinit\u003e (Lave;IILjava/util/List;)V": { + "access": 1 + }, + "c ()I": { + "access": 1, + "override": "awi" + }, + "c (I)Lazp;": { + "access": 1 + }, + "d ()I": { + "access": 4, + "override": "awi" + }, + "b (I)Lawd$a;": { + "access": 4097, + "bouncer": { + "name": "c", + "desc": "(I)Lazp;" + }, + "override": "awd" + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "azz": { + "name": "azz", + "access": 33, + "superName": "axu", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "\u003cinit\u003e (Laxu;Lavh;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + } + } + }, + "azy": { + "name": "azy", + "access": 33, + "superName": "axu", + "methods": { + "b ()V": { + "access": 1, + "override": "axu" + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "d (Lazy;)Lavn;": { + "access": 4104 + }, + "m ()V": { + "access": 1, + "override": "axu" + }, + "c (Lazy;)Lavn;": { + "access": 4104 + }, + "a (Lazy;)Lavn;": { + "access": 4104 + }, + "k ()V": { + "access": 1, + "override": "axu" + }, + "b (Lazy;)Lavn;": { + "access": 4104 + }, + "e (Lazy;)Lavn;": { + "access": 4104 + }, + "f (Lazy;)Lavn;": { + "access": 4104 + }, + "\u003cinit\u003e (Laxu;)V": { + "access": 1 + }, + "g (Lazy;)Lavn;": { + "access": 4104 + }, + "h (Lazy;)Lavn;": { + "access": 4104 + } + } + }, + "bhp$1": { + "name": "bhp$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Lbhp;Lcom/google/common/util/concurrent/ListenableFuture;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "lw$3": { + "name": "lw$3", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/mojang/authlib/ProfileLookupCallback" + ], + "methods": { + "onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1, + "override": "com/mojang/authlib/ProfileLookupCallback" + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Lly;)V": { + "access": 0 + }, + "onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V": { + "access": 1, + "override": "com/mojang/authlib/ProfileLookupCallback" + } + } + }, + "lw$4": { + "name": "lw$4", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/mojang/authlib/ProfileLookupCallback" + ], + "methods": { + "onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1, + "override": "com/mojang/authlib/ProfileLookupCallback" + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Lme;)V": { + "access": 0 + }, + "onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V": { + "access": 1, + "override": "com/mojang/authlib/ProfileLookupCallback" + } + } + }, + "lw$1": { + "name": "lw$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "a (Ljava/lang/String;)Z": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Ljava/lang/String;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "lw$2": { + "name": "lw$2", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/mojang/authlib/ProfileLookupCallback" + ], + "methods": { + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Ljava/util/Map;Lmc;)V": { + "access": 0 + }, + "onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1, + "override": "com/mojang/authlib/ProfileLookupCallback" + }, + "onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V": { + "access": 1, + "override": "com/mojang/authlib/ProfileLookupCallback" + } + } + }, + "bhp$2": { + "name": "bhp$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/util/concurrent/FutureCallback" + ], + "methods": { + "onSuccess (Ljava/lang/Object;)V": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Ljava/util/List;)V" + }, + "override": "com/google/common/util/concurrent/FutureCallback" + }, + "\u003cinit\u003e (Lbhp;Lbhn;Lbhq;)V": { + "access": 0 + }, + "onFailure (Ljava/lang/Throwable;)V": { + "access": 1, + "override": "com/google/common/util/concurrent/FutureCallback" + }, + "a (Ljava/util/List;)V": { + "access": 1 + } + } + }, + "lw$5": { + "name": "lw$5", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/mojang/authlib/ProfileLookupCallback" + ], + "methods": { + "onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1, + "override": "com/mojang/authlib/ProfileLookupCallback" + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Ljava/util/List;)V": { + "access": 0 + }, + "onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V": { + "access": 1, + "override": "com/mojang/authlib/ProfileLookupCallback" + } + } + }, + "lw$6": { + "name": "lw$6", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/mojang/authlib/ProfileLookupCallback" + ], + "methods": { + "onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1, + "override": "com/mojang/authlib/ProfileLookupCallback" + }, + "a (Ljava/io/File;Ljava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "\u003cinit\u003e (Lko;Ljava/io/File;Ljava/io/File;Ljava/io/File;[Ljava/lang/String;)V": { + "access": 0 + }, + "a (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String;": { + "access": 2 + }, + "onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V": { + "access": 1, + "override": "com/mojang/authlib/ProfileLookupCallback" + } + } + }, + "bgm$c$a": { + "name": "bgm$c$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer" + ], + "methods": { + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgm$c;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "a (Ljava/lang/String;)Ljy;": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonObject;)Lbor;": { + "access": 4 + }, + "d (Lcom/google/gson/JsonObject;)Z": { + "access": 2 + }, + "c (Lcom/google/gson/JsonObject;)I": { + "access": 4 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgm$c;" + }, + "override": "com/google/gson/JsonDeserializer" + }, + "b (Lcom/google/gson/JsonObject;)Ljava/lang/String;": { + "access": 4 + } + } + }, + "aqp$c": { + "name": "aqp$c", + "access": 33, + "superName": "aqp$p", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$c;": { + "access": 9 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "aqp$b": { + "name": "aqp$b", + "access": 33, + "superName": "aqp$p", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;)Laqe;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "aqp$a": { + "name": "aqp$a", + "access": 33, + "superName": "aqp$p", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$a;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "ahr$1": { + "name": "ahr$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "akj$1": { + "name": "akj$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "kt$1": { + "name": "kt$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/awt/event/ActionListener" + ], + "methods": { + "\u003cinit\u003e (Lkt;)V": { + "access": 0 + }, + "actionPerformed (Ljava/awt/event/ActionEvent;)V": { + "access": 1, + "override": "java/awt/event/ActionListener" + } + } + }, + "bnm$a": { + "name": "bnm$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "f ()I": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "c ()Lbnk;": { + "access": 1 + }, + "\u003cinit\u003e (Lbnm;Ljava/io/File;Lbnm$1;)V": { + "access": 4096 + }, + "e ()Ljava/lang/String;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Lbnm;Ljava/io/File;)V": { + "access": 2 + }, + "a (Lbmj;)V": { + "access": 1 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "aqt$a": { + "name": "aqt$a", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a ()Lalz;": { + "access": 1 + }, + "a (Ljava/util/Random;IIIZ)V": { + "access": 1025 + } + } + }, + "ir$a": { + "name": "ir$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lir$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lir$a;": { + "access": 9 + } + } + }, + "bpo$3": { + "name": "bpo$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "\u003cinit\u003e (Lbpo;)V": { + "access": 0 + } + } + }, + "ajx$1": { + "name": "ajx$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lcq;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lcq;)Z": { + "access": 1 + } + } + }, + "bpo$2": { + "name": "bpo$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lbpo;)V": { + "access": 0 + } + } + }, + "bpo$1": { + "name": "bpo$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lbpo;)V": { + "access": 0 + } + } + }, + "lw$a": { + "name": "lw$a", + "access": 32, + "superName": "java/lang/RuntimeException", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 2 + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/Throwable;Llw$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e (Ljava/lang/String;Llw$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/Throwable;)V": { + "access": 2 + } + } + }, + "ayo$a": { + "name": "ayo$a", + "access": 32, + "superName": "avs", + "methods": { + "\u003cinit\u003e (IIIZ)V": { + "access": 1 + }, + "a (Lave;II)V": { + "access": 1, + "override": "avs" + } + } + }, + "vt$c": { + "name": "vt$c", + "access": 32, + "superName": "qq", + "methods": { + "\u003cinit\u003e (Lvt;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "qq" + } + } + }, + "vt$b": { + "name": "vt$b", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "\u003cinit\u003e (Lvt;)V": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpr;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lpr;)Z": { + "access": 1 + } + } + }, + "vt$a": { + "name": "vt$a", + "access": 32, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lvt;)V": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "rd" + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "ase$1": { + "name": "ase$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lady;)V": { + "access": 0 + } + } + }, + "vc$1": { + "name": "vc$1", + "access": 32, + "superName": "adc", + "methods": { + "e ()Ladm;": { + "access": 1, + "override": "m" + }, + "h ()V": { + "access": 1, + "override": "adc" + }, + "c ()Lcj;": { + "access": 1, + "override": "m" + }, + "i ()I": { + "access": 1, + "override": "adc" + }, + "\u003cinit\u003e (Lvc;)V": { + "access": 0 + }, + "d ()Laui;": { + "access": 1, + "override": "m" + }, + "f ()Lpk;": { + "access": 1, + "override": "m" + }, + "a (Lio/netty/buffer/ByteBuf;)V": { + "access": 1, + "override": "adc" + } + } + }, + "ase$2": { + "name": "ase$2", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lady;)V": { + "access": 0 + } + } + }, + "bmj$1": { + "name": "bmj$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lbmj;Lbmk;)V": { + "access": 0 + } + } + }, + "kc$1": { + "name": "kc$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "so$1": { + "name": "so$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Lso;)V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "beo$a": { + "name": "beo$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "ags$1": { + "name": "ags$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ia$a": { + "name": "ia$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()D": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "c ()Ljava/util/Collection;": { + "access": 1 + }, + "\u003cinit\u003e (Lia;Ljava/lang/String;DLjava/util/Collection;)V": { + "access": 1 + } + } + }, + "u$a": { + "name": "u$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lcj;Lalz;Ldn;)V": { + "access": 1 + } + } + }, + "vt$1": { + "name": "vt$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "\u003cinit\u003e (Lvt;)V": { + "access": 0 + }, + "a (Llf;)Z": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Llf;)Z" + }, + "override": "com/google/common/base/Predicate" + } + } + }, + "bab": { + "name": "bab", + "access": 33, + "superName": "axu", + "methods": { + "\u003cinit\u003e (Lbqm;Ltv/twitch/chat/ChatUserInfo;)V": { + "access": 1 + }, + "a (Ltv/twitch/chat/ChatUserSubscription;Ljava/lang/String;Z)Leu;": { + "access": 9 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "a (Ltv/twitch/chat/ChatUserMode;Ljava/lang/String;Z)Leu;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a (Ljava/util/Set;Ljava/util/Set;Lbqm;)Ljava/util/List;": { + "access": 9 + } + } + }, + "net/minecraft/realms/RealmsSharedConstants": { + "name": "net/minecraft/realms/RealmsSharedConstants", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "baa": { + "name": "baa", + "access": 33, + "superName": "axu", + "methods": { + "\u003cinit\u003e (Laxu;Lbaa$a;)V": { + "access": 1 + }, + "b ()V": { + "access": 1, + "override": "axu" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Laxu;Lbaa$a;Ljava/util/List;)V": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 2 + }, + "a (IIF)V": { + "access": 1, + "override": "axu" + }, + "a (Lavs;)V": { + "access": 4, + "override": "axu" + }, + "a (Laxu;)V": { + "access": 9 + }, + "m ()V": { + "access": 1, + "override": "axu" + } + } + }, + "bad": { + "name": "bad", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bah" + ], + "methods": { + "\u003cinit\u003e (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "a (FI)V": { + "access": 1, + "override": "bah" + }, + "A_ ()Leu;": { + "access": 1, + "override": "bah" + }, + "a (Lbaf;)V": { + "access": 1, + "override": "bah" + }, + "B_ ()Z": { + "access": 1, + "override": "bah" + } + } + }, + "baf": { + "name": "baf", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lbaf;I)I": { + "access": 4104 + }, + "\u003cinit\u003e (Lbai;)V": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "a ()Ljava/util/List;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f ()Lbaj;": { + "access": 1 + }, + "c ()Lbag;": { + "access": 1 + }, + "a (Lbag;)V": { + "access": 1 + }, + "d ()V": { + "access": 1 + }, + "b ()Lbah;": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "a (I)Lbah;": { + "access": 1 + } + } + }, + "bae": { + "name": "bae", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bag" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()Ljava/util/List;": { + "access": 1, + "override": "bag" + }, + "b ()Leu;": { + "access": 1, + "override": "bag" + } + } + }, + "bah": { + "name": "bah", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (FI)V": { + "access": 1025 + }, + "A_ ()Leu;": { + "access": 1025 + }, + "a (Lbaf;)V": { + "access": 1025 + }, + "B_ ()Z": { + "access": 1025 + } + } + }, + "bag": { + "name": "bag", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()Ljava/util/List;": { + "access": 1025 + }, + "b ()Leu;": { + "access": 1025 + } + } + }, + "baj": { + "name": "baj", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbag;Ljava/util/List;I)V": { + "access": 1 + }, + "a (I)Lbah;": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "bai": { + "name": "bai", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lbaf;)V": { + "access": 1025 + } + } + }, + "bal": { + "name": "bal", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bag", + "bah" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()Ljava/util/List;": { + "access": 1, + "override": "bag" + }, + "a (FI)V": { + "access": 1, + "override": "bah" + }, + "b ()Leu;": { + "access": 1, + "override": "bag" + }, + "A_ ()Leu;": { + "access": 1, + "override": "bah" + }, + "a (Lbaf;)V": { + "access": 1, + "override": "bah" + }, + "B_ ()Z": { + "access": 1, + "override": "bah" + } + } + }, + "bak": { + "name": "bak", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bag", + "bah" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()Ljava/util/List;": { + "access": 1, + "override": "bag" + }, + "a (FI)V": { + "access": 1, + "override": "bah" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/util/Collection;)V": { + "access": 1 + }, + "b ()Leu;": { + "access": 1, + "override": "bag" + }, + "A_ ()Leu;": { + "access": 1, + "override": "bah" + }, + "a (Lbaf;)V": { + "access": 1, + "override": "bah" + }, + "B_ ()Z": { + "access": 1, + "override": "bah" + } + } + }, + "bao": { + "name": "bao", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbao$e;Lbao$a;Lbao$b;Lbao$c;Lbao$d;)V": { + "access": 1 + } + } + }, + "bat": { + "name": "bat", + "access": 33, + "superName": "bas", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (F)V": { + "access": 1, + "override": "bbj" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (F)V": { + "access": 1 + } + } + }, + "bas": { + "name": "bas", + "access": 33, + "superName": "bbj", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (F)V": { + "access": 1 + }, + "\u003cinit\u003e (FII)V": { + "access": 4 + } + } + }, + "bav": { + "name": "bav", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "bau": { + "name": "bau", + "access": 33, + "superName": "bbo", + "methods": { + "a ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "ber$a": { + "name": "ber$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bax": { + "name": "bax", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "baw": { + "name": "baw", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "ahh$a": { + "name": "ahh$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "valueOf (Ljava/lang/String;)Lahh$a;": { + "access": 9 + }, + "values ()[Lahh$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + } + } + }, + "baz": { + "name": "baz", + "access": 33, + "superName": "bbo", + "methods": { + "a ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bay": { + "name": "bay", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "avm$a": { + "name": "avm$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lavm$a;": { + "access": 9 + }, + "a (Ljava/lang/String;)Lavm$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "values ()[Lavm$a;": { + "access": 9 + } + } + }, + "bba": { + "name": "bba", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "aa": { + "name": "aa", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "ab": { + "name": "ab", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "d ()[Ljava/lang/String;": { + "access": 4 + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbc": { + "name": "bbc", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (F)V": { + "access": 1 + } + } + }, + "bjh$8": { + "name": "bjh$8", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "bfp" + ], + "methods": { + "\u003cinit\u003e (Lbjh;)V": { + "access": 0 + }, + "a (Lzx;)Lbov;": { + "access": 1, + "override": "bfp" + } + } + }, + "ac": { + "name": "ac", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbb": { + "name": "bbb", + "access": 33, + "superName": "bbt", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bjh$9": { + "name": "bjh$9", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "bfp" + ], + "methods": { + "\u003cinit\u003e (Lbjh;)V": { + "access": 0 + }, + "a (Lzx;)Lbov;": { + "access": 1, + "override": "bfp" + } + } + }, + "ad": { + "name": "ad", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbe": { + "name": "bbe", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "bjh$6": { + "name": "bjh$6", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "bfp" + ], + "methods": { + "\u003cinit\u003e (Lbjh;)V": { + "access": 0 + }, + "a (Lzx;)Lbov;": { + "access": 1, + "override": "bfp" + } + } + }, + "ae": { + "name": "ae", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "d ()[Ljava/lang/String;": { + "access": 4 + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbd": { + "name": "bbd", + "access": 33, + "superName": "bbj", + "methods": { + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (F)V": { + "access": 1 + } + } + }, + "bjh$7": { + "name": "bjh$7", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "bfp" + ], + "methods": { + "\u003cinit\u003e (Lbjh;)V": { + "access": 0 + }, + "a (Lzx;)Lbov;": { + "access": 1, + "override": "bfp" + } + } + }, + "af": { + "name": "af", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbg": { + "name": "bbg", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "a ()I": { + "access": 1 + } + } + }, + "bjh$4": { + "name": "bjh$4", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lbjh;Lzx;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "ajj$1": { + "name": "ajj$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ag": { + "name": "ag", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "e (Ljava/lang/String;)Loj;": { + "access": 4, + "exceptions": [ + "cb" + ] + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbf": { + "name": "bbf", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "kc$a": { + "name": "kc$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lkc$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "a (Ljava/lang/String;)V": { + "access": 2 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Lkc$a;Ljava/lang/String;)V": { + "access": 4104 + }, + "b (Lkc$a;Ljava/lang/String;)Ljava/lang/String;": { + "access": 4104 + } + } + }, + "bjh$5": { + "name": "bjh$5", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "bfp" + ], + "methods": { + "\u003cinit\u003e (Lbjh;)V": { + "access": 0 + }, + "a (Lzx;)Lbov;": { + "access": 1, + "override": "bfp" + } + } + }, + "ah": { + "name": "ah", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "d ()[Ljava/lang/String;": { + "access": 4 + }, + "h (Lm;Ljava/lang/String;)Ladp$a;": { + "access": 4, + "exceptions": [ + "cb" + ] + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbi": { + "name": "bbi", + "access": 33, + "superName": "bbz", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "ai": { + "name": "ai", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladk;Ljava/lang/String;)V": { + "access": 9 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + }, + "d ()Ladk;": { + "access": 2 + } + } + }, + "bbh": { + "name": "bbh", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "a (FFF)F": { + "access": 2 + }, + "a (Lbct;FFF)V": { + "access": 2 + }, + "a (Lpr;FFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "aj": { + "name": "aj", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "d ()[Ljava/lang/String;": { + "access": 4 + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbk": { + "name": "bbk", + "access": 33, + "superName": "baz", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "ak": { + "name": "ak", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "d (Lm;)Ljava/util/List;": { + "access": 4 + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "d ()Ljava/util/Map;": { + "access": 4 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbj": { + "name": "bbj", + "access": 33, + "superName": "bbo", + "methods": { + "a (Lbbo;)V": { + "access": 1, + "override": "bbo" + }, + "a (Z)V": { + "access": 1 + }, + "\u003cinit\u003e (FFII)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (F)V": { + "access": 1 + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (F)V": { + "access": 1 + } + } + }, + "al": { + "name": "al", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbm": { + "name": "bbm", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (IIII)V": { + "access": 1 + } + } + }, + "am": { + "name": "am", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbl": { + "name": "bbl", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpr;FFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "an": { + "name": "an", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;)Z": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbo": { + "name": "bbo", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a (Lbbo;)V": { + "access": 1 + }, + "a (Ljava/util/Random;)Lbct;": { + "access": 1 + }, + "a (Ljava/lang/String;)Lbcu;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1 + }, + "a (Lpk;FFFFFF)V": { + "access": 1 + }, + "a (Ljava/lang/String;II)V": { + "access": 4 + }, + "a (Lbct;Lbct;)V": { + "access": 9 + }, + "a (Lpr;FFF)V": { + "access": 1 + } + } + }, + "ao": { + "name": "ao", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbn": { + "name": "bbn", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "ap": { + "name": "ap", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bea$a": { + "name": "bea$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bbq": { + "name": "bbq", + "access": 33, + "superName": "bbt", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (F)V": { + "access": 1 + } + } + }, + "aq": { + "name": "aq", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbp": { + "name": "bbp", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpr;FFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "ar": { + "name": "ar", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbs": { + "name": "bbs", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "\u003cinit\u003e ([Lbcg;)V": { + "access": 1 + }, + "\u003cinit\u003e ([Lbcg;IIIIFF)V": { + "access": 1 + }, + "a (Lbfd;F)V": { + "access": 1 + } + } + }, + "as": { + "name": "as", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;)Z": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbr": { + "name": "bbr", + "access": 33, + "superName": "bbj", + "methods": { + "a ()V": { + "access": 1 + }, + "\u003cinit\u003e (FZ)V": { + "access": 1 + }, + "a (Z)V": { + "access": 1, + "override": "bbj" + }, + "b ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (F)V": { + "access": 1, + "override": "bbj" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "b (F)V": { + "access": 1 + }, + "c (F)V": { + "access": 1 + } + } + }, + "at": { + "name": "at", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;)Z": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbu": { + "name": "bbu", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "a (Lbct;FFF)V": { + "access": 2 + }, + "a (Lpr;FFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "au": { + "name": "au", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbt": { + "name": "bbt", + "access": 33, + "superName": "bbo", + "methods": { + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (IF)V": { + "access": 1 + } + } + }, + "av": { + "name": "av", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bbw": { + "name": "bbw", + "access": 33, + "superName": "bbt", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpr;FFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "aw": { + "name": "aw", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + } + } + }, + "bbv": { + "name": "bbv", + "access": 33, + "superName": "bbt", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpr;FFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "ax": { + "name": "ax", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "e (Ljava/lang/String;)I": { + "access": 2, + "exceptions": [ + "bz" + ] + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "d ()[Ljava/lang/String;": { + "access": 4 + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bby": { + "name": "bby", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "bjh$2": { + "name": "bjh$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lbjh;Lzx;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "ay": { + "name": "ay", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + } + } + }, + "bbx": { + "name": "bbx", + "access": 33, + "superName": "bbo", + "methods": { + "a ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bjh$3": { + "name": "bjh$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lbjh;Lzx;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "az": { + "name": "az", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + } + } + }, + "bbz": { + "name": "bbz", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (IIII)V": { + "access": 1 + } + } + }, + "bjh$1": { + "name": "bjh$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lbjh;Lzx;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "ba": { + "name": "ba", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + } + } + }, + "bb": { + "name": "bb", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "ave$10": { + "name": "ave$10", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bca": { + "name": "bca", + "access": 33, + "superName": "bcn", + "methods": { + "\u003cinit\u003e (FZ)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpr;FFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "bc": { + "name": "bc", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "j (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "h (Lm;Ljava/lang/String;)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "f (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "n (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + }, + "k (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "p (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "b (Lm;[Ljava/lang/String;)Z": { + "access": 2, + "exceptions": [ + "bz" + ] + }, + "g (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "o (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "a (Ljava/lang/String;Z)Lauk;": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "e (Ljava/lang/String;)Laul;": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "e ()Ljava/util/List;": { + "access": 4 + }, + "d ()Lauo;": { + "access": 4 + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "c (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "h (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "d (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "l (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "b (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "i (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "a (Z)Ljava/util/List;": { + "access": 4 + }, + "e (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "d (Lm;)V": { + "access": 4, + "exceptions": [ + "bz" + ] + }, + "m (Lm;[Ljava/lang/String;I)V": { + "access": 4, + "exceptions": [ + "bz" + ] + } + } + }, + "bcd": { + "name": "bcd", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "bd": { + "name": "bd", + "access": 33, + "superName": "j", + "interfaces": [ + "h" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lm;Lk;ILjava/lang/String;[Ljava/lang/Object;)V": { + "access": 129, + "override": "h" + } + } + }, + "bcc": { + "name": "bcc", + "access": 33, + "superName": "bbo", + "methods": { + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "be": { + "name": "be", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bcf": { + "name": "bcf", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "bf": { + "name": "bf", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bgc$7": { + "name": "bgc$7", + "access": 32, + "superName": "bgu", + "methods": { + "a (Lalz;)Lbov;": { + "access": 4, + "override": "bgu" + }, + "\u003cinit\u003e (Lbgc;)V": { + "access": 0 + } + } + }, + "ave$14": { + "name": "ave$14", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bce": { + "name": "bce", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "bg": { + "name": "bg", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bgc$6": { + "name": "bgc$6", + "access": 32, + "superName": "bgu", + "methods": { + "a (Lalz;)Lbov;": { + "access": 4, + "override": "bgu" + }, + "\u003cinit\u003e (Lbgc;)V": { + "access": 0 + } + } + }, + "ave$13": { + "name": "ave$13", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bch": { + "name": "bch", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (F)V": { + "access": 1 + }, + "a (FF)F": { + "access": 2 + }, + "\u003cinit\u003e (FF)V": { + "access": 1 + }, + "a (Lpr;FFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "bh": { + "name": "bh", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "ave$12": { + "name": "ave$12", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bcg": { + "name": "bcg", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (FF)Lbcg;": { + "access": 1 + }, + "\u003cinit\u003e (FFFFF)V": { + "access": 1 + }, + "\u003cinit\u003e (Laui;FF)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbcg;FF)V": { + "access": 1 + } + } + }, + "bi": { + "name": "bi", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;)Z": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bgc$8": { + "name": "bgc$8", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ave$11": { + "name": "ave$11", + "access": 32, + "superName": "java/lang/Thread", + "methods": { + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "\u003cinit\u003e (Lave;Ljava/lang/String;)V": { + "access": 0 + } + } + }, + "bcj": { + "name": "bcj", + "access": 33, + "superName": "bbj", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (FFZ)V": { + "access": 1 + } + } + }, + "bj": { + "name": "bj", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "a (Ljava/util/Random;IDDDD)[Lbj$a;": { + "access": 2 + }, + "a (Lbj$a;DLadm;Ljava/util/Random;DDDD[Lbj$a;Z)I": { + "access": 2, + "exceptions": [ + "bz" + ] + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lm;Ljava/util/List;Lbj$a;DDLadm;Z)V": { + "access": 2, + "exceptions": [ + "bz" + ] + }, + "a (Ljava/util/List;Ladm;[Lbj$a;Z)D": { + "access": 2 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + }, + "b (Ljava/util/List;)I": { + "access": 2 + } + } + }, + "ave$18": { + "name": "ave$18", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bci": { + "name": "bci", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e (FFII)V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (F)V": { + "access": 1 + } + } + }, + "bk": { + "name": "bk", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "e ()Ljava/util/List;": { + "access": 4 + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "d ()[Ljava/lang/String;": { + "access": 4 + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "ave$17": { + "name": "ave$17", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bcl": { + "name": "bcl", + "access": 33, + "superName": "bbo", + "methods": { + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (F)V": { + "access": 1 + }, + "a (Lpr;FFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "bl": { + "name": "bl", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + } + } + }, + "ave$16": { + "name": "ave$16", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bck": { + "name": "bck", + "access": 33, + "superName": "bci", + "methods": { + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (F)V": { + "access": 1 + } + } + }, + "bm": { + "name": "bm", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "ave$15": { + "name": "ave$15", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bcn": { + "name": "bcn", + "access": 33, + "superName": "bbj", + "methods": { + "\u003cinit\u003e (FZ)V": { + "access": 1 + }, + "\u003cinit\u003e (FFII)V": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + } + } + }, + "bn": { + "name": "bn", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bcm": { + "name": "bcm", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FFFFFFLpk;)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "a (Lpr;FFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "bcp": { + "name": "bcp", + "access": 33, + "superName": "bbo", + "methods": { + "\u003cinit\u003e (FZ)V": { + "access": 1 + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "bp": { + "name": "bp", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bco": { + "name": "bco", + "access": 33, + "superName": "bbo", + "methods": { + "a (D)F": { + "access": 2 + }, + "a (Lpk;FFFFFF)V": { + "access": 1, + "override": "bbo" + }, + "\u003cinit\u003e (F)V": { + "access": 1 + }, + "a (Lpr;FFF)V": { + "access": 1, + "override": "bbo" + } + } + }, + "bq": { + "name": "bq", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bcr": { + "name": "bcr", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbct;IIFFFIIIF)V": { + "access": 1 + }, + "a (Lbfd;F)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbct;IIFFFIIIFZ)V": { + "access": 1 + }, + "a (Ljava/lang/String;)Lbcr;": { + "access": 1 + } + } + }, + "br": { + "name": "br", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Lm;I)V": { + "access": 4 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;I)V": { + "access": 4 + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bs": { + "name": "bs", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ([Ljava/lang/String;I)Z": { + "access": 1, + "override": "k" + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bct": { + "name": "bct", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbbo;II)V": { + "access": 1 + }, + "a (FFFIIIZ)Lbct;": { + "access": 1 + }, + "a (II)Lbct;": { + "access": 1 + }, + "\u003cinit\u003e (Lbbo;Ljava/lang/String;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbbo;)V": { + "access": 1 + }, + "b (II)Lbct;": { + "access": 1 + }, + "a (FFFIII)Lbct;": { + "access": 1 + }, + "c (F)V": { + "access": 1 + }, + "a (FFFIIIF)V": { + "access": 1 + }, + "a (Lbct;)V": { + "access": 1 + }, + "a (F)V": { + "access": 1 + }, + "b (F)V": { + "access": 1 + }, + "a (FFF)V": { + "access": 1 + }, + "a (Ljava/lang/String;FFFIII)Lbct;": { + "access": 1 + }, + "d (F)V": { + "access": 2 + } + } + }, + "bt": { + "name": "bt", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "d ()V": { + "access": 4 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bu": { + "name": "bu", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bv": { + "name": "bv", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bcu": { + "name": "bcu", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (II)V": { + "access": 1 + } + } + }, + "bw": { + "name": "bw", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bcx": { + "name": "bcx", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "jf" + ], + "methods": { + "a (Ljj;)V": { + "access": 1, + "override": "jf" + }, + "a (Lbcx;)Lek;": { + "access": 4104 + }, + "b ()Lcom/mojang/authlib/minecraft/MinecraftSessionService;": { + "access": 2 + }, + "\u003cinit\u003e (Lek;Lave;Laxu;)V": { + "access": 1 + }, + "a (Ljh;)V": { + "access": 1, + "override": "jf" + }, + "a (Lji;)V": { + "access": 1, + "override": "jf" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Leu;)V": { + "access": 1, + "override": "ep" + }, + "a (Ljg;)V": { + "access": 1, + "override": "jf" + } + } + }, + "bx": { + "name": "bx", + "access": 33, + "superName": "i", + "methods": { + "a (Lm;[Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "bz" + ], + "override": "k" + }, + "c (Lm;)Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "k" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1, + "override": "k" + }, + "d ()Lams;": { + "access": 4 + }, + "a ()I": { + "access": 1, + "override": "i" + } + } + }, + "bcz": { + "name": "bcz", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "amv" + ], + "methods": { + "e ()Z": { + "access": 1, + "override": "amv" + }, + "b (II)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lamv;II)V": { + "access": 1, + "override": "amv" + }, + "a (Lamv;Lamy;II)Z": { + "access": 1, + "override": "amv" + }, + "a (Ladm;Ljava/lang/String;Lcj;)Lcj;": { + "access": 1, + "override": "amv" + }, + "d ()Z": { + "access": 1, + "override": "amv" + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "amv" + }, + "g ()I": { + "access": 1, + "override": "amv" + }, + "a (II)Z": { + "access": 1, + "override": "amv" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "d (II)Lamy;": { + "access": 1, + "override": "amv" + }, + "a (Lcj;)Lamy;": { + "access": 1, + "override": "amv" + }, + "c ()V": { + "access": 1, + "override": "amv" + }, + "a (Lamy;II)V": { + "access": 1, + "override": "amv" + }, + "c (II)Lamy;": { + "access": 1 + }, + "a (ZLnu;)Z": { + "access": 1, + "override": "amv" + }, + "a (Lpt;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "amv" + } + } + }, + "bz": { + "name": "bz", + "access": 33, + "superName": "java/lang/Exception", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;[Ljava/lang/Object;)V": { + "access": 129 + }, + "a ()[Ljava/lang/Object;": { + "access": 1 + } + } + }, + "bgc$3": { + "name": "bgc$3", + "access": 32, + "superName": "bgu", + "methods": { + "a (Lalz;)Lbov;": { + "access": 4, + "override": "bgu" + }, + "\u003cinit\u003e (Lbgc;)V": { + "access": 0 + } + } + }, + "bcy": { + "name": "bcy", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "fj" + ], + "methods": { + "a (Lhf;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfz;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfv;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhj;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgn;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgr;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgv;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfk;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhb;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfn;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgy;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhu;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfr;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhq;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhy;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgk;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgg;)V": { + "access": 1, + "override": "fj" + }, + "a (Lib;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgc;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfy;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhg;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgm;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfu;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgq;)V": { + "access": 1, + "override": "fj" + }, + "b (Lbcy;)Lave;": { + "access": 4104 + }, + "a (Lgu;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhk;)V": { + "access": 1, + "override": "fj" + }, + "a (Lff;)V": { + "access": 1 + }, + "a (Lhc;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhr;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgf;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfm;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgz;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfq;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhn;)V": { + "access": 1, + "override": "fj" + }, + "a (Leu;)V": { + "access": 1, + "override": "ep" + }, + "a (Lhv;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgj;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhz;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgb;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgp;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfx;)V": { + "access": 1, + "override": "fj" + }, + "b ()V": { + "access": 1 + }, + "a (Lhh;)V": { + "access": 1, + "override": "fj" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lgt;)V": { + "access": 1, + "override": "fj" + }, + "a (Lft;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfi;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhl;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhd;)V": { + "access": 1, + "override": "fj" + }, + "a (Lge;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhs;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfl;)V": { + "access": 1, + "override": "fj" + }, + "a (Lho;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfp;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgi;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhw;)V": { + "access": 1, + "override": "fj" + }, + "a (Lbcy;)Lek;": { + "access": 4104 + }, + "a (Lga;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgo;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhi;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgs;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfw;)V": { + "access": 1, + "override": "fj" + }, + "a ()Lek;": { + "access": 1 + }, + "a (Lhm;)V": { + "access": 1, + "override": "fj" + }, + "\u003cinit\u003e (Lave;Laxu;Lek;Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "a (Lgw;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhe;)V": { + "access": 1, + "override": "fj" + }, + "a (Ljava/util/UUID;)Lbdc;": { + "access": 1 + }, + "a (Lha;)V": { + "access": 1, + "override": "fj" + }, + "a (Ljava/lang/String;)Lbdc;": { + "access": 1 + }, + "a (Lfo;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgx;)V": { + "access": 1, + "override": "fj" + }, + "a (Lht;)V": { + "access": 1, + "override": "fj" + }, + "a (Lhp;)V": { + "access": 1, + "override": "fj" + }, + "a (Lfs;)V": { + "access": 1, + "override": "fj" + }, + "a (Lgl;)V": { + "access": 1, + "override": "fj" + }, + "d ()Ljava/util/Collection;": { + "access": 1 + }, + "a (Lhx;)V": { + "access": 1, + "override": "fj" + }, + "a (Lbcy;Lave;)Lave;": { + "access": 4104 + }, + "a (Lgh;)V": { + "access": 1, + "override": "fj" + }, + "a (Lia;)V": { + "access": 1, + "override": "fj" + }, + "e ()Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "a (Lgd;)V": { + "access": 1, + "override": "fj" + } + } + }, + "bgc$2": { + "name": "bgc$2", + "access": 32, + "superName": "bgu", + "methods": { + "a (Lalz;)Lbov;": { + "access": 4, + "override": "bgu" + }, + "\u003cinit\u003e (Lbgc;)V": { + "access": 0 + } + } + }, + "bgc$5": { + "name": "bgc$5", + "access": 32, + "superName": "bgu", + "methods": { + "a (Lalz;)Lbov;": { + "access": 4, + "override": "bgu" + }, + "\u003cinit\u003e (Lbgc;)V": { + "access": 0 + } + } + }, + "bgc$4": { + "name": "bgc$4", + "access": 32, + "superName": "bgu", + "methods": { + "a (Lalz;)Lbov;": { + "access": 4, + "override": "bgu" + }, + "\u003cinit\u003e (Lbgc;)V": { + "access": 0 + } + } + }, + "bda": { + "name": "bda", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lwn;Lpk;Lauh;)Z": { + "access": 1 + }, + "a (Lcj;)Z": { + "access": 2 + }, + "h ()Z": { + "access": 1 + }, + "m ()Z": { + "access": 1 + }, + "a (Lzx;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1 + }, + "a (Lwn;Lpk;)V": { + "access": 1 + }, + "a (Lwn;)V": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "a (Lwn;Ladm;Lzx;)Z": { + "access": 1 + }, + "b (Lwn;Lpk;)Z": { + "access": 1 + }, + "i ()Z": { + "access": 1 + }, + "a (Ladp$a;)V": { + "access": 1 + }, + "a (Lave;Lbda;Lcj;Lcq;)V": { + "access": 9 + }, + "a ()Z": { + "access": 1 + }, + "a (IIIILwn;)Lzx;": { + "access": 1 + }, + "a (Lcj;Lcq;)Z": { + "access": 1 + }, + "n ()V": { + "access": 2 + }, + "c (Lcj;Lcq;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Lave;Lbcy;)V": { + "access": 1 + }, + "e ()V": { + "access": 1 + }, + "b (Lcj;Lcq;)Z": { + "access": 1 + }, + "j ()Z": { + "access": 1 + }, + "a (Lbew;Lbdb;Lzx;Lcj;Lcq;Laui;)Z": { + "access": 1 + }, + "a (Lzx;I)V": { + "access": 1 + }, + "b (Lwn;)V": { + "access": 1 + }, + "a (Ladm;Lnb;)Lbew;": { + "access": 1 + }, + "c (Lwn;)V": { + "access": 1 + }, + "k ()Z": { + "access": 1 + }, + "l ()Ladp$a;": { + "access": 1 + }, + "d ()F": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "a (II)V": { + "access": 1 + } + } + }, + "ca": { + "name": "ca", + "access": 33, + "superName": "bz", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;[Ljava/lang/Object;)V": { + "access": 129 + } + } + }, + "bgc$1": { + "name": "bgc$1", + "access": 32, + "superName": "bgu", + "methods": { + "a (Lalz;)Lbov;": { + "access": 4, + "override": "bgu" + }, + "\u003cinit\u003e (Lbgc;)V": { + "access": 0 + } + } + }, + "cb": { + "name": "cb", + "access": 33, + "superName": "bz", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;[Ljava/lang/Object;)V": { + "access": 129 + } + } + }, + "bdc": { + "name": "bdc", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "p ()J": { + "access": 1 + }, + "a (Lbdc;)Ljava/lang/String;": { + "access": 4104 + }, + "c (J)V": { + "access": 1 + }, + "b (Lbdc;Ljy;)Ljy;": { + "access": 4104 + }, + "c (I)V": { + "access": 1 + }, + "h ()Ljy;": { + "access": 1 + }, + "a (I)V": { + "access": 4 + }, + "g ()Ljy;": { + "access": 1 + }, + "a (J)V": { + "access": 1 + }, + "o ()J": { + "access": 1 + }, + "a (Ladp$a;)V": { + "access": 4 + }, + "k ()Leu;": { + "access": 1 + }, + "j ()V": { + "access": 4 + }, + "a (Lbdc;Ljy;)Ljy;": { + "access": 4104 + }, + "e ()Z": { + "access": 1 + }, + "\u003cinit\u003e (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "a (Lbdc;Ljava/lang/String;)Ljava/lang/String;": { + "access": 4104 + }, + "\u003cinit\u003e (Lgz$b;)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "n ()J": { + "access": 1 + }, + "b ()Ladp$a;": { + "access": 1 + }, + "f ()Ljava/lang/String;": { + "access": 1 + }, + "i ()Laul;": { + "access": 1 + }, + "l ()I": { + "access": 1 + }, + "a ()Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "a (Leu;)V": { + "access": 1 + }, + "m ()I": { + "access": 1 + }, + "b (J)V": { + "access": 1 + }, + "b (I)V": { + "access": 1 + } + } + }, + "cc": { + "name": "cc", + "access": 33, + "superName": "bz", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;[Ljava/lang/Object;)V": { + "access": 129 + } + } + }, + "bdb": { + "name": "bdb", + "access": 33, + "superName": "adm", + "methods": { + "\u003cinit\u003e (Lbcy;Ladp;ILoj;Lnt;)V": { + "access": 1 + }, + "a (IIIIII)V": { + "access": 1 + }, + "a (DDDDDDLdn;)V": { + "access": 1, + "override": "adm" + }, + "a ()V": { + "access": 1 + }, + "a (Lpk;)V": { + "access": 4, + "override": "adm" + }, + "b (Lpk;)V": { + "access": 4, + "override": "adm" + }, + "a (DDDLjava/lang/String;FFZ)V": { + "access": 1, + "override": "adm" + }, + "e (I)Lpk;": { + "access": 1 + }, + "H ()V": { + "access": 1, + "override": "adm" + }, + "b (Lbdb;)Ljava/util/Set;": { + "access": 4104 + }, + "a (ILpk;)V": { + "access": 1 + }, + "e (Lpk;)V": { + "access": 1, + "override": "adm" + }, + "a (Lauo;)V": { + "access": 1 + }, + "k ()Lamv;": { + "access": 4, + "override": "adm" + }, + "b (Lcj;Lalz;)Z": { + "access": 1 + }, + "b (III)V": { + "access": 1 + }, + "a (Lb;)Lc;": { + "access": 1, + "override": "adm" + }, + "c (Lbdb;)Lave;": { + "access": 4104 + }, + "h ()V": { + "access": 4, + "override": "adm" + }, + "d (Lpk;)Z": { + "access": 1, + "override": "adm" + }, + "a (I)Lpk;": { + "access": 1, + "override": "adm" + }, + "a (Lcj;Ljava/lang/String;FFZ)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "adm" + }, + "a (Lbdb;)Ljava/util/Set;": { + "access": 4104 + }, + "p ()V": { + "access": 4, + "override": "adm" + }, + "b (J)V": { + "access": 1, + "override": "adm" + }, + "b (IIZ)V": { + "access": 1 + }, + "q ()I": { + "access": 4, + "override": "adm" + } + } + }, + "cd": { + "name": "cd", + "access": 33, + "superName": "bz", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;[Ljava/lang/Object;)V": { + "access": 129 + } + } + }, + "bde": { + "name": "bde", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;Z)V": { + "access": 1 + }, + "a ()Ldn;": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "b ()Lbde$a;": { + "access": 1 + }, + "a (Ldn;)Lbde;": { + "access": 9 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "a (Lbde;)V": { + "access": 1 + }, + "a (Lbde$a;)V": { + "access": 1 + } + } + }, + "ce": { + "name": "ce", + "access": 33, + "superName": "bz", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;[Ljava/lang/Object;)V": { + "access": 129 + } + } + }, + "bdd": { + "name": "bdd", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;)Lbdd;": { + "access": 9 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "a (Ljava/lang/String;I)I": { + "access": 10 + }, + "b ()I": { + "access": 1 + }, + "b (Ljava/lang/String;)[Ljava/lang/String;": { + "access": 10 + } + } + }, + "cf": { + "name": "cf", + "access": 33, + "superName": "cc", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;[Ljava/lang/Object;)V": { + "access": 129 + } + } + }, + "bdg": { + "name": "bdg", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "c ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "d ()Lcom/google/common/base/Splitter;": { + "access": 4104 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lbde;)V": { + "access": 2 + }, + "a (Lbdg;Lbde;)V": { + "access": 4104 + }, + "a (Lbde;)V": { + "access": 1, + "exceptions": [ + "java/net/UnknownHostException" + ] + } + } + }, + "bdf": { + "name": "bdf", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "a (I)Lbde;": { + "access": 1 + }, + "a (ILbde;)V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "b (Lbde;)V": { + "access": 9 + }, + "a (II)V": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "a (Lbde;)V": { + "access": 1 + } + } + }, + "all$1": { + "name": "all$1", + "access": 32, + "superName": "add", + "methods": { + "\u003cinit\u003e (Lall;)V": { + "access": 0 + }, + "a (I)V": { + "access": 1, + "override": "add" + }, + "a (Ladd$a;)V": { + "access": 1, + "override": "add" + }, + "b ()Lcj;": { + "access": 1, + "override": "add" + }, + "a ()Ladm;": { + "access": 1, + "override": "add" + } + } + }, + "cj": { + "name": "cj", + "access": 33, + "superName": "df", + "methods": { + "\u003cinit\u003e (Ldf;)V": { + "access": 1 + }, + "d ()Lcj;": { + "access": 1 + }, + "e ()Lcj;": { + "access": 1 + }, + "e (I)Lcj;": { + "access": 1 + }, + "b ()Lcj;": { + "access": 1 + }, + "c ()Lcj;": { + "access": 1 + }, + "d (I)Lcj;": { + "access": 1 + }, + "f ()Lcj;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lcj;Lcj;)Ljava/lang/Iterable;": { + "access": 9 + }, + "g (I)Lcj;": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "a (J)Lcj;": { + "access": 9 + }, + "g ()J": { + "access": 1 + }, + "f (I)Lcj;": { + "access": 1 + }, + "\u003cinit\u003e (III)V": { + "access": 1 + }, + "a (Ldf;)Lcj;": { + "access": 1 + }, + "a (Lcq;I)Lcj;": { + "access": 1 + }, + "a (Lcj;Lcj;)Ljava/lang/Iterable;": { + "access": 9 + }, + "d (Ldf;)Ldf;": { + "access": 4097, + "bouncer": { + "name": "c", + "desc": "(Ldf;)Lcj;" + }, + "override": "df" + }, + "a (DDD)Lcj;": { + "access": 1 + }, + "b (I)Lcj;": { + "access": 1 + }, + "c (I)Lcj;": { + "access": 1 + }, + "a (Lcq;)Lcj;": { + "access": 1 + }, + "c (Ldf;)Lcj;": { + "access": 1 + }, + "a (III)Lcj;": { + "access": 1 + }, + "\u003cinit\u003e (Laui;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lpk;)V": { + "access": 1 + }, + "b (Ldf;)Lcj;": { + "access": 1 + }, + "\u003cinit\u003e (DDD)V": { + "access": 1 + } + } + }, + "bdk": { + "name": "bdk", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDDLzw;)V": { + "access": 4 + }, + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "\u003cinit\u003e (Ladm;DDDLzw;I)V": { + "access": 4 + }, + "\u003cinit\u003e (Ladm;DDDDDDLzw;I)V": { + "access": 4 + }, + "a ()I": { + "access": 1, + "override": "beb" + } + } + }, + "ck": { + "name": "ck", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "cu" + ], + "methods": { + "b ()D": { + "access": 1025, + "override": "cz" + }, + "d ()Lcj;": { + "access": 1025 + }, + "a ()D": { + "access": 1025, + "override": "cz" + }, + "f ()I": { + "access": 1025 + }, + "c ()D": { + "access": 1025, + "override": "cz" + }, + "h ()Lakw;": { + "access": 1025 + } + } + }, + "bdj": { + "name": "bdj", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDDLzw;)V": { + "access": 4 + }, + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "a ()I": { + "access": 1, + "override": "beb" + } + } + }, + "cl": { + "name": "cl", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ck" + ], + "methods": { + "b ()D": { + "access": 1, + "override": "cz" + }, + "d ()Lcj;": { + "access": 1, + "override": "ck" + }, + "a ()D": { + "access": 1, + "override": "cz" + }, + "f ()I": { + "access": 1, + "override": "ck" + }, + "c ()D": { + "access": 1, + "override": "cz" + }, + "i ()Ladm;": { + "access": 1, + "override": "cv" + }, + "\u003cinit\u003e (Ladm;Lcj;)V": { + "access": 1 + }, + "h ()Lakw;": { + "access": 1, + "override": "ck" + } + } + }, + "bdm": { + "name": "bdm", + "access": 33, + "superName": "beb", + "methods": { + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDDDDDF)V": { + "access": 4 + } + } + }, + "cm": { + "name": "cm", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Ljava/lang/Iterable;)Ljava/lang/Iterable;": { + "access": 10 + }, + "a (Ljava/lang/Iterable;)Ljava/lang/Iterable;": { + "access": 9 + }, + "a (Ljava/lang/Class;I)[Ljava/lang/Object;": { + "access": 4104 + }, + "b (Ljava/lang/Class;Ljava/lang/Iterable;)[Ljava/lang/Object;": { + "access": 10 + }, + "b (Ljava/lang/Class;I)[Ljava/lang/Object;": { + "access": 10 + }, + "a (Ljava/lang/Class;Ljava/lang/Iterable;)Ljava/lang/Iterable;": { + "access": 9 + } + } + }, + "bdl": { + "name": "bdl", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "cn": { + "name": "cn", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "cr" + ], + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 4 + }, + "a (Lck;Lcq;)V": { + "access": 4 + }, + "a (Ladm;Lzx;ILcq;Lcz;)V": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lck;)V": { + "access": 4 + }, + "a (Lcq;)I": { + "access": 2 + }, + "a (Lck;Lzx;)Lzx;": { + "access": 17, + "override": "cr" + } + } + }, + "bdo": { + "name": "bdo", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "c (F)F": { + "access": 1, + "override": "pk" + } + } + }, + "co": { + "name": "co", + "access": 33, + "superName": "cx", + "methods": { + "a ()V": { + "access": 1 + }, + "a (ILjava/lang/Object;Ljava/lang/Object;)V": { + "access": 1, + "override": "cx" + }, + "\u003cinit\u003e (Ljava/lang/Object;)V": { + "access": 1 + }, + "a (I)Ljava/lang/Object;": { + "access": 1, + "override": "cx" + }, + "a (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 1, + "override": "db" + } + } + }, + "bdn": { + "name": "bdn", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDDLarm;)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "c (F)F": { + "access": 1, + "override": "pk" + } + } + }, + "cp": { + "name": "cp", + "access": 33, + "superName": "dd", + "methods": { + "\u003cinit\u003e (Ljava/lang/Object;)V": { + "access": 1 + }, + "a (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 1, + "override": "db" + } + } + }, + "bdq": { + "name": "bdq", + "access": 33, + "superName": "java/lang/Object" + }, + "cq": { + "name": "cq", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "p ()Lcq;": { + "access": 2 + }, + "a (Ljava/lang/String;)Lcq;": { + "access": 9 + }, + "n ()Lcq;": { + "access": 2 + }, + "a (Lcq$b;Lcq$a;)Lcq;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "j ()Ljava/lang/String;": { + "access": 1 + }, + "m ()Ldf;": { + "access": 1 + }, + "a ()I": { + "access": 1 + }, + "g ()I": { + "access": 1 + }, + "e ()Lcq;": { + "access": 1 + }, + "d ()Lcq;": { + "access": 1 + }, + "a (Lcq$a;)Lcq;": { + "access": 1 + }, + "f ()Lcq;": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "k ()Lcq$a;": { + "access": 1 + }, + "b (I)Lcq;": { + "access": 9 + }, + "i ()I": { + "access": 1 + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "\u003cinit\u003e (Ljava/lang/String;IIIILjava/lang/String;Lcq$b;Lcq$a;Ldf;)V": { + "access": 2 + }, + "a (FFF)Lcq;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lcq;": { + "access": 9 + }, + "a (I)Lcq;": { + "access": 9 + }, + "a (D)Lcq;": { + "access": 9 + }, + "values ()[Lcq;": { + "access": 9 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "h ()I": { + "access": 1 + }, + "a (Ljava/util/Random;)Lcq;": { + "access": 9 + }, + "c ()Lcq$b;": { + "access": 1 + } + } + }, + "bdp": { + "name": "bdp", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "cr": { + "name": "cr", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lck;Lzx;)Lzx;": { + "access": 1025 + } + } + }, + "uq$a": { + "name": "uq$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Luq$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;IIII)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Luq$a;": { + "access": 9 + } + } + }, + "bds": { + "name": "bds", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Lbmj;Ladm;DDD)V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "a ()I": { + "access": 1, + "override": "beb" + } + } + }, + "cs": { + "name": "cs", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Iterable" + ] + }, + "bdr": { + "name": "bdr", + "access": 33, + "superName": "beb", + "methods": { + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "c (F)F": { + "access": 1, + "override": "pk" + } + } + }, + "ct": { + "name": "ct", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "cs" + ], + "methods": { + "b (Ljava/lang/Object;)I": { + "access": 1 + }, + "a (I)Ljava/lang/Object;": { + "access": 17 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/Object;I)V": { + "access": 1 + }, + "iterator ()Ljava/util/Iterator;": { + "access": 1, + "override": "java/lang/Iterable" + } + } + }, + "bdu": { + "name": "bdu", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Lbmj;Ladm;DDDDDD)V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "a ()I": { + "access": 1, + "override": "beb" + } + } + }, + "cu": { + "name": "cu", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "cv" + ] + }, + "bdt": { + "name": "bdt", + "access": 33, + "superName": "beb", + "methods": { + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDDDDDF)V": { + "access": 4 + } + } + }, + "cv": { + "name": "cv", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "cz" + ], + "methods": { + "i ()Ladm;": { + "access": 1025 + } + } + }, + "bdw": { + "name": "bdw", + "access": 33, + "superName": "beb", + "methods": { + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;Lpk;Lpk;F)V": { + "access": 1 + }, + "a ()I": { + "access": 1, + "override": "beb" + } + } + }, + "cw": { + "name": "cw", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Ljava/lang/Iterable;Ljava/lang/Iterable;)Ljava/util/Map;": { + "access": 9 + }, + "a (Ljava/lang/Iterable;Ljava/lang/Iterable;Ljava/util/Map;)Ljava/util/Map;": { + "access": 9 + } + } + }, + "bdv": { + "name": "bdv", + "access": 33, + "superName": "beb", + "methods": { + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "a ()I": { + "access": 1, + "override": "beb" + } + } + }, + "cx": { + "name": "cx", + "access": 33, + "superName": "dd", + "interfaces": [ + "cs" + ], + "methods": { + "d (Ljava/lang/Object;)Z": { + "access": 1, + "override": "dd" + }, + "b (Ljava/lang/Object;)I": { + "access": 1 + }, + "a (ILjava/lang/Object;Ljava/lang/Object;)V": { + "access": 1 + }, + "a (I)Ljava/lang/Object;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Ljava/util/Map;": { + "access": 4, + "override": "dd" + }, + "c (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 1 + }, + "iterator ()Ljava/util/Iterator;": { + "access": 1, + "override": "java/lang/Iterable" + }, + "a (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 1, + "override": "db" + } + } + }, + "bdy": { + "name": "bdy", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 4 + }, + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "c (F)F": { + "access": 1, + "override": "pk" + } + } + }, + "cy": { + "name": "cy", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "e ()Z": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "valueOf (Ljava/lang/String;)Lcy;": { + "access": 9 + }, + "a ()[Ljava/lang/String;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "a (I)Lcy;": { + "access": 9 + }, + "c ()I": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;IZ)V": { + "access": 2 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;IZI)V": { + "access": 2 + }, + "d ()I": { + "access": 1 + }, + "values ()[Lcy;": { + "access": 9 + } + } + }, + "bdx": { + "name": "bdx", + "access": 33, + "superName": "beh", + "methods": { + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + } + } + }, + "cz": { + "name": "cz", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "b ()D": { + "access": 1025 + }, + "a ()D": { + "access": 1025 + }, + "c ()D": { + "access": 1025 + } + } + }, + "bdz": { + "name": "bdz", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 4 + }, + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "a ()I": { + "access": 1, + "override": "beb" + } + } + }, + "da": { + "name": "da", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "cz" + ], + "methods": { + "b ()D": { + "access": 1, + "override": "cz" + }, + "a ()D": { + "access": 1, + "override": "cz" + }, + "c ()D": { + "access": 1, + "override": "cz" + }, + "\u003cinit\u003e (DDD)V": { + "access": 1 + } + } + }, + "beb": { + "name": "beb", + "access": 33, + "superName": "pk", + "methods": { + "i (F)V": { + "access": 1 + }, + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "a (F)Lbeb;": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "j ()F": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 1 + }, + "h (F)Lbeb;": { + "access": 1 + }, + "a ()I": { + "access": 1 + }, + "k (I)V": { + "access": 1 + }, + "aD ()Z": { + "access": 1, + "override": "pk" + }, + "k ()V": { + "access": 1 + }, + "b ()F": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "g ()F": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 4 + }, + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1 + }, + "i ()F": { + "access": 1 + }, + "a (Lbmi;)V": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "b (FFF)V": { + "access": 1 + } + } + }, + "bdo$a": { + "name": "bdo$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "db": { + "name": "db", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Iterable" + ], + "methods": { + "a (Ljava/lang/Object;Ljava/lang/Object;)V": { + "access": 1025 + }, + "a (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 1025 + } + } + }, + "bea": { + "name": "bea", + "access": 33, + "superName": "beb", + "methods": { + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDDDDDF)V": { + "access": 4 + } + } + }, + "dc": { + "name": "dc", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()F": { + "access": 1 + }, + "d ()F": { + "access": 1 + }, + "c ()F": { + "access": 1 + }, + "\u003cinit\u003e (Ldu;)V": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (FFF)V": { + "access": 1 + }, + "a ()Ldu;": { + "access": 1 + } + } + }, + "bed": { + "name": "bed", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 1153 + } + } + }, + "dd": { + "name": "dd", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "db" + ], + "methods": { + "d (Ljava/lang/Object;)Z": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c ()Ljava/util/Set;": { + "access": 1 + }, + "b ()Ljava/util/Map;": { + "access": 4 + }, + "a (Ljava/lang/Object;Ljava/lang/Object;)V": { + "access": 1, + "override": "db" + }, + "iterator ()Ljava/util/Iterator;": { + "access": 1, + "override": "java/lang/Iterable" + }, + "a (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 1, + "override": "db" + } + } + }, + "kp$1": { + "name": "kp$1", + "access": 32, + "superName": "java/util/TimerTask", + "methods": { + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "\u003cinit\u003e (Lkp;)V": { + "access": 0 + } + } + }, + "bec": { + "name": "bec", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Lbeb;)V": { + "access": 1 + }, + "a (Lcj;Lcq;)V": { + "access": 1 + }, + "a (Ladm;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lpk;F)V": { + "access": 1 + }, + "a (Lcj;Lalz;)V": { + "access": 1 + }, + "a (Ljava/util/List;)V": { + "access": 2 + }, + "a (Lbeb;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lbmj;)V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "a (I)V": { + "access": 2 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "a (IDDDDDD[I)Lbeb;": { + "access": 129 + }, + "d (Lbeb;)V": { + "access": 2 + }, + "a (Lbeb;II)V": { + "access": 2 + }, + "c ()V": { + "access": 2 + }, + "a (ILbed;)V": { + "access": 1 + }, + "a (Lpk;F)V": { + "access": 1 + }, + "c (Lbeb;)V": { + "access": 1 + }, + "a (Lpk;Lcy;)V": { + "access": 1 + } + } + }, + "bef": { + "name": "bef", + "access": 33, + "superName": "beb", + "methods": { + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "c (F)F": { + "access": 1, + "override": "pk" + } + } + }, + "df": { + "name": "df", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Comparable" + ], + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "p ()I": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i (Ldf;)D": { + "access": 1 + }, + "n ()I": { + "access": 1 + }, + "\u003cinit\u003e (III)V": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "c (DDD)D": { + "access": 1 + }, + "d (DDD)D": { + "access": 1 + }, + "compareTo (Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "g", + "desc": "(Ldf;)I" + }, + "override": "java/lang/Comparable" + }, + "g (Ldf;)I": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "d (Ldf;)Ldf;": { + "access": 1 + }, + "o ()I": { + "access": 1 + }, + "\u003cinit\u003e (DDD)V": { + "access": 1 + } + } + }, + "bee": { + "name": "bee", + "access": 33, + "superName": "beb", + "methods": { + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "beh": { + "name": "beh", + "access": 33, + "superName": "beb", + "methods": { + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 2 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDDDDDLbeh$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e (Ladm;DDDDDDF)V": { + "access": 4 + } + } + }, + "beg": { + "name": "beg", + "access": 33, + "superName": "beb", + "methods": { + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "\u003cinit\u003e (Ladm;DDDFFF)V": { + "access": 4 + }, + "\u003cinit\u003e (Ladm;DDDFFFF)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "di": { + "name": "di", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;": { + "access": 137 + }, + "a (Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "a ()J": { + "access": 9 + }, + "c (Ljava/lang/String;)Z": { + "access": 9 + } + } + }, + "bej": { + "name": "bej", + "access": 33, + "superName": "beb", + "methods": { + "a (I)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "agi$b": { + "name": "agi$b", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "values ()[Lagi$b;": { + "access": 9 + }, + "a (I)Lagi$b;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;)V": { + "access": 2 + }, + "valueOf (Ljava/lang/String;)Lagi$b;": { + "access": 9 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V": { + "access": 2 + }, + "a ()I": { + "access": 1 + } + } + }, + "dj": { + "name": "dj", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;": { + "access": 161 + }, + "b (Ljava/lang/String;)Z": { + "access": 33 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)Ljava/lang/String;": { + "access": 33 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a ()Ldj;": { + "access": 8 + }, + "c ()J": { + "access": 1 + }, + "a (Ljava/util/Map;)V": { + "access": 41 + }, + "c (Ljava/lang/String;)Ljava/lang/String;": { + "access": 2 + } + } + }, + "bei": { + "name": "bei", + "access": 33, + "superName": "beb", + "methods": { + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDDDDDF)V": { + "access": 4 + } + } + }, + "agi$a": { + "name": "agi$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "values ()[Lagi$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lagi$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + } + } + }, + "bel": { + "name": "bel", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "dl": { + "name": "dl", + "access": 33, + "superName": "eb", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "c ()[B": { + "access": 1 + }, + "b ()Leb;": { + "access": 1, + "override": "eb" + }, + "a (Ljava/io/DataOutput;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "a ()B": { + "access": 1, + "override": "eb" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e ([B)V": { + "access": 1 + }, + "a (Ljava/io/DataInput;ILdw;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "bek": { + "name": "bek", + "access": 33, + "superName": "ber", + "methods": { + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + } + } + }, + "dm": { + "name": "dm", + "access": 33, + "superName": "eb$a", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (B)V": { + "access": 1 + }, + "a (Ljava/io/DataOutput;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "a ()B": { + "access": 1, + "override": "eb" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "h ()F": { + "access": 1, + "override": "eb$a" + }, + "e ()S": { + "access": 1, + "override": "eb$a" + }, + "f ()B": { + "access": 1, + "override": "eb$a" + }, + "a (Ljava/io/DataInput;ILdw;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "c ()J": { + "access": 1, + "override": "eb$a" + }, + "g ()D": { + "access": 1, + "override": "eb$a" + }, + "b ()Leb;": { + "access": 1, + "override": "eb" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "d ()I": { + "access": 1, + "override": "eb$a" + } + } + }, + "ben": { + "name": "ben", + "access": 33, + "superName": "beo", + "methods": { + "\u003cinit\u003e (Ladm;DDDDDDLalz;)V": { + "access": 4 + } + } + }, + "dn": { + "name": "dn", + "access": 33, + "superName": "eb", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "o (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Ljava/lang/String;ILjava/lang/ClassCastException;)Lb;": { + "access": 2 + }, + "a (Ljava/lang/String;[B)V": { + "access": 1 + }, + "a (Ljava/io/DataOutput;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "a ()B": { + "access": 1, + "override": "eb" + }, + "j (Ljava/lang/String;)Ljava/lang/String;": { + "access": 1 + }, + "l (Ljava/lang/String;)[I": { + "access": 1 + }, + "a (BLjava/lang/String;Ljava/io/DataInput;ILdw;)Leb;": { + "access": 8, + "exceptions": [ + "java/io/IOException" + ] + }, + "d (Ljava/lang/String;)B": { + "access": 1 + }, + "g (Ljava/lang/String;)J": { + "access": 1 + }, + "h (Ljava/lang/String;)F": { + "access": 1 + }, + "b (Ljava/lang/String;I)Z": { + "access": 1 + }, + "a (Ljava/lang/String;Leb;)V": { + "access": 1 + }, + "a (Ljava/lang/String;[I)V": { + "access": 1 + }, + "n (Ljava/lang/String;)Z": { + "access": 1 + }, + "c_ ()Z": { + "access": 1, + "override": "eb" + }, + "a (Ljava/lang/String;Leb;Ljava/io/DataOutput;)V": { + "access": 10, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ljava/lang/String;B)V": { + "access": 1 + }, + "a (Ljava/lang/String;D)V": { + "access": 1 + }, + "b ()Leb;": { + "access": 1, + "override": "eb" + }, + "i (Ljava/lang/String;)D": { + "access": 1 + }, + "c ()Ljava/util/Set;": { + "access": 1 + }, + "c (Ljava/lang/String;I)Ldu;": { + "access": 1 + }, + "b (Ldn;)Ljava/util/Map;": { + "access": 4104 + }, + "a (Ljava/lang/String;)Leb;": { + "access": 1 + }, + "e (Ljava/lang/String;)S": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + }, + "a (Ljava/lang/String;S)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/String;J)V": { + "access": 1 + }, + "b (Ljava/io/DataInput;Ldw;)Ljava/lang/String;": { + "access": 10, + "exceptions": [ + "java/io/IOException" + ] + }, + "b (Ljava/lang/String;)B": { + "access": 1 + }, + "m (Ljava/lang/String;)Ldn;": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1 + }, + "a (Ljava/io/DataInput;ILdw;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "a (Ljava/lang/String;F)V": { + "access": 1 + }, + "a (Ljava/lang/String;I)V": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "k (Ljava/lang/String;)[B": { + "access": 1 + }, + "f (Ljava/lang/String;)I": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Ljava/lang/String;Z)V": { + "access": 1 + }, + "c (Ljava/lang/String;)Z": { + "access": 1 + }, + "a (Ljava/io/DataInput;Ldw;)B": { + "access": 10, + "exceptions": [ + "java/io/IOException" + ] + } + } + }, + "bem": { + "name": "bem", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "bep": { + "name": "bep", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;Lpk;Lcy;)V": { + "access": 1 + }, + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "a ()I": { + "access": 1, + "override": "beb" + } + } + }, + "dp": { + "name": "dp", + "access": 33, + "superName": "eb$a", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Ljava/io/DataOutput;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "a ()B": { + "access": 1, + "override": "eb" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "h ()F": { + "access": 1, + "override": "eb$a" + }, + "\u003cinit\u003e (D)V": { + "access": 1 + }, + "e ()S": { + "access": 1, + "override": "eb$a" + }, + "f ()B": { + "access": 1, + "override": "eb$a" + }, + "a (Ljava/io/DataInput;ILdw;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "c ()J": { + "access": 1, + "override": "eb$a" + }, + "g ()D": { + "access": 1, + "override": "eb$a" + }, + "b ()Leb;": { + "access": 1, + "override": "eb" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "d ()I": { + "access": 1, + "override": "eb$a" + } + } + }, + "beo": { + "name": "beo", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDDDDDLalz;)V": { + "access": 4 + }, + "l ()Lbeo;": { + "access": 1 + }, + "a (Lbfd;Lpk;FFFFFF)V": { + "access": 1, + "override": "beb" + }, + "a (Lcj;)Lbeo;": { + "access": 1 + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "a ()I": { + "access": 1, + "override": "beb" + } + } + }, + "dq": { + "name": "dq", + "access": 33, + "superName": "eb", + "methods": { + "b ()Leb;": { + "access": 1, + "override": "eb" + }, + "a (Ljava/io/DataOutput;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "a ()B": { + "access": 1, + "override": "eb" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Ljava/io/DataInput;ILdw;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + } + } + }, + "ber": { + "name": "ber", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "dr": { + "name": "dr", + "access": 33, + "superName": "eb$a", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Ljava/io/DataOutput;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "a ()B": { + "access": 1, + "override": "eb" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "h ()F": { + "access": 1, + "override": "eb$a" + }, + "\u003cinit\u003e (F)V": { + "access": 1 + }, + "e ()S": { + "access": 1, + "override": "eb$a" + }, + "f ()B": { + "access": 1, + "override": "eb$a" + }, + "a (Ljava/io/DataInput;ILdw;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "c ()J": { + "access": 1, + "override": "eb$a" + }, + "g ()D": { + "access": 1, + "override": "eb$a" + }, + "b ()Leb;": { + "access": 1, + "override": "eb" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "d ()I": { + "access": 1, + "override": "eb$a" + } + } + }, + "beq": { + "name": "beq", + "access": 33, + "superName": "beb", + "methods": { + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "ds": { + "name": "ds", + "access": 33, + "superName": "eb", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e ([I)V": { + "access": 1 + }, + "b ()Leb;": { + "access": 1, + "override": "eb" + }, + "a (Ljava/io/DataOutput;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "a ()B": { + "access": 1, + "override": "eb" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "c ()[I": { + "access": 1 + }, + "a (Ljava/io/DataInput;ILdw;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "bet": { + "name": "bet", + "access": 1057, + "superName": "wn", + "methods": { + "v ()Z": { + "access": 1, + "override": "wn" + }, + "b ()Lbdc;": { + "access": 4 + }, + "i ()Ljy;": { + "access": 1 + }, + "l ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "k ()Ljy;": { + "access": 1 + }, + "a (Ljy;Ljava/lang/String;)Lbma;": { + "access": 9 + }, + "a ()Z": { + "access": 1 + }, + "c (Ljava/lang/String;)Ljy;": { + "access": 9 + }, + "o ()F": { + "access": 1 + } + } + }, + "dt": { + "name": "dt", + "access": 33, + "superName": "eb$a", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Ljava/io/DataOutput;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "a ()B": { + "access": 1, + "override": "eb" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "h ()F": { + "access": 1, + "override": "eb$a" + }, + "e ()S": { + "access": 1, + "override": "eb$a" + }, + "f ()B": { + "access": 1, + "override": "eb$a" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "a (Ljava/io/DataInput;ILdw;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "c ()J": { + "access": 1, + "override": "eb$a" + }, + "g ()D": { + "access": 1, + "override": "eb$a" + }, + "b ()Leb;": { + "access": 1, + "override": "eb" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "d ()I": { + "access": 1, + "override": "eb$a" + } + } + }, + "du": { + "name": "du", + "access": 33, + "superName": "eb", + "methods": { + "c (I)[I": { + "access": 1 + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "d (I)D": { + "access": 1 + }, + "f ()I": { + "access": 1 + }, + "a (Ljava/io/DataOutput;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "a ()B": { + "access": 1, + "override": "eb" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (I)Ldn;": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "c_ ()Z": { + "access": 1, + "override": "eb" + }, + "a (Ljava/io/DataInput;ILdw;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Leb;)V": { + "access": 1 + }, + "b ()Leb;": { + "access": 1, + "override": "eb" + }, + "f (I)Ljava/lang/String;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "e (I)F": { + "access": 1 + }, + "a (ILeb;)V": { + "access": 1 + }, + "g (I)Leb;": { + "access": 1 + }, + "a (I)Leb;": { + "access": 1 + } + } + }, + "bev": { + "name": "bev", + "access": 33, + "superName": "beu", + "methods": { + "a ()V": { + "access": 1, + "override": "beu" + }, + "\u003cinit\u003e (Lavh;)V": { + "access": 1 + } + } + }, + "dv": { + "name": "dv", + "access": 33, + "superName": "eb$a", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Ljava/io/DataOutput;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "a ()B": { + "access": 1, + "override": "eb" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "h ()F": { + "access": 1, + "override": "eb$a" + }, + "e ()S": { + "access": 1, + "override": "eb$a" + }, + "f ()B": { + "access": 1, + "override": "eb$a" + }, + "\u003cinit\u003e (J)V": { + "access": 1 + }, + "a (Ljava/io/DataInput;ILdw;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "c ()J": { + "access": 1, + "override": "eb$a" + }, + "g ()D": { + "access": 1, + "override": "eb$a" + }, + "b ()Leb;": { + "access": 1, + "override": "eb" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "d ()I": { + "access": 1, + "override": "eb$a" + } + } + }, + "beu": { + "name": "beu", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "in$a": { + "name": "in$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lin$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lin$a;": { + "access": 9 + } + } + }, + "dw": { + "name": "dw", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (J)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (J)V": { + "access": 1 + } + } + }, + "bex": { + "name": "bex", + "access": 33, + "superName": "bet", + "methods": { + "a (ILjava/lang/String;)Z": { + "access": 1, + "override": "m" + }, + "c (ILzx;)V": { + "access": 1, + "override": "pk" + }, + "c ()Lcj;": { + "access": 1, + "override": "m" + }, + "a (Leu;)V": { + "access": 1, + "override": "m" + }, + "\u003cinit\u003e (Ladm;Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "a (DDDFFIZ)V": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "m ()V": { + "access": 1, + "override": "pr" + } + } + }, + "dx": { + "name": "dx", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/io/DataInput;Ldw;)Ldn;": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "b (Ldn;Ljava/io/File;)V": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ljava/io/DataInput;ILdw;)Leb;": { + "access": 10, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Leb;Ljava/io/DataOutput;)V": { + "access": 10, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ldn;Ljava/io/OutputStream;)V": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ljava/io/InputStream;)Ldn;": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ljava/io/File;)Ldn;": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ldn;Ljava/io/DataOutput;)V": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ljava/io/DataInputStream;)Ldn;": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ldn;Ljava/io/File;)V": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + } + } + }, + "bew": { + "name": "bew", + "access": 33, + "superName": "bet", + "methods": { + "d (Z)V": { + "access": 1, + "override": "pk" + }, + "q ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lave;Ladm;Lbcy;Lnb;)V": { + "access": 1 + }, + "w ()Ljava/lang/String;": { + "access": 1 + }, + "bM ()Z": { + "access": 1, + "override": "pr" + }, + "a (Log;)V": { + "access": 1, + "override": "wn" + }, + "c ()Lcj;": { + "access": 1, + "override": "m" + }, + "a (Luz;)V": { + "access": 4, + "override": "wn" + }, + "j (DDD)Z": { + "access": 4, + "override": "pk" + }, + "cc ()Z": { + "access": 1, + "override": "wn" + }, + "f (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Lzx;)V": { + "access": 1, + "override": "wn" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "a (Lacy;)V": { + "access": 1, + "override": "wn" + }, + "r ()V": { + "access": 4 + }, + "a (Lpk;)V": { + "access": 1, + "override": "pk" + }, + "bK ()V": { + "access": 1, + "override": "pr" + }, + "e (Lcj;)Z": { + "access": 2 + }, + "n (F)V": { + "access": 1 + }, + "b (Lpk;)V": { + "access": 1, + "override": "wn" + }, + "cb ()V": { + "access": 1, + "override": "wn" + }, + "e (Ljava/lang/String;)V": { + "access": 1 + }, + "x ()Lnb;": { + "access": 1 + }, + "d (Low;F)V": { + "access": 4, + "override": "pr" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "av ()Z": { + "access": 1, + "override": "pk" + }, + "a (Laln;)V": { + "access": 1, + "override": "wn" + }, + "n ()V": { + "access": 1, + "override": "wn" + }, + "a (ILjava/lang/String;)Z": { + "access": 1, + "override": "m" + }, + "a (Lol;)V": { + "access": 1, + "override": "wn" + }, + "a (Z)Luz;": { + "access": 1, + "override": "wn" + }, + "y ()Z": { + "access": 1 + }, + "h (F)V": { + "access": 1, + "override": "pr" + }, + "c (Lpk;)V": { + "access": 1, + "override": "wn" + }, + "b (Leu;)V": { + "access": 1, + "override": "wn" + }, + "a (Ladc;)V": { + "access": 1, + "override": "wn" + }, + "u ()V": { + "access": 1 + }, + "a (Ltp;Log;)V": { + "access": 1, + "override": "wn" + }, + "a (Leu;)V": { + "access": 1, + "override": "m" + }, + "t ()V": { + "access": 1, + "override": "wn" + }, + "z ()F": { + "access": 1 + }, + "A ()Z": { + "access": 4 + }, + "a (Lmw;I)V": { + "access": 1, + "override": "wn" + }, + "a (Ljava/lang/String;FF)V": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "p ()V": { + "access": 1 + }, + "bw ()V": { + "access": 1, + "override": "pr" + }, + "a (FII)V": { + "access": 1 + } + } + }, + "dy": { + "name": "dy", + "access": 49, + "superName": "java/lang/Object", + "methods": { + "a (Ldn;)Lcom/mojang/authlib/GameProfile;": { + "access": 9 + }, + "a (Leb;Leb;Z)Z": { + "access": 9 + }, + "a (Ldn;Lcom/mojang/authlib/GameProfile;)Ldn;": { + "access": 9 + } + } + }, + "bez": { + "name": "bez", + "access": 33, + "superName": "oq", + "interfaces": [ + "oo" + ], + "methods": { + "i ()Lon;": { + "access": 1, + "override": "oo" + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "r_ ()Z": { + "access": 1, + "override": "oo" + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "a (Lon;)V": { + "access": 1, + "override": "oo" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "\u003cinit\u003e (Ljava/lang/String;Leu;I)V": { + "access": 1 + } + } + }, + "dz": { + "name": "dz", + "access": 33, + "superName": "eb$a", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Ljava/io/DataOutput;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "a ()B": { + "access": 1, + "override": "eb" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "h ()F": { + "access": 1, + "override": "eb$a" + }, + "e ()S": { + "access": 1, + "override": "eb$a" + }, + "f ()B": { + "access": 1, + "override": "eb$a" + }, + "a (Ljava/io/DataInput;ILdw;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "c ()J": { + "access": 1, + "override": "eb$a" + }, + "g ()D": { + "access": 1, + "override": "eb$a" + }, + "b ()Leb;": { + "access": 1, + "override": "eb" + }, + "\u003cinit\u003e (S)V": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "d ()I": { + "access": 1, + "override": "eb$a" + } + } + }, + "bey": { + "name": "bey", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ol" + ], + "methods": { + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "\u003cinit\u003e (Ljava/lang/String;Leu;)V": { + "access": 1 + }, + "f_ ()Leu;": { + "access": 1, + "override": "op" + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + } + } + }, + "aik$1": { + "name": "aik$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Laio$a;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Laio$a;)Z": { + "access": 1 + } + } + }, + "aqw$1": { + "name": "aqw$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "add$a": { + "name": "add$a", + "access": 33, + "superName": "oa$a", + "methods": { + "\u003cinit\u003e (Ladd;Ldn;Ljava/lang/String;)V": { + "access": 1 + }, + "a (Ladd$a;)Ljava/lang/String;": { + "access": 4104 + }, + "a ()Ldn;": { + "access": 1 + }, + "b (Ladd$a;)Ldn;": { + "access": 4104 + }, + "\u003cinit\u003e (Ladd;Ldn;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladd;Ldn;Ljava/lang/String;I)V": { + "access": 2 + } + } + }, + "ea": { + "name": "ea", + "access": 33, + "superName": "eb", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "b ()Leb;": { + "access": 1, + "override": "eb" + }, + "a (Ljava/io/DataOutput;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "a ()B": { + "access": 1, + "override": "eb" + }, + "a_ ()Ljava/lang/String;": { + "access": 1, + "override": "eb" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "c_ ()Z": { + "access": 1, + "override": "eb" + }, + "a (Ljava/io/DataInput;ILdw;)V": { + "access": 0, + "exceptions": [ + "java/io/IOException" + ], + "override": "eb" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "eb": { + "name": "eb", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a (B)Leb;": { + "access": 12 + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "b ()Leb;": { + "access": 1025 + }, + "a (Ljava/io/DataOutput;)V": { + "access": 1024, + "exceptions": [ + "java/io/IOException" + ] + }, + "a ()B": { + "access": 1025 + }, + "a_ ()Ljava/lang/String;": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1025, + "override": "java/lang/Object" + }, + "c_ ()Z": { + "access": 1 + }, + "a (Ljava/io/DataInput;ILdw;)V": { + "access": 1024, + "exceptions": [ + "java/io/IOException" + ] + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "bfc": { + "name": "bfc", + "access": 49, + "superName": "java/lang/Object", + "methods": { + "a (Luc;Z)V": { + "access": 9 + } + } + }, + "ec": { + "name": "ec", + "access": 33, + "superName": "java/lang/Exception", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "ed": { + "name": "ed", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ([Ljava/lang/String;)Led$a;": { + "access": 136, + "exceptions": [ + "ec" + ] + }, + "a (Ljava/lang/String;Z)Led$a;": { + "access": 10, + "exceptions": [ + "ec" + ] + }, + "b (Ljava/lang/String;)I": { + "access": 8, + "exceptions": [ + "ec" + ] + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ljava/lang/String;I)Z": { + "access": 10 + }, + "a (Ljava/lang/String;Ljava/lang/String;)Led$a;": { + "access": 8, + "exceptions": [ + "ec" + ] + }, + "c (Ljava/lang/String;Z)Ljava/lang/String;": { + "access": 10, + "exceptions": [ + "ec" + ] + }, + "d (Ljava/lang/String;Z)Ljava/lang/String;": { + "access": 10, + "exceptions": [ + "ec" + ] + }, + "a (Ljava/lang/String;C)I": { + "access": 10 + }, + "a (Ljava/lang/String;)Ldn;": { + "access": 9, + "exceptions": [ + "ec" + ] + }, + "b (Ljava/lang/String;Z)Ljava/lang/String;": { + "access": 10, + "exceptions": [ + "ec" + ] + }, + "a (Ljava/lang/String;I)Ljava/lang/String;": { + "access": 10, + "exceptions": [ + "ec" + ] + } + } + }, + "bfe": { + "name": "bfe", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lbfd;)V": { + "access": 1 + } + } + }, + "fz$a": { + "name": "fz$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lfz;SLalz;)V": { + "access": 1 + }, + "b ()S": { + "access": 1 + }, + "c ()Lalz;": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "\u003cinit\u003e (Lfz;SLamy;)V": { + "access": 1 + } + } + }, + "bfd": { + "name": "bfd", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (FFFI)V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "a (Ljava/nio/FloatBuffer;FFFII)F": { + "access": 10 + }, + "b (II)V": { + "access": 2 + }, + "b (FFFI)V": { + "access": 1 + }, + "f ()Ljava/nio/ByteBuffer;": { + "access": 1 + }, + "c (FFF)Lbfd;": { + "access": 1 + }, + "a (ILbmu;)V": { + "access": 1 + }, + "a (II)Lbfd;": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "a (DD)Lbfd;": { + "access": 1 + }, + "j ()I": { + "access": 2 + }, + "g ()Lbmu;": { + "access": 1 + }, + "a (FFF)V": { + "access": 1 + }, + "a ()Lbfd$a;": { + "access": 1 + }, + "d (FFF)V": { + "access": 1 + }, + "b (FFF)V": { + "access": 1 + }, + "a (Lbfd$a;)V": { + "access": 1 + }, + "e ()V": { + "access": 1 + }, + "i ()I": { + "access": 1 + }, + "d ()V": { + "access": 1 + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "a (DDD)V": { + "access": 1 + }, + "a ([I)V": { + "access": 1 + }, + "b (DDD)Lbfd;": { + "access": 1 + }, + "k ()V": { + "access": 2 + }, + "a (IIII)V": { + "access": 1 + }, + "b (IIII)Lbfd;": { + "access": 1 + }, + "h ()I": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "c (I)I": { + "access": 2 + }, + "a (FFFF)Lbfd;": { + "access": 1 + }, + "b (I)V": { + "access": 2 + }, + "a (IIIII)V": { + "access": 2 + }, + "c (DDD)V": { + "access": 1 + } + } + }, + "ef": { + "name": "ef", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lio/netty/buffer/ByteBuf;)[B": { + "access": 2 + }, + "a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;": { + "access": 4, + "exceptions": [ + "javax/crypto/ShortBufferException" + ] + }, + "\u003cinit\u003e (Ljavax/crypto/Cipher;)V": { + "access": 4 + }, + "a (Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V": { + "access": 4, + "exceptions": [ + "javax/crypto/ShortBufferException" + ] + } + } + }, + "bfg": { + "name": "bfg", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ladf;)Lbfd;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (I)Lbfd;": { + "access": 1 + } + } + }, + "eg": { + "name": "eg", + "access": 33, + "superName": "io/netty/handler/codec/MessageToMessageDecoder", + "methods": { + "a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Ljavax/crypto/Cipher;)V": { + "access": 1 + }, + "decode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V": { + "access": 4100, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "(Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V" + }, + "override": "io/netty/handler/codec/MessageToMessageDecoder" + } + } + }, + "bff": { + "name": "bff", + "access": 33, + "superName": "adv", + "methods": { + "b (Lcj;I)I": { + "access": 1, + "override": "adq" + }, + "c (Lcj;)Lalz;": { + "access": 2 + }, + "s (Lcj;)Lakw;": { + "access": 1, + "override": "adq" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "e (Lcj;)I": { + "access": 2 + }, + "p (Lcj;)Lalz;": { + "access": 1, + "override": "adq" + }, + "\u003cinit\u003e (Ladm;Lcj;Lcj;I)V": { + "access": 1 + } + } + }, + "eh": { + "name": "eh", + "access": 33, + "superName": "io/netty/handler/codec/MessageToByteEncoder", + "methods": { + "a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ] + }, + "encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V": { + "access": 4100, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "(Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V" + }, + "override": "io/netty/handler/codec/MessageToByteEncoder" + }, + "\u003cinit\u003e (Ljavax/crypto/Cipher;)V": { + "access": 1 + } + } + }, + "bfi": { + "name": "bfi", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lzx;)V": { + "access": 1 + } + } + }, + "ei": { + "name": "ei", + "access": 33, + "superName": "io/netty/handler/codec/ByteToMessageDecoder", + "methods": { + "a (I)V": { + "access": 1 + }, + "decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/handler/codec/ByteToMessageDecoder" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "bfh": { + "name": "bfh", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a (DDD)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladf;)V": { + "access": 1025 + }, + "a (Lbht;)V": { + "access": 1 + }, + "a (Lbht;Ladf;)V": { + "access": 1 + } + } + }, + "ej": { + "name": "ej", + "access": 33, + "superName": "io/netty/handler/codec/MessageToByteEncoder", + "methods": { + "a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ] + }, + "a (I)V": { + "access": 1 + }, + "encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V": { + "access": 4100, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "(Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V" + }, + "override": "io/netty/handler/codec/MessageToByteEncoder" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "bfk": { + "name": "bfk", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnj" + ], + "methods": { + "l ()V": { + "access": 2 + }, + "f (F)V": { + "access": 2 + }, + "i (F)V": { + "access": 2 + }, + "b ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;F)F": { + "access": 2 + }, + "m ()V": { + "access": 2 + }, + "c (F)V": { + "access": 4 + }, + "a (IFJ)V": { + "access": 2 + }, + "a (Lpk;)V": { + "access": 1 + }, + "a (FI)V": { + "access": 2 + }, + "a (F)V": { + "access": 1 + }, + "a (FZ)F": { + "access": 2 + }, + "a (FJ)V": { + "access": 1 + }, + "a (Lbfk;)Lave;": { + "access": 4104 + }, + "k ()Lavq;": { + "access": 1 + }, + "n ()Z": { + "access": 2 + }, + "j ()V": { + "access": 1 + }, + "a ()Z": { + "access": 1 + }, + "d (F)V": { + "access": 2 + }, + "g (F)V": { + "access": 2 + }, + "e ()V": { + "access": 1 + }, + "b (FI)V": { + "access": 2 + }, + "i ()V": { + "access": 1 + }, + "a (Lbfr;FI)V": { + "access": 2 + }, + "d ()V": { + "access": 1 + }, + "e (F)V": { + "access": 2 + }, + "b (FJ)V": { + "access": 1 + }, + "\u003cinit\u003e (Lave;Lbni;)V": { + "access": 1 + }, + "a (Lbni;)V": { + "access": 1, + "override": "bnj" + }, + "h (F)V": { + "access": 2 + }, + "o ()V": { + "access": 2 + }, + "f ()Lblr;": { + "access": 1 + }, + "a (FFFF)Ljava/nio/FloatBuffer;": { + "access": 2 + }, + "h ()V": { + "access": 1 + }, + "b (F)V": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "a (II)V": { + "access": 1 + }, + "a (Ljy;)V": { + "access": 2 + }, + "a (IF)V": { + "access": 2 + } + } + }, + "ek": { + "name": "ek", + "access": 33, + "superName": "io/netty/channel/SimpleChannelInboundHandler", + "methods": { + "l ()V": { + "access": 1 + }, + "a (Lff;[Lio/netty/util/concurrent/GenericFutureListener;)V": { + "access": 2 + }, + "a (Lio/netty/channel/ChannelHandlerContext;Lff;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lfg;)V": { + "access": 1 + }, + "b ()Ljava/net/SocketAddress;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "h ()Z": { + "access": 1 + }, + "channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V": { + "access": 4100, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "(Lio/netty/channel/ChannelHandlerContext;Lff;)V" + }, + "override": "io/netty/channel/SimpleChannelInboundHandler" + }, + "channelInactive (Lio/netty/channel/ChannelHandlerContext;)V": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/channel/ChannelInboundHandler" + }, + "m ()V": { + "access": 2 + }, + "a ()V": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "a (Lff;Lio/netty/util/concurrent/GenericFutureListener;[Lio/netty/util/concurrent/GenericFutureListener;)V": { + "access": 129 + }, + "f ()Z": { + "access": 1 + }, + "a (Ljava/net/SocketAddress;)Lek;": { + "access": 9 + }, + "a (Lep;)V": { + "access": 1 + }, + "j ()Leu;": { + "access": 1 + }, + "a (Lel;)V": { + "access": 1 + }, + "a (Lek;)Lio/netty/channel/Channel;": { + "access": 4104 + }, + "a (Lff;)V": { + "access": 1 + }, + "k ()V": { + "access": 1 + }, + "a (Ljavax/crypto/SecretKey;)V": { + "access": 1 + }, + "channelActive (Lio/netty/channel/ChannelHandlerContext;)V": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/channel/ChannelInboundHandler" + }, + "i ()Lep;": { + "access": 1 + }, + "a (Leu;)V": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/channel/ChannelHandler" + }, + "c ()Z": { + "access": 1 + }, + "a (Ljava/net/InetAddress;IZ)Lek;": { + "access": 9 + } + } + }, + "bfj": { + "name": "bfj", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "a (Lcq;)Lbfj;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lbfj;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;I[Lbfj$b;)V": { + "access": 130 + }, + "values ()[Lbfj;": { + "access": 9 + }, + "a (I)Lbfj$b;": { + "access": 1 + } + } + }, + "el": { + "name": "el", + "access": 16417, + "superName": "java/lang/Enum", + "methods": { + "a (Lfg;Lff;)Ljava/lang/Integer;": { + "access": 1 + }, + "a (I)Lel;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;IILel$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e (Ljava/lang/String;II)V": { + "access": 2 + }, + "valueOf (Ljava/lang/String;)Lel;": { + "access": 9 + }, + "a (Lfg;Ljava/lang/Class;)Lel;": { + "access": 4 + }, + "a (Lfg;I)Lff;": { + "access": 1, + "exceptions": [ + "java/lang/IllegalAccessException", + "java/lang/InstantiationException" + ] + }, + "a (Lff;)Lel;": { + "access": 9 + }, + "values ()[Lel;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "bfm": { + "name": "bfm", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1025 + }, + "a (Ljava/awt/image/BufferedImage;)Ljava/awt/image/BufferedImage;": { + "access": 1025 + } + } + }, + "em": { + "name": "em", + "access": 33, + "superName": "io/netty/buffer/ByteBuf", + "methods": { + "writeBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "f ()J": { + "access": 1 + }, + "order ()Ljava/nio/ByteOrder;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getBytes (ILjava/nio/channels/GatheringByteChannel;I)I": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "io/netty/buffer/ByteBuf" + }, + "readBytes (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "internalNioBuffer (II)Ljava/nio/ByteBuffer;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "order (Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "arrayOffset ()I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "bytesBefore (IIB)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "a (Ljava/lang/Class;)Ljava/lang/Enum;": { + "access": 1 + }, + "setChar (II)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readableBytes ()I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getChar (I)C": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writeBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getBytes (I[B)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setInt (II)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "d ()Leu;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "getDouble (I)D": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getUnsignedShort (I)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "slice ()Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "isReadable (I)Z": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setFloat (IF)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "isDirect ()Z": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setBoolean (IZ)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "indexOf (IIB)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "retain ()Lio/netty/util/ReferenceCounted;": { + "access": 4161, + "bouncer": { + "name": "retain", + "desc": "()Lio/netty/buffer/ByteBuf;" + }, + "override": "io/netty/util/ReferenceCounted" + }, + "slice (II)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "maxWritableBytes ()I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setByte (II)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writeBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setZero (II)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "forEachByteDesc (IILio/netty/buffer/ByteBufProcessor;)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Leu;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "readMedium ()I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readBoolean ()Z": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "a ()[B": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "capacity (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setMedium (II)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setDouble (ID)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "c (I)Ljava/lang/String;": { + "access": 1 + }, + "c ()Lcj;": { + "access": 1 + }, + "writeBytes ([B)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writeChar (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "a ([B)V": { + "access": 1 + }, + "writeMedium (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "g ()Ljava/util/UUID;": { + "access": 1 + }, + "writeBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "\u003cinit\u003e (Lio/netty/buffer/ByteBuf;)V": { + "access": 1 + }, + "readBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "forEachByte (Lio/netty/buffer/ByteBufProcessor;)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getFloat (I)F": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setBytes (I[BII)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writeFloat (F)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "isWritable (I)Z": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readBytes ([BII)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setBytes (ILjava/nio/channels/ScatteringByteChannel;I)I": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "io/netty/buffer/ByteBuf" + }, + "getBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "bytesBefore (B)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "duplicate ()Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readBytes ([B)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "retain (I)Lio/netty/util/ReferenceCounted;": { + "access": 4161, + "bouncer": { + "name": "retain", + "desc": "(I)Lio/netty/buffer/ByteBuf;" + }, + "override": "io/netty/util/ReferenceCounted" + }, + "array ()[B": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "isReadable ()Z": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writeBytes (Ljava/nio/channels/ScatteringByteChannel;I)I": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "io/netty/buffer/ByteBuf" + }, + "ensureWritable (IZ)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writeShort (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readUnsignedInt ()J": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setBytes (I[B)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "nioBuffer (II)Ljava/nio/ByteBuffer;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readLong ()J": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readChar ()C": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "memoryAddress ()J": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "release ()Z": { + "access": 1, + "override": "io/netty/util/ReferenceCounted" + }, + "getUnsignedByte (I)S": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "markReaderIndex ()Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "hasArray ()Z": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writerIndex (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "hasMemoryAddress ()Z": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setBytes (ILjava/io/InputStream;I)I": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "io/netty/buffer/ByteBuf" + }, + "readerIndex (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "resetReaderIndex ()Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writeLong (J)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "nioBuffer ()Ljava/nio/ByteBuffer;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setLong (IJ)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "release (I)Z": { + "access": 1, + "override": "io/netty/util/ReferenceCounted" + }, + "capacity ()I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readUnsignedMedium ()I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "markWriterIndex ()Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writeByte (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "toString (IILjava/nio/charset/Charset;)Ljava/lang/String;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "forEachByte (IILio/netty/buffer/ByteBufProcessor;)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "nioBufferCount ()I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "copy ()Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "nioBuffers ()[Ljava/nio/ByteBuffer;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writeZero (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "unwrap ()Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readByte ()B": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "compareTo (Lio/netty/buffer/ByteBuf;)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "clear ()Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "bytesBefore (IB)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writeDouble (D)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readBytes (Ljava/nio/channels/GatheringByteChannel;I)I": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "io/netty/buffer/ByteBuf" + }, + "retain ()Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "a (Ljava/lang/Enum;)V": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "a (Ljava/util/UUID;)V": { + "access": 1 + }, + "getUnsignedInt (I)J": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "h ()Ldn;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "getShort (I)S": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "setShort (II)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writeBytes ([BII)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readUnsignedByte ()S": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "retain (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writerIndex ()I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writeInt (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "i ()Lzx;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "setIndex (II)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getInt (I)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readInt ()I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "maxCapacity ()I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "alloc ()Lio/netty/buffer/ByteBufAllocator;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "a (Ljava/lang/String;)Lem;": { + "access": 1 + }, + "isWritable ()Z": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "copy (II)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "refCnt ()I": { + "access": 1, + "override": "io/netty/util/ReferenceCounted" + }, + "a (Lzx;)V": { + "access": 1 + }, + "getBoolean (I)Z": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "compareTo (Ljava/lang/Object;)I": { + "access": 4161, + "bouncer": { + "name": "compareTo", + "desc": "(Lio/netty/buffer/ByteBuf;)I" + }, + "override": "java/lang/Comparable" + }, + "writableBytes ()I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "discardSomeReadBytes ()Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readUnsignedShort ()I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "a (I)I": { + "access": 9 + }, + "setBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getMedium (I)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "writeBytes (Ljava/io/InputStream;I)I": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "io/netty/buffer/ByteBuf" + }, + "getBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getLong (I)J": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "resetWriterIndex ()Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readShort ()S": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getBytes (I[BII)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getBytes (ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "io/netty/buffer/ByteBuf" + }, + "writeBoolean (Z)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "a (Ldn;)V": { + "access": 1 + }, + "ensureWritable (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getByte (I)B": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readFloat ()F": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readerIndex ()I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "toString (Ljava/nio/charset/Charset;)Ljava/lang/String;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "discardReadBytes ()Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readSlice (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "getUnsignedMedium (I)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readDouble ()D": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "nioBuffers (II)[Ljava/nio/ByteBuffer;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "forEachByteDesc (Lio/netty/buffer/ByteBufProcessor;)I": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "skipBytes (I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "override": "io/netty/buffer/ByteBuf" + }, + "readBytes (Ljava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "io/netty/buffer/ByteBuf" + }, + "b (J)V": { + "access": 1 + }, + "a (Lcj;)V": { + "access": 1 + } + } + }, + "aff$1": { + "name": "aff$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "\u003cinit\u003e (Ladm;Lcj;)V": { + "access": 0 + } + } + }, + "bhw$1": { + "name": "bhw$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "atk$1": { + "name": "atk$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/io/FilenameFilter" + ], + "methods": { + "accept (Ljava/io/File;Ljava/lang/String;)Z": { + "access": 1, + "override": "java/io/FilenameFilter" + }, + "\u003cinit\u003e (Latk;)V": { + "access": 0 + } + } + }, + "bfl": { + "name": "bfl", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "q ()V": { + "access": 9 + }, + "a (Z)V": { + "access": 9 + }, + "g ()V": { + "access": 9 + }, + "i (I)V": { + "access": 9 + }, + "b (FFFF)V": { + "access": 9 + }, + "z ()V": { + "access": 9 + }, + "a (ZZZZ)V": { + "access": 9 + }, + "a (Lbfl$o;ILjava/nio/FloatBuffer;)V": { + "access": 9 + }, + "c (I)V": { + "access": 9 + }, + "d (I)V": { + "access": 9 + }, + "a (DDDDDD)V": { + "access": 9 + }, + "c (FFF)V": { + "access": 9 + }, + "r ()V": { + "access": 9 + }, + "j (I)V": { + "access": 9 + }, + "a (D)V": { + "access": 9 + }, + "a (F)V": { + "access": 9 + }, + "f ()V": { + "access": 9 + }, + "a (FF)V": { + "access": 9 + }, + "a (FFF)V": { + "access": 9 + }, + "b (FFF)V": { + "access": 9 + }, + "a (Lbfl$o;)V": { + "access": 9 + }, + "e ()V": { + "access": 9 + }, + "e (I)V": { + "access": 9 + }, + "B ()V": { + "access": 9 + }, + "C ()V": { + "access": 9 + }, + "h (I)V": { + "access": 9 + }, + "d ()V": { + "access": 9 + }, + "n (I)V": { + "access": 9 + }, + "a (ILjava/nio/FloatBuffer;)V": { + "access": 9 + }, + "a (DDD)V": { + "access": 9 + }, + "k ()V": { + "access": 9 + }, + "a (IIII)V": { + "access": 9 + }, + "u ()V": { + "access": 9 + }, + "A ()V": { + "access": 9 + }, + "c ()V": { + "access": 9 + }, + "a (II)V": { + "access": 9 + }, + "c (FFFF)V": { + "access": 9 + }, + "b (I)V": { + "access": 9 + }, + "l ()V": { + "access": 9 + }, + "E ()V": { + "access": 9 + }, + "b ()V": { + "access": 9 + }, + "b (II)V": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "v ()V": { + "access": 9 + }, + "f (I)V": { + "access": 9 + }, + "m ()V": { + "access": 9 + }, + "c (F)V": { + "access": 9 + }, + "a (FFFF)V": { + "access": 9 + }, + "a ()V": { + "access": 9 + }, + "w ()V": { + "access": 9 + }, + "a (I)V": { + "access": 9 + }, + "D ()V": { + "access": 9 + }, + "m (I)V": { + "access": 9 + }, + "j ()V": { + "access": 9 + }, + "b (Lbfl$o;)V": { + "access": 9 + }, + "n ()V": { + "access": 9 + }, + "a (Lbfl$o;I)V": { + "access": 9 + }, + "g (I)V": { + "access": 9 + }, + "a (Ljava/nio/FloatBuffer;)V": { + "access": 9 + }, + "x ()V": { + "access": 9 + }, + "i ()V": { + "access": 9 + }, + "G ()V": { + "access": 9 + }, + "o ()V": { + "access": 9 + }, + "c (Lbfl$o;)Lbfl$p;": { + "access": 10 + }, + "F ()V": { + "access": 9 + }, + "h ()V": { + "access": 9 + }, + "b (F)V": { + "access": 9 + }, + "y ()I": { + "access": 9 + }, + "p ()V": { + "access": 9 + }, + "b (IIII)V": { + "access": 9 + }, + "b (DDD)V": { + "access": 9 + }, + "a (IF)V": { + "access": 9 + }, + "o (I)V": { + "access": 9 + } + } + }, + "en": { + "name": "en", + "access": 33, + "superName": "io/netty/handler/codec/ByteToMessageDecoder", + "methods": { + "\u003cinit\u003e (Lfg;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/handler/codec/ByteToMessageDecoder" + } + } + }, + "bnp$1": { + "name": "bnp$1", + "access": 32, + "superName": "com/google/common/cache/CacheLoader", + "methods": { + "load (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/mojang/authlib/GameProfile;)Ljava/util/Map;" + }, + "override": "com/google/common/cache/CacheLoader" + }, + "\u003cinit\u003e (Lbnp;)V": { + "access": 0 + }, + "a (Lcom/mojang/authlib/GameProfile;)Ljava/util/Map;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + } + } + }, + "bfo": { + "name": "bfo", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()V": { + "access": 1 + }, + "a (Lzw;)Lbmi;": { + "access": 1 + }, + "a (Lzx;)Lboq;": { + "access": 1 + }, + "a (Lzw;Lbfp;)V": { + "access": 1 + }, + "a (Lzw;ILbov;)V": { + "access": 1 + }, + "b (Lzw;I)Lboq;": { + "access": 4 + }, + "c (Lzw;I)I": { + "access": 2 + }, + "b (Lzx;)I": { + "access": 4 + }, + "\u003cinit\u003e (Lbou;)V": { + "access": 1 + }, + "a (Lzw;I)Lbmi;": { + "access": 1 + }, + "a ()Lbou;": { + "access": 1 + } + } + }, + "eo": { + "name": "eo", + "access": 33, + "superName": "io/netty/handler/codec/MessageToByteEncoder", + "methods": { + "a (Lio/netty/channel/ChannelHandlerContext;Lff;Lio/netty/buffer/ByteBuf;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ] + }, + "encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V": { + "access": 4100, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "(Lio/netty/channel/ChannelHandlerContext;Lff;Lio/netty/buffer/ByteBuf;)V" + }, + "override": "io/netty/handler/codec/MessageToByteEncoder" + }, + "\u003cinit\u003e (Lfg;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bnp$2": { + "name": "bnp$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "bfm" + ], + "methods": { + "a ()V": { + "access": 1, + "override": "bfm" + }, + "a (Ljava/awt/image/BufferedImage;)Ljava/awt/image/BufferedImage;": { + "access": 1, + "override": "bfm" + }, + "\u003cinit\u003e (Lbnp;Lbfm;Lbnp$a;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Ljy;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V": { + "access": 0 + } + } + }, + "bfn": { + "name": "bfn", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lpr;Lzx;Lbgr$b;)V": { + "access": 1 + }, + "f (F)V": { + "access": 2 + }, + "b ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "b (Lbet;)V": { + "access": 2 + }, + "a (Lbet;FFF)V": { + "access": 2 + }, + "a ()V": { + "access": 1 + }, + "a (Lbet;FF)V": { + "access": 2 + }, + "b (Lbln;)V": { + "access": 2 + }, + "a (F)V": { + "access": 1 + }, + "a (FF)V": { + "access": 2 + }, + "d (F)V": { + "access": 2 + }, + "b (FF)V": { + "access": 2 + }, + "a (FLbmi;)V": { + "access": 2 + }, + "d ()V": { + "access": 2 + }, + "e (F)V": { + "access": 2 + }, + "a (Lbew;F)V": { + "access": 2 + }, + "a (Lbln;)V": { + "access": 2 + }, + "a (Lbet;)V": { + "access": 2 + }, + "a (Lafh;)Z": { + "access": 2 + }, + "a (FLbet;)V": { + "access": 2 + }, + "b (F)V": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "c (F)F": { + "access": 2 + }, + "a (Lbet;F)V": { + "access": 2 + } + } + }, + "ep": { + "name": "ep", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Leu;)V": { + "access": 1025 + } + } + }, + "bnp$3": { + "name": "bnp$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Lbnp;Lcom/mojang/authlib/GameProfile;ZLbnp$a;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "eq": { + "name": "eq", + "access": 33, + "superName": "io/netty/handler/codec/ByteToMessageDecoder", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/handler/codec/ByteToMessageDecoder" + } + } + }, + "bfp": { + "name": "bfp", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lzx;)Lbov;": { + "access": 1025 + } + } + }, + "er": { + "name": "er", + "access": 33, + "superName": "io/netty/handler/codec/MessageToByteEncoder", + "methods": { + "a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ] + }, + "encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V": { + "access": 4100, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "(Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V" + }, + "override": "io/netty/handler/codec/MessageToByteEncoder" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bfs": { + "name": "bfs", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bfm" + ], + "methods": { + "a ()V": { + "access": 1, + "override": "bfm" + }, + "c (IIII)Z": { + "access": 2 + }, + "a (IIII)V": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/awt/image/BufferedImage;)Ljava/awt/image/BufferedImage;": { + "access": 1, + "override": "bfm" + }, + "b (IIII)V": { + "access": 2 + } + } + }, + "es": { + "name": "es", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "eu" + ], + "methods": { + "a (Ljava/lang/String;)Leu;": { + "access": 1, + "override": "eu" + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/Iterable;)Ljava/util/Iterator;": { + "access": 9 + }, + "iterator ()Ljava/util/Iterator;": { + "access": 1, + "override": "java/lang/Iterable" + }, + "c ()Ljava/lang/String;": { + "access": 17, + "override": "eu" + }, + "d ()Ljava/lang/String;": { + "access": 17, + "override": "eu" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Leu;)Leu;": { + "access": 1, + "override": "eu" + }, + "a ()Ljava/util/List;": { + "access": 1, + "override": "eu" + }, + "a (Lez;)Leu;": { + "access": 1, + "override": "eu" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "b ()Lez;": { + "access": 1, + "override": "eu" + } + } + }, + "bfr": { + "name": "bfr", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ado", + "bnj" + ], + "methods": { + "a (Lwn;ILcj;I)V": { + "access": 1, + "override": "ado" + }, + "q ()V": { + "access": 2 + }, + "c (FI)V": { + "access": 2 + }, + "a (Lpk;D)Lorg/lwjgl/util/vector/Vector3f;": { + "access": 4 + }, + "a (Lcj;Lbht;)Z": { + "access": 2 + }, + "r ()V": { + "access": 2 + }, + "a (J)V": { + "access": 1 + }, + "a (Lpk;)V": { + "access": 1, + "override": "ado" + }, + "a (Ljava/util/Collection;Ljava/util/Collection;)V": { + "access": 1 + }, + "b (IIIIII)V": { + "access": 2 + }, + "a (Lpk;Lbia;F)V": { + "access": 1 + }, + "a (Ljava/util/Iterator;)V": { + "access": 2 + }, + "a (Lwn;Ljava/lang/String;DDDFF)V": { + "access": 1, + "override": "ado" + }, + "c (Lcj;)Ljava/util/Set;": { + "access": 2 + }, + "b (IZDDDDDD[I)Lbeb;": { + "access": 130 + }, + "e ()V": { + "access": 4 + }, + "b (FI)V": { + "access": 1 + }, + "a (Laug;)V": { + "access": 9 + }, + "s ()V": { + "access": 2 + }, + "a (Lbfx;Lbfd;Lpk;F)V": { + "access": 1 + }, + "d ()Z": { + "access": 4 + }, + "a (DDD)V": { + "access": 2 + }, + "k ()V": { + "access": 1 + }, + "b (ILcj;I)V": { + "access": 1, + "override": "ado" + }, + "a (Lcj;Lbht;Lcq;)Lbht;": { + "access": 2 + }, + "a (Lbdb;)V": { + "access": 1 + }, + "t ()V": { + "access": 2 + }, + "c ()V": { + "access": 1 + }, + "b (Lcj;)V": { + "access": 1, + "override": "ado" + }, + "a (II)V": { + "access": 1 + }, + "a (Ljava/lang/String;DDDFF)V": { + "access": 1, + "override": "ado" + }, + "b ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lwn;Lauh;IF)V": { + "access": 1 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "a (DDDF)Z": { + "access": 1 + }, + "a (Ljava/lang/String;Lcj;)V": { + "access": 1, + "override": "ado" + }, + "a (IZDDDDDD[I)V": { + "access": 129, + "override": "ado" + }, + "a (IIIIII)V": { + "access": 1, + "override": "ado" + }, + "m ()V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "a (FI)V": { + "access": 1 + }, + "b (Lpk;)V": { + "access": 1, + "override": "ado" + }, + "a (ILcj;I)V": { + "access": 1, + "override": "ado" + }, + "a (Lcy;DDDDDD[I)V": { + "access": 130 + }, + "a (Lpk;DLbia;IZ)V": { + "access": 1 + }, + "a (Lbfd;FZ)V": { + "access": 2 + }, + "a (Lbfd;)V": { + "access": 2 + }, + "j ()V": { + "access": 1 + }, + "n ()V": { + "access": 2 + }, + "g ()Ljava/lang/String;": { + "access": 1 + }, + "a (Ladf;DILpk;)I": { + "access": 1 + }, + "a (Ladf;)V": { + "access": 2 + }, + "a (Lbni;)V": { + "access": 1, + "override": "bnj" + }, + "o ()V": { + "access": 2 + }, + "f ()Ljava/lang/String;": { + "access": 1 + }, + "a (Laug;IIII)V": { + "access": 9 + }, + "p ()V": { + "access": 2 + }, + "a (Lpk;F)V": { + "access": 1 + }, + "a (Lcj;)V": { + "access": 1, + "override": "ado" + } + } + }, + "et": { + "name": "et", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Let$a;Ljava/lang/String;)V": { + "access": 1 + }, + "a ()Let$a;": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "eu": { + "name": "eu", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Iterable" + ], + "methods": { + "a (Ljava/lang/String;)Leu;": { + "access": 1025 + }, + "a (Leu;)Leu;": { + "access": 1025 + }, + "a ()Ljava/util/List;": { + "access": 1025 + }, + "a (Lez;)Leu;": { + "access": 1025 + }, + "e ()Ljava/lang/String;": { + "access": 1025 + }, + "b ()Lez;": { + "access": 1025 + }, + "c ()Ljava/lang/String;": { + "access": 1025 + }, + "f ()Leu;": { + "access": 1025 + }, + "d ()Ljava/lang/String;": { + "access": 1025 + } + } + }, + "bft": { + "name": "bft", + "access": 33, + "superName": "bfh", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladf;)V": { + "access": 1, + "override": "bfh" + } + } + }, + "ev": { + "name": "ev", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lm;Leu;Lpk;)Leu;": { + "access": 9, + "exceptions": [ + "bz" + ] + } + } + }, + "bfw": { + "name": "bfw", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "c (II)V": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "b (II)V": { + "access": 1 + }, + "e ()V": { + "access": 1 + }, + "d ()V": { + "access": 1 + }, + "a (FFFF)V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "f ()V": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "a (II)V": { + "access": 1 + }, + "a (IIZ)V": { + "access": 1 + }, + "\u003cinit\u003e (IIZ)V": { + "access": 1 + } + } + }, + "ew": { + "name": "ew", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a ()Lew$a;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Lew$a;Leu;)V": { + "access": 1 + }, + "b ()Leu;": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "ex": { + "name": "ex", + "access": 33, + "superName": "es", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + }, + "h ()Ljava/lang/String;": { + "access": 1 + }, + "b (Ljava/lang/String;)V": { + "access": 1 + }, + "e ()Ljava/lang/String;": { + "access": 1, + "override": "eu" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "f ()Leu;": { + "access": 4097, + "bouncer": { + "name": "i", + "desc": "()Lex;" + }, + "override": "eu" + }, + "i ()Lex;": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "g ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "bfy": { + "name": "bfy", + "access": 33, + "superName": "bfh", + "methods": { + "a ()V": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladf;)V": { + "access": 1, + "override": "bfh" + } + } + }, + "ey": { + "name": "ey", + "access": 33, + "superName": "es", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "e ()Ljava/lang/String;": { + "access": 1, + "override": "eu" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "f ()Leu;": { + "access": 4097, + "bouncer": { + "name": "h", + "desc": "()Ley;" + }, + "override": "eu" + }, + "h ()Ley;": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "g ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "bfx": { + "name": "bfx", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "c ()Lbfd;": { + "access": 1 + }, + "a ()Lbfx;": { + "access": 9 + }, + "b ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "ez": { + "name": "ez", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "e (Lez;Ljava/lang/Boolean;)Ljava/lang/Boolean;": { + "access": 4104 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c (Ljava/lang/Boolean;)Lez;": { + "access": 1 + }, + "a (Lez;Let;)Let;": { + "access": 4104 + }, + "j (Lez;)Lew;": { + "access": 4104 + }, + "j ()Ljava/lang/String;": { + "access": 1 + }, + "b (Lez;)Ljava/lang/Boolean;": { + "access": 4104 + }, + "b ()Z": { + "access": 1 + }, + "g (Lez;)La;": { + "access": 4104 + }, + "f ()Z": { + "access": 1 + }, + "b (Lez;Ljava/lang/Boolean;)Ljava/lang/Boolean;": { + "access": 4104 + }, + "f (Lez;)Ljava/lang/Boolean;": { + "access": 4104 + }, + "a (La;)Lez;": { + "access": 1 + }, + "b (Ljava/lang/Boolean;)Lez;": { + "access": 1 + }, + "c (Lez;)Ljava/lang/Boolean;": { + "access": 4104 + }, + "i ()Lew;": { + "access": 1 + }, + "a (Lez;La;)La;": { + "access": 4104 + }, + "e ()Z": { + "access": 1 + }, + "m ()Lez;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)Lez;": { + "access": 1 + }, + "a (Lez;Lew;)Lew;": { + "access": 4104 + }, + "e (Lez;)Ljava/lang/Boolean;": { + "access": 4104 + }, + "e (Ljava/lang/Boolean;)Lez;": { + "access": 1 + }, + "a (Ljava/lang/Boolean;)Lez;": { + "access": 1 + }, + "d (Lez;Ljava/lang/Boolean;)Ljava/lang/Boolean;": { + "access": 4104 + }, + "a (Lez;Ljava/lang/Boolean;)Ljava/lang/Boolean;": { + "access": 4104 + }, + "d ()Z": { + "access": 1 + }, + "h (Lez;)Ljava/lang/String;": { + "access": 4104 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "h ()Let;": { + "access": 1 + }, + "k ()Ljava/lang/String;": { + "access": 1 + }, + "a (Lez;Ljava/lang/String;)Ljava/lang/String;": { + "access": 4104 + }, + "a (Lez;)Lez;": { + "access": 1 + }, + "d (Lez;)Ljava/lang/Boolean;": { + "access": 4104 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Let;)Lez;": { + "access": 1 + }, + "d (Ljava/lang/Boolean;)Lez;": { + "access": 1 + }, + "a ()La;": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "a (Lew;)Lez;": { + "access": 1 + }, + "o ()Lez;": { + "access": 2 + }, + "n ()Lez;": { + "access": 1 + }, + "c (Lez;Ljava/lang/Boolean;)Ljava/lang/Boolean;": { + "access": 4104 + }, + "c ()Z": { + "access": 1 + }, + "i (Lez;)Let;": { + "access": 4104 + } + } + }, + "bfz": { + "name": "bfz", + "access": 33, + "superName": "bfe", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lbmt;)V": { + "access": 1 + }, + "a (Lbfd;)V": { + "access": 1, + "override": "bfe" + } + } + }, + "bfd$1": { + "name": "bfd$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/Comparator" + ], + "methods": { + "\u003cinit\u003e (Lbfd;[F)V": { + "access": 0 + }, + "compare (Ljava/lang/Object;Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Ljava/lang/Integer;Ljava/lang/Integer;)I" + }, + "override": "java/util/Comparator" + }, + "a (Ljava/lang/Integer;Ljava/lang/Integer;)I": { + "access": 1 + } + } + }, + "bfd$2": { + "name": "bfd$2", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "fa": { + "name": "fa", + "access": 33, + "superName": "es", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "h ()Lfa;": { + "access": 1 + }, + "e ()Ljava/lang/String;": { + "access": 1, + "override": "eu" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "f ()Leu;": { + "access": 4097, + "bouncer": { + "name": "h", + "desc": "()Lfa;" + }, + "override": "eu" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "g ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "bgb": { + "name": "bgb", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lafh;F)V": { + "access": 1 + } + } + }, + "fb": { + "name": "fb", + "access": 33, + "superName": "es", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "h ()Lfb;": { + "access": 1 + }, + "i ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "g ()V": { + "access": 32 + }, + "b (Ljava/lang/String;)V": { + "access": 4 + }, + "iterator ()Ljava/util/Iterator;": { + "access": 1, + "override": "java/lang/Iterable" + }, + "\u003cinit\u003e (Ljava/lang/String;[Ljava/lang/Object;)V": { + "access": 129 + }, + "a (I)Leu;": { + "access": 2 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Lez;)Leu;": { + "access": 1, + "override": "eu" + }, + "e ()Ljava/lang/String;": { + "access": 1, + "override": "eu" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "j ()[Ljava/lang/Object;": { + "access": 1 + }, + "f ()Leu;": { + "access": 4097, + "bouncer": { + "name": "h", + "desc": "()Lfb;" + }, + "override": "eu" + } + } + }, + "bga": { + "name": "bga", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "a (I)V": { + "access": 4 + }, + "a (III)I": { + "access": 2 + }, + "a (Lbhu;)V": { + "access": 4 + }, + "a (IIIIII)V": { + "access": 1 + }, + "a (Lcj;)Lbht;": { + "access": 4 + }, + "a (DD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;ILbfr;Lbhu;)V": { + "access": 1 + } + } + }, + "fc": { + "name": "fc", + "access": 33, + "superName": "java/lang/IllegalArgumentException", + "methods": { + "\u003cinit\u003e (Lfb;Ljava/lang/Throwable;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lfb;I)V": { + "access": 1 + }, + "\u003cinit\u003e (Lfb;Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "bgd": { + "name": "bgd", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnj" + ], + "methods": { + "a (Lalz;Lcj;Ladq;Lbfd;)Z": { + "access": 1 + }, + "b ()Lbgf;": { + "access": 1 + }, + "a (Lalz;Lcj;)Lboq;": { + "access": 2 + }, + "a (Lalz;Lcj;Lbmi;Ladq;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbgc;Lavh;)V": { + "access": 1 + }, + "a ()Lbgc;": { + "access": 1 + }, + "a (Lalz;Ladq;Lcj;)Lboq;": { + "access": 1 + }, + "a (Lbni;)V": { + "access": 1, + "override": "bnj" + }, + "a (Lalz;F)V": { + "access": 1 + }, + "a (Lafh;I)Z": { + "access": 1 + } + } + }, + "net/minecraft/realms/RealmsConnect": { + "name": "net/minecraft/realms/RealmsConnect", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "access$000 (Lnet/minecraft/realms/RealmsConnect;)Z": { + "access": 4104 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lnet/minecraft/realms/RealmsScreen;)V": { + "access": 1 + }, + "access$100 (Lnet/minecraft/realms/RealmsConnect;)Lek;": { + "access": 4104 + }, + "abort ()V": { + "access": 1 + }, + "tick ()V": { + "access": 1 + }, + "access$300 ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "connect (Ljava/lang/String;I)V": { + "access": 1 + }, + "access$102 (Lnet/minecraft/realms/RealmsConnect;Lek;)Lek;": { + "access": 4104 + }, + "access$200 (Lnet/minecraft/realms/RealmsConnect;)Lnet/minecraft/realms/RealmsScreen;": { + "access": 4104 + } + } + }, + "bgc": { + "name": "bgc", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ([Lafh;)V": { + "access": 129 + }, + "a (Lafh;Lbgy;)V": { + "access": 1 + }, + "b ()Lbou;": { + "access": 1 + }, + "a ()Lbgv;": { + "access": 1 + }, + "a (Lalz;)Lbmi;": { + "access": 1 + }, + "d ()V": { + "access": 2 + }, + "c ()V": { + "access": 1 + }, + "b (Lalz;)Lboq;": { + "access": 1 + }, + "\u003cinit\u003e (Lbou;)V": { + "access": 1 + } + } + }, + "bgf": { + "name": "bgf", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (FFFFLjava/util/List;)V": { + "access": 2 + }, + "a (Ladq;Lboq;Lalz;Lcj;Lbfd;)Z": { + "access": 1 + }, + "a (Lboq;Lalz;FZ)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladq;Lafh;Lcj;Lcq;IZLbfd;Ljava/util/List;Ljava/util/BitSet;)V": { + "access": 2 + }, + "a (Ladq;Lboq;Lalz;Lcj;Lbfd;Z)Z": { + "access": 1 + }, + "a (Ladq;Lboq;Lafh;Lcj;Lbfd;Z)Z": { + "access": 1 + }, + "a (Ladq;Lafh;Lcj;Lbfd;Ljava/util/List;[FLjava/util/BitSet;Lbgf$b;)V": { + "access": 2 + }, + "b (Ladq;Lboq;Lafh;Lcj;Lbfd;Z)Z": { + "access": 1 + }, + "a (Lboq;FFFF)V": { + "access": 1 + }, + "a (Lafh;[ILcq;[FLjava/util/BitSet;)V": { + "access": 2 + } + } + }, + "ew$a": { + "name": "ew$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lew$a;": { + "access": 9 + }, + "a (Ljava/lang/String;)Lew$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "a ()Z": { + "access": 1 + }, + "values ()[Lew$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;Z)V": { + "access": 2 + } + } + }, + "ff": { + "name": "ff", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lem;)V": { + "access": 1025, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Lep;)V": { + "access": 1025 + }, + "b (Lem;)V": { + "access": 1025, + "exceptions": [ + "java/io/IOException" + ] + } + } + }, + "aqw$i": { + "name": "aqw$i", + "access": 33, + "superName": "aqw$n", + "methods": { + "c (II)I": { + "access": 4, + "override": "aqw$n" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$i;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "\u003cinit\u003e (Laqw$k;ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + } + } + }, + "bge": { + "name": "bge", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 4 + }, + "a (Ladq;Lcj;Larm;)F": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladq;Lalz;Lcj;Lbfd;)Z": { + "access": 1 + } + } + }, + "fg": { + "name": "fg", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lfg;": { + "access": 9 + }, + "values ()[Lfg;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "aqw$j": { + "name": "aqw$j", + "access": 33, + "superName": "aqw$n", + "methods": { + "c (II)I": { + "access": 4, + "override": "aqw$n" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$j;": { + "access": 9 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "\u003cinit\u003e (Laqw$k;ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + } + } + }, + "bgh": { + "name": "bgh", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 2 + }, + "\u003cinit\u003e (Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;Ljava/util/Map;Lbgj;Z)V": { + "access": 1 + }, + "a (Lcq;)[F": { + "access": 2 + } + } + }, + "fh": { + "name": "fh", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lff;Lep;Lod;)V": { + "access": 9, + "exceptions": [ + "ki" + ] + } + } + }, + "aqw$k": { + "name": "aqw$k", + "access": 33, + "superName": "aqw$p", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Laec;ILjava/util/Random;IILjava/util/List;I)V": { + "access": 1 + }, + "e ()Laec;": { + "access": 1 + } + } + }, + "bgg": { + "name": "bgg", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()[I": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "d ()Lcq;": { + "access": 1 + }, + "\u003cinit\u003e ([IILcq;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1 + } + } + }, + "fi": { + "name": "fi", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (DDDFFLjava/util/Set;)V": { + "access": 1 + }, + "b ()D": { + "access": 1 + }, + "a ()D": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "c ()D": { + "access": 1 + }, + "e ()F": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "d ()F": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "f ()Ljava/util/Set;": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "aqw$l": { + "name": "aqw$l", + "access": 33, + "superName": "aqw$o", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;)Laqe;": { + "access": 9 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + }, + "\u003cinit\u003e (Laqw$k;ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + } + } + }, + "net/minecraft/realms/RealmsButton": { + "name": "net/minecraft/realms/RealmsButton", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (IIIIILjava/lang/String;)V": { + "access": 1 + }, + "active (Z)V": { + "access": 1 + }, + "msg (Ljava/lang/String;)V": { + "access": 1 + }, + "renderBg (II)V": { + "access": 1 + }, + "active ()Z": { + "access": 1 + }, + "render (II)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "blit (IIIIII)V": { + "access": 1 + }, + "\u003cinit\u003e (IIILjava/lang/String;)V": { + "access": 1 + }, + "getProxy ()Lavs;": { + "access": 1 + }, + "getHeight ()I": { + "access": 1 + }, + "released (II)V": { + "access": 1 + }, + "y ()I": { + "access": 1 + }, + "getWidth ()I": { + "access": 1 + }, + "getYImage (Z)I": { + "access": 1 + }, + "id ()I": { + "access": 1 + }, + "clicked (II)V": { + "access": 1 + } + } + }, + "bgj": { + "name": "bgj", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lorg/lwjgl/util/vector/Vector3f;Lcq$a;FZ)V": { + "access": 1 + } + } + }, + "fj": { + "name": "fj", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "ep" + ], + "methods": { + "a (Lhf;)V": { + "access": 1025 + }, + "a (Lfz;)V": { + "access": 1025 + }, + "a (Lfv;)V": { + "access": 1025 + }, + "a (Lhj;)V": { + "access": 1025 + }, + "a (Lgn;)V": { + "access": 1025 + }, + "a (Lgr;)V": { + "access": 1025 + }, + "a (Lgv;)V": { + "access": 1025 + }, + "a (Lfk;)V": { + "access": 1025 + }, + "a (Lhb;)V": { + "access": 1025 + }, + "a (Lfn;)V": { + "access": 1025 + }, + "a (Lgy;)V": { + "access": 1025 + }, + "a (Lhu;)V": { + "access": 1025 + }, + "a (Lfr;)V": { + "access": 1025 + }, + "a (Lhq;)V": { + "access": 1025 + }, + "a (Lhy;)V": { + "access": 1025 + }, + "a (Lgk;)V": { + "access": 1025 + }, + "a (Lgg;)V": { + "access": 1025 + }, + "a (Lib;)V": { + "access": 1025 + }, + "a (Lgc;)V": { + "access": 1025 + }, + "a (Lfy;)V": { + "access": 1025 + }, + "a (Lhg;)V": { + "access": 1025 + }, + "a (Lgm;)V": { + "access": 1025 + }, + "a (Lfu;)V": { + "access": 1025 + }, + "a (Lgq;)V": { + "access": 1025 + }, + "a (Lgu;)V": { + "access": 1025 + }, + "a (Lhk;)V": { + "access": 1025 + }, + "a (Lhc;)V": { + "access": 1025 + }, + "a (Lhr;)V": { + "access": 1025 + }, + "a (Lgf;)V": { + "access": 1025 + }, + "a (Lfm;)V": { + "access": 1025 + }, + "a (Lgz;)V": { + "access": 1025 + }, + "a (Lfq;)V": { + "access": 1025 + }, + "a (Lhn;)V": { + "access": 1025 + }, + "a (Lhv;)V": { + "access": 1025 + }, + "a (Lgj;)V": { + "access": 1025 + }, + "a (Lgb;)V": { + "access": 1025 + }, + "a (Lhz;)V": { + "access": 1025 + }, + "a (Lgp;)V": { + "access": 1025 + }, + "a (Lfx;)V": { + "access": 1025 + }, + "a (Lhh;)V": { + "access": 1025 + }, + "a (Lgt;)V": { + "access": 1025 + }, + "a (Lft;)V": { + "access": 1025 + }, + "a (Lhl;)V": { + "access": 1025 + }, + "a (Lfi;)V": { + "access": 1025 + }, + "a (Lhd;)V": { + "access": 1025 + }, + "a (Lge;)V": { + "access": 1025 + }, + "a (Lhs;)V": { + "access": 1025 + }, + "a (Lfl;)V": { + "access": 1025 + }, + "a (Lho;)V": { + "access": 1025 + }, + "a (Lfp;)V": { + "access": 1025 + }, + "a (Lgi;)V": { + "access": 1025 + }, + "a (Lhw;)V": { + "access": 1025 + }, + "a (Lga;)V": { + "access": 1025 + }, + "a (Lgo;)V": { + "access": 1025 + }, + "a (Lhi;)V": { + "access": 1025 + }, + "a (Lgs;)V": { + "access": 1025 + }, + "a (Lfw;)V": { + "access": 1025 + }, + "a (Lhm;)V": { + "access": 1025 + }, + "a (Lgw;)V": { + "access": 1025 + }, + "a (Lhe;)V": { + "access": 1025 + }, + "a (Lha;)V": { + "access": 1025 + }, + "a (Lfo;)V": { + "access": 1025 + }, + "a (Lgx;)V": { + "access": 1025 + }, + "a (Lht;)V": { + "access": 1025 + }, + "a (Lfs;)V": { + "access": 1025 + }, + "a (Lhp;)V": { + "access": 1025 + }, + "a (Lgl;)V": { + "access": 1025 + }, + "a (Lhx;)V": { + "access": 1025 + }, + "a (Lgh;)V": { + "access": 1025 + }, + "a (Lia;)V": { + "access": 1025 + }, + "a (Lgd;)V": { + "access": 1025 + } + } + }, + "aqw$e": { + "name": "aqw$e", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()Z": { + "access": 1 + }, + "a (I)Z": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/Class;II)V": { + "access": 1 + } + } + }, + "bgi": { + "name": "bgi", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lcq;ILjava/lang/String;Lbgk;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "fk": { + "name": "fk", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "k ()I": { + "access": 1 + }, + "f ()I": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "f (I)V": { + "access": 1 + }, + "c (I)V": { + "access": 1 + }, + "a ()I": { + "access": 1 + }, + "d (I)V": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "g ()I": { + "access": 1 + }, + "j ()I": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b ()I": { + "access": 1 + }, + "g (I)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lpk;I)V": { + "access": 1 + }, + "e (I)V": { + "access": 1 + }, + "i ()I": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "h ()I": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "\u003cinit\u003e (Lpk;II)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b (I)V": { + "access": 1 + } + } + }, + "aqw$f": { + "name": "aqw$f", + "access": 33, + "superName": "aqw$n", + "methods": { + "c (II)I": { + "access": 4, + "override": "aqw$n" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$f;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "\u003cinit\u003e (Laqw$k;ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + } + } + }, + "bgl": { + "name": "bgl", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;Lbgl$a;)Ljava/lang/String;": { + "access": 2 + }, + "b (Ljava/lang/String;)Z": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/io/Reader;)Lbgl;": { + "access": 9 + }, + "h ()Z": { + "access": 2 + }, + "a (Lbgr$b;)Lbgq;": { + "access": 2 + }, + "d ()Z": { + "access": 1 + }, + "d (Ljava/lang/String;)Z": { + "access": 2 + }, + "b ()Z": { + "access": 1 + }, + "\u003cinit\u003e (Ljy;Ljava/util/List;Ljava/util/Map;ZZLbgr;)V": { + "access": 2 + }, + "f ()Lbgl;": { + "access": 1 + }, + "a (Ljava/lang/String;)Lbgl;": { + "access": 9 + }, + "a ()Ljava/util/List;": { + "access": 1 + }, + "e ()Ljy;": { + "access": 1 + }, + "\u003cinit\u003e (Ljy;Ljava/util/Map;ZZLbgr;)V": { + "access": 4 + }, + "g ()Lbgr;": { + "access": 1 + }, + "b (Ljava/util/Map;)V": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/util/List;Ljava/util/Map;ZZLbgr;)V": { + "access": 4 + }, + "c ()Z": { + "access": 1 + }, + "a (Ljava/util/Map;)V": { + "access": 1 + }, + "c (Ljava/lang/String;)Ljava/lang/String;": { + "access": 1 + } + } + }, + "fl": { + "name": "fl", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "e ()I": { + "access": 1 + }, + "\u003cinit\u003e (Lpp;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "d ()I": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "aqw$g": { + "name": "aqw$g", + "access": 33, + "superName": "aqw$n", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$g;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "\u003cinit\u003e (Laqw$k;ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + } + } + }, + "bgk": { + "name": "bgk", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (I)F": { + "access": 1 + }, + "a ([F)V": { + "access": 1 + }, + "d (I)I": { + "access": 2 + }, + "c (I)I": { + "access": 1 + }, + "b (I)F": { + "access": 1 + }, + "\u003cinit\u003e ([FI)V": { + "access": 1 + } + } + }, + "fm": { + "name": "fm", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "e ()I": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (Lpk;)V": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "aqw$h": { + "name": "aqw$h", + "access": 33, + "superName": "aqw$n", + "methods": { + "a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$h;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "\u003cinit\u003e (Laqw$k;ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + } + } + }, + "azd$a": { + "name": "azd$a", + "access": 32, + "superName": "avs", + "methods": { + "\u003cinit\u003e (IIIZ)V": { + "access": 1 + }, + "a (Lave;II)V": { + "access": 1, + "override": "avs" + } + } + }, + "bgn": { + "name": "bgn", + "access": 33, + "superName": "bgg", + "methods": { + "a (I)V": { + "access": 2 + }, + "e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Lbgg;Lbmi;)V": { + "access": 1 + } + } + }, + "fn": { + "name": "fn", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "f ()I": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "i ()I": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "l ()B": { + "access": 1 + }, + "j ()B": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "a ()Ljava/util/List;": { + "access": 1 + }, + "g ()I": { + "access": 1 + }, + "\u003cinit\u003e (Lpr;)V": { + "access": 1 + }, + "h ()I": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "d ()I": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + }, + "k ()B": { + "access": 1 + } + } + }, + "aqw$a": { + "name": "aqw$a", + "access": 33, + "superName": "aqw$n", + "methods": { + "c (II)I": { + "access": 4, + "override": "aqw$n" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$a;": { + "access": 9 + }, + "\u003cinit\u003e (Laqw$k;ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + } + } + }, + "bgm": { + "name": "bgm", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Ljava/util/List;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/io/Reader;)Lbgm;": { + "access": 9 + }, + "b (Ljava/lang/String;)Lbgm$d;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/util/Collection;)V": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "bfd$a": { + "name": "bfd$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()[I": { + "access": 1 + }, + "c ()Lbmu;": { + "access": 1 + }, + "\u003cinit\u003e (Lbfd;[ILbmu;)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "fo": { + "name": "fo", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (Luq;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Lcj;": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "c ()Lcq;": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "aqw$b": { + "name": "aqw$b", + "access": 33, + "superName": "aqw$n", + "methods": { + "a (Ljava/util/Random;)Lafh;": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$b;": { + "access": 9 + }, + "\u003cinit\u003e (Laqw$k;ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + } + } + }, + "bgp": { + "name": "bgp", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/util/List;Lbgp$b;II)V": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lbgp$b;Ljava/util/List;[IIIIIZ)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (ILjava/lang/String;Lbmi;)Ljava/util/List;": { + "access": 2 + }, + "a ([IIIII)Z": { + "access": 2 + }, + "a (Lbmi;Ljava/lang/String;I)Ljava/util/List;": { + "access": 2 + }, + "a (Lbmh;Lbgl;)Lbgl;": { + "access": 1 + }, + "a (Lbmi;)Ljava/util/List;": { + "access": 2 + } + } + }, + "fp": { + "name": "fp", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "h ()B": { + "access": 1 + }, + "f ()I": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "i ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "c ()Ljava/util/UUID;": { + "access": 1 + }, + "g ()B": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "a ()Ljava/util/List;": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (Lwn;)V": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + } + } + }, + "aqw$c": { + "name": "aqw$c", + "access": 33, + "superName": "aqw$n", + "methods": { + "a (Ljava/util/Random;)Lafh;": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "\u003cinit\u003e (Laqw$k;ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$c;": { + "access": 9 + } + } + }, + "bgo": { + "name": "bgo", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Lcq;)F": { + "access": 2 + }, + "a ([IIILorg/lwjgl/util/vector/Vector3f;ILbmi;Lbgk;)V": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;Lbgi;Lbmi;Lcq;Lbor;Lbgj;ZZ)Lbgg;": { + "access": 1 + }, + "a ([I)Lcq;": { + "access": 9 + }, + "a (Lcq;)I": { + "access": 2 + }, + "a (Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Matrix4f;Lorg/lwjgl/util/vector/Vector3f;)V": { + "access": 2 + }, + "a ()Lorg/lwjgl/util/vector/Matrix4f;": { + "access": 2 + }, + "a (Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;)[F": { + "access": 2 + }, + "a (Lorg/lwjgl/util/vector/Vector3f;Lbgj;)V": { + "access": 2 + }, + "a (I[ILcq;Lbgk;Lbmi;)V": { + "access": 2 + }, + "a ([ILcq;)V": { + "access": 2 + }, + "a ([IILcq;Lbgi;[FLbmi;Lbor;Lbgj;ZZ)V": { + "access": 2 + }, + "a (Lorg/lwjgl/util/vector/Vector3f;Lcq;ILbor;Z)I": { + "access": 1 + }, + "a ([ILcq;Lbgk;Lbmi;)V": { + "access": 1 + }, + "a (Lbgi;Lbmi;Lcq;[FLbor;Lbgj;ZZ)[I": { + "access": 2 + } + } + }, + "fq": { + "name": "fq", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lpk;I)V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "aqw$d": { + "name": "aqw$d", + "access": 33, + "superName": "aqw$n", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;)Laqe;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "\u003cinit\u003e (Laqw$k;ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + } + } + }, + "bgr": { + "name": "bgr", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbgq;Lbgq;Lbgq;Lbgq;Lbgq;Lbgq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "b (Lbgr$b;)Lbgq;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbgr$b;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbgr;)V": { + "access": 1 + }, + "c (Lbgr$b;)Z": { + "access": 1 + } + } + }, + "fr": { + "name": "fr", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (Ljava/util/Map;)V": { + "access": 1 + }, + "a ()Ljava/util/Map;": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bgq": { + "name": "bgq", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;)V": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "fs": { + "name": "fs", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e (ILcj;I)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Lcj;": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()I": { + "access": 1 + } + } + }, + "ft": { + "name": "ft", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "c ()Ldn;": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcj;ILdn;)V": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + } + } + }, + "gy$1": { + "name": "gy$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "fu": { + "name": "fu", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcj;Lafh;II)V": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "d ()Lafh;": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + } + } + }, + "bgv": { + "name": "bgv", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ([Lafh;)V": { + "access": 129 + }, + "a ()Ljava/util/Map;": { + "access": 1 + }, + "a (Lafh;Lbgy;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "fv": { + "name": "fv", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Lcj;": { + "access": 1 + }, + "a ()Lalz;": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (Ladm;Lcj;)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bgu": { + "name": "bgu", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "bgy" + ], + "methods": { + "a (Lalz;)Lbov;": { + "access": 1028 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lafh;)Ljava/util/Map;": { + "access": 1, + "override": "bgy" + }, + "a (Ljava/util/Map;)Ljava/lang/String;": { + "access": 1 + } + } + }, + "fw": { + "name": "fw", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "b ()Loj;": { + "access": 1 + }, + "\u003cinit\u003e (Loj;Z)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "a ()Z": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bgx": { + "name": "bgx", + "access": 33, + "superName": "bgu", + "methods": { + "\u003cinit\u003e (Lamo;Ljava/lang/String;Ljava/util/List;)V": { + "access": 2 + }, + "a (Lalz;)Lbov;": { + "access": 4, + "override": "bgu" + }, + "\u003cinit\u003e (Lamo;Ljava/lang/String;Ljava/util/List;Lbgx$1;)V": { + "access": 4096 + } + } + }, + "fx": { + "name": "fx", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()[Ljava/lang/String;": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ([Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "bgw": { + "name": "bgw", + "access": 33, + "superName": "bgu", + "methods": { + "a (Lalz;)Lbov;": { + "access": 4, + "override": "bgu" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "fy": { + "name": "fy", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (Leu;B)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()B": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Leu;": { + "access": 1 + }, + "\u003cinit\u003e (Leu;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1 + } + } + }, + "fz": { + "name": "fz", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (I[SLamy;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a (Lfz;)Ladg;": { + "access": 4104 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()[Lfz$a;": { + "access": 1 + } + } + }, + "bgy": { + "name": "bgy", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lafh;)Ljava/util/Map;": { + "access": 1025 + } + } + }, + "akm$1": { + "name": "akm$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bha": { + "name": "bha", + "access": 33, + "superName": "bhd", + "methods": { + "a (Lakw;DDDFI)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Laku;DDDFI)V" + }, + "override": "bhd" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Laku;DDDFI)V": { + "access": 1 + }, + "a (Laku;)Ljy;": { + "access": 2 + } + } + }, + "ga": { + "name": "ga", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "b ()S": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (ISZ)V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "c ()Z": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "gb": { + "name": "gb", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bhc": { + "name": "bhc", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ladm;Lbmj;Lavn;Lpk;F)V": { + "access": 1 + }, + "a (Lakw;DDDF)V": { + "access": 1 + }, + "a (Lakw;DDDFI)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "a (Ladm;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lakw;)Lbhd;": { + "access": 1 + }, + "a ()Lavn;": { + "access": 1 + }, + "a (Ljava/lang/Class;)Lbhd;": { + "access": 1 + }, + "a (Lakw;FI)V": { + "access": 1 + } + } + }, + "gc": { + "name": "gc", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (ILjava/lang/String;Leu;II)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a ()I": { + "access": 1 + }, + "\u003cinit\u003e (ILjava/lang/String;Leu;)V": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "d ()I": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e (ILjava/lang/String;Leu;I)V": { + "access": 1 + }, + "c ()Leu;": { + "access": 1 + } + } + }, + "aqw$m": { + "name": "aqw$m", + "access": 33, + "superName": "aqw$n", + "methods": { + "a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$m;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "\u003cinit\u003e (Laqw$k;ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + } + } + }, + "bhb": { + "name": "bhb", + "access": 33, + "superName": "bhd", + "methods": { + "a (Lakw;DDDFI)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lakv;DDDFI)V" + }, + "override": "bhd" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a ()Z": { + "access": 1, + "override": "bhd" + }, + "a (Lakv;DDDFI)V": { + "access": 1 + } + } + }, + "gd": { + "name": "gd", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (ILjava/util/List;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()[Lzx;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()I": { + "access": 1 + } + } + }, + "aqw$n": { + "name": "aqw$n", + "access": 1056, + "superName": "aqt", + "methods": { + "a (Z)V": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Laqw$k;Ljava/util/List;Ljava/util/Random;II)Laqt;": { + "access": 4 + }, + "a (Lalz;)Lalz;": { + "access": 4 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "b (Ladm;Laqe;)I": { + "access": 4 + }, + "a (Laqe;)Z": { + "access": 12 + }, + "a (Ladm;Lalz;IIILaqe;)V": { + "access": 4, + "override": "aqt" + }, + "a (Laqw$k;Ljava/util/List;Ljava/util/Random;II)Laqt;": { + "access": 4 + }, + "c (II)I": { + "access": 4 + }, + "a (Ladm;Laqe;IIIIIILalz;Lalz;Z)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Laqe;IIII)V": { + "access": 4 + }, + "b (Ladm;Lalz;IIILaqe;)V": { + "access": 4, + "override": "aqt" + }, + "\u003cinit\u003e (Laqw$k;I)V": { + "access": 4 + } + } + }, + "bhe": { + "name": "bhe", + "access": 33, + "superName": "bhd", + "methods": { + "a (Lakw;DDDFI)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Laky;DDDFI)V" + }, + "override": "bhd" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Laky;DDDFI)V": { + "access": 1 + } + } + }, + "ge": { + "name": "ge", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (III)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "aqw$o": { + "name": "aqw$o", + "access": 1057, + "superName": "aqw$n", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Laqw$k;I)V": { + "access": 4 + } + } + }, + "bhd": { + "name": "bhd", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a (Lakw;DDDFI)V": { + "access": 1025 + }, + "a (Lbhc;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c ()Lavn;": { + "access": 1 + }, + "b ()Ladm;": { + "access": 4 + }, + "a (Ljy;)V": { + "access": 4 + }, + "a ()Z": { + "access": 1 + } + } + }, + "gf": { + "name": "gf", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "c ()Lzx;": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e (IILzx;)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "aqw$p": { + "name": "aqw$p", + "access": 33, + "superName": "aqw$n", + "methods": { + "\u003cinit\u003e (Laqw$k;ILjava/util/Random;II)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "bhg": { + "name": "bhg", + "access": 33, + "superName": "bhd", + "methods": { + "a (Lalf;DDDFI)V": { + "access": 1 + }, + "a (Lakw;DDDFI)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lalf;DDDFI)V" + }, + "override": "bhd" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "gg": { + "name": "gg", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "b ()Lem;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Lem;)V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bhf": { + "name": "bhf", + "access": 33, + "superName": "bhd", + "methods": { + "a (Lakw;DDDFI)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lale;DDDFI)V" + }, + "override": "bhd" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lale;DDDFI)V": { + "access": 1 + } + } + }, + "gh": { + "name": "gh", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Leu;": { + "access": 1 + }, + "\u003cinit\u003e (Leu;)V": { + "access": 1 + } + } + }, + "bhi": { + "name": "bhi", + "access": 33, + "superName": "bhd", + "methods": { + "a (Lalu;DDDFI)V": { + "access": 1 + }, + "a (Lakw;DDDFI)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lalu;DDDFI)V" + }, + "override": "bhd" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "gi": { + "name": "gi", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()B": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "a (Ladm;)Lpk;": { + "access": 1 + }, + "\u003cinit\u003e (Lpk;B)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bhh": { + "name": "bhh", + "access": 33, + "superName": "bhd", + "methods": { + "a (Ladd;DDDF)V": { + "access": 9 + }, + "a (Lakw;DDDFI)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lall;DDDFI)V" + }, + "override": "bhd" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lall;DDDFI)V": { + "access": 1 + } + } + }, + "gj": { + "name": "gj", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (ILdn;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Ldn;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "a (Ladm;)Lpk;": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bhk": { + "name": "bhk", + "access": 33, + "superName": "bhd", + "methods": { + "a (Lbhc;)V": { + "access": 1, + "override": "bhd" + }, + "a (Lakw;DDDFI)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lalo;DDDFI)V" + }, + "override": "bhd" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lalo;DDDFI)V": { + "access": 1 + }, + "a (FFFLcq;FILcom/mojang/authlib/GameProfile;I)V": { + "access": 1 + } + } + }, + "gk": { + "name": "gk", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a ()F": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "f ()D": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "c ()F": { + "access": 1 + }, + "b ()F": { + "access": 1 + }, + "e ()D": { + "access": 1 + }, + "g ()F": { + "access": 1 + }, + "d ()D": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "h ()Ljava/util/List;": { + "access": 1 + }, + "\u003cinit\u003e (DDDFLjava/util/List;Laui;)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bhj": { + "name": "bhj", + "access": 33, + "superName": "bhd", + "methods": { + "a (Lakw;DDDFI)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Laln;DDDFI)V" + }, + "override": "bhd" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Laln;DDDFI)V": { + "access": 1 + } + } + }, + "gl": { + "name": "gl", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()I": { + "access": 1 + } + } + }, + "gm": { + "name": "gm", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()F": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e (IF)V": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "bhl": { + "name": "bhl", + "access": 33, + "superName": "bhd", + "methods": { + "a (FFFF)Ljava/nio/FloatBuffer;": { + "access": 2 + }, + "a (Lakw;DDDFI)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lalp;DDDFI)V" + }, + "override": "bhd" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lalp;DDDFI)V": { + "access": 1 + } + } + }, + "gn": { + "name": "gn", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()I": { + "access": 1 + } + } + }, + "net/minecraft/client/ClientBrandRetriever": { + "name": "net/minecraft/client/ClientBrandRetriever", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "getClientModName ()Ljava/lang/String;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bho": { + "name": "bho", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lbfd;Lbmt;)V": { + "access": 2 + }, + "b ()V": { + "access": 1 + }, + "e ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbho;)Ljava/util/concurrent/BlockingQueue;": { + "access": 4104 + }, + "a (Ladf;Lbfd;Lbht;Lbhq;)Lcom/google/common/util/concurrent/ListenableFuture;": { + "access": 1 + }, + "d ()Lbhn;": { + "access": 1, + "exceptions": [ + "java/lang/InterruptedException" + ] + }, + "a (J)Z": { + "access": 1 + }, + "c ()Lbfg;": { + "access": 1, + "exceptions": [ + "java/lang/InterruptedException" + ] + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "a (Lbfd;ILbht;)V": { + "access": 2 + }, + "a (Lbht;)Z": { + "access": 1 + }, + "c (Lbht;)Z": { + "access": 1 + }, + "a (Lbfg;)V": { + "access": 1 + }, + "b (Lbht;)Z": { + "access": 1 + } + } + }, + "go": { + "name": "go", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "e ()Z": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (IZZ)I": { + "access": 12 + }, + "a (Lamy;ZZI)Lgo$a;": { + "access": 9 + }, + "\u003cinit\u003e (Lamy;ZI)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "a ([B[BI)I": { + "access": 10 + }, + "a ()[B": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + } + } + }, + "bhn": { + "name": "bhn", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lbht;Lbhn$b;)V": { + "access": 1 + }, + "f ()Ljava/util/concurrent/locks/ReentrantLock;": { + "access": 1 + }, + "h ()Z": { + "access": 1 + }, + "d ()Lbfg;": { + "access": 1 + }, + "a (Lbhn$a;)V": { + "access": 1 + }, + "a (Ljava/lang/Runnable;)V": { + "access": 1 + }, + "a (Lbhq;)V": { + "access": 1 + }, + "g ()Lbhn$b;": { + "access": 1 + }, + "c ()Lbhq;": { + "access": 1 + }, + "a ()Lbhn$a;": { + "access": 1 + }, + "a (Lbfg;)V": { + "access": 1 + }, + "b ()Lbht;": { + "access": 1 + } + } + }, + "gp": { + "name": "gp", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e (Ljava/util/List;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "d (I)I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "c (I)[B": { + "access": 1 + }, + "a (I)I": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b (I)I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "bhq": { + "name": "bhq", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Ladf;)Z": { + "access": 1 + }, + "a (Lbfd$a;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladf;)V": { + "access": 4 + }, + "c ()Lbfd$a;": { + "access": 1 + }, + "a (Lbhx;)V": { + "access": 1 + }, + "d (Ladf;)Z": { + "access": 1 + }, + "c (Ladf;)V": { + "access": 1 + }, + "a (Lakw;)V": { + "access": 1 + }, + "b ()Ljava/util/List;": { + "access": 1 + }, + "a (Lcq;Lcq;)Z": { + "access": 1 + }, + "a ()Z": { + "access": 1 + } + } + }, + "gq": { + "name": "gq", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "d ()Lcj;": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e (ILcj;IZ)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "a ()Z": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + } + } + }, + "bhp": { + "name": "bhp", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "b ()Lbfg;": { + "access": 2, + "exceptions": [ + "java/lang/InterruptedException" + ] + }, + "\u003cinit\u003e (Lbho;Lbfg;)V": { + "access": 1 + }, + "a (Lbhn;)V": { + "access": 4, + "exceptions": [ + "java/lang/InterruptedException" + ] + }, + "a ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "a (Lbhp;Lbhn;)V": { + "access": 4104 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbho;)V": { + "access": 1 + }, + "b (Lbhn;)V": { + "access": 2 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "gr": { + "name": "gr", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e (Lcy;ZFFFFFFFI[I)V": { + "access": 129 + }, + "c ()D": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "h ()F": { + "access": 1 + }, + "f ()F": { + "access": 1 + }, + "k ()[I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1 + }, + "e ()D": { + "access": 1 + }, + "g ()F": { + "access": 1 + }, + "j ()I": { + "access": 1 + }, + "d ()D": { + "access": 1 + }, + "a ()Lcy;": { + "access": 1 + }, + "i ()F": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bhs": { + "name": "bhs", + "access": 33, + "superName": "bht", + "methods": { + "a ()V": { + "access": 1, + "override": "bht" + }, + "a (Ladf;Lbhq;)I": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lbfr;Lcj;I)V": { + "access": 1 + } + } + }, + "gs": { + "name": "gs", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "b ()D": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;DDDFF)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "c ()D": { + "access": 1 + }, + "e ()F": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "d ()D": { + "access": 1 + }, + "f ()F": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bhr": { + "name": "bhr", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bhu" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Lbfr;Lcj;I)Lbht;": { + "access": 1, + "override": "bhu" + } + } + }, + "gt": { + "name": "gt", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "f ()I": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "g ()Ladr;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "h ()Z": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "c ()Ladp$a;": { + "access": 1 + }, + "a ()I": { + "access": 1 + }, + "b ()Z": { + "access": 1 + }, + "\u003cinit\u003e (ILadp$a;ZILoj;ILadr;Z)V": { + "access": 1 + }, + "e ()Loj;": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "d ()I": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bhu": { + "name": "bhu", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Ladm;Lbfr;Lcj;I)Lbht;": { + "access": 1025 + } + } + }, + "gu": { + "name": "gu", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Latg;)V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e (IBLjava/util/Collection;[BIIII)V": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "bht": { + "name": "bht", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (I)Lbmt;": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "b ()V": { + "access": 4 + }, + "l ()Z": { + "access": 1 + }, + "c ()Ljava/util/concurrent/locks/ReentrantLock;": { + "access": 1 + }, + "b (FFFLbhn;)V": { + "access": 1 + }, + "d ()Lbhn;": { + "access": 1 + }, + "a (I)Z": { + "access": 1 + }, + "m ()V": { + "access": 2 + }, + "a ()V": { + "access": 1 + }, + "e ()Lbhn;": { + "access": 1 + }, + "a (Lbhq;)V": { + "access": 1 + }, + "j ()Lcj;": { + "access": 1 + }, + "h ()V": { + "access": 1 + }, + "f ()V": { + "access": 1 + }, + "g ()Lbhq;": { + "access": 1 + }, + "a (FFFLbhn;)V": { + "access": 1 + }, + "a (Ladf;FFFLbfd;Lbhq;)V": { + "access": 2 + }, + "\u003cinit\u003e (Ladm;Lbfr;Lcj;I)V": { + "access": 1 + }, + "a (Lcj;)V": { + "access": 1 + }, + "a (Lbfd;Lcj;)V": { + "access": 2 + }, + "a (Lcq;)Lcj;": { + "access": 1 + } + } + }, + "gv": { + "name": "gv", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()B": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()B": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Ladm;)Lpk;": { + "access": 1 + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "d ()B": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "b ()B": { + "access": 1 + }, + "e ()B": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "fi$a": { + "name": "fi$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "b (I)Z": { + "access": 2 + }, + "values ()[Lfi$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;II)V": { + "access": 2 + }, + "valueOf (Ljava/lang/String;)Lfi$a;": { + "access": 9 + }, + "a (Ljava/util/Set;)I": { + "access": 9 + }, + "a (I)Ljava/util/Set;": { + "access": 9 + }, + "a ()I": { + "access": 2 + } + } + }, + "bhw": { + "name": "bhw", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Lcj;)Ljava/util/Set;": { + "access": 1 + }, + "a (III)I": { + "access": 10 + }, + "a (ILjava/util/Set;)V": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()Lbhx;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c (Lcj;)I": { + "access": 10 + }, + "a (I)Ljava/util/Set;": { + "access": 2 + }, + "a (ILcq;)I": { + "access": 2 + }, + "a (Lcj;)V": { + "access": 1 + } + } + }, + "gw": { + "name": "gw", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcj;)V": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bhv": { + "name": "bhv", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bhu" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Lbfr;Lcj;I)Lbht;": { + "access": 1, + "override": "bhu" + } + } + }, + "gx": { + "name": "gx", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "d (Z)V": { + "access": 1 + }, + "\u003cinit\u003e (Lwl;)V": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "f ()F": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "b ()Z": { + "access": 1 + }, + "e ()F": { + "access": 1 + }, + "a (F)V": { + "access": 1 + }, + "b (F)V": { + "access": 1 + }, + "c (Z)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "a ()Z": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "c ()Z": { + "access": 1 + } + } + }, + "gy": { + "name": "gy", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (Lov;Lgy$a;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bhx": { + "name": "bhx", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Z)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Lcq;Lcq;)Z": { + "access": 1 + }, + "a (Lcq;Lcq;Z)V": { + "access": 1 + }, + "a (Ljava/util/Set;)V": { + "access": 1 + } + } + }, + "gz": { + "name": "gz", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (Lgz$a;Ljava/lang/Iterable;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()Lgz$a;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()Ljava/util/List;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Lgz$a;[Llf;)V": { + "access": 129 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "ha": { + "name": "ha", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (Lwn;Lcj;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a (Ladm;)Lwn;": { + "access": 1 + } + } + }, + "bnp$a": { + "name": "bnp$a", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Ljy;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V": { + "access": 1025 + } + } + }, + "bib": { + "name": "bib", + "access": 33, + "superName": "bid", + "methods": { + "b ()V": { + "access": 1 + }, + "a ([F)V": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a ()Lbid;": { + "access": 9 + } + } + }, + "hb": { + "name": "hb", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e ([I)V": { + "access": 129 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()[I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bia": { + "name": "bia", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (DDD)V": { + "access": 1025 + }, + "a (Laug;)Z": { + "access": 1025 + } + } + }, + "wb$e": { + "name": "wb$e", + "access": 32, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lwb;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "hc": { + "name": "hc", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (ILpf;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "bid": { + "name": "bid", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (DDDDDD)Z": { + "access": 1 + }, + "a ([FDDD)D": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "wb$d": { + "name": "wb$d", + "access": 32, + "superName": "qq", + "methods": { + "a (D)V": { + "access": 1 + }, + "\u003cinit\u003e (Lwb;)V": { + "access": 1 + }, + "a (FZ)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "qq" + } + } + }, + "hd": { + "name": "hd", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bic": { + "name": "bic", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bia" + ], + "methods": { + "b (DDDDDD)Z": { + "access": 1 + }, + "a (DDD)V": { + "access": 1, + "override": "bia" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Laug;)Z": { + "access": 1, + "override": "bia" + }, + "\u003cinit\u003e (Lbid;)V": { + "access": 1 + } + } + }, + "wb$c": { + "name": "wb$c", + "access": 32, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lwb;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "he": { + "name": "he", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "b ()Loj;": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "d ()Ladr;": { + "access": 1 + }, + "\u003cinit\u003e (ILoj;Ladr;Ladp$a;)V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "c ()Ladp$a;": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()I": { + "access": 1 + } + } + }, + "wb$b": { + "name": "wb$b", + "access": 32, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lwb;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "hf": { + "name": "hf", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()B": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "a (Ladm;)Lpk;": { + "access": 1 + }, + "\u003cinit\u003e (Lpk;B)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "wb$a": { + "name": "wb$a", + "access": 32, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lwb;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "hg": { + "name": "hg", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lams;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (Lams;Lhg$a;)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bih": { + "name": "bih", + "access": 33, + "superName": "biv", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lwq;DDDFF)V" + }, + "override": "biv" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lwq;)Ljy;": { + "access": 4 + }, + "a (Lwq;DDDFF)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwq;)Ljy;" + }, + "override": "biv" + } + } + }, + "hh": { + "name": "hh", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (Lpk;)V": { + "access": 1 + }, + "a (Ladm;)Lpk;": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "big": { + "name": "big", + "access": 33, + "superName": "bjl", + "methods": { + "a ()Lbat;": { + "access": 1 + }, + "b (Lpk;)Z": { + "access": 4164, + "bouncer": { + "name": "b", + "desc": "(Lum;)Z" + }, + "override": "biv" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lum;)Z": { + "access": 4 + }, + "a (Lum;FFF)V": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpr;)Z": { + "access": 4100, + "bouncer": { + "name": "b", + "desc": "(Lum;)Z" + }, + "override": "bjl" + }, + "a (Lum;)Ljy;": { + "access": 4 + }, + "b ()Lbbo;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "()Lbat;" + }, + "override": "bjl" + }, + "a (Lpr;FFF)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lum;FFF)V" + }, + "override": "bjl" + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lum;)Ljy;" + }, + "override": "biv" + } + } + }, + "hi": { + "name": "hi", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()I": { + "access": 1 + } + } + }, + "bij": { + "name": "bij", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lvl;)Ljy;": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvl;)Ljy;" + }, + "override": "biv" + } + } + }, + "hj": { + "name": "hj", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (ILauk;)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()I": { + "access": 1 + } + } + }, + "bii": { + "name": "bii", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Ltk;F)V" + }, + "override": "bjl" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Ltk;F)V": { + "access": 4 + }, + "a (Ltk;FFF)V": { + "access": 4 + }, + "a (Lpr;FFF)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Ltk;FFF)V" + }, + "override": "bjl" + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Ltk;)Ljy;" + }, + "override": "biv" + }, + "a (Ltk;)Ljy;": { + "access": 4 + } + } + }, + "hk": { + "name": "hk", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()Ljava/util/List;": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + }, + "\u003cinit\u003e (ILpz;Z)V": { + "access": 1 + } + } + }, + "bil": { + "name": "bil", + "access": 33, + "superName": "bka", + "methods": { + "a (Lvm;F)V": { + "access": 4 + }, + "a (Lwc;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvm;)Ljy;" + }, + "override": "bka" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvm;F)V" + }, + "override": "bjl" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lvm;)Ljy;": { + "access": 4 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvm;)Ljy;" + }, + "override": "biv" + } + } + }, + "hl": { + "name": "hl", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e (ILpk;Lpk;)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "bik": { + "name": "bik", + "access": 33, + "superName": "biv", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lux;DDDFF)V" + }, + "override": "biv" + }, + "a (Lux;DDDFF)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lux;)Ljy;": { + "access": 4 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lux;)Ljy;" + }, + "override": "biv" + } + } + }, + "hm": { + "name": "hm", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (IDDD)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (Lpk;)V": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "bin": { + "name": "bin", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbiu;Lbbo;F)V": { + "access": 1 + }, + "a (Lto;)Ljy;": { + "access": 4 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lto;)Ljy;" + }, + "override": "biv" + } + } + }, + "hn": { + "name": "hn", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a ()Lzx;": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e (IILzx;)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "bim": { + "name": "bim", + "access": 33, + "superName": "bjo", + "methods": { + "a (Ltn;)Ljy;": { + "access": 4 + }, + "a (Ltn;F)F": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lpr;F)F": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "(Ltn;F)F" + }, + "override": "bjl" + }, + "\u003cinit\u003e (Lbiu;Lbbo;F)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Ltn;)Ljy;" + }, + "override": "biv" + } + } + }, + "ho": { + "name": "ho", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a ()F": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e (FII)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "bip": { + "name": "bip", + "access": 33, + "superName": "biv", + "methods": { + "a (Lpk;DDDFF)V": { + "access": 1, + "override": "biv" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4, + "override": "biv" + } + } + }, + "hp": { + "name": "hp", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a ()F": { + "access": 1 + }, + "\u003cinit\u003e (FIF)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "c ()F": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + } + } + }, + "aqj$m": { + "name": "aqj$m", + "access": 1056, + "superName": "aqt", + "methods": { + "a (Ljava/util/List;)I": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Laqj$q;Ljava/util/List;Ljava/util/Random;IIILcq;IZ)Laqt;": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c (Laqj$q;Ljava/util/List;Ljava/util/Random;IIZ)Laqt;": { + "access": 4 + }, + "b (Laqj$q;Ljava/util/List;Ljava/util/Random;IIZ)Laqt;": { + "access": 4 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "\u003cinit\u003e (I)V": { + "access": 4 + }, + "a (Laqe;)Z": { + "access": 12 + }, + "a (Laqj$q;Ljava/util/List;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$m;": { + "access": 2 + }, + "a (Laqj$q;Ljava/util/List;Ljava/util/Random;IIZ)Laqt;": { + "access": 4 + } + } + }, + "bio": { + "name": "bio", + "access": 33, + "superName": "bjo", + "methods": { + "a (Lvn;F)V": { + "access": 4 + }, + "a (Lvn;FF)I": { + "access": 4 + }, + "a (Lvn;)Ljy;": { + "access": 4 + }, + "a (Lpr;FF)I": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvn;FF)I" + }, + "override": "bjl" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvn;F)V" + }, + "override": "bjl" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvn;)Ljy;" + }, + "override": "biv" + } + } + }, + "hq": { + "name": "hq", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Lauk;I)V": { + "access": 1 + }, + "d ()Lauu$a;": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "aqj$l": { + "name": "aqj$l", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ljava/util/List;Ljava/util/Random;IIIILcq;)Laqj$l;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "bir": { + "name": "bir", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lug;FFF)V": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lug;DDDFF)V": { + "access": 1 + }, + "a (Lug;FFFFFF)V": { + "access": 4 + }, + "a (Lug;)Ljy;": { + "access": 4 + }, + "a (Lpr;FFFFFF)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lug;FFFFFF)V" + }, + "override": "bjl" + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lug;)Ljy;" + }, + "override": "biv" + }, + "a (Lug;DDDF)V": { + "access": 4 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lug;DDDFF)V" + }, + "override": "biv" + }, + "a (Lps;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lug;DDDFF)V" + }, + "override": "bjo" + }, + "a (Lpr;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lug;DDDFF)V" + }, + "override": "bjl" + }, + "a (Lpr;FFF)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lug;FFF)V" + }, + "override": "bjl" + } + } + }, + "hr": { + "name": "hr", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "f ()I": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "e ()Ljava/util/Collection;": { + "access": 1 + }, + "\u003cinit\u003e (Laul;I)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "i ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Laul;Ljava/util/Collection;I)V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "g ()I": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "h ()I": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "aqj$k": { + "name": "aqj$k", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$k;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "biq": { + "name": "biq", + "access": 33, + "superName": "biv", + "methods": { + "a (Luf;DDDFF)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Luf;DDDFF)V" + }, + "override": "biv" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Luf;)Ljy;": { + "access": 4 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Luf;)Ljy;" + }, + "override": "biv" + } + } + }, + "hs": { + "name": "hs", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Laum;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Lauk;)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "d ()Lhs$a;": { + "access": 1 + } + } + }, + "aqj$j": { + "name": "aqj$j", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$j;": { + "access": 9 + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "bit": { + "name": "bit", + "access": 33, + "superName": "bjo", + "methods": { + "b (Lvp;)Ljy;": { + "access": 4 + }, + "a (Lvp;)F": { + "access": 4 + }, + "b (Lpr;)F": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "(Lvp;)F" + }, + "override": "bjl" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4100, + "bouncer": { + "name": "b", + "desc": "(Lvp;)Ljy;" + }, + "override": "biv" + } + } + }, + "ht": { + "name": "ht", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lcj;)V": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "aqj$q": { + "name": "aqj$q", + "access": 33, + "superName": "aqj$a", + "methods": { + "\u003cinit\u003e (Ljava/util/Random;II)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + } + } + }, + "bis": { + "name": "bis", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lvo;DDDFF)V" + }, + "override": "biv" + }, + "a (Lvo;)Ljy;": { + "access": 4 + }, + "a (Lps;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lvo;DDDFF)V" + }, + "override": "bjo" + }, + "a (Lpr;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lvo;DDDFF)V" + }, + "override": "bjl" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvo;)Ljy;" + }, + "override": "biv" + }, + "a (Lvo;DDDFF)V": { + "access": 1 + } + } + }, + "hu": { + "name": "hu", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "a ()J": { + "access": 1 + }, + "\u003cinit\u003e (JJZ)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()J": { + "access": 1 + } + } + }, + "aqj$p": { + "name": "aqj$p", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIIILcq;)Laqj$p;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "biv": { + "name": "biv", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a (Lpk;Lbia;DDD)Z": { + "access": 1 + }, + "a (Lpk;DDDF)V": { + "access": 2 + }, + "a (Lafh;DDDLcj;FFDDD)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 4 + }, + "c (Lpk;DDDFF)V": { + "access": 2 + }, + "a (Lpk;)Ljy;": { + "access": 1028 + }, + "a (Lpk;DDD)V": { + "access": 4 + }, + "a (Laug;DDD)V": { + "access": 9 + }, + "c (Lpk;)Z": { + "access": 4 + }, + "b (Lpk;)Z": { + "access": 4 + }, + "d ()Lbiu;": { + "access": 1 + }, + "b (Lpk;DDDFF)V": { + "access": 1 + }, + "a (Lpk;DDDFF)V": { + "access": 1 + }, + "c ()Lavn;": { + "access": 1 + }, + "a (Lpk;DDDLjava/lang/String;FD)V": { + "access": 4 + }, + "a (Ljy;)V": { + "access": 1 + }, + "a ()Ladm;": { + "access": 2 + }, + "a (Lpk;Ljava/lang/String;DDDI)V": { + "access": 4 + } + } + }, + "hv": { + "name": "hv", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "\u003cinit\u003e (III)V": { + "access": 1 + }, + "\u003cinit\u003e (Lhv$a;Leu;III)V": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "a ()Lhv$a;": { + "access": 1 + }, + "\u003cinit\u003e (Lhv$a;Leu;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b ()Leu;": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "aqj$o": { + "name": "aqj$o", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$o;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "biu": { + "name": "biu", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lpk;Lbia;DDD)Z": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "a (Ladm;Lavn;Lpk;Lpk;Lavh;F)V": { + "access": 1 + }, + "a (Ladm;)V": { + "access": 1 + }, + "b (Lpk;F)V": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "b ()Z": { + "access": 1 + }, + "b (DDD)D": { + "access": 1 + }, + "a (DDD)V": { + "access": 1 + }, + "a (Lpk;DDDFFZ)Z": { + "access": 1 + }, + "a (Lpk;F)Z": { + "access": 1 + }, + "a (Lpk;FZ)Z": { + "access": 1 + }, + "b (Lpk;DDDFF)V": { + "access": 2 + }, + "a (F)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbmj;Lbjh;)V": { + "access": 1 + }, + "a (Lpk;)Lbiv;": { + "access": 1 + }, + "c ()Lavn;": { + "access": 1 + }, + "a (Lpk;DDDFF)Z": { + "access": 1 + }, + "c (Z)V": { + "access": 1 + }, + "a (Ljava/lang/Class;)Lbiv;": { + "access": 1 + }, + "a ()Z": { + "access": 1 + } + } + }, + "hw": { + "name": "hw", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()[Leu;": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lcj;[Leu;)V": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "aqj$n": { + "name": "aqj$n", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/Class;IIZ)V": { + "access": 1 + }, + "a ()Z": { + "access": 1 + }, + "a (I)Z": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/Class;II)V": { + "access": 1 + } + } + }, + "bix": { + "name": "bix", + "access": 33, + "superName": "biv", + "methods": { + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Luy;DDDFF)V" + }, + "override": "biv" + }, + "a (Luy;)Ljy;": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Luy;DDDFF)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Luy;)Ljy;" + }, + "override": "biv" + } + } + }, + "hx": { + "name": "hx", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b ()Leu;": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Leu;": { + "access": 1 + }, + "\u003cinit\u003e (Leu;)V": { + "access": 1 + } + } + }, + "biw": { + "name": "biw", + "access": 33, + "superName": "biv", + "methods": { + "a (Lpp;DDDFF)V": { + "access": 1 + }, + "a (Lpp;)Ljy;": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lpp;DDDFF)V" + }, + "override": "biv" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lpp;)Ljy;" + }, + "override": "biv" + } + } + }, + "hy": { + "name": "hy", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (II)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "biz": { + "name": "biz", + "access": 33, + "superName": "biv", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lur;DDDFF)V": { + "access": 1 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lur;DDDFF)V" + }, + "override": "biv" + }, + "a (Lur;)Ljy;": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lur;)Ljy;" + }, + "override": "biv" + } + } + }, + "hz": { + "name": "hz", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (IIIIBBZ)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "f ()B": { + "access": 1 + }, + "a ()I": { + "access": 1 + }, + "e ()B": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (Lpk;)V": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + } + } + }, + "biy": { + "name": "biy", + "access": 33, + "superName": "biv", + "methods": { + "a (Lws;)Ljy;": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;F)V": { + "access": 1 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lws;DDDFF)V" + }, + "override": "biv" + }, + "a (Lws;DDDFF)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lws;)Ljy;" + }, + "override": "biv" + } + } + }, + "aeg$1": { + "name": "aeg$1", + "access": 32, + "superName": "aem", + "methods": { + "\u003cinit\u003e (Laeg;ILady;)V": { + "access": 0 + }, + "a (Ljava/util/Random;)Laoh;": { + "access": 1, + "override": "ady" + } + } + }, + "avq$a": { + "name": "avq$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 2 + }, + "a (Z)V": { + "access": 2 + }, + "\u003cinit\u003e (Lavq;Latg;Lavq$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e (Lavq;Latg;)V": { + "access": 2 + }, + "b (Lavq$a;)Ljy;": { + "access": 4104 + }, + "a (Lavq$a;Z)V": { + "access": 4104 + }, + "a (Lavq$a;)V": { + "access": 4104 + } + } + }, + "aeg$2": { + "name": "aeg$2", + "access": 32, + "superName": "aem", + "methods": { + "\u003cinit\u003e (Laeg;ILady;)V": { + "access": 0 + }, + "a (Ladm;Ljava/util/Random;Lcj;)V": { + "access": 1, + "override": "ady" + } + } + }, + "bja": { + "name": "bja", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvr;F)V" + }, + "override": "bjl" + }, + "a (Lvr;)Ljy;": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvr;)Ljy;" + }, + "override": "biv" + }, + "a (Lvr;F)V": { + "access": 4 + } + } + }, + "ia": { + "name": "ia", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Ljava/util/List;": { + "access": 1 + }, + "\u003cinit\u003e (ILjava/util/Collection;)V": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()I": { + "access": 1 + } + } + }, + "ib": { + "name": "ib", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (ILpf;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "e ()I": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "d ()B": { + "access": 1 + }, + "c ()B": { + "access": 1 + }, + "a (Lfj;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lfj;)V" + }, + "override": "ff" + }, + "a ()Z": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + } + } + }, + "bjc": { + "name": "bjc", + "access": 33, + "superName": "bjo", + "methods": { + "a (Lpk;Lbia;DDD)Z": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lvt;Lbia;DDD)Z" + }, + "override": "biv" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lvt;)Ljy;": { + "access": 4 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvt;)Ljy;" + }, + "override": "biv" + }, + "a (Lps;Lbia;DDD)Z": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lvt;Lbia;DDD)Z" + }, + "override": "bjo" + }, + "a (Lpr;DF)Laui;": { + "access": 2 + }, + "a (Lvt;Lbia;DDD)Z": { + "access": 1 + }, + "a (Lvt;DDDFF)V": { + "access": 1 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvt;F)V" + }, + "override": "bjl" + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lvt;DDDFF)V" + }, + "override": "biv" + }, + "a (Lps;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lvt;DDDFF)V" + }, + "override": "bjo" + }, + "a (Lpr;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lvt;DDDFF)V" + }, + "override": "bjl" + }, + "a (Lvt;F)V": { + "access": 4 + } + } + }, + "ic": { + "name": "ic", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "ep" + ], + "methods": { + "a (Lit;)V": { + "access": 1025 + }, + "a (Lis;)V": { + "access": 1025 + }, + "a (Liv;)V": { + "access": 1025 + }, + "a (Liu;)V": { + "access": 1025 + }, + "a (Liq;)V": { + "access": 1025 + }, + "a (Lir;)V": { + "access": 1025 + }, + "a (Lip;)V": { + "access": 1025 + }, + "a (Lio;)V": { + "access": 1025 + }, + "a (Liy;)V": { + "access": 1025 + }, + "a (Liz;)V": { + "access": 1025 + }, + "a (Lix;)V": { + "access": 1025 + }, + "a (Liw;)V": { + "access": 1025 + }, + "a (Lii;)V": { + "access": 1025 + }, + "a (Lij;)V": { + "access": 1025 + }, + "a (Lja;)V": { + "access": 1025 + }, + "a (Lig;)V": { + "access": 1025 + }, + "a (Lih;)V": { + "access": 1025 + }, + "a (Lil;)V": { + "access": 1025 + }, + "a (Lik;)V": { + "access": 1025 + }, + "a (Lim;)V": { + "access": 1025 + }, + "a (Lin;)V": { + "access": 1025 + }, + "a (Lid;)V": { + "access": 1025 + }, + "a (Lie;)V": { + "access": 1025 + } + } + }, + "bjb": { + "name": "bjb", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cinit\u003e (Lbiu;Lbbo;FF)V": { + "access": 1 + }, + "a (Lvs;)Ljy;": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvs;F)V" + }, + "override": "bjl" + }, + "a (Lvs;F)V": { + "access": 4 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvs;)Ljy;" + }, + "override": "biv" + }, + "C_ ()V": { + "access": 1, + "override": "bjl" + } + } + }, + "id": { + "name": "id", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Lcj;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Lcj;)V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bje": { + "name": "bje", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cinit\u003e (Lbiu;Lbbj;FF)V": { + "access": 1 + }, + "a (Lps;)Ljy;": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lps;)Ljy;" + }, + "override": "biv" + }, + "\u003cinit\u003e (Lbiu;Lbbj;F)V": { + "access": 1 + }, + "C_ ()V": { + "access": 1, + "override": "bjl" + } + } + }, + "ie": { + "name": "ie", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bjd": { + "name": "bjd", + "access": 33, + "superName": "bjo", + "methods": { + "b (Ltp;)Ljy;": { + "access": 2 + }, + "a (Ltp;F)V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Ltp;F)V" + }, + "override": "bjl" + }, + "a (Ltp;)Ljy;": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;Lbbh;F)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Ltp;)Ljy;" + }, + "override": "biv" + } + } + }, + "bjg": { + "name": "bjg", + "access": 33, + "superName": "biv", + "methods": { + "a (Luo;DDDFF)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Luo;DDDFF)V" + }, + "override": "biv" + }, + "b (Luo;)V": { + "access": 2 + }, + "a (Luo;)Ljy;": { + "access": 4 + }, + "a (Luo;DDD)V": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;Lbjh;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Luo;)Ljy;" + }, + "override": "biv" + }, + "a (Lpk;DDD)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Luo;DDD)V" + }, + "override": "biv" + } + } + }, + "ig": { + "name": "ig", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Lig$a;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lig$a;)V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bjf": { + "name": "bjf", + "access": 33, + "superName": "biv", + "methods": { + "a (Luz;)Ljy;": { + "access": 4 + }, + "a (Lzx;)I": { + "access": 2 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Luz;DDDFF)V" + }, + "override": "biv" + }, + "a (Luz;DDDFLboq;)I": { + "access": 2 + }, + "a (Luz;DDDFF)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbiu;Lbjh;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Luz;)Ljy;" + }, + "override": "biv" + } + } + }, + "gy$a": { + "name": "gy$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Lgy$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lgy$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ih": { + "name": "ih", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;ILwn$b;ZI)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "c ()Lwn$b;": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "d ()Z": { + "access": 1 + } + } + }, + "bji": { + "name": "bji", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvu;F)V" + }, + "override": "bjl" + }, + "a (Lvu;)Ljy;": { + "access": 4 + }, + "a (Lvu;F)V": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvu;)Ljy;" + }, + "override": "biv" + } + } + }, + "ii": { + "name": "ii", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "b ()S": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (ISZ)V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()I": { + "access": 1 + } + } + }, + "bjh": { + "name": "bjh", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnj" + ], + "methods": { + "a (Lafh;ILjava/lang/String;)V": { + "access": 4 + }, + "a (Lzx;)Z": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "b ()V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbfd;Lbgg;)V": { + "access": 2 + }, + "a (Lbgq;)Z": { + "access": 2 + }, + "a (Lzx;II)V": { + "access": 1 + }, + "a (Lzw;Ljava/lang/String;)V": { + "access": 2 + }, + "a (Lzw;ILjava/lang/String;)V": { + "access": 4 + }, + "a (Lzx;Lpr;Lbgr$b;)V": { + "access": 1 + }, + "a (Lbfd;Lbgg;I)V": { + "access": 2 + }, + "\u003cinit\u003e (Lbmj;Lbou;)V": { + "access": 1 + }, + "a (Lboq;Lzx;)V": { + "access": 2 + }, + "b (Lzx;)V": { + "access": 2 + }, + "a (Lzx;Lboq;)V": { + "access": 1 + }, + "a (Lboq;ILzx;)V": { + "access": 2 + }, + "a (Lbfd;IIIIIIII)V": { + "access": 2 + }, + "a (Lboq;I)V": { + "access": 2 + }, + "a (Lbfd;Ljava/util/List;ILzx;)V": { + "access": 2 + }, + "a (Lzx;Lboq;Lbgr$b;)V": { + "access": 4 + }, + "a (Lavn;Lzx;II)V": { + "access": 1 + }, + "a (Lavn;Lzx;IILjava/lang/String;)V": { + "access": 1 + }, + "b (Lzx;II)V": { + "access": 1 + }, + "a (Lbni;)V": { + "access": 1, + "override": "bnj" + }, + "a (Lafh;Ljava/lang/String;)V": { + "access": 2 + }, + "a (Lzx;Lbgr$b;)V": { + "access": 1 + }, + "a (Lboq;)V": { + "access": 2 + }, + "a ()Lbfo;": { + "access": 1 + }, + "a (IIZ)V": { + "access": 2 + } + } + }, + "ij": { + "name": "ij", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (II)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "bjk": { + "name": "bjk", + "access": 33, + "superName": "biv", + "methods": { + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Luv;DDDFF)V" + }, + "override": "biv" + }, + "a (Luv;DDDFF)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Luv;)Ljy;" + }, + "override": "biv" + }, + "a (Luv;)Ljy;": { + "access": 4 + } + } + }, + "ik": { + "name": "ik", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "f ()I": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "d ()S": { + "access": 1 + }, + "\u003cinit\u003e (IIIILzx;S)V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "e ()Lzx;": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "bjj": { + "name": "bjj", + "access": 33, + "superName": "biv", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lup;DDDFF)V" + }, + "override": "biv" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lup;)Ljy;": { + "access": 4 + }, + "a (Lup;DDDFF)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lup;)Ljy;" + }, + "override": "biv" + } + } + }, + "il": { + "name": "il", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bjm": { + "name": "bjm", + "access": 33, + "superName": "biv", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lva;DDDFF)V" + }, + "override": "biv" + }, + "a (Lva;)Ljy;": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lva;DDDFF)V": { + "access": 1 + }, + "a (Lva;FLalz;)V": { + "access": 4 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lva;)Ljy;" + }, + "override": "biv" + } + } + }, + "im": { + "name": "im", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "b ()Lem;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Lem;)V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bjl": { + "name": "bjl", + "access": 1057, + "superName": "biv", + "methods": { + "c (Lpr;F)Z": { + "access": 4 + }, + "a (Z)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c (Lpr;)Z": { + "access": 4 + }, + "d (Lpr;F)F": { + "access": 4 + }, + "C_ ()V": { + "access": 1 + }, + "a (Lpk;DDD)V": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "(Lpr;DDD)V" + }, + "override": "biv" + }, + "b (Lpk;)Z": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "(Lpr;)Z" + }, + "override": "biv" + }, + "a (Lpr;FFFFFFF)V": { + "access": 4 + }, + "a (Lpr;FF)I": { + "access": 4 + }, + "a (Lpr;F)V": { + "access": 4 + }, + "f ()V": { + "access": 4 + }, + "b (Lblb;)Z": { + "access": 4 + }, + "a (Lpr;DDDFF)V": { + "access": 1 + }, + "a (Lpr;FFF)V": { + "access": 4 + }, + "b (Lpr;DDD)V": { + "access": 1 + }, + "e ()V": { + "access": 4 + }, + "a (FFF)F": { + "access": 4 + }, + "a (Lpr;FFFFFF)V": { + "access": 4 + }, + "a (Lblb;)Z": { + "access": 4 + }, + "b (Lpr;)F": { + "access": 4 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lpr;DDDFF)V" + }, + "override": "biv" + }, + "a (Lpr;FZ)Z": { + "access": 4 + }, + "b (Lpr;F)F": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;Lbbo;F)V": { + "access": 1 + }, + "a (Lpr;)Z": { + "access": 4 + }, + "b ()Lbbo;": { + "access": 1 + }, + "a (Lpr;DDD)V": { + "access": 4 + } + } + }, + "in": { + "name": "in", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (Lpk;Laui;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()Lin$a;": { + "access": 1 + }, + "b ()Laui;": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lpk;Lin$a;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "a (Ladm;)Lpk;": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bjo": { + "name": "bjo", + "access": 1057, + "superName": "bjl", + "methods": { + "a (Lpk;Lbia;DDD)Z": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lps;Lbia;DDD)Z" + }, + "override": "biv" + }, + "b (Lpk;)Z": { + "access": 4164, + "bouncer": { + "name": "b", + "desc": "(Lps;)Z" + }, + "override": "biv" + }, + "b (Lps;)Z": { + "access": 4 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lps;DDDFF)V" + }, + "override": "biv" + }, + "a (Lps;F)V": { + "access": 1 + }, + "b (Lps;DDDFF)V": { + "access": 4 + }, + "a (Lps;DDDFF)V": { + "access": 1 + }, + "a (Lpr;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lps;DDDFF)V" + }, + "override": "bjl" + }, + "\u003cinit\u003e (Lbiu;Lbbo;F)V": { + "access": 1 + }, + "a (Lpr;)Z": { + "access": 4100, + "bouncer": { + "name": "b", + "desc": "(Lps;)Z" + }, + "override": "bjl" + }, + "a (Lps;Lbia;DDD)Z": { + "access": 1 + }, + "a (DDD)D": { + "access": 2 + } + } + }, + "io": { + "name": "io", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()I": { + "access": 1 + } + } + }, + "bjn": { + "name": "bjn", + "access": 33, + "superName": "bjm", + "methods": { + "a (Lvh;FLalz;)V": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lva;FLalz;)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvh;FLalz;)V" + }, + "override": "bjm" + } + } + }, + "ip": { + "name": "ip", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a ()D": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "c ()D": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "h ()Z": { + "access": 1 + }, + "b ()D": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "e ()F": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "d ()F": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + } + } + }, + "bjl$1": { + "name": "bjl$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bjq": { + "name": "bjq", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lts;F)V": { + "access": 4 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lts;F)V" + }, + "override": "bjl" + }, + "a (Lts;)Ljy;": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;Lbbo;F)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lts;)Ljy;" + }, + "override": "biv" + } + } + }, + "iq": { + "name": "iq", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "d (Z)V": { + "access": 1 + }, + "\u003cinit\u003e (Lwl;)V": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "b ()Z": { + "access": 1 + }, + "a (F)V": { + "access": 1 + }, + "b (F)V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "c (Z)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "a ()Z": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "c ()Z": { + "access": 1 + } + } + }, + "bjp": { + "name": "bjp", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbiu;Lbbo;F)V": { + "access": 1 + }, + "a (Ltr;)Ljy;": { + "access": 4 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Ltr;)Ljy;" + }, + "override": "biv" + } + } + }, + "ir": { + "name": "ir", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "b ()Lcq;": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()Lir$a;": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (Lir$a;Lcj;Lcq;)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bjs": { + "name": "bjs", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbiu;Lbbo;F)V": { + "access": 1 + }, + "a (Ltt;)Ljy;": { + "access": 4 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Ltt;)Ljy;" + }, + "override": "biv" + } + } + }, + "is": { + "name": "is", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "b ()Lis$a;": { + "access": 1 + }, + "\u003cinit\u003e (Lpk;Lis$a;I)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lpk;Lis$a;)V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bjr": { + "name": "bjr", + "access": 33, + "superName": "biv", + "methods": { + "a (Luq;)Ljy;": { + "access": 4 + }, + "a (Luq;FF)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Luq;DDDFF)V" + }, + "override": "biv" + }, + "a (Luq;DDDFF)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Luq;IIII)V": { + "access": 2 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Luq;)Ljy;" + }, + "override": "biv" + } + } + }, + "bee$a": { + "name": "bee$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "it": { + "name": "it", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a ()F": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()F": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (FFZZ)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "d ()Z": { + "access": 1 + }, + "c ()Z": { + "access": 1 + } + } + }, + "bju": { + "name": "bju", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ltu;)Ljy;": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;Lbbo;F)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Ltu;)Ljy;" + }, + "override": "biv" + } + } + }, + "net/minecraft/realms/RealmsLevelSummary": { + "name": "net/minecraft/realms/RealmsLevelSummary", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Comparable" + ], + "methods": { + "compareTo (Ljava/lang/Object;)I": { + "access": 4161, + "bouncer": { + "name": "compareTo", + "desc": "(Lnet/minecraft/realms/RealmsLevelSummary;)I" + }, + "override": "java/lang/Comparable" + }, + "getLastPlayed ()J": { + "access": 1 + }, + "compareTo (Lats;)I": { + "access": 1 + }, + "getLevelId ()Ljava/lang/String;": { + "access": 1 + }, + "compareTo (Lnet/minecraft/realms/RealmsLevelSummary;)I": { + "access": 1 + }, + "\u003cinit\u003e (Lats;)V": { + "access": 1 + }, + "hasCheats ()Z": { + "access": 1 + }, + "getSizeOnDisk ()J": { + "access": 1 + }, + "getGameMode ()I": { + "access": 1 + }, + "getLevelName ()Ljava/lang/String;": { + "access": 1 + }, + "isHardcore ()Z": { + "access": 1 + }, + "isRequiresConversion ()Z": { + "access": 1 + } + } + }, + "iu": { + "name": "iu", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (Ljava/lang/String;Liu$a;)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bjt": { + "name": "bjt", + "access": 33, + "superName": "bje", + "methods": { + "a (Lps;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvw;)Ljy;" + }, + "override": "bje" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lvw;)Ljy;": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvw;)Ljy;" + }, + "override": "biv" + } + } + }, + "iv": { + "name": "iv", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()I": { + "access": 1 + } + } + }, + "bjw": { + "name": "bjw", + "access": 33, + "superName": "bjo", + "methods": { + "b (Lpr;)F": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "(Lvz;)F" + }, + "override": "bjl" + }, + "a (Lvz;)F": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "b (Lvz;)Ljy;": { + "access": 4 + }, + "a (Lpk;)Ljy;": { + "access": 4100, + "bouncer": { + "name": "b", + "desc": "(Lvz;)Ljy;" + }, + "override": "biv" + } + } + }, + "iw": { + "name": "iw", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "b ()Lzx;": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (ILzx;)V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()I": { + "access": 1 + } + } + }, + "bjv": { + "name": "bjv", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbiu;Lbbo;F)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Ltv;)Ljy;" + }, + "override": "biv" + }, + "a (Ltv;)Ljy;": { + "access": 4 + } + } + }, + "ix": { + "name": "ix", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()[Leu;": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "\u003cinit\u003e (Lcj;[Leu;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bjy": { + "name": "bjy", + "access": 33, + "superName": "bjo", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwb;F)V" + }, + "override": "bjl" + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lwb;DDDFF)V" + }, + "override": "biv" + }, + "a (Lwb;DDDFF)V": { + "access": 1 + }, + "a (Lps;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lwb;DDDFF)V" + }, + "override": "bjo" + }, + "a (Lpr;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lwb;DDDFF)V" + }, + "override": "bjl" + }, + "\u003cinit\u003e (Lbiu;Lbbo;F)V": { + "access": 1 + }, + "a (Lwb;F)V": { + "access": 4 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwb;)Ljy;" + }, + "override": "biv" + }, + "a (Lwb;)Ljy;": { + "access": 4 + } + } + }, + "iy": { + "name": "iy", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bjx": { + "name": "bjx", + "access": 33, + "superName": "bje", + "methods": { + "a (Lps;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwa;)Ljy;" + }, + "override": "bje" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwa;F)V" + }, + "override": "bjl" + }, + "a (Lwa;)Ljy;": { + "access": 4 + }, + "a (Lwa;F)V": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwa;)Ljy;" + }, + "override": "biv" + }, + "C_ ()V": { + "access": 1, + "override": "bjl" + } + } + }, + "iz": { + "name": "iz", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/util/UUID;)V": { + "access": 1 + }, + "a (Lle;)Lpk;": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bjz": { + "name": "bjz", + "access": 33, + "superName": "bjo", + "methods": { + "g ()Lbcd;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ltw;)Ljy;": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "b ()Lbbo;": { + "access": 4097, + "bouncer": { + "name": "g", + "desc": "()Lbcd;" + }, + "override": "bjl" + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Ltw;)Ljy;" + }, + "override": "biv" + } + } + }, + "bgx$1": { + "name": "bgx$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "ja": { + "name": "ja", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f ()F": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "\u003cinit\u003e (Lzx;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lcj;ILzx;FFF)V": { + "access": 1 + }, + "c ()Lzx;": { + "access": 1 + }, + "e ()F": { + "access": 1 + }, + "a (Lic;)V": { + "access": 1 + }, + "d ()F": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lic;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + } + } + }, + "bkb": { + "name": "bkb", + "access": 33, + "superName": "bjo", + "methods": { + "a (Ltx;FFF)V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lpr;F)F": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "(Ltx;F)F" + }, + "override": "bjl" + }, + "\u003cinit\u003e (Lbiu;Lbbo;F)V": { + "access": 1 + }, + "a (Ltx;F)F": { + "access": 4 + }, + "a (Ltx;)Ljy;": { + "access": 4 + }, + "a (Lpr;FFF)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Ltx;FFF)V" + }, + "override": "bjl" + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Ltx;)Ljy;" + }, + "override": "biv" + } + } + }, + "bka": { + "name": "bka", + "access": 33, + "superName": "bjo", + "methods": { + "a (Lwc;)Ljy;": { + "access": 4 + }, + "b (Lpr;)F": { + "access": 4164, + "bouncer": { + "name": "b", + "desc": "(Lwc;)F" + }, + "override": "bjl" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lwc;)F": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwc;)Ljy;" + }, + "override": "biv" + } + } + }, + "jc": { + "name": "jc", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()Lel;": { + "access": 1 + }, + "a (Ljd;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljd;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (ILjava/lang/String;ILel;)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()I": { + "access": 1 + } + } + }, + "bkd": { + "name": "bkd", + "access": 33, + "superName": "bkc", + "methods": { + "d (Lpk;)Lzx;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lxc;)Lzx;" + }, + "override": "bkc" + }, + "a (Lxc;)Lzx;": { + "access": 1 + }, + "\u003cinit\u003e (Lbiu;Lbjh;)V": { + "access": 1 + } + } + }, + "jd": { + "name": "jd", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "ep" + ], + "methods": { + "a (Ljc;)V": { + "access": 1025 + } + } + }, + "bkc": { + "name": "bkc", + "access": 33, + "superName": "biv", + "methods": { + "\u003cinit\u003e (Lbiu;Lzw;Lbjh;)V": { + "access": 1 + }, + "d (Lpk;)Lzx;": { + "access": 1 + }, + "a (Lpk;DDDFF)V": { + "access": 1, + "override": "biv" + }, + "a (Lpk;)Ljy;": { + "access": 4, + "override": "biv" + } + } + }, + "bkf": { + "name": "bkf", + "access": 33, + "superName": "biv", + "methods": { + "a (Lvj;)Ljy;": { + "access": 4 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lvj;DDDFF)V" + }, + "override": "biv" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lvj;DDDFF)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvj;)Ljy;" + }, + "override": "biv" + } + } + }, + "bpv$a": { + "name": "bpv$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "a ()Ljy;": { + "access": 1 + }, + "values ()[Lbpv$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Lbpv$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjy;II)V": { + "access": 2 + }, + "c ()I": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "jf": { + "name": "jf", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "ep" + ], + "methods": { + "a (Ljj;)V": { + "access": 1025 + }, + "a (Ljh;)V": { + "access": 1025 + }, + "a (Lji;)V": { + "access": 1025 + }, + "a (Ljg;)V": { + "access": 1025 + } + } + }, + "bke": { + "name": "bke", + "access": 33, + "superName": "bjm", + "methods": { + "a (Lvi;FLalz;)V": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lva;FLalz;)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lvi;FLalz;)V" + }, + "override": "bjm" + } + } + }, + "jg": { + "name": "jg", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljf;)V" + }, + "override": "ff" + }, + "a (Ljf;)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bkh": { + "name": "bkh", + "access": 33, + "superName": "bjo", + "methods": { + "a (Lwi;F)V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwi;F)V" + }, + "override": "bjl" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "b ()Lbbo;": { + "access": 4097, + "bouncer": { + "name": "g", + "desc": "()Lbci;" + }, + "override": "bjl" + }, + "a (Lwi;)Ljy;": { + "access": 4 + }, + "g ()Lbci;": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwi;)Ljy;" + }, + "override": "biv" + } + } + }, + "jh": { + "name": "jh", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "c ()[B": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/security/PublicKey;[B)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljf;)V" + }, + "override": "ff" + }, + "a (Ljf;)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "b ()Ljava/security/PublicKey;": { + "access": 1 + } + } + }, + "bkg": { + "name": "bkg", + "access": 33, + "superName": "bjo", + "methods": { + "a (Lty;FFF)V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lty;)Ljy;": { + "access": 4 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpr;FFF)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lty;FFF)V" + }, + "override": "bjl" + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lty;)Ljy;" + }, + "override": "biv" + } + } + }, + "ji": { + "name": "ji", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljf;)V" + }, + "override": "ff" + }, + "a (Ljf;)V": { + "access": 1 + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()I": { + "access": 1 + } + } + }, + "bkj": { + "name": "bkj", + "access": 33, + "superName": "bjo", + "methods": { + "a (Luk;F)V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Luk;F)V" + }, + "override": "bjl" + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Luk;DDDFF)V" + }, + "override": "biv" + }, + "a (Lps;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Luk;DDDFF)V" + }, + "override": "bjo" + }, + "a (Lpr;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Luk;DDDFF)V" + }, + "override": "bjl" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Luk;DDDFF)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Luk;)Ljy;" + }, + "override": "biv" + }, + "a (Luk;)Ljy;": { + "access": 4 + } + } + }, + "jj": { + "name": "jj", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljf;)V" + }, + "override": "ff" + }, + "a (Ljf;)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a ()Leu;": { + "access": 1 + }, + "\u003cinit\u003e (Leu;)V": { + "access": 1 + } + } + }, + "bki": { + "name": "bki", + "access": 33, + "superName": "bjo", + "methods": { + "a (Lwd;F)V": { + "access": 4 + }, + "a (Lwd;)Ljy;": { + "access": 4 + }, + "a (Lwd;DDDFF)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwd;F)V" + }, + "override": "bjl" + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lwd;DDDFF)V" + }, + "override": "biv" + }, + "a (Lps;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lwd;DDDFF)V" + }, + "override": "bjo" + }, + "a (Lpr;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lwd;DDDFF)V" + }, + "override": "bjl" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwd;)Ljy;" + }, + "override": "biv" + }, + "C_ ()V": { + "access": 1, + "override": "bjl" + } + } + }, + "jk": { + "name": "jk", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "ep" + ], + "methods": { + "a (Ljl;)V": { + "access": 1025 + }, + "a (Ljm;)V": { + "access": 1025 + } + } + }, + "bkl": { + "name": "bkl", + "access": 33, + "superName": "bjo", + "methods": { + "a (Lua;DDDFF)V": { + "access": 1 + }, + "a (Lua;F)F": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lua;DDDFF)V" + }, + "override": "biv" + }, + "a (Lua;)Ljy;": { + "access": 4 + }, + "b (Lpr;F)F": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "(Lua;F)F" + }, + "override": "bjl" + }, + "a (Lps;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lua;DDDFF)V" + }, + "override": "bjo" + }, + "a (Lpr;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lua;DDDFF)V" + }, + "override": "bjl" + }, + "\u003cinit\u003e (Lbiu;Lbbo;F)V": { + "access": 1 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lua;)Ljy;" + }, + "override": "biv" + } + } + }, + "jl": { + "name": "jl", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Ljk;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljk;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bkk": { + "name": "bkk", + "access": 33, + "superName": "biv", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lxd;DDDFF)V" + }, + "override": "biv" + }, + "a (Lxd;DDDFF)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (FFF)F": { + "access": 2 + }, + "a (Lxd;)Ljy;": { + "access": 4 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lxd;)Ljy;" + }, + "override": "biv" + } + } + }, + "jm": { + "name": "jm", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Ljk;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a (Ljava/security/PrivateKey;)Ljavax/crypto/SecretKey;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ljavax/crypto/SecretKey;Ljava/security/PublicKey;[B)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljk;)V" + }, + "override": "ff" + }, + "b (Ljava/security/PrivateKey;)[B": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bkn": { + "name": "bkn", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "b (I)Z": { + "access": 2 + }, + "a (I)Lbbo;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpr;I)Lzx;": { + "access": 1 + }, + "\u003cinit\u003e (Lbjl;)V": { + "access": 1 + }, + "a (Lpr;Lbbo;FFFFFFF)V": { + "access": 2 + }, + "b ()Z": { + "access": 1, + "override": "blb" + }, + "a (Lyj;ZLjava/lang/String;)Ljy;": { + "access": 2 + }, + "a ()V": { + "access": 1028 + }, + "a (Lbbo;I)V": { + "access": 1028 + }, + "a (Lyj;Z)Ljy;": { + "access": 2 + }, + "a (Lpr;FFFFFFF)V": { + "access": 1, + "override": "blb" + }, + "a (Lpr;FFFFFFFI)V": { + "access": 2 + } + } + }, + "bkm": { + "name": "bkm", + "access": 33, + "superName": "bje", + "methods": { + "a (Lps;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwe;)Ljy;" + }, + "override": "bje" + }, + "a (Lwe;FFF)V": { + "access": 4 + }, + "b (Lwe;)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lwe;DDDFF)V" + }, + "override": "biv" + }, + "a (Lwe;)Ljy;": { + "access": 4 + }, + "a (Lps;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lwe;DDDFF)V" + }, + "override": "bjo" + }, + "a (Lpr;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lwe;DDDFF)V" + }, + "override": "bjl" + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lwe;DDDFF)V": { + "access": 1 + }, + "a (Lpr;FFF)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwe;FFF)V" + }, + "override": "bjl" + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lwe;)Ljy;" + }, + "override": "biv" + } + } + }, + "bgx$a": { + "name": "bgx$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ([Lamo;)Lbgx$a;": { + "access": 129 + }, + "a (Ljava/lang/String;)Lbgx$a;": { + "access": 1 + }, + "a ()Lbgx;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lamo;)Lbgx$a;": { + "access": 1 + } + } + }, + "bkp": { + "name": "bkp", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lbet;FFFFFFF)V" + }, + "override": "blb" + }, + "a (Lbet;FFFFFFF)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbln;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "jp": { + "name": "jp", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "ep" + ], + "methods": { + "a (Ljq;)V": { + "access": 1025 + }, + "a (Ljr;)V": { + "access": 1025 + } + } + }, + "bko": { + "name": "bko", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lpr;FFFFFFF)V": { + "access": 1, + "override": "blb" + }, + "\u003cinit\u003e (Lbjl;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "jq": { + "name": "jq", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljp;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljp;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (J)V": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bkr": { + "name": "bkr", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lvn;FFFFFFF)V" + }, + "override": "blb" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbio;)V": { + "access": 1 + }, + "a (Lvn;FFFFFFF)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "jr": { + "name": "jr", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "\u003cinit\u003e (Ljs;)V": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a ()Ljs;": { + "access": 1 + }, + "a (Ljp;)V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljp;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bkq": { + "name": "bkq", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lvo;FFFFFFF)V" + }, + "override": "blb" + }, + "a (Lvo;FFFFFFF)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbis;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "js": { + "name": "js", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljs$a;)V": { + "access": 1 + }, + "a (Ljs$c;)V": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Leu;)V": { + "access": 1 + }, + "c ()Ljs$c;": { + "access": 1 + }, + "b ()Ljs$a;": { + "access": 1 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "a ()Leu;": { + "access": 1 + } + } + }, + "bkt": { + "name": "bkt", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lbet;FFFFFFF)V" + }, + "override": "blb" + }, + "a (Lbet;FFFFFFF)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbln;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "jt": { + "name": "jt", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "ep" + ], + "methods": { + "a (Ljv;)V": { + "access": 1025 + }, + "a (Lju;)V": { + "access": 1025 + } + } + }, + "bks": { + "name": "bks", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "\u003cinit\u003e (Lbct;)V": { + "access": 1 + }, + "a (Lpr;FFFFFFF)V": { + "access": 1, + "override": "blb" + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "ju": { + "name": "ju", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a (Ljt;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljt;)V" + }, + "override": "ff" + }, + "\u003cinit\u003e (J)V": { + "access": 1 + }, + "a ()J": { + "access": 1 + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bkv": { + "name": "bkv", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lug;FFFFFFF)V": { + "access": 1 + }, + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lug;FFFFFFF)V" + }, + "override": "blb" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbir;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "jv": { + "name": "jv", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ff" + ], + "methods": { + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + }, + "a (Ljt;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lep;)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ljt;)V" + }, + "override": "ff" + }, + "b (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "ff" + } + } + }, + "bku": { + "name": "bku", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lug;FFFFFFF)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lug;FFFFFFF)V" + }, + "override": "blb" + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "bkx": { + "name": "bkx", + "access": 33, + "superName": "bkn", + "methods": { + "a ()V": { + "access": 4, + "override": "bkn" + }, + "a (Lbbo;I)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lbbj;I)V" + }, + "override": "bkn" + }, + "\u003cinit\u003e (Lbjl;)V": { + "access": 1 + }, + "a (Lbbj;)V": { + "access": 4 + }, + "a (Lbbj;I)V": { + "access": 4 + } + } + }, + "bkw": { + "name": "bkw", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lvo;FFFFFFF)V" + }, + "override": "blb" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lvo;FFFFFFF)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbis;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "jy": { + "name": "jy", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + }, + "a (Ljava/lang/String;)[Ljava/lang/String;": { + "access": 12 + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (I[Ljava/lang/String;)V": { + "access": 132 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "bkz": { + "name": "bkz", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "\u003cinit\u003e (Lbjp;)V": { + "access": 1 + }, + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ltr;FFFFFFF)V" + }, + "override": "blb" + }, + "a (Ltr;FFFFFFF)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "bky": { + "name": "bky", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lpr;FFFFFFF)V": { + "access": 1, + "override": "blb" + }, + "\u003cinit\u003e (Lbjl;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "cq$1": { + "name": "cq$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bla": { + "name": "bla", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Ltt;FFFFFFF)V": { + "access": 1 + }, + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ltt;FFFFFFF)V" + }, + "override": "blb" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbjs;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "ka": { + "name": "ka", + "access": 1057, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 1, + "override": "cn" + }, + "a ()F": { + "access": 4 + }, + "b ()F": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lck;)V": { + "access": 4, + "override": "cn" + }, + "a (Ladm;Lcz;)Lwv;": { + "access": 1028 + } + } + }, + "kb": { + "name": "kb", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()V": { + "access": 8 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/lang/String;)V": { + "access": 9 + }, + "d ()V": { + "access": 10 + }, + "c ()V": { + "access": 9 + }, + "a ()Z": { + "access": 9 + } + } + }, + "blc": { + "name": "blc", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ltv;FFFFFFF)V" + }, + "override": "blb" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbjv;)V": { + "access": 1 + }, + "a (Ltv;FFFFFFF)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "kc": { + "name": "kc", + "access": 33, + "superName": "java/io/IOException", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "b (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Ljava/lang/Exception;)Lkc;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/Throwable;)V": { + "access": 1 + }, + "getMessage ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Throwable" + } + } + }, + "blb": { + "name": "blb", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lpr;FFFFFFF)V": { + "access": 1025 + }, + "b ()Z": { + "access": 1025 + } + } + }, + "kd": { + "name": "kd", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Lm;)V": { + "access": 1 + } + } + }, + "ble": { + "name": "ble", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "\u003cinit\u003e (Lbjz;)V": { + "access": 1 + }, + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Ltw;FFFFFFF)V" + }, + "override": "blb" + }, + "a (Ltw;FFFFFFF)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "bld": { + "name": "bld", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lwb;FFFFFFF)V" + }, + "override": "blb" + }, + "\u003cinit\u003e (Lbjy;)V": { + "access": 1 + }, + "a (Lwb;FFFFFFF)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "kf": { + "name": "kf", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/io/File;)Z": { + "access": 2 + }, + "a ()Z": { + "access": 1 + } + } + }, + "blg": { + "name": "blg", + "access": 33, + "superName": "bkx", + "methods": { + "a ()V": { + "access": 4, + "override": "bkn" + }, + "\u003cinit\u003e (Lbjl;)V": { + "access": 1 + } + } + }, + "kg": { + "name": "kg", + "access": 33, + "superName": "java/io/PrintStream", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/io/OutputStream;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/lang/String;)V": { + "access": 2 + }, + "println (Ljava/lang/String;)V": { + "access": 1, + "override": "java/io/PrintStream" + }, + "println (Ljava/lang/Object;)V": { + "access": 1, + "override": "java/io/PrintStream" + } + } + }, + "blf": { + "name": "blf", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lwc;FFFFFFF)V" + }, + "override": "blb" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbka;)V": { + "access": 1 + }, + "a (Lwc;FFFFFFF)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "bli": { + "name": "bli", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "\u003cinit\u003e (Lbki;)V": { + "access": 1 + }, + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lwd;FFFFFFF)V" + }, + "override": "blb" + }, + "a (Lwd;FFFFFFF)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "ayf$a$1": { + "name": "ayf$a$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/Comparator" + ], + "methods": { + "a (Lmu;Lmu;)I": { + "access": 1 + }, + "\u003cinit\u003e (Layf$a;Layf;)V": { + "access": 0 + }, + "compare (Ljava/lang/Object;Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lmu;Lmu;)I" + }, + "override": "java/util/Comparator" + } + } + }, + "ki": { + "name": "ki", + "access": 49, + "superName": "java/lang/RuntimeException", + "methods": { + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "fillInStackTrace ()Ljava/lang/Throwable;": { + "access": 33, + "override": "java/lang/Throwable" + } + } + }, + "net/minecraft/client/main/Main": { + "name": "net/minecraft/client/main/Main", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;)Z": { + "access": 10 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "main ([Ljava/lang/String;)V": { + "access": 9 + } + } + }, + "blh": { + "name": "blh", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "\u003cinit\u003e (Lbkg;)V": { + "access": 1 + }, + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lty;FFFFFFF)V" + }, + "override": "blb" + }, + "a (Lty;FFFFFFF)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "kj": { + "name": "kj", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "G ()Ljava/lang/String;": { + "access": 1025 + }, + "I ()I": { + "access": 1025 + }, + "U ()Ljava/lang/String;": { + "access": 1025 + }, + "F ()I": { + "access": 1025 + }, + "a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": { + "access": 1025 + }, + "H ()Ljava/lang/String;": { + "access": 1025 + }, + "M ()Z": { + "access": 1025 + }, + "f (Ljava/lang/String;)V": { + "access": 1025 + }, + "a (Ljava/lang/String;Ljava/lang/Object;)V": { + "access": 1025 + }, + "a ()V": { + "access": 1025 + }, + "K ()[Ljava/lang/String;": { + "access": 1025 + }, + "J ()I": { + "access": 1025 + }, + "b ()Ljava/lang/String;": { + "access": 1025 + }, + "h (Ljava/lang/String;)V": { + "access": 1025 + }, + "e (Ljava/lang/String;)V": { + "access": 1025 + }, + "a_ (Ljava/lang/String;)Ljava/lang/String;": { + "access": 1025 + }, + "g (Ljava/lang/String;)V": { + "access": 1025 + }, + "a (Ljava/lang/String;I)I": { + "access": 1025 + }, + "d_ ()Ljava/lang/String;": { + "access": 1025 + }, + "E ()Ljava/lang/String;": { + "access": 1025 + } + } + }, + "blk": { + "name": "blk", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lua;FFFFFFF)V" + }, + "override": "blb" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lua;FFFFFFF)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbkl;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "kk": { + "name": "kk", + "access": 33, + "superName": "auo", + "methods": { + "a (Laul;)V": { + "access": 1, + "override": "auo" + }, + "a (Laum;)V": { + "access": 1, + "override": "auo" + }, + "a (ILauk;)V": { + "access": 1, + "override": "auo" + }, + "b ()V": { + "access": 4 + }, + "a (Ljava/lang/String;Lauk;)V": { + "access": 1, + "override": "auo" + }, + "g (Lauk;)V": { + "access": 1 + }, + "a (Lauk;)V": { + "access": 1, + "override": "auo" + }, + "a (Ljava/lang/String;Laul;)V": { + "access": 1, + "override": "auo" + }, + "e (Lauk;)V": { + "access": 1 + }, + "b (Laul;)V": { + "access": 1, + "override": "auo" + }, + "b (Lauk;)V": { + "access": 1, + "override": "auo" + }, + "h (Lauk;)I": { + "access": 1 + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;)V": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1, + "override": "auo" + }, + "d (Lauk;)Ljava/util/List;": { + "access": 1 + }, + "c (Lauk;)V": { + "access": 1, + "override": "auo" + }, + "c (Laul;)V": { + "access": 1, + "override": "auo" + }, + "f (Lauk;)Ljava/util/List;": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/String;)Z": { + "access": 1, + "override": "auo" + }, + "a (Laup;)V": { + "access": 1 + } + } + }, + "blj": { + "name": "blj", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "blb" + ], + "methods": { + "a (Lpr;FFFFFFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Luk;FFFFFFF)V" + }, + "override": "blb" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbkj;)V": { + "access": 1 + }, + "a (Luk;FFFFFFF)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "blb" + } + } + }, + "kl": { + "name": "kl", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "a (Ljava/lang/String;J)J": { + "access": 1 + }, + "a (Ljava/lang/String;Z)Z": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": { + "access": 1 + }, + "a (Ljava/lang/String;I)I": { + "access": 1 + }, + "c ()Ljava/io/File;": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/Object;)V": { + "access": 1 + } + } + }, + "km": { + "name": "km", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "c ()V": { + "access": 1025 + } + } + }, + "lo$1": { + "name": "lo$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "io/netty/channel/ChannelFutureListener" + ], + "methods": { + "a (Lio/netty/channel/ChannelFuture;)V": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "operationComplete (Lio/netty/util/concurrent/Future;)V": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "(Lio/netty/channel/ChannelFuture;)V" + }, + "override": "io/netty/util/concurrent/GenericFutureListener" + }, + "\u003cinit\u003e (Llo;)V": { + "access": 0 + } + } + }, + "bdb$4": { + "name": "bdb$4", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "\u003cinit\u003e (Lbdb;)V": { + "access": 0 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "lo$2": { + "name": "lo$2", + "access": 32, + "superName": "java/lang/Thread", + "methods": { + "\u003cinit\u003e (Llo;Ljava/lang/String;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "kn": { + "name": "kn", + "access": 33, + "superName": "lx", + "methods": { + "e (Lcom/mojang/authlib/GameProfile;)Z": { + "access": 1, + "override": "lx" + }, + "a (Z)V": { + "access": 1, + "override": "lx" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "B ()V": { + "access": 2 + }, + "f (Lcom/mojang/authlib/GameProfile;)Z": { + "access": 1, + "override": "lx" + }, + "x ()V": { + "access": 2 + }, + "C ()V": { + "access": 2 + }, + "b ()Lko;": { + "access": 1 + }, + "\u003cinit\u003e (Lko;)V": { + "access": 1 + }, + "z ()V": { + "access": 2 + }, + "b (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1, + "override": "lx" + }, + "a ()V": { + "access": 1, + "override": "lx" + }, + "w ()V": { + "access": 2 + }, + "D ()V": { + "access": 2 + }, + "A ()V": { + "access": 2 + }, + "c (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1, + "override": "lx" + }, + "y ()V": { + "access": 2 + }, + "c ()Lnet/minecraft/server/MinecraftServer;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "()Lko;" + }, + "override": "lx" + }, + "a (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1, + "override": "lx" + }, + "d (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1, + "override": "lx" + } + } + }, + "blo": { + "name": "blo", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "b (Ljava/lang/String;)I": { + "access": 10 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)I": { + "access": 10 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lcom/google/gson/JsonObject;)Lblo;": { + "access": 9 + }, + "\u003cinit\u003e (IIIII)V": { + "access": 1 + }, + "\u003cinit\u003e (ZZIIIII)V": { + "access": 2 + }, + "\u003cinit\u003e (III)V": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "b ()Z": { + "access": 1 + } + } + }, + "ko": { + "name": "ko", + "access": 33, + "superName": "net/minecraft/server/MinecraftServer", + "interfaces": [ + "kj" + ], + "methods": { + "p ()I": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "al ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "l ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;Lcj;Lwn;)Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "z ()V": { + "access": 4, + "override": "net/minecraft/server/MinecraftServer" + }, + "aI ()I": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "aO ()V": { + "access": 1 + }, + "q ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "a (Ljava/lang/String;Ljava/lang/Object;)V": { + "access": 1, + "override": "kj" + }, + "a ()V": { + "access": 1, + "override": "kj" + }, + "d (I)V": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "i ()Z": { + "access": 4, + "exceptions": [ + "java/io/IOException" + ], + "override": "net/minecraft/server/MinecraftServer" + }, + "ap ()Llx;": { + "access": 4097, + "bouncer": { + "name": "aP", + "desc": "()Lkn;" + }, + "override": "net/minecraft/server/MinecraftServer" + }, + "b (Lb;)Lb;": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "b ()Ljava/lang/String;": { + "access": 1, + "override": "kj" + }, + "n ()Loj;": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "a (Ladp$a;)V": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "ae ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "a_ (Ljava/lang/String;)Ljava/lang/String;": { + "access": 1, + "override": "kj" + }, + "a (Ljava/lang/String;I)I": { + "access": 1, + "override": "kj" + }, + "aw ()I": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "ai ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "a (Lb;)V": { + "access": 4, + "override": "net/minecraft/server/MinecraftServer" + }, + "r ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "as ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "o ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "C ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "aK ()I": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "a (Ljava/lang/String;Lm;)V": { + "access": 1 + }, + "aP ()Lkn;": { + "access": 1 + }, + "B ()V": { + "access": 4, + "override": "net/minecraft/server/MinecraftServer" + }, + "W ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": { + "access": 1, + "override": "kj" + }, + "ad ()Z": { + "access": 1, + "override": "os" + }, + "aU ()V": { + "access": 2 + }, + "aT ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "a (Lor;)V": { + "access": 1, + "override": "os" + }, + "m ()Ladp$a;": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "aB ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "aQ ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "aR ()Z": { + "access": 4 + }, + "a (Ladp$a;Z)Ljava/lang/String;": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "a (Ljava/lang/String;Z)Z": { + "access": 1 + }, + "aS ()J": { + "access": 1 + }, + "d_ ()Ljava/lang/String;": { + "access": 1, + "override": "kj" + } + } + }, + "bln": { + "name": "bln", + "access": 33, + "superName": "bjl", + "methods": { + "g ()Lbbr;": { + "access": 1 + }, + "a (Lbet;DDDLjava/lang/String;FD)V": { + "access": 4 + }, + "c (Lbet;)V": { + "access": 1 + }, + "b (Lbet;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbiu;)V": { + "access": 1 + }, + "a (Lbet;FFF)V": { + "access": 4 + }, + "a (Lpk;)Ljy;": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lbet;)Ljy;" + }, + "override": "biv" + }, + "a (Lbet;)Ljy;": { + "access": 4 + }, + "C_ ()V": { + "access": 1, + "override": "bjl" + }, + "a (Lbet;DDD)V": { + "access": 4 + }, + "d (Lbet;)V": { + "access": 2 + }, + "a (Lbet;DDDFF)V": { + "access": 1 + }, + "a (Lpr;F)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lbet;F)V" + }, + "override": "bjl" + }, + "a (Lpk;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lbet;DDDFF)V" + }, + "override": "biv" + }, + "\u003cinit\u003e (Lbiu;Z)V": { + "access": 1 + }, + "a (Lpr;DDDFF)V": { + "access": 4161, + "bouncer": { + "name": "a", + "desc": "(Lbet;DDDFF)V" + }, + "override": "bjl" + }, + "a (Lpk;DDDLjava/lang/String;FD)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lbet;DDDLjava/lang/String;FD)V" + }, + "override": "biv" + }, + "b ()Lbbo;": { + "access": 4097, + "bouncer": { + "name": "g", + "desc": "()Lbbr;" + }, + "override": "bjl" + }, + "a (Lbet;F)V": { + "access": 4 + }, + "a (Lpr;DDD)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lbet;DDD)V" + }, + "override": "bjl" + }, + "a (Lpr;FFF)V": { + "access": 4164, + "bouncer": { + "name": "a", + "desc": "(Lbet;FFF)V" + }, + "override": "bjl" + } + } + }, + "kp": { + "name": "kp", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "a ()V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lko;)V": { + "access": 1 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "blq": { + "name": "blq", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lbni;Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i ()V": { + "access": 2 + }, + "d ()V": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/Object;)V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "e ()Lblt;": { + "access": 1 + }, + "f ()Lblt;": { + "access": 1 + }, + "b (Ljava/lang/String;)Lblv;": { + "access": 1 + }, + "h ()I": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)Lblv;": { + "access": 1 + }, + "b (Lcom/google/gson/JsonElement;)V": { + "access": 2, + "exceptions": [ + "kc" + ] + }, + "a (Lcom/google/gson/JsonElement;)V": { + "access": 2, + "exceptions": [ + "kc" + ] + } + } + }, + "blp": { + "name": "blp", + "access": 33, + "superName": "blv", + "methods": { + "a (IIII)V": { + "access": 1, + "override": "blv" + }, + "a ([F)V": { + "access": 1, + "override": "blv" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (F)V": { + "access": 1, + "override": "blv" + }, + "b (FFFF)V": { + "access": 1, + "override": "blv" + }, + "a (Lorg/lwjgl/util/vector/Matrix4f;)V": { + "access": 1, + "override": "blv" + }, + "a (FF)V": { + "access": 1, + "override": "blv" + }, + "a (FFFFFFFFFFFFFFFF)V": { + "access": 1, + "override": "blv" + }, + "a (FFF)V": { + "access": 1, + "override": "blv" + }, + "a (FFFF)V": { + "access": 1, + "override": "blv" + } + } + }, + "kr": { + "name": "kr", + "access": 33, + "superName": "javax/swing/JComponent", + "methods": { + "a (Lko;)V": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lko;)V": { + "access": 1 + }, + "a ()Ljavax/swing/JComponent;": { + "access": 2, + "exceptions": [ + "java/lang/Exception" + ] + }, + "a (Lkr;)Lko;": { + "access": 4104 + }, + "a (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V": { + "access": 1 + }, + "b ()Ljavax/swing/JComponent;": { + "access": 2, + "exceptions": [ + "java/lang/Exception" + ] + }, + "c ()Ljavax/swing/JComponent;": { + "access": 2, + "exceptions": [ + "java/lang/Exception" + ] + } + } + }, + "bls": { + "name": "bls", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lbni;Ljava/lang/String;Lbfw;Lbfw;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (F)V": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/Object;II)V": { + "access": 1 + }, + "d ()V": { + "access": 2 + }, + "a (Lorg/lwjgl/util/vector/Matrix4f;)V": { + "access": 1 + }, + "c ()Lblq;": { + "access": 1 + } + } + }, + "ks": { + "name": "ks", + "access": 33, + "superName": "javax/swing/JList", + "interfaces": [ + "km" + ], + "methods": { + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "km" + } + } + }, + "blr": { + "name": "blr", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;)Lbfw;": { + "access": 1 + }, + "\u003cinit\u003e (Lbmj;Lbni;Lbfw;Ljy;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException", + "com/google/gson/JsonSyntaxException" + ] + }, + "b (Ljava/lang/String;)Lbfw;": { + "access": 2 + }, + "a ()V": { + "access": 1 + }, + "a (Ljava/lang/String;Lbfw;Lbfw;)Lbls;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (F)V": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 17 + }, + "a (Lbmj;Ljy;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException", + "com/google/gson/JsonSyntaxException" + ] + }, + "c ()V": { + "access": 2 + }, + "a (II)V": { + "access": 1 + }, + "a (Ljava/lang/String;II)V": { + "access": 1 + }, + "a (Lbmj;Lcom/google/gson/JsonElement;)V": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "b (Lcom/google/gson/JsonElement;)V": { + "access": 2, + "exceptions": [ + "kc" + ] + }, + "a (Lcom/google/gson/JsonElement;)V": { + "access": 2, + "exceptions": [ + "kc" + ] + } + } + }, + "adu$a": { + "name": "adu$a", + "access": 33, + "superName": "cj", + "methods": { + "\u003cinit\u003e (Ladu;Lcj;J)V": { + "access": 1 + } + } + }, + "kt": { + "name": "kt", + "access": 33, + "superName": "javax/swing/JComponent", + "methods": { + "a ()V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;)V": { + "access": 1 + }, + "a ([J)D": { + "access": 2 + }, + "paint (Ljava/awt/Graphics;)V": { + "access": 1, + "override": "java/awt/Component" + }, + "a (Lkt;)V": { + "access": 4104 + } + } + }, + "blu": { + "name": "blu", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lblq;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "b ()Lblu;": { + "access": 9 + }, + "c ()I": { + "access": 1, + "exceptions": [ + "kc" + ] + }, + "a (Lblq;)V": { + "access": 1 + } + } + }, + "blt": { + "name": "blt", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lbni;Lblt$a;Ljava/lang/String;)Lblt;": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "b (Lblq;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lblt$a;ILjava/lang/String;)V": { + "access": 2 + }, + "a (Ljava/io/BufferedInputStream;)[B": { + "access": 12, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Lblq;)V": { + "access": 1 + } + } + }, + "kw": { + "name": "kw", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (I)V": { + "access": 1 + }, + "\u003cinit\u003e (ILcj;)V": { + "access": 1 + }, + "b ()Lcj;": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "b (I)V": { + "access": 1 + } + } + }, + "blv": { + "name": "blv", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)I": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (FFFF)V": { + "access": 1 + }, + "i ()V": { + "access": 2 + }, + "a (FFFFFFFFFFFFFFFF)V": { + "access": 1 + }, + "a (FFFF)V": { + "access": 1 + }, + "k ()V": { + "access": 2 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "a (IIII)V": { + "access": 1 + }, + "a ([F)V": { + "access": 1 + }, + "h ()V": { + "access": 2 + }, + "a (F)V": { + "access": 1 + }, + "a (Lorg/lwjgl/util/vector/Matrix4f;)V": { + "access": 1 + }, + "a (FF)V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;IILblq;)V": { + "access": 1 + }, + "j ()V": { + "access": 2 + }, + "a (FFF)V": { + "access": 1 + }, + "b (I)V": { + "access": 1 + } + } + }, + "kx": { + "name": "kx", + "access": 33, + "superName": "le", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Latp;Lato;ILnt;)V": { + "access": 1 + } + } + }, + "bly": { + "name": "bly", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "bmk" + ], + "methods": { + "a ()V": { + "access": 1, + "override": "bmk" + }, + "a (ZZ)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "b (ZZ)V": { + "access": 1, + "override": "bmk" + }, + "b ()I": { + "access": 1, + "override": "bmk" + } + } + }, + "ky": { + "name": "ky", + "access": 33, + "superName": "lg", + "methods": { + "a ()V": { + "access": 1, + "override": "lg" + }, + "a (Lcj;Lcq;)V": { + "access": 1, + "override": "lg" + }, + "a (Lwn;Ladm;Lzx;)Z": { + "access": 1, + "override": "lg" + }, + "b (Lcj;)Z": { + "access": 1, + "override": "lg" + }, + "f ()V": { + "access": 2 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "a (Lwn;Ladm;Lzx;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "lg" + }, + "a (Lcj;)V": { + "access": 1, + "override": "lg" + } + } + }, + "kz": { + "name": "kz", + "access": 33, + "superName": "le", + "methods": { + "a ()V": { + "access": 4, + "override": "le" + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Latp;ILle;Lnt;)V": { + "access": 1 + }, + "b ()Ladm;": { + "access": 1, + "override": "adm" + } + } + }, + "blz": { + "name": "blz", + "access": 33, + "superName": "bly", + "methods": { + "e ()[I": { + "access": 1 + }, + "d ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/awt/image/BufferedImage;)V": { + "access": 1 + }, + "\u003cinit\u003e (II)V": { + "access": 1 + }, + "a (Lbni;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bmk" + } + } + }, + "la": { + "name": "la", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "a (Lpk;)V": { + "access": 1 + }, + "a (Llf;Lamy;)V": { + "access": 1 + }, + "a (Llf;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lpk;)V": { + "access": 1 + }, + "a (Lpk;Lff;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lle;)V": { + "access": 1 + }, + "a (Lpk;II)V": { + "access": 1 + }, + "b (Lpk;Lff;)V": { + "access": 1 + }, + "a (Lpk;IIZ)V": { + "access": 1 + }, + "b (Llf;)V": { + "access": 1 + } + } + }, + "bmb": { + "name": "bmb", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lbmh;)V": { + "access": 1025 + } + } + }, + "lb": { + "name": "lb", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ado" + ], + "methods": { + "a (Lwn;ILcj;I)V": { + "access": 1, + "override": "ado" + }, + "a (Ljava/lang/String;DDDFF)V": { + "access": 1, + "override": "ado" + }, + "a (IZDDDDDD[I)V": { + "access": 129, + "override": "ado" + }, + "a (Ljava/lang/String;Lcj;)V": { + "access": 1, + "override": "ado" + }, + "a (IIIIII)V": { + "access": 1, + "override": "ado" + }, + "a (Lpk;)V": { + "access": 1, + "override": "ado" + }, + "b (ILcj;I)V": { + "access": 1, + "override": "ado" + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Lle;)V": { + "access": 1 + }, + "b (Lpk;)V": { + "access": 1, + "override": "ado" + }, + "a (ILcj;I)V": { + "access": 1, + "override": "ado" + }, + "b (Lcj;)V": { + "access": 1, + "override": "ado" + }, + "a (Lwn;Ljava/lang/String;DDDFF)V": { + "access": 1, + "override": "ado" + }, + "a (Lcj;)V": { + "access": 1, + "override": "ado" + } + } + }, + "bma": { + "name": "bma", + "access": 33, + "superName": "bme", + "methods": { + "a (Lbma;)Ljava/lang/String;": { + "access": 4104 + }, + "f ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "\u003cinit\u003e (Ljava/io/File;Ljava/lang/String;Ljy;Lbfm;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "g ()V": { + "access": 2 + }, + "b (Lbma;)Ljava/io/File;": { + "access": 4104 + }, + "d ()V": { + "access": 4 + }, + "c (Lbma;)Lbfm;": { + "access": 4104 + }, + "a (Lbni;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bmk" + }, + "b ()I": { + "access": 1, + "override": "bmk" + }, + "a (Ljava/awt/image/BufferedImage;)V": { + "access": 1 + } + } + }, + "lc": { + "name": "lc", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (IIIII)Z": { + "access": 2 + }, + "b ()V": { + "access": 1 + }, + "d (Llf;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c (Llc;)Ljava/util/List;": { + "access": 4104 + }, + "c (Llf;)V": { + "access": 1 + }, + "b (Llc;)Lnq;": { + "access": 4104 + }, + "b (Llf;)V": { + "access": 1 + }, + "b (I)I": { + "access": 9 + }, + "a (I)V": { + "access": 1 + }, + "a (Llc;)Lle;": { + "access": 4104 + }, + "c ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "a (Llf;)V": { + "access": 1 + }, + "a ()Lle;": { + "access": 1 + }, + "a (II)Z": { + "access": 1 + }, + "a (IIZ)Llc$a;": { + "access": 2 + }, + "d (Llc;)Ljava/util/List;": { + "access": 4104 + }, + "\u003cinit\u003e (Lle;)V": { + "access": 1 + }, + "a (Llf;II)Z": { + "access": 1 + }, + "a (Lcj;)V": { + "access": 1 + } + } + }, + "bmd": { + "name": "bmd", + "access": 33, + "superName": "bly", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbni;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bmk" + }, + "\u003cinit\u003e ([Ljava/lang/String;)V": { + "access": 129 + } + } + }, + "ld": { + "name": "ld", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "amv" + ], + "methods": { + "e ()Z": { + "access": 1, + "override": "amv" + }, + "b ()V": { + "access": 1 + }, + "b (II)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lamv;II)V": { + "access": 1, + "override": "amv" + }, + "a (Lamv;Lamy;II)Z": { + "access": 1, + "override": "amv" + }, + "a (Ladm;Ljava/lang/String;Lcj;)Lcj;": { + "access": 1, + "override": "amv" + }, + "b (Lamy;)V": { + "access": 2 + }, + "d ()Z": { + "access": 1, + "override": "amv" + }, + "\u003cinit\u003e (Lle;Land;Lamv;)V": { + "access": 1 + }, + "f ()Ljava/lang/String;": { + "access": 1, + "override": "amv" + }, + "e (II)Lamy;": { + "access": 2 + }, + "a ()Ljava/util/List;": { + "access": 1 + }, + "g ()I": { + "access": 1, + "override": "amv" + }, + "a (Lamy;)V": { + "access": 2 + }, + "a (II)Z": { + "access": 1, + "override": "amv" + }, + "d (II)Lamy;": { + "access": 1, + "override": "amv" + }, + "a (Lcj;)Lamy;": { + "access": 1, + "override": "amv" + }, + "c ()V": { + "access": 1, + "override": "amv" + }, + "a (Lamy;II)V": { + "access": 1, + "override": "amv" + }, + "c (II)Lamy;": { + "access": 1 + }, + "a (ZLnu;)Z": { + "access": 1, + "override": "amv" + }, + "a (Lpt;Lcj;)Ljava/util/List;": { + "access": 1, + "override": "amv" + } + } + }, + "bmc": { + "name": "bmc", + "access": 33, + "superName": "bly", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljy;Ljava/util/List;Ljava/util/List;)V": { + "access": 1 + }, + "a (Lbni;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bmk" + } + } + }, + "le": { + "name": "le", + "access": 33, + "superName": "adm", + "interfaces": [ + "od" + ], + "methods": { + "a (Lpk;Z)V": { + "access": 1, + "override": "adm" + }, + "b (Lcj;Lafh;II)V": { + "access": 1, + "override": "adm" + }, + "g ()V": { + "access": 1, + "override": "adm" + }, + "ak ()V": { + "access": 2 + }, + "a (Ljava/lang/Runnable;)Lcom/google/common/util/concurrent/ListenableFuture;": { + "access": 1, + "override": "od" + }, + "a (Lcj;)Lcj;": { + "access": 4 + }, + "a (ZLnu;)V": { + "access": 1, + "exceptions": [ + "adn" + ] + }, + "f ()Z": { + "access": 1 + }, + "a (Lpk;)V": { + "access": 4, + "override": "adm" + }, + "aj ()V": { + "access": 2 + }, + "r ()Lnet/minecraft/server/MinecraftServer;": { + "access": 1 + }, + "e ()V": { + "access": 4 + }, + "a (IIIIII)Ljava/util/List;": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "adm" + }, + "a (Ljava/util/UUID;)Lpk;": { + "access": 1 + }, + "c (Lpk;)Z": { + "access": 1, + "override": "adm" + }, + "u ()Ladu;": { + "access": 1 + }, + "m ()Lcj;": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "adm" + }, + "ag ()V": { + "access": 2 + }, + "a (Lpt;Lcj;)Lady$c;": { + "access": 1 + }, + "a (Lamy;Z)Ljava/util/List;": { + "access": 1, + "override": "adm" + }, + "a (Z)Z": { + "access": 1, + "override": "adm" + }, + "l ()V": { + "access": 4 + }, + "a (Lwn;Lcj;)Z": { + "access": 1, + "override": "adm" + }, + "a (Lcj;Lafh;)Z": { + "access": 1, + "override": "adm" + }, + "a (Laqe;Z)Ljava/util/List;": { + "access": 1, + "override": "adm" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lcj;Lafh;I)V": { + "access": 1, + "override": "adm" + }, + "a (Lcj;Lafh;II)V": { + "access": 1, + "override": "adm" + }, + "a (Lpk;DDDFZZ)Ladi;": { + "access": 1, + "override": "adm" + }, + "aJ ()Z": { + "access": 1, + "override": "od" + }, + "a (Lade;)Z": { + "access": 2 + }, + "ah ()Z": { + "access": 2 + }, + "a ()V": { + "access": 4, + "exceptions": [ + "adn" + ] + }, + "c (Lcj;Lafh;II)V": { + "access": 1, + "override": "adm" + }, + "b (Lpk;)V": { + "access": 4, + "override": "adm" + }, + "b ()Ladm;": { + "access": 1, + "override": "adm" + }, + "a (Lcy;ZDDDIDDDD[I)V": { + "access": 129 + }, + "a (Lpt;Lady$c;Lcj;)Z": { + "access": 1 + }, + "j ()V": { + "access": 1 + }, + "a (Ladp;)V": { + "access": 1, + "override": "adm" + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Latp;Lato;ILnt;)V": { + "access": 1 + }, + "ai ()Z": { + "access": 2 + }, + "n ()V": { + "access": 1 + }, + "a (Lcy;DDDIDDDD[I)V": { + "access": 129 + }, + "i ()V": { + "access": 1, + "override": "adm" + }, + "k ()Lamv;": { + "access": 4, + "override": "adm" + }, + "o ()V": { + "access": 1 + }, + "t ()Llc;": { + "access": 1 + }, + "b (Ladp;)V": { + "access": 2 + }, + "h ()V": { + "access": 4, + "override": "adm" + }, + "a (Lpk;B)V": { + "access": 1, + "override": "adm" + }, + "p ()V": { + "access": 4, + "override": "adm" + }, + "q ()I": { + "access": 4, + "override": "adm" + }, + "s ()Lla;": { + "access": 1 + } + } + }, + "bmf": { + "name": "bmf", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "d ()Ljava/util/List;": { + "access": 1 + }, + "a (II)I": { + "access": 4104 + }, + "b (Lbmf$a;)Z": { + "access": 2 + }, + "a (Lbmf$a;)Z": { + "access": 2 + }, + "a (Lbmi;)V": { + "access": 1 + }, + "\u003cinit\u003e (IIZII)V": { + "access": 1 + }, + "b (II)I": { + "access": 10 + }, + "c ()V": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "lf": { + "name": "lf", + "access": 33, + "superName": "wn", + "interfaces": [ + "xn" + ], + "methods": { + "y ()Lwn$b;": { + "access": 1 + }, + "q ()V": { + "access": 1 + }, + "a (Log;)V": { + "access": 1, + "override": "wn" + }, + "z ()V": { + "access": 1 + }, + "C ()Lpk;": { + "access": 1 + }, + "h_ ()V": { + "access": 1, + "override": "pr" + }, + "cr ()Z": { + "access": 2 + }, + "c (I)V": { + "access": 1, + "override": "pk" + }, + "a (Lmw;)V": { + "access": 1, + "override": "wn" + }, + "r ()V": { + "access": 1 + }, + "a (Lpk;)V": { + "access": 1, + "override": "pk" + }, + "a (Lakw;)V": { + "access": 2 + }, + "cs ()V": { + "access": 2 + }, + "a (Ladp$a;)V": { + "access": 1, + "override": "wn" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "i_ ()V": { + "access": 4 + }, + "g_ ()V": { + "access": 1 + }, + "a (ILjava/lang/String;)Z": { + "access": 1, + "override": "m" + }, + "e (Lpk;)V": { + "access": 1 + }, + "B ()V": { + "access": 4, + "override": "pr" + }, + "a (ZZZ)V": { + "access": 1, + "override": "wn" + }, + "a (DZ)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "s ()V": { + "access": 4, + "override": "wn" + }, + "a (Lzx;I)V": { + "access": 1, + "override": "wn" + }, + "a (DZLafh;Lcj;)V": { + "access": 4, + "override": "pk" + }, + "c (Lpk;)V": { + "access": 1, + "override": "wn" + }, + "a (Lpk;I)V": { + "access": 1, + "override": "pr" + }, + "a (DDD)V": { + "access": 1, + "override": "pk" + }, + "a (FFZZ)V": { + "access": 1 + }, + "a (Ltp;Log;)V": { + "access": 1, + "override": "wn" + }, + "a (Leu;)V": { + "access": 1, + "override": "m" + }, + "t ()V": { + "access": 1, + "override": "wn" + }, + "a (Lpf;)V": { + "access": 4, + "override": "pr" + }, + "b (I)V": { + "access": 1, + "override": "wn" + }, + "A ()Lmv;": { + "access": 1 + }, + "l ()V": { + "access": 1 + }, + "D ()J": { + "access": 1 + }, + "v ()Z": { + "access": 1, + "override": "wn" + }, + "a (Lwn;Z)V": { + "access": 1, + "override": "wn" + }, + "w ()Ljava/lang/String;": { + "access": 1 + }, + "c ()Lcj;": { + "access": 1, + "override": "m" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpf;Z)V": { + "access": 4, + "override": "pr" + }, + "a (Lzx;)V": { + "access": 1, + "override": "wn" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "wn" + }, + "a (Lacy;)V": { + "access": 1, + "override": "wn" + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Lle;Lcom/mojang/authlib/GameProfile;Llg;)V": { + "access": 1 + }, + "a (I)V": { + "access": 1, + "override": "wn" + }, + "a (Lcj;)Lwn$a;": { + "access": 1, + "override": "wn" + }, + "a (Lih;)V": { + "access": 1 + }, + "b (Lpk;)V": { + "access": 1, + "override": "wn" + }, + "a (Lxi;ILzx;)V": { + "access": 1, + "override": "xn" + }, + "j ()V": { + "access": 1, + "override": "pr" + }, + "E ()Leu;": { + "access": 1 + }, + "a (Lxi;)V": { + "access": 1 + }, + "a (Laln;)V": { + "access": 1, + "override": "wn" + }, + "n ()V": { + "access": 1, + "override": "wn" + }, + "a (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + }, + "f (Lpk;)V": { + "access": 1, + "override": "wn" + }, + "a (Lxi;Ljava/util/List;)V": { + "access": 1, + "override": "xn" + }, + "a (Lol;)V": { + "access": 1, + "override": "wn" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "b (Lpf;)V": { + "access": 4, + "override": "pr" + }, + "d (Lpk;)V": { + "access": 1 + }, + "a (Low;)V": { + "access": 1, + "override": "pr" + }, + "a (Lxi;II)V": { + "access": 1, + "override": "xn" + }, + "o ()V": { + "access": 1 + }, + "a (Llf;)Z": { + "access": 1, + "override": "pk" + }, + "b (Leu;)V": { + "access": 1, + "override": "wn" + }, + "a (Lxi;Log;)V": { + "access": 1, + "override": "xn" + }, + "u ()Lle;": { + "access": 1 + }, + "a (Lmw;I)V": { + "access": 1, + "override": "wn" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "p ()V": { + "access": 1 + } + } + }, + "bds$a": { + "name": "bds$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bme": { + "name": "bme", + "access": 33, + "superName": "bly", + "methods": { + "\u003cinit\u003e (Ljy;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbni;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bmk" + } + } + }, + "lg": { + "name": "lg", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lcj;Lcq;)V": { + "access": 1 + }, + "e ()V": { + "access": 1 + }, + "b (Lcj;)Z": { + "access": 1 + }, + "b (Ladp$a;)V": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "b ()Ladp$a;": { + "access": 1 + }, + "c (Lcj;)Z": { + "access": 2 + }, + "a ()V": { + "access": 1 + }, + "a (Lle;)V": { + "access": 1 + }, + "a (Lwn;Ladm;Lzx;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "a (Ladp$a;)V": { + "access": 1 + }, + "a (Lwn;Ladm;Lzx;Lcj;Lcq;FFF)Z": { + "access": 1 + }, + "c ()Z": { + "access": 1 + }, + "a (Lcj;)V": { + "access": 1 + } + } + }, + "bmh": { + "name": "bmh", + "access": 33, + "superName": "bly", + "interfaces": [ + "bmn" + ], + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "b (Lbni;)V": { + "access": 1 + }, + "a (Ljy;)Lbmi;": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "bmm" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "g ()V": { + "access": 2 + }, + "a (Ljy;I)Ljy;": { + "access": 2 + }, + "d ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)Lbmi;": { + "access": 1 + }, + "a (Lbni;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bmk" + }, + "a (I)V": { + "access": 1 + }, + "f ()Lbmi;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Lbmb;)V": { + "access": 1 + }, + "a (Lbni;Lbmb;)V": { + "access": 1 + } + } + }, + "lh": { + "name": "lh", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "b ()V": { + "access": 2 + }, + "e (Llf;)Z": { + "access": 2 + }, + "\u003cinit\u003e (Lpk;IIZ)V": { + "access": 1 + }, + "d (Llf;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lff;)V": { + "access": 1 + }, + "a (Ljava/util/List;)V": { + "access": 1 + }, + "a (Lff;)V": { + "access": 1 + }, + "b (Ljava/util/List;)V": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "b (Llf;)V": { + "access": 1 + }, + "c ()Lff;": { + "access": 2 + }, + "a ()V": { + "access": 1 + }, + "a (Llf;)V": { + "access": 1 + }, + "c (Llf;)Z": { + "access": 1 + } + } + }, + "bdb$3": { + "name": "bdb$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "\u003cinit\u003e (Lbdb;)V": { + "access": 0 + }, + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bmg": { + "name": "bmg", + "access": 33, + "superName": "java/lang/RuntimeException", + "methods": { + "\u003cinit\u003e (Lbmf$a;Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "bdb$2": { + "name": "bdb$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "\u003cinit\u003e (Lbdb;)V": { + "access": 0 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bmj": { + "name": "bmj", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bmm", + "bnj" + ], + "methods": { + "a (Ljy;Lbmk;)Z": { + "access": 1 + }, + "a (Ljy;Lbmn;)Z": { + "access": 1 + }, + "a (Ljava/lang/String;Lblz;)Ljy;": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "bmm" + }, + "\u003cinit\u003e (Lbni;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ljy;)Lbmk;": { + "access": 1 + }, + "c (Ljy;)V": { + "access": 1 + }, + "a (Ljy;)V": { + "access": 1 + }, + "a (Lbni;)V": { + "access": 1, + "override": "bnj" + } + } + }, + "lj": { + "name": "lj", + "access": 33, + "superName": "io/netty/channel/ChannelInboundHandlerAdapter", + "methods": { + "a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/lang/String;)Lio/netty/buffer/ByteBuf;": { + "access": 2 + }, + "\u003cinit\u003e (Lll;)V": { + "access": 1 + }, + "channelRead (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/channel/ChannelInboundHandler" + } + } + }, + "bdb$1": { + "name": "bdb$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "\u003cinit\u003e (Lbdb;)V": { + "access": 0 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bmi": { + "name": "bmi", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "l ()V": { + "access": 1 + }, + "k ()I": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ljava/lang/String;)V": { + "access": 9 + }, + "b (D)F": { + "access": 1 + }, + "f ()F": { + "access": 1 + }, + "m ()Z": { + "access": 1 + }, + "a (Ljava/util/List;)V": { + "access": 1 + }, + "c (I)V": { + "access": 1 + }, + "a ()I": { + "access": 1 + }, + "d (I)V": { + "access": 1 + }, + "a (I)[[I": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 9 + }, + "g ()F": { + "access": 1 + }, + "a ([Ljava/awt/image/BufferedImage;Lboa;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Lbmi;)V": { + "access": 1 + }, + "j ()V": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "n ()V": { + "access": 2 + }, + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 4 + }, + "a (Ljy;)Lbmi;": { + "access": 12 + }, + "a ([[IIII)[[I": { + "access": 10 + }, + "a (D)F": { + "access": 1 + }, + "h ()F": { + "access": 1 + }, + "i ()Ljava/lang/String;": { + "access": 1 + }, + "e (I)V": { + "access": 2 + }, + "c ()I": { + "access": 1 + }, + "a (IIIIZ)V": { + "access": 1 + }, + "o ()V": { + "access": 2 + }, + "e ()F": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "d ()I": { + "access": 1 + }, + "b (I)V": { + "access": 1 + } + } + }, + "lk": { + "name": "lk", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "jd" + ], + "methods": { + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Lek;)V": { + "access": 1 + }, + "a (Leu;)V": { + "access": 1, + "override": "ep" + }, + "a (Ljc;)V": { + "access": 1, + "override": "jd" + } + } + }, + "bml": { + "name": "bml", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ([II)V": { + "access": 10 + }, + "a (Z)V": { + "access": 10 + }, + "a (ZZ)V": { + "access": 10 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (ILjava/awt/image/BufferedImage;IIZZ)I": { + "access": 9 + }, + "a (Ljava/awt/image/BufferedImage;IIZZ)V": { + "access": 10 + }, + "a ()I": { + "access": 9 + }, + "a (I)V": { + "access": 9 + }, + "a (ILjava/awt/image/BufferedImage;ZZ)I": { + "access": 9 + }, + "a (I[IIIIIZZZ)V": { + "access": 10 + }, + "a ([III)V": { + "access": 9 + }, + "a (I[III)V": { + "access": 9 + }, + "a ([[IIIIIZZ)V": { + "access": 9 + }, + "a ([I)[I": { + "access": 9 + }, + "a (IIIIZ)I": { + "access": 10 + }, + "b ([III)V": { + "access": 10 + }, + "b (Z)V": { + "access": 10 + }, + "a (III)V": { + "access": 9 + }, + "a (IIIII)I": { + "access": 10 + }, + "a (II[[I)[[I": { + "access": 9 + }, + "a (Lbni;Ljy;)[I": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (IIII)V": { + "access": 9 + }, + "a (Ljava/io/InputStream;)Ljava/awt/image/BufferedImage;": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (ILjava/awt/image/BufferedImage;)I": { + "access": 9 + }, + "c (I)I": { + "access": 9 + }, + "b (I)V": { + "access": 8 + } + } + }, + "ll": { + "name": "ll", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()V": { + "access": 1 + }, + "d ()Lnet/minecraft/server/MinecraftServer;": { + "access": 1 + }, + "a (Ljava/net/InetAddress;I)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;)V": { + "access": 1 + }, + "b (Lll;)Lnet/minecraft/server/MinecraftServer;": { + "access": 4104 + }, + "a (Lll;)Ljava/util/List;": { + "access": 4104 + }, + "c ()V": { + "access": 1 + }, + "a ()Ljava/net/SocketAddress;": { + "access": 1 + } + } + }, + "bmk": { + "name": "bmk", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1025 + }, + "b (ZZ)V": { + "access": 1025 + }, + "a (Lbni;)V": { + "access": 1025, + "exceptions": [ + "java/io/IOException" + ] + }, + "b ()I": { + "access": 1025 + } + } + }, + "lm": { + "name": "lm", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "ic", + "km" + ], + "methods": { + "a (Lis;)V": { + "access": 1, + "override": "ic" + }, + "a (Liu;)V": { + "access": 1, + "override": "ic" + }, + "a (Liq;)V": { + "access": 1, + "override": "ic" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lio;)V": { + "access": 1, + "override": "ic" + }, + "a (Liy;)V": { + "access": 1, + "override": "ic" + }, + "a (Liw;)V": { + "access": 1, + "override": "ic" + }, + "a (Lij;)V": { + "access": 1, + "override": "ic" + }, + "a (Lih;)V": { + "access": 1, + "override": "ic" + }, + "a (Lil;)V": { + "access": 1, + "override": "ic" + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Lek;Llf;)V": { + "access": 1 + }, + "a (Lin;)V": { + "access": 1, + "override": "ic" + }, + "a (Lid;)V": { + "access": 1, + "override": "ic" + }, + "b (Lip;)Z": { + "access": 2 + }, + "a (Lit;)V": { + "access": 1, + "override": "ic" + }, + "a (Liv;)V": { + "access": 1, + "override": "ic" + }, + "a (Lir;)V": { + "access": 1, + "override": "ic" + }, + "a (Lip;)V": { + "access": 1, + "override": "ic" + }, + "a ()Lek;": { + "access": 1 + }, + "a (DDDFF)V": { + "access": 1 + }, + "a (Liz;)V": { + "access": 1, + "override": "ic" + }, + "d (Ljava/lang/String;)V": { + "access": 2 + }, + "a (Lix;)V": { + "access": 1, + "override": "ic" + }, + "a (DDDFFLjava/util/Set;)V": { + "access": 1 + }, + "a (Lff;)V": { + "access": 1 + }, + "a (Lii;)V": { + "access": 1, + "override": "ic" + }, + "a (Lja;)V": { + "access": 1, + "override": "ic" + }, + "a (Lig;)V": { + "access": 1, + "override": "ic" + }, + "a (Lik;)V": { + "access": 1, + "override": "ic" + }, + "a (Lim;)V": { + "access": 1, + "override": "ic" + }, + "a (Leu;)V": { + "access": 1, + "override": "ep" + }, + "c ()V": { + "access": 1, + "override": "km" + }, + "a (Lie;)V": { + "access": 1, + "override": "ic" + }, + "c (Ljava/lang/String;)V": { + "access": 1 + }, + "d ()J": { + "access": 2 + } + } + }, + "cq$b": { + "name": "cq$b", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lcq$b;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;)V": { + "access": 2 + }, + "values ()[Lcq$b;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "bmn": { + "name": "bmn", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "bmk", + "bmm" + ] + }, + "ln": { + "name": "ln", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "jd" + ], + "methods": { + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Lek;)V": { + "access": 1 + }, + "a (Leu;)V": { + "access": 1, + "override": "ep" + }, + "a (Ljc;)V": { + "access": 1, + "override": "jd" + } + } + }, + "cq$c": { + "name": "cq$c", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "com/google/common/base/Predicate", + "java/lang/Iterable" + ], + "methods": { + "valueOf (Ljava/lang/String;)Lcq$c;": { + "access": 9 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lcq;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a ()[Lcq;": { + "access": 1 + }, + "a (Ljava/util/Random;)Lcq;": { + "access": 1 + }, + "iterator ()Ljava/util/Iterator;": { + "access": 1, + "override": "java/lang/Iterable" + }, + "values ()[Lcq$c;": { + "access": 9 + }, + "a (Lcq;)Z": { + "access": 1 + } + } + }, + "bmm": { + "name": "bmm", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "e ()V": { + "access": 1025 + } + } + }, + "lo": { + "name": "lo", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "jk", + "km" + ], + "methods": { + "a (Llo;Lcom/mojang/authlib/GameProfile;)Lcom/mojang/authlib/GameProfile;": { + "access": 4104 + }, + "b ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Lek;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljl;)V": { + "access": 1, + "override": "jk" + }, + "a (Ljm;)V": { + "access": 1, + "override": "jk" + }, + "c (Llo;)Ljava/lang/String;": { + "access": 4104 + }, + "d (Llo;)Ljavax/crypto/SecretKey;": { + "access": 4104 + }, + "a (Llo;Llo$a;)Llo$a;": { + "access": 4104 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "a (Llo;)Lnet/minecraft/server/MinecraftServer;": { + "access": 4104 + }, + "a (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/authlib/GameProfile;": { + "access": 4 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Leu;)V": { + "access": 1, + "override": "ep" + }, + "b (Llo;)Lcom/mojang/authlib/GameProfile;": { + "access": 4104 + }, + "c ()V": { + "access": 1, + "override": "km" + }, + "e ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + } + } + }, + "bmp": { + "name": "bmp", + "access": 33, + "superName": "bmi", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Ladm;DDDZZ)V": { + "access": 1 + }, + "j ()V": { + "access": 1, + "override": "bmi" + } + } + }, + "lp": { + "name": "lp", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "jt" + ], + "methods": { + "a (Ljv;)V": { + "access": 1, + "override": "jt" + }, + "a (Lju;)V": { + "access": 1, + "override": "jt" + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Lek;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Leu;)V": { + "access": 1, + "override": "ep" + } + } + }, + "cq$a": { + "name": "cq$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "com/google/common/base/Predicate", + "nw" + ], + "methods": { + "values ()[Lcq$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;Lcq$c;)V": { + "access": 2 + }, + "b ()Z": { + "access": 1 + }, + "valueOf (Ljava/lang/String;)Lcq$a;": { + "access": 9 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lcq;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Ljava/lang/String;)Lcq$a;": { + "access": 9 + }, + "d ()Lcq$c;": { + "access": 1 + }, + "c ()Z": { + "access": 1 + }, + "a (Lcq;)Z": { + "access": 1 + } + } + }, + "bmo": { + "name": "bmo", + "access": 33, + "superName": "bmi", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "j ()V": { + "access": 1, + "override": "bmi" + } + } + }, + "ls": { + "name": "ls", + "access": 1057, + "superName": "ma", + "methods": { + "e ()Z": { + "access": 0, + "override": "ma" + }, + "\u003cinit\u003e (Ljava/lang/Object;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/Object;Lcom/google/gson/JsonObject;)V": { + "access": 4 + }, + "a (Lcom/google/gson/JsonObject;)V": { + "access": 4, + "override": "ma" + }, + "c ()Ljava/util/Date;": { + "access": 1 + }, + "d ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "bmt": { + "name": "bmt", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbmu;)V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "a (Ljava/nio/ByteBuffer;)V": { + "access": 1 + } + } + }, + "lt": { + "name": "lt", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "b (Ljava/util/UUID;)Llt$a;": { + "access": 2 + }, + "b ()V": { + "access": 1 + }, + "a (Ljava/util/UUID;)Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "a ()[Ljava/lang/String;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "a (I)Ljava/util/List;": { + "access": 2 + }, + "c ()V": { + "access": 1 + }, + "a (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;)V": { + "access": 2 + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Ljava/io/File;)V": { + "access": 1 + }, + "a (Lnet/minecraft/server/MinecraftServer;Ljava/lang/String;)Lcom/mojang/authlib/GameProfile;": { + "access": 10 + } + } + }, + "bms": { + "name": "bms", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "lu": { + "name": "lu", + "access": 33, + "superName": "mb", + "methods": { + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "c (Ljava/net/SocketAddress;)Ljava/lang/String;": { + "access": 2 + }, + "a (Ljava/net/SocketAddress;)Z": { + "access": 1 + }, + "b (Ljava/net/SocketAddress;)Llv;": { + "access": 1 + }, + "a (Lcom/google/gson/JsonObject;)Lma;": { + "access": 4, + "override": "mb" + } + } + }, + "bmv": { + "name": "bmv", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "e ()I": { + "access": 17 + }, + "f ()Z": { + "access": 17 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (ILbmv$b;)Z": { + "access": 18 + }, + "b ()Lbmv$b;": { + "access": 17 + }, + "c ()I": { + "access": 17 + }, + "d ()I": { + "access": 17 + }, + "a ()Lbmv$a;": { + "access": 17 + }, + "\u003cinit\u003e (ILbmv$a;Lbmv$b;I)V": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "lv": { + "name": "lv", + "access": 33, + "superName": "ls", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lcom/google/gson/JsonObject;)V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonObject;)V": { + "access": 4, + "override": "ma" + }, + "b (Lcom/google/gson/JsonObject;)Ljava/lang/String;": { + "access": 10 + } + } + }, + "bmu": { + "name": "bmu", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "f ()I": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "j ()Z": { + "access": 2 + }, + "i ()I": { + "access": 1 + }, + "d (I)I": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "a (I)Z": { + "access": 1 + }, + "b (I)I": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "b ()Z": { + "access": 1 + }, + "c (I)Lbmv;": { + "access": 1 + }, + "\u003cinit\u003e (Lbmu;)V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "e ()I": { + "access": 1 + }, + "g ()I": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Lbmv;)Lbmu;": { + "access": 1 + }, + "h ()Ljava/util/List;": { + "access": 1 + } + } + }, + "lw": { + "name": "lw", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "d (Lkl;)Ljava/io/File;": { + "access": 10 + }, + "a ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "a (Lnet/minecraft/server/MinecraftServer;)Z": { + "access": 9 + }, + "b (Lnet/minecraft/server/MinecraftServer;)Z": { + "access": 9 + }, + "c (Lnet/minecraft/server/MinecraftServer;)Z": { + "access": 9 + }, + "a (Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "a (Lko;Lkl;)Z": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ljava/io/File;)V": { + "access": 10 + }, + "b (Ljava/lang/String;Ljava/util/Date;)Ljava/util/Date;": { + "access": 10 + }, + "d (Lnet/minecraft/server/MinecraftServer;)Z": { + "access": 9 + }, + "a (Lnet/minecraft/server/MinecraftServer;Ljava/util/Collection;Lcom/mojang/authlib/ProfileLookupCallback;)V": { + "access": 10 + }, + "a (Ljava/io/File;)V": { + "access": 4104 + }, + "c (Lkl;)Z": { + "access": 10 + }, + "a (Ljava/lang/String;Ljava/util/Date;)Ljava/util/Date;": { + "access": 4104 + }, + "a (Lkl;)Z": { + "access": 9 + }, + "a (Ljava/io/File;Ljava/util/Map;)Ljava/util/List;": { + "access": 8, + "exceptions": [ + "java/io/IOException" + ] + }, + "c (Ljava/io/File;)V": { + "access": 10 + }, + "b (Lkl;)Z": { + "access": 10 + } + } + }, + "bmx": { + "name": "bmx", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "bnk" + ], + "methods": { + "c (Ljy;)Ljava/lang/String;": { + "access": 10 + }, + "a (Ljava/io/File;Ljava/io/File;)Ljava/lang/String;": { + "access": 12 + }, + "b (Ljava/lang/String;)Z": { + "access": 1028 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a ()Ljava/awt/image/BufferedImage;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bnk" + }, + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "a (Ljy;)Ljava/io/InputStream;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bnk" + }, + "b (Ljy;)Z": { + "access": 1, + "override": "bnk" + }, + "a (Lbny;Ljava/io/InputStream;Ljava/lang/String;)Lbnw;": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 1, + "override": "bnk" + }, + "a (Lbny;Ljava/lang/String;)Lbnw;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bnk" + }, + "c (Ljava/lang/String;)V": { + "access": 4 + }, + "a (Ljava/lang/String;)Ljava/io/InputStream;": { + "access": 1028, + "exceptions": [ + "java/io/IOException" + ] + } + } + }, + "lx": { + "name": "lx", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "p ()I": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "f (Llf;)V": { + "access": 1 + }, + "d (Llf;)V": { + "access": 1 + }, + "a (Lkk;Llf;)V": { + "access": 4 + }, + "a (Ljava/util/UUID;)Llf;": { + "access": 1 + }, + "a ([Lle;)V": { + "access": 1 + }, + "b (Llf;)V": { + "access": 4 + }, + "g (Lcom/mojang/authlib/GameProfile;)Llf;": { + "access": 1 + }, + "l ()[Ljava/lang/String;": { + "access": 1 + }, + "g ()[Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "a (Lek;Llf;)V": { + "access": 1 + }, + "c ()Lnet/minecraft/server/MinecraftServer;": { + "access": 1 + }, + "a (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "a (Ladp$a;)V": { + "access": 1 + }, + "a (Llf;Lle;)V": { + "access": 1 + }, + "b (Llf;Lle;)V": { + "access": 1 + }, + "o ()I": { + "access": 1 + }, + "d (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "r ()Z": { + "access": 1 + }, + "e (Lcom/mojang/authlib/GameProfile;)Z": { + "access": 1 + }, + "k ()Lme;": { + "access": 1 + }, + "e ()V": { + "access": 1 + }, + "t ()Ldn;": { + "access": 1 + }, + "a (Lff;)V": { + "access": 1 + }, + "a (Lpk;ILle;Lle;)V": { + "access": 1 + }, + "a (Lwn;DDDDILff;)V": { + "access": 1 + }, + "b (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "q ()[Ljava/lang/String;": { + "access": 1 + }, + "h (Lcom/mojang/authlib/GameProfile;)Z": { + "access": 1 + }, + "u ()V": { + "access": 1 + }, + "a (Leu;)V": { + "access": 1 + }, + "h ()Lmc;": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "a (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Ljava/lang/String;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Z)Ljava/lang/String;": { + "access": 1 + }, + "b (Ljava/lang/String;)Ljava/util/List;": { + "access": 1 + }, + "f (Lcom/mojang/authlib/GameProfile;)Z": { + "access": 1 + }, + "c (Llf;)V": { + "access": 1 + }, + "a (Llf;)Ldn;": { + "access": 1 + }, + "a (Lff;I)V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "b (Lwn;Leu;)V": { + "access": 1 + }, + "f ()[Ljava/lang/String;": { + "access": 1 + }, + "a (Lwn;)Lmv;": { + "access": 1 + }, + "a (Lwn;Leu;)V": { + "access": 1 + }, + "i ()Llu;": { + "access": 1 + }, + "a (Llf;I)V": { + "access": 1 + }, + "s ()I": { + "access": 1 + }, + "m ()Lly;": { + "access": 1 + }, + "c (Z)V": { + "access": 1 + }, + "j ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)Llf;": { + "access": 1 + }, + "e (Llf;)V": { + "access": 1 + }, + "a (Leu;Z)V": { + "access": 1 + }, + "a (DDDDILff;)V": { + "access": 1 + }, + "a (Llf;Llf;Ladm;)V": { + "access": 2 + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;)V": { + "access": 1 + }, + "c (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "n ()[Ljava/lang/String;": { + "access": 1 + }, + "v ()Ljava/util/List;": { + "access": 1 + }, + "a (Llf;IZ)Llf;": { + "access": 1 + } + } + }, + "ly": { + "name": "ly", + "access": 33, + "superName": "mb", + "methods": { + "a (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "a (Ljava/lang/Object;)Ljava/lang/String;": { + "access": 4100, + "bouncer": { + "name": "c", + "desc": "(Lcom/mojang/authlib/GameProfile;)Ljava/lang/String;" + }, + "override": "mb" + }, + "a ()[Ljava/lang/String;": { + "access": 1, + "override": "mb" + }, + "a (Lcom/google/gson/JsonObject;)Lma;": { + "access": 4, + "override": "mb" + }, + "b (Lcom/mojang/authlib/GameProfile;)Z": { + "access": 1 + }, + "c (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String;": { + "access": 4 + } + } + }, + "azy$a": { + "name": "azy$a", + "access": 32, + "superName": "awi", + "methods": { + "a ()V": { + "access": 4, + "override": "awi" + }, + "a (IZII)V": { + "access": 4, + "override": "awi" + }, + "a (IIIIII)V": { + "access": 4, + "override": "awi" + }, + "d ()I": { + "access": 4, + "override": "awi" + }, + "a (I)Z": { + "access": 4, + "override": "awi" + }, + "\u003cinit\u003e (Lazy;Lave;)V": { + "access": 1 + }, + "b ()I": { + "access": 4, + "override": "awi" + } + } + }, + "bmz": { + "name": "bmz", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()Ljy;": { + "access": 9 + }, + "a (Ljava/util/UUID;)Ljy;": { + "access": 9 + }, + "b (Ljava/util/UUID;)Ljava/lang/String;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c (Ljava/util/UUID;)Z": { + "access": 10 + } + } + }, + "lz": { + "name": "lz", + "access": 33, + "superName": "ma", + "methods": { + "\u003cinit\u003e (Lcom/google/gson/JsonObject;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lcom/mojang/authlib/GameProfile;IZ)V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonObject;)V": { + "access": 4, + "override": "ma" + }, + "b (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile;": { + "access": 10 + }, + "a ()I": { + "access": 1 + }, + "b ()Z": { + "access": 1 + } + } + }, + "bmy": { + "name": "bmy", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()Ljava/util/Map;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/io/File;Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "es$2": { + "name": "es$2", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Leu;)Leu;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Leu;)Leu;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "es$1": { + "name": "es$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Leu;)Ljava/util/Iterator;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Leu;)Ljava/util/Iterator;": { + "access": 1 + } + } + }, + "bna": { + "name": "bna", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnk" + ], + "methods": { + "\u003cinit\u003e (Ljava/util/Map;)V": { + "access": 1 + }, + "a ()Ljava/awt/image/BufferedImage;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bnk" + }, + "c (Ljy;)Ljava/io/InputStream;": { + "access": 1, + "exceptions": [ + "java/io/FileNotFoundException" + ] + }, + "a (Ljy;)Ljava/io/InputStream;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bnk" + }, + "b (Ljy;)Z": { + "access": 1, + "override": "bnk" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "d (Ljy;)Ljava/io/InputStream;": { + "access": 2 + }, + "c ()Ljava/util/Set;": { + "access": 1, + "override": "bnk" + }, + "b ()Ljava/lang/String;": { + "access": 1, + "override": "bnk" + }, + "a (Lbny;Ljava/lang/String;)Lbnw;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bnk" + } + } + }, + "ma": { + "name": "ma", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "e ()Z": { + "access": 0 + }, + "\u003cinit\u003e (Ljava/lang/Object;)V": { + "access": 1 + }, + "f ()Ljava/lang/Object;": { + "access": 0 + }, + "\u003cinit\u003e (Ljava/lang/Object;Lcom/google/gson/JsonObject;)V": { + "access": 4 + }, + "a (Lcom/google/gson/JsonObject;)V": { + "access": 4 + } + } + }, + "mb": { + "name": "mb", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Z)V": { + "access": 1 + }, + "a (Ljava/lang/Object;)Ljava/lang/String;": { + "access": 4 + }, + "b (Ljava/lang/Object;)Lma;": { + "access": 1 + }, + "a ()[Ljava/lang/String;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "g ()V": { + "access": 1, + "exceptions": [ + "java/io/FileNotFoundException" + ] + }, + "c (Ljava/lang/Object;)V": { + "access": 1 + }, + "e ()Ljava/util/Map;": { + "access": 4 + }, + "d ()Z": { + "access": 1 + }, + "b ()Z": { + "access": 1 + }, + "c ()Ljava/io/File;": { + "access": 1 + }, + "d (Ljava/lang/Object;)Z": { + "access": 4 + }, + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "h ()V": { + "access": 2 + }, + "a (Lcom/google/gson/JsonObject;)Lma;": { + "access": 4 + }, + "f ()V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Lma;)V": { + "access": 1 + } + } + }, + "bnc": { + "name": "bnc", + "access": 33, + "superName": "bmx", + "interfaces": [ + "java/io/Closeable" + ], + "methods": { + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "b (Ljava/lang/String;)Z": { + "access": 1, + "override": "bmx" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c ()Ljava/util/Set;": { + "access": 1, + "override": "bnk" + }, + "close ()V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "java/lang/AutoCloseable" + }, + "d ()Ljava/util/zip/ZipFile;": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ljava/lang/String;)Ljava/io/InputStream;": { + "access": 4, + "exceptions": [ + "java/io/IOException" + ], + "override": "bmx" + }, + "finalize ()V": { + "access": 4, + "exceptions": [ + "java/lang/Throwable" + ], + "override": "java/lang/Object" + } + } + }, + "mc": { + "name": "mc", + "access": 33, + "superName": "mb", + "methods": { + "a (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "a (Ljava/lang/Object;)Ljava/lang/String;": { + "access": 4100, + "bouncer": { + "name": "b", + "desc": "(Lcom/mojang/authlib/GameProfile;)Ljava/lang/String;" + }, + "override": "mb" + }, + "a (Lcom/mojang/authlib/GameProfile;)Z": { + "access": 1 + }, + "a ()[Ljava/lang/String;": { + "access": 1, + "override": "mb" + }, + "a (Lcom/google/gson/JsonObject;)Lma;": { + "access": 4, + "override": "mb" + }, + "b (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String;": { + "access": 4 + } + } + }, + "bgk$a": { + "name": "bgk$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgk;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgk;" + }, + "override": "com/google/gson/JsonDeserializer" + }, + "b (Lcom/google/gson/JsonObject;)[F": { + "access": 2 + }, + "a (Lcom/google/gson/JsonObject;)I": { + "access": 4 + } + } + }, + "bnb": { + "name": "bnb", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bni" + ], + "methods": { + "a (Ljy;)Lbnh;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bni" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljy;Lbnk;)Ljava/io/InputStream;": { + "access": 4, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Lbnk;)V": { + "access": 1 + }, + "a ()Ljava/util/Set;": { + "access": 1, + "override": "bni" + }, + "c (Ljy;)Ljy;": { + "access": 8 + }, + "b ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "\u003cinit\u003e (Lbny;)V": { + "access": 1 + }, + "b (Ljy;)Ljava/util/List;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bni" + } + } + }, + "md": { + "name": "md", + "access": 33, + "superName": "ls", + "methods": { + "\u003cinit\u003e (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lcom/google/gson/JsonObject;)V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonObject;)V": { + "access": 4, + "override": "ma" + }, + "b (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile;": { + "access": 10 + } + } + }, + "bne": { + "name": "bne", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnj" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbni;)V": { + "access": 1, + "override": "bnj" + } + } + }, + "me": { + "name": "me", + "access": 33, + "superName": "mb", + "methods": { + "a (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "a (Ljava/lang/Object;)Ljava/lang/String;": { + "access": 4100, + "bouncer": { + "name": "b", + "desc": "(Lcom/mojang/authlib/GameProfile;)Ljava/lang/String;" + }, + "override": "mb" + }, + "a (Lcom/mojang/authlib/GameProfile;)Z": { + "access": 1 + }, + "a ()[Ljava/lang/String;": { + "access": 1, + "override": "mb" + }, + "a (Lcom/google/gson/JsonObject;)Lma;": { + "access": 4, + "override": "mb" + }, + "b (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String;": { + "access": 4 + } + } + }, + "bnd": { + "name": "bnd", + "access": 33, + "superName": "bmx", + "methods": { + "\u003cinit\u003e (Ljava/io/File;)V": { + "access": 1 + }, + "b (Ljava/lang/String;)Z": { + "access": 4, + "override": "bmx" + }, + "c ()Ljava/util/Set;": { + "access": 1, + "override": "bnk" + }, + "a (Ljava/lang/String;)Ljava/io/InputStream;": { + "access": 4, + "exceptions": [ + "java/io/IOException" + ], + "override": "bmx" + } + } + }, + "mf": { + "name": "mf", + "access": 33, + "superName": "ma", + "methods": { + "\u003cinit\u003e (Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lcom/google/gson/JsonObject;)V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonObject;)V": { + "access": 4, + "override": "ma" + }, + "b (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile;": { + "access": 10 + } + } + }, + "bng": { + "name": "bng", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "bni" + ], + "methods": { + "a (Lbnj;)V": { + "access": 1025 + }, + "a (Ljava/util/List;)V": { + "access": 1025 + } + } + }, + "bnf": { + "name": "bnf", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnj" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbni;)V": { + "access": 1, + "override": "bnj" + } + } + }, + "mh": { + "name": "mh", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (I)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "b ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "a ([B)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (S)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "a ()[B": { + "access": 1 + }, + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "bni": { + "name": "bni", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Ljy;)Lbnh;": { + "access": 1025, + "exceptions": [ + "java/io/IOException" + ] + }, + "a ()Ljava/util/Set;": { + "access": 1025 + }, + "b (Ljy;)Ljava/util/List;": { + "access": 1025, + "exceptions": [ + "java/io/IOException" + ] + } + } + }, + "mi": { + "name": "mi", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "c ([BII)I": { + "access": 9 + }, + "b ([BI)I": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a ([BII)Ljava/lang/String;": { + "access": 9 + }, + "a (B)Ljava/lang/String;": { + "access": 9 + }, + "b ([BII)I": { + "access": 9 + } + } + }, + "bnh": { + "name": "bnh", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()Ljy;": { + "access": 1025 + }, + "b ()Ljava/io/InputStream;": { + "access": 1025 + }, + "a (Ljava/lang/String;)Lbnw;": { + "access": 1025 + }, + "d ()Ljava/lang/String;": { + "access": 1025 + }, + "c ()Z": { + "access": 1025 + } + } + }, + "baa$1": { + "name": "baa$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "mj": { + "name": "mj", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "m" + ], + "methods": { + "a (ILjava/lang/String;)Z": { + "access": 1, + "override": "m" + }, + "h ()Lmj;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "f_ ()Leu;": { + "access": 1, + "override": "m" + }, + "c ()Lcj;": { + "access": 1, + "override": "m" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i ()V": { + "access": 1 + }, + "f ()Lpk;": { + "access": 1, + "override": "m" + }, + "j ()Ljava/lang/String;": { + "access": 1 + }, + "a (Ln$a;I)V": { + "access": 1, + "override": "m" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + }, + "e ()Ladm;": { + "access": 1, + "override": "m" + }, + "u_ ()Z": { + "access": 1, + "override": "m" + }, + "a (Leu;)V": { + "access": 1, + "override": "m" + }, + "d ()Laui;": { + "access": 1, + "override": "m" + } + } + }, + "bnk": { + "name": "bnk", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()Ljava/awt/image/BufferedImage;": { + "access": 1025, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ljy;)Ljava/io/InputStream;": { + "access": 1025, + "exceptions": [ + "java/io/IOException" + ] + }, + "b (Ljy;)Z": { + "access": 1025 + }, + "c ()Ljava/util/Set;": { + "access": 1025 + }, + "b ()Ljava/lang/String;": { + "access": 1025 + }, + "a (Lbny;Ljava/lang/String;)Lbnw;": { + "access": 1025, + "exceptions": [ + "java/io/IOException" + ] + } + } + }, + "bow$a": { + "name": "bow$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lboq;Lbmi;Lcq;)V": { + "access": 2 + }, + "b ()Lboq;": { + "access": 1 + }, + "\u003cinit\u003e (Lbgl;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lboq;Lbmi;)V": { + "access": 1 + }, + "\u003cinit\u003e (ZZLbgr;)V": { + "access": 2 + }, + "a (Lboq;Lbmi;)V": { + "access": 2 + }, + "a (Lbmi;)Lbow$a;": { + "access": 1 + }, + "a (Lbgg;)Lbow$a;": { + "access": 1 + }, + "a (Lcq;Lbgg;)Lbow$a;": { + "access": 1 + } + } + }, + "bnj": { + "name": "bnj", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lbni;)V": { + "access": 1025 + } + } + }, + "ml": { + "name": "ml", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "b (Ljava/net/ServerSocket;)Z": { + "access": 4 + }, + "a (Z)V": { + "access": 4 + }, + "e ()V": { + "access": 4 + }, + "a (Ljava/net/DatagramSocket;)V": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ljava/lang/String;)V": { + "access": 4 + }, + "d (Ljava/lang/String;)V": { + "access": 4 + }, + "a (Ljava/net/ServerSocket;Z)Z": { + "access": 4 + }, + "\u003cinit\u003e (Lkj;Ljava/lang/String;)V": { + "access": 4 + }, + "a ()V": { + "access": 33 + }, + "a (Ljava/lang/String;)V": { + "access": 4 + }, + "c (Ljava/lang/String;)V": { + "access": 4 + }, + "d ()I": { + "access": 4 + }, + "c ()Z": { + "access": 1 + }, + "a (Ljava/net/DatagramSocket;Z)Z": { + "access": 4 + } + } + }, + "bnm": { + "name": "bnm", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "g ()V": { + "access": 2 + }, + "c ()Ljava/util/List;": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/String;)Lcom/google/common/util/concurrent/ListenableFuture;": { + "access": 1 + }, + "i ()V": { + "access": 2 + }, + "a (Ljava/util/List;)V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "b ()Ljava/util/List;": { + "access": 1 + }, + "f ()V": { + "access": 1 + }, + "d ()Ljava/io/File;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/io/File;Ljava/io/File;Lbnk;Lbny;Lavh;)V": { + "access": 1 + }, + "h ()Ljava/util/List;": { + "access": 2 + }, + "a (Ljava/io/File;)Lcom/google/common/util/concurrent/ListenableFuture;": { + "access": 1 + }, + "e ()Lbnk;": { + "access": 1 + } + } + }, + "ato$5": { + "name": "ato$5", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lato;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "mm": { + "name": "mm", + "access": 33, + "superName": "ml", + "methods": { + "a ()V": { + "access": 1, + "override": "ml" + }, + "c (Ljava/net/DatagramPacket;)Ljava/lang/Boolean;": { + "access": 2 + }, + "b (Ljava/net/DatagramPacket;)[B": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "d (Ljava/net/DatagramPacket;)V": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ljava/net/DatagramPacket;)Z": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "f ()V": { + "access": 2 + }, + "a (Ljava/net/SocketAddress;)[B": { + "access": 2 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "g ()Z": { + "access": 2 + }, + "a (Ljava/lang/Exception;)V": { + "access": 2 + }, + "\u003cinit\u003e (Lkj;)V": { + "access": 1 + }, + "a ([BLjava/net/DatagramPacket;)V": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + } + } + }, + "bnl": { + "name": "bnl", + "access": 33, + "superName": "java/io/FileNotFoundException", + "methods": { + "\u003cinit\u003e (Ljava/io/File;Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "ato$4": { + "name": "ato$4", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lato;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "mn": { + "name": "mn", + "access": 33, + "superName": "ml", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "g ()V": { + "access": 2 + }, + "\u003cinit\u003e (Lkj;Ljava/net/Socket;)V": { + "access": 0 + }, + "f ()V": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "a (IILjava/lang/String;)V": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (ILjava/lang/String;)V": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + } + } + }, + "bno": { + "name": "bno", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnh" + ], + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a ()Ljy;": { + "access": 1, + "override": "bnh" + }, + "b ()Ljava/io/InputStream;": { + "access": 1, + "override": "bnh" + }, + "a (Ljava/lang/String;)Lbnw;": { + "access": 1, + "override": "bnh" + }, + "\u003cinit\u003e (Ljava/lang/String;Ljy;Ljava/io/InputStream;Ljava/io/InputStream;Lbny;)V": { + "access": 1 + }, + "d ()Ljava/lang/String;": { + "access": 1, + "override": "bnh" + }, + "c ()Z": { + "access": 1, + "override": "bnh" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "ato$7": { + "name": "ato$7", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lato;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "mo": { + "name": "mo", + "access": 33, + "superName": "ml", + "methods": { + "a ()V": { + "access": 1, + "override": "ml" + }, + "g ()V": { + "access": 2 + }, + "f ()V": { + "access": 2 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "\u003cinit\u003e (Lkj;)V": { + "access": 1 + } + } + }, + "bnn": { + "name": "bnn", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bng" + ], + "methods": { + "a (Ljy;)Lbnh;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bni" + }, + "b ()V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbnk;)V": { + "access": 1 + }, + "a ()Ljava/util/Set;": { + "access": 1, + "override": "bni" + }, + "a (Lbnj;)V": { + "access": 1, + "override": "bng" + }, + "c ()V": { + "access": 2 + }, + "a (Ljava/util/List;)V": { + "access": 1, + "override": "bng" + }, + "\u003cinit\u003e (Lbny;)V": { + "access": 1 + }, + "b (Ljy;)Ljava/util/List;": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ], + "override": "bni" + } + } + }, + "ato$6": { + "name": "ato$6", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lato;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "bnq": { + "name": "bnq", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;": { + "access": 137 + }, + "a (Lbnt;)V": { + "access": 8 + } + } + }, + "ato$1": { + "name": "ato$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lato;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "mq": { + "name": "mq", + "access": 33, + "superName": "mw", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;IILafh;Lmq;)V": { + "access": 1 + }, + "b ()Lmq;": { + "access": 1 + }, + "a ()Lmq;": { + "access": 1 + }, + "c ()Lmq;": { + "access": 1 + }, + "d ()Z": { + "access": 1, + "override": "mw" + }, + "a (Ljava/lang/Class;)Lmq;": { + "access": 1 + }, + "b (Ljava/lang/Class;)Lmw;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Ljava/lang/Class;)Lmq;" + }, + "override": "mw" + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;IILzx;Lmq;)V": { + "access": 1 + }, + "f ()Ljava/lang/String;": { + "access": 1 + }, + "a (Lms;)Lmq;": { + "access": 1 + }, + "h ()Lmw;": { + "access": 4097, + "bouncer": { + "name": "c", + "desc": "()Lmq;" + }, + "override": "mw" + }, + "i ()Lmw;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "()Lmq;" + }, + "override": "mw" + }, + "g ()Z": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;IILzw;Lmq;)V": { + "access": 1 + }, + "e ()Leu;": { + "access": 1, + "override": "mw" + } + } + }, + "bnp": { + "name": "bnp", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lbnp$a;)Ljy;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;)Ljy;": { + "access": 1 + }, + "a (Lcom/mojang/authlib/GameProfile;Lbnp$a;Z)V": { + "access": 1 + }, + "a (Lcom/mojang/authlib/GameProfile;)Ljava/util/Map;": { + "access": 1 + }, + "a (Lbnp;)Lcom/mojang/authlib/minecraft/MinecraftSessionService;": { + "access": 4104 + }, + "\u003cinit\u003e (Lbmj;Ljava/io/File;Lcom/mojang/authlib/minecraft/MinecraftSessionService;)V": { + "access": 1 + } + } + }, + "mr": { + "name": "mr", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bns": { + "name": "bns", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnj" + ], + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "d ()Ljava/util/SortedSet;": { + "access": 1 + }, + "\u003cinit\u003e (Lbny;Ljava/lang/String;)V": { + "access": 1 + }, + "c ()Lbnr;": { + "access": 1 + }, + "a (Ljava/util/List;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1 + }, + "a (Lbni;)V": { + "access": 1, + "override": "bnj" + }, + "a (Lbnr;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1 + } + } + }, + "ato$3": { + "name": "ato$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lato;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "ms": { + "name": "ms", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;)Ljava/lang/String;": { + "access": 1025 + } + } + }, + "bnr": { + "name": "bnr", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Comparable" + ], + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Lbnr;)I": { + "access": 1 + }, + "compareTo (Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lbnr;)I" + }, + "override": "java/lang/Comparable" + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "b ()Z": { + "access": 1 + } + } + }, + "ato$2": { + "name": "ato$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lato;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "mt": { + "name": "mt", + "access": 33, + "superName": "mw", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Leu;)V": { + "access": 1 + }, + "h ()Lmw;": { + "access": 1, + "override": "mw" + }, + "\u003cinit\u003e (Ljava/lang/String;Leu;Lmx;)V": { + "access": 1 + } + } + }, + "mu": { + "name": "mu", + "access": 33, + "superName": "mw", + "methods": { + "a ()Lzw;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;Leu;Lzw;)V": { + "access": 1 + } + } + }, + "bnt": { + "name": "bnt", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;": { + "access": 1 + }, + "b ()V": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbni;Ljava/util/List;)V": { + "access": 33 + }, + "a (Ljava/io/InputStream;)V": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "a ()Z": { + "access": 1 + }, + "a (Ljava/util/List;)V": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "b (Ljava/lang/String;)Ljava/lang/String;": { + "access": 2 + } + } + }, + "mv": { + "name": "mv", + "access": 33, + "superName": "nb", + "methods": { + "a ()V": { + "access": 1 + }, + "e ()Z": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "a (Lwn;Lmw;I)V": { + "access": 1, + "override": "nb" + }, + "a (Llf;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c ()Ljava/util/Set;": { + "access": 1 + }, + "d ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)Ljava/util/Map;": { + "access": 1 + }, + "\u003cinit\u003e (Lnet/minecraft/server/MinecraftServer;Ljava/io/File;)V": { + "access": 1 + }, + "a (Ljava/util/Map;)Ljava/lang/String;": { + "access": 9 + }, + "b (Llf;)V": { + "access": 1 + } + } + }, + "bnw": { + "name": "bnw", + "access": 1537, + "superName": "java/lang/Object" + }, + "mw": { + "name": "mw", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (I)Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Leu;Lmx;)V": { + "access": 1 + }, + "n ()Ljava/text/DecimalFormat;": { + "access": 4104 + }, + "d ()Z": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "b (Ljava/lang/Class;)Lmw;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Leu;)V": { + "access": 1 + }, + "l ()Ljava/lang/Class;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "i ()Lmw;": { + "access": 1 + }, + "h ()Lmw;": { + "access": 1 + }, + "m ()Ljava/text/NumberFormat;": { + "access": 4104 + }, + "k ()Lauu;": { + "access": 1 + }, + "j ()Leu;": { + "access": 1 + }, + "e ()Leu;": { + "access": 1 + } + } + }, + "bnv": { + "name": "bnv", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "bnx" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "mx": { + "name": "mx", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (I)Ljava/lang/String;": { + "access": 1025 + } + } + }, + "bny": { + "name": "bny", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lbnx;Ljava/lang/Class;)V": { + "access": 1 + }, + "a ()Lcom/google/gson/Gson;": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/String;Lcom/google/gson/JsonObject;)Lbnw;": { + "access": 1 + } + } + }, + "my": { + "name": "my", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (I)V": { + "access": 1 + }, + "b ()Lmz;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lmz;)V": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "bnx": { + "name": "bnx", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1025 + } + } + }, + "baa$a": { + "name": "baa$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lbaa$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILeu;Leu;)V": { + "access": 2 + }, + "\u003cinit\u003e (Ljava/lang/String;ILeu;)V": { + "access": 2 + }, + "values ()[Lbaa$a;": { + "access": 9 + }, + "b ()Leu;": { + "access": 1 + }, + "a ()Leu;": { + "access": 1 + } + } + }, + "mz": { + "name": "mz", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()Lcom/google/gson/JsonElement;": { + "access": 1025 + }, + "a (Lcom/google/gson/JsonElement;)V": { + "access": 1025 + } + } + }, + "bnz": { + "name": "bnz", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "c ()I": { + "access": 1 + }, + "\u003cinit\u003e (II)V": { + "access": 1 + }, + "a ()Z": { + "access": 1 + }, + "\u003cinit\u003e (I)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "alt$a": { + "name": "alt$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "values ()[Lalt$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lalt$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + } + } + }, + "lo$a": { + "name": "lo$a", + "access": 16432, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Llo$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Llo$a;": { + "access": 9 + } + } + }, + "na": { + "name": "na", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 9 + }, + "a (Lpm$a;)Lmw;": { + "access": 9 + }, + "b (Lpm$a;)Lmw;": { + "access": 9 + }, + "b ()V": { + "access": 10 + }, + "e ()V": { + "access": 10 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lzw;)Ljava/lang/String;": { + "access": 10 + }, + "d ()V": { + "access": 10 + }, + "c ()V": { + "access": 10 + }, + "a ([Lmw;)V": { + "access": 10 + }, + "a ([Lmw;Lafh;Lafh;)V": { + "access": 10 + }, + "a (Ljava/lang/String;)Lmw;": { + "access": 9 + } + } + }, + "bob": { + "name": "bob", + "access": 33, + "superName": "bnv", + "interfaces": [ + "com/google/gson/JsonSerializer" + ], + "methods": { + "serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lboa;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;" + }, + "override": "com/google/gson/JsonSerializer" + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "bnx" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (ILcom/google/gson/JsonElement;)Lbnz;": { + "access": 2 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lboa;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "a (Lboa;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 1 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lboa;" + }, + "override": "com/google/gson/JsonDeserializer" + } + } + }, + "nb": { + "name": "nb", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Lmq;)Z": { + "access": 1 + }, + "a (Lmq;)Z": { + "access": 1 + }, + "a (Lwn;Lmw;I)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Lmw;)Lmz;": { + "access": 1 + }, + "a (Lmw;Lmz;)Lmz;": { + "access": 1 + }, + "a (Lmw;)I": { + "access": 1 + }, + "c (Lmq;)I": { + "access": 1 + }, + "b (Lwn;Lmw;I)V": { + "access": 1 + } + } + }, + "boa": { + "name": "boa", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnw" + ], + "methods": { + "e ()Z": { + "access": 1 + }, + "b (I)Z": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/util/List;IIIZ)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "d (I)Lbnz;": { + "access": 2 + }, + "f ()Ljava/util/Set;": { + "access": 1 + }, + "c (I)I": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "a (I)I": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "nc": { + "name": "nc", + "access": 33, + "superName": "com/google/common/collect/ForwardingSet", + "interfaces": [ + "mz" + ], + "methods": { + "delegate ()Ljava/util/Set;": { + "access": 4, + "override": "com/google/common/collect/ForwardingSet" + }, + "delegate ()Ljava/lang/Object;": { + "access": 4164, + "bouncer": { + "name": "delegate", + "desc": "()Ljava/util/Set;" + }, + "override": "com/google/common/collect/ForwardingObject" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "delegate ()Ljava/util/Collection;": { + "access": 4164, + "bouncer": { + "name": "delegate", + "desc": "()Ljava/util/Set;" + }, + "override": "com/google/common/collect/ForwardingCollection" + }, + "a ()Lcom/google/gson/JsonElement;": { + "access": 1, + "override": "mz" + }, + "a (Lcom/google/gson/JsonElement;)V": { + "access": 1, + "override": "mz" + } + } + }, + "bod": { + "name": "bod", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnw" + ], + "methods": { + "\u003cinit\u003e ([F[F[F)V": { + "access": 1 + } + } + }, + "ne": { + "name": "ne", + "access": 33, + "superName": "java/util/AbstractSet", + "methods": { + "a (Lne;)Ljava/util/Map;": { + "access": 4104 + }, + "\u003cinit\u003e (Ljava/lang/Class;)V": { + "access": 1 + }, + "add (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/util/Collection" + }, + "remove (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/util/Collection" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ljava/lang/Class;)Ljava/lang/Class;": { + "access": 4 + }, + "contains (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/util/Collection" + }, + "c (Ljava/lang/Class;)Ljava/lang/Iterable;": { + "access": 1 + }, + "iterator ()Ljava/util/Iterator;": { + "access": 1, + "override": "java/lang/Iterable" + }, + "a (Ljava/lang/Object;Ljava/lang/Class;)V": { + "access": 2 + }, + "size ()I": { + "access": 1, + "override": "java/util/Collection" + }, + "a (Ljava/lang/Class;)V": { + "access": 4 + } + } + }, + "boe": { + "name": "boe", + "access": 33, + "superName": "bnv", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "override": "bnx" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbod;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbod;" + }, + "override": "com/google/gson/JsonDeserializer" + } + } + }, + "ng": { + "name": "ng", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (ILjava/security/Key;[B)[B": { + "access": 10 + }, + "a (ILjava/lang/String;Ljava/security/Key;)Ljavax/crypto/Cipher;": { + "access": 10 + }, + "a (Ljava/security/Key;[B)[B": { + "access": 9 + }, + "a (Ljava/lang/String;[[B)[B": { + "access": 138 + }, + "a (Ljava/lang/String;Ljava/security/PublicKey;Ljavax/crypto/SecretKey;)[B": { + "access": 9 + }, + "b (Ljava/security/Key;[B)[B": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/security/PrivateKey;[B)Ljavax/crypto/SecretKey;": { + "access": 9 + }, + "b ()Ljava/security/KeyPair;": { + "access": 9 + }, + "a ([B)Ljava/security/PublicKey;": { + "access": 9 + }, + "a ()Ljavax/crypto/SecretKey;": { + "access": 9 + }, + "a (ILjava/security/Key;)Ljavax/crypto/Cipher;": { + "access": 9 + } + } + }, + "boh": { + "name": "boh", + "access": 33, + "superName": "bnv", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "override": "bnx" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbog;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbog;" + }, + "override": "com/google/gson/JsonDeserializer" + } + } + }, + "nh": { + "name": "nh", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (J)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (JI)I": { + "access": 1 + }, + "c ()[J": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "b (I)I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "bog": { + "name": "bog", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnw" + ], + "methods": { + "a ()Ljava/util/Collection;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/util/Collection;)V": { + "access": 1 + } + } + }, + "ni": { + "name": "ni", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "m (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonArray;": { + "access": 9 + }, + "f (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z": { + "access": 9 + }, + "a (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonArray;)Lcom/google/gson/JsonArray;": { + "access": 9 + }, + "k (Lcom/google/gson/JsonObject;Ljava/lang/String;)F": { + "access": 9 + }, + "a (Lcom/google/gson/JsonObject;Ljava/lang/String;Z)Z": { + "access": 9 + }, + "t (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonArray;": { + "access": 9 + }, + "a (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z": { + "access": 9 + }, + "d (Lcom/google/gson/JsonElement;Ljava/lang/String;)F": { + "access": 9 + }, + "d (Lcom/google/gson/JsonElement;)Ljava/lang/String;": { + "access": 9 + }, + "d (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z": { + "access": 9 + }, + "i (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z": { + "access": 9 + }, + "a (Lcom/google/gson/JsonObject;Ljava/lang/String;F)F": { + "access": 9 + }, + "a (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonObject;)Lcom/google/gson/JsonObject;": { + "access": 9 + }, + "c (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z": { + "access": 9 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "s (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonObject;": { + "access": 9 + }, + "a (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "a (Lcom/google/gson/JsonObject;Ljava/lang/String;I)I": { + "access": 9 + }, + "m (Lcom/google/gson/JsonObject;Ljava/lang/String;)I": { + "access": 9 + }, + "b (Lcom/google/gson/JsonElement;Ljava/lang/String;)Z": { + "access": 9 + }, + "l (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonObject;": { + "access": 9 + }, + "g (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z": { + "access": 9 + }, + "a (Lcom/google/gson/JsonElement;)Z": { + "access": 9 + }, + "f (Lcom/google/gson/JsonElement;Ljava/lang/String;)I": { + "access": 9 + }, + "h (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + } + } + }, + "boj": { + "name": "boj", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnw" + ], + "methods": { + "\u003cinit\u003e (Leu;I)V": { + "access": 1 + }, + "a ()Leu;": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "ato$9": { + "name": "ato$9", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lato;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "nj": { + "name": "nj", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/net/URL;Ljava/util/Map;Z)Ljava/lang/String;": { + "access": 9 + }, + "a (Ljava/net/URL;Ljava/lang/String;Z)Ljava/lang/String;": { + "access": 10 + }, + "a (Ljava/net/URL;)Ljava/lang/String;": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "b ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "a (Ljava/io/File;Ljava/lang/String;Ljava/util/Map;ILnu;Ljava/net/Proxy;)Lcom/google/common/util/concurrent/ListenableFuture;": { + "access": 9 + }, + "a (Ljava/util/Map;)Ljava/lang/String;": { + "access": 9 + }, + "a ()I": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + } + } + }, + "ato$8": { + "name": "ato$8", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lato;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "nk": { + "name": "nk", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/Map" + ], + "methods": { + "clear ()V": { + "access": 1, + "override": "java/util/Map" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "containsKey (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/util/Map" + }, + "get (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 1, + "override": "java/util/Map" + }, + "entrySet ()Ljava/util/Set;": { + "access": 1, + "override": "java/util/Map" + }, + "keySet ()Ljava/util/Set;": { + "access": 1, + "override": "java/util/Map" + }, + "containsValue (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/util/Map" + }, + "size ()I": { + "access": 1, + "override": "java/util/Map" + }, + "putAll (Ljava/util/Map;)V": { + "access": 1, + "override": "java/util/Map" + }, + "remove (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 1, + "override": "java/util/Map" + }, + "a (Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 1 + }, + "values ()Ljava/util/Collection;": { + "access": 1, + "override": "java/util/Map" + }, + "isEmpty ()Z": { + "access": 1, + "override": "java/util/Map" + }, + "put (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;" + }, + "override": "java/util/Map" + } + } + }, + "nl": { + "name": "nl", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (I)Ljava/lang/Integer;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bok": { + "name": "bok", + "access": 33, + "superName": "bnv", + "interfaces": [ + "com/google/gson/JsonSerializer" + ], + "methods": { + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lboj;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lboj;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;" + }, + "override": "com/google/gson/JsonSerializer" + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "bnx" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lboj;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 1 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lboj;" + }, + "override": "com/google/gson/JsonDeserializer" + } + } + }, + "nm": { + "name": "nm", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (I)Z": { + "access": 1 + }, + "g (I)I": { + "access": 10 + }, + "a (II)I": { + "access": 10 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c (I)Lnm$a;": { + "access": 16 + }, + "h (I)V": { + "access": 2 + }, + "d (I)Ljava/lang/Object;": { + "access": 1 + }, + "a (IILjava/lang/Object;I)V": { + "access": 2 + }, + "a (ILjava/lang/Object;)V": { + "access": 1 + }, + "a ([Lnm$a;)V": { + "access": 2 + }, + "a (I)Ljava/lang/Object;": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "e (I)Lnm$a;": { + "access": 16 + }, + "f (I)I": { + "access": 4104 + } + } + }, + "bon": { + "name": "bon", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnw" + ], + "methods": { + "\u003cinit\u003e (ZZLjava/util/List;)V": { + "access": 1 + }, + "c ()Ljava/util/List;": { + "access": 1 + }, + "a ()Z": { + "access": 1 + }, + "b ()Z": { + "access": 1 + } + } + }, + "no": { + "name": "no", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b ()Ljava/lang/Object;": { + "access": 1028 + }, + "c ()Ljava/lang/Object;": { + "access": 1 + } + } + }, + "np": { + "name": "np", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/Class;I)V": { + "access": 1 + }, + "c ()[Ljava/lang/Object;": { + "access": 1 + }, + "a (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "boo": { + "name": "boo", + "access": 33, + "superName": "bnv", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "override": "bnx" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbon;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbon;" + }, + "override": "com/google/gson/JsonDeserializer" + } + } + }, + "nq": { + "name": "nq", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (J)Z": { + "access": 1 + }, + "c (J)Lnq$a;": { + "access": 16 + }, + "g (J)I": { + "access": 10 + }, + "a (II)I": { + "access": 10 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()I": { + "access": 1 + }, + "d (J)Ljava/lang/Object;": { + "access": 1 + }, + "a (IJLjava/lang/Object;I)V": { + "access": 2 + }, + "a (J)Ljava/lang/Object;": { + "access": 1 + }, + "a (JLjava/lang/Object;)V": { + "access": 1 + }, + "f (J)I": { + "access": 4104 + }, + "e (J)Lnq$a;": { + "access": 16 + }, + "a ([Lnq$a;)V": { + "access": 2 + }, + "a (I)I": { + "access": 10 + }, + "b (I)V": { + "access": 2 + } + } + }, + "bor": { + "name": "bor", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lbor;": { + "access": 9 + }, + "a ()Lorg/lwjgl/util/vector/Matrix4f;": { + "access": 1 + }, + "a (Lcq;I)I": { + "access": 1 + }, + "a (II)Lbor;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lbor;": { + "access": 9 + }, + "a (Lcq;)Lcq;": { + "access": 1 + }, + "b (II)I": { + "access": 10 + }, + "\u003cinit\u003e (Ljava/lang/String;III)V": { + "access": 2 + } + } + }, + "nr": { + "name": "nr", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/TypeAdapterFactory" + ], + "methods": { + "create (Lcom/google/gson/Gson;Lcom/google/gson/reflect/TypeToken;)Lcom/google/gson/TypeAdapter;": { + "access": 1, + "override": "com/google/gson/TypeAdapterFactory" + }, + "a (Lnr;Ljava/lang/Object;)Ljava/lang/String;": { + "access": 4104 + }, + "a (Ljava/lang/Object;)Ljava/lang/String;": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "vl$a": { + "name": "vl$a", + "access": 32, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lvl;)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "boq": { + "name": "boq", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()Ljava/util/List;": { + "access": 1025 + }, + "f ()Lbgr;": { + "access": 1025 + }, + "a (Lcq;)Ljava/util/List;": { + "access": 1025 + }, + "d ()Z": { + "access": 1025 + }, + "c ()Z": { + "access": 1025 + }, + "b ()Z": { + "access": 1025 + }, + "e ()Lbmi;": { + "access": 1025 + } + } + }, + "ns": { + "name": "ns", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/util/Random;II)I": { + "access": 9 + }, + "a (Ljava/lang/String;D)D": { + "access": 9 + }, + "h (D)D": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a ([J)D": { + "access": 9 + }, + "b (F)F": { + "access": 9 + }, + "b (D)I": { + "access": 9 + }, + "b (I)I": { + "access": 9 + }, + "a (DDD)D": { + "access": 9 + }, + "b (DDD)D": { + "access": 9 + }, + "a (DD)D": { + "access": 9 + }, + "c (DDD)D": { + "access": 9 + }, + "e (I)I": { + "access": 10 + }, + "a (Ljava/util/Random;)Ljava/util/UUID;": { + "access": 9 + }, + "a (Ljava/lang/String;DD)D": { + "access": 9 + }, + "d (I)Z": { + "access": 10 + }, + "a (FF)Z": { + "access": 9 + }, + "e (D)I": { + "access": 9 + }, + "e (F)F": { + "access": 9 + }, + "b (II)I": { + "access": 9 + }, + "a (Ljava/lang/String;I)I": { + "access": 9 + }, + "c (III)J": { + "access": 9 + }, + "a (I)I": { + "access": 9 + }, + "b (III)I": { + "access": 9 + }, + "d (F)I": { + "access": 9 + }, + "a (Ljava/util/Random;FF)F": { + "access": 9 + }, + "a (Ljava/util/Random;DD)D": { + "access": 9 + }, + "a (III)I": { + "access": 9 + }, + "d (D)J": { + "access": 9 + }, + "c (FFF)I": { + "access": 9 + }, + "a (D)F": { + "access": 9 + }, + "a (II)I": { + "access": 9 + }, + "a (F)F": { + "access": 9 + }, + "g (D)D": { + "access": 9 + }, + "b (FFF)I": { + "access": 9 + }, + "a (FFF)F": { + "access": 9 + }, + "d (II)I": { + "access": 9 + }, + "i (D)D": { + "access": 9 + }, + "g (F)F": { + "access": 9 + }, + "a (Ljava/lang/String;II)I": { + "access": 9 + }, + "f (D)I": { + "access": 9 + }, + "c (II)I": { + "access": 9 + }, + "b (DD)D": { + "access": 9 + }, + "a (Ldf;)J": { + "access": 9 + }, + "c (I)I": { + "access": 9 + }, + "c (D)I": { + "access": 9 + }, + "f (F)I": { + "access": 9 + }, + "c (F)F": { + "access": 9 + } + } + }, + "bot": { + "name": "bot", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "l ()V": { + "access": 2 + }, + "a (Lbgl;)Ljava/util/Set;": { + "access": 2 + }, + "b ()V": { + "access": 2 + }, + "a (Ljava/lang/String;)Ljy;": { + "access": 2 + }, + "a (Lbgh;Lbgi;Lbmi;Lcq;Lbor;Z)Lbgg;": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/util/Collection;)V": { + "access": 2 + }, + "b (Lbgl;)Z": { + "access": 2 + }, + "e (Ljy;)Ljava/util/List;": { + "access": 2 + }, + "a ()Ldb;": { + "access": 1 + }, + "c (Ljy;)Lbgl;": { + "access": 2, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ljy;)Lbgm;": { + "access": 2 + }, + "d (Ljy;)Ljy;": { + "access": 2 + }, + "f ()V": { + "access": 2 + }, + "j ()V": { + "access": 2 + }, + "\u003cinit\u003e (Lbni;Lbmh;Lbgc;)V": { + "access": 1 + }, + "e ()V": { + "access": 2 + }, + "i ()V": { + "access": 2 + }, + "a (Lbot;)Ljava/util/Map;": { + "access": 4104 + }, + "d ()V": { + "access": 2 + }, + "k ()Ljava/util/Set;": { + "access": 2 + }, + "a (Lbgm;Lbov;)V": { + "access": 2 + }, + "g ()Ljava/util/Set;": { + "access": 2 + }, + "f (Ljy;)Ljy;": { + "access": 2 + }, + "c (Lbgl;)Z": { + "access": 2 + }, + "h ()V": { + "access": 2 + }, + "a (Lbgl;Lbor;Z)Lboq;": { + "access": 2 + }, + "d (Lbgl;)Lbgl;": { + "access": 2 + }, + "c ()V": { + "access": 2 + }, + "a (Lzw;)Ljava/util/List;": { + "access": 2 + }, + "b (Ljy;)Ljy;": { + "access": 2 + } + } + }, + "nt": { + "name": "nt", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "b (Ljava/lang/String;)Ljava/util/List;": { + "access": 1 + }, + "c (Ljava/lang/String;)V": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "bos": { + "name": "bos", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "boq" + ], + "methods": { + "a ()Ljava/util/List;": { + "access": 1, + "override": "boq" + }, + "\u003cinit\u003e (Lbgr;)V": { + "access": 1 + }, + "f ()Lbgr;": { + "access": 1, + "override": "boq" + }, + "a (Lcq;)Ljava/util/List;": { + "access": 1, + "override": "boq" + }, + "d ()Z": { + "access": 1, + "override": "boq" + }, + "c ()Z": { + "access": 1, + "override": "boq" + }, + "b ()Z": { + "access": 1, + "override": "boq" + }, + "e ()Lbmi;": { + "access": 1, + "override": "boq" + } + } + }, + "nu": { + "name": "nu", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1025 + }, + "a (I)V": { + "access": 1025 + }, + "a (Ljava/lang/String;)V": { + "access": 1025 + }, + "b (Ljava/lang/String;)V": { + "access": 1025 + }, + "c (Ljava/lang/String;)V": { + "access": 1025 + } + } + }, + "bov": { + "name": "bov", + "access": 33, + "superName": "jy", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Ljy;Ljava/lang/String;)V": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (I[Ljava/lang/String;)V": { + "access": 132 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "b (Ljava/lang/String;)[Ljava/lang/String;": { + "access": 12 + } + } + }, + "nv": { + "name": "nv", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (FF)F": { + "access": 1 + } + } + }, + "bou": { + "name": "bou", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnj" + ], + "methods": { + "c ()Lbgc;": { + "access": 1 + }, + "a ()Lboq;": { + "access": 1 + }, + "\u003cinit\u003e (Lbmh;)V": { + "access": 1 + }, + "a (Lbov;)Lboq;": { + "access": 1 + }, + "a (Lbni;)V": { + "access": 1, + "override": "bnj" + }, + "b ()Lbmh;": { + "access": 1 + } + } + }, + "nw": { + "name": "nw", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "l ()Ljava/lang/String;": { + "access": 1025 + } + } + }, + "box": { + "name": "box", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "boq" + ], + "methods": { + "\u003cinit\u003e (Ljava/util/List;)V": { + "access": 1 + }, + "a ()Ljava/util/List;": { + "access": 1, + "override": "boq" + }, + "f ()Lbgr;": { + "access": 1, + "override": "boq" + }, + "a (J)Lboq;": { + "access": 1 + }, + "a (Lcq;)Ljava/util/List;": { + "access": 1, + "override": "boq" + }, + "d ()Z": { + "access": 1, + "override": "boq" + }, + "c ()Z": { + "access": 1, + "override": "boq" + }, + "b ()Z": { + "access": 1, + "override": "boq" + }, + "e ()Lbmi;": { + "access": 1, + "override": "boq" + } + } + }, + "nx": { + "name": "nx", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Ljava/lang/String;)Z": { + "access": 9 + }, + "a (Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (I)Ljava/lang/String;": { + "access": 9 + } + } + }, + "bow": { + "name": "bow", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "boq" + ], + "methods": { + "a ()Ljava/util/List;": { + "access": 1, + "override": "boq" + }, + "f ()Lbgr;": { + "access": 1, + "override": "boq" + }, + "a (Lcq;)Ljava/util/List;": { + "access": 1, + "override": "boq" + }, + "d ()Z": { + "access": 1, + "override": "boq" + }, + "\u003cinit\u003e (Ljava/util/List;Ljava/util/List;ZZLbmi;Lbgr;)V": { + "access": 1 + }, + "c ()Z": { + "access": 1, + "override": "boq" + }, + "b ()Z": { + "access": 1, + "override": "boq" + }, + "e ()Lbmi;": { + "access": 1, + "override": "boq" + } + } + }, + "hg$a": { + "name": "hg$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lhg$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lhg$a;": { + "access": 9 + } + } + }, + "nz": { + "name": "nz", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/Object;Ljava/lang/Object;)V": { + "access": 1 + }, + "b ()Ljava/lang/Object;": { + "access": 1 + }, + "a ()Ljava/lang/Object;": { + "access": 1 + } + } + }, + "aqj$1": { + "name": "aqj$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "aio$a": { + "name": "aio$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Larn;)V": { + "access": 2 + }, + "c ()Larn;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (I)Laio$a;": { + "access": 9 + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "values ()[Laio$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Laio$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Larn;)V": { + "access": 2 + }, + "a ()I": { + "access": 1 + } + } + }, + "js$c$a": { + "name": "js$c$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer", + "com/google/gson/JsonSerializer" + ], + "methods": { + "serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Ljs$c;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;" + }, + "override": "com/google/gson/JsonSerializer" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljs$c;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljs$c;" + }, + "override": "com/google/gson/JsonDeserializer" + }, + "a (Ljs$c;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement;": { + "access": 1 + } + } + }, + "bpa": { + "name": "bpa", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "bpj" + ], + "methods": { + "a ()Ljy;": { + "access": 1, + "override": "bpj" + }, + "e ()F": { + "access": 1, + "override": "bpj" + }, + "\u003cinit\u003e (Ljy;)V": { + "access": 4 + }, + "h ()F": { + "access": 1, + "override": "bpj" + }, + "g ()F": { + "access": 1, + "override": "bpj" + }, + "j ()Lbpj$a;": { + "access": 1, + "override": "bpj" + }, + "f ()F": { + "access": 1, + "override": "bpj" + }, + "i ()F": { + "access": 1, + "override": "bpj" + }, + "d ()I": { + "access": 1, + "override": "bpj" + }, + "b ()Z": { + "access": 1, + "override": "bpj" + } + } + }, + "oa": { + "name": "oa", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/util/Random;Ljava/util/Collection;)Loa$a;": { + "access": 9 + }, + "a (Ljava/util/Random;Ljava/util/Collection;I)Loa$a;": { + "access": 9 + }, + "a (Ljava/util/Collection;)I": { + "access": 9 + }, + "a (Ljava/util/Collection;I)Loa$a;": { + "access": 9 + } + } + }, + "ob": { + "name": "ob", + "access": 33, + "superName": "oa$a", + "methods": { + "\u003cinit\u003e (Lzx;III)V": { + "access": 1 + }, + "a (Ljava/util/Random;Ljava/util/List;Log;I)V": { + "access": 9 + }, + "a (Ljava/util/List;[Lob;)Ljava/util/List;": { + "access": 137 + }, + "a (Ljava/util/Random;Ljava/util/List;Lalc;I)V": { + "access": 9 + }, + "\u003cinit\u003e (Lzw;IIII)V": { + "access": 1 + } + } + }, + "bpc": { + "name": "bpc", + "access": 33, + "superName": "bpb", + "methods": { + "\u003cinit\u003e (Lvt;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "km" + } + } + }, + "bpb": { + "name": "bpb", + "access": 1057, + "superName": "bpa", + "interfaces": [ + "bpk" + ], + "methods": { + "\u003cinit\u003e (Ljy;)V": { + "access": 4 + }, + "k ()Z": { + "access": 1, + "override": "bpk" + } + } + }, + "od": { + "name": "od", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/Runnable;)Lcom/google/common/util/concurrent/ListenableFuture;": { + "access": 1025 + }, + "aJ ()Z": { + "access": 1025 + } + } + }, + "bpe": { + "name": "bpe", + "access": 33, + "superName": "bpb", + "methods": { + "c ()V": { + "access": 1, + "override": "km" + }, + "\u003cinit\u003e (Lwn;Lva;)V": { + "access": 1 + } + } + }, + "bpd": { + "name": "bpd", + "access": 33, + "superName": "bpb", + "methods": { + "c ()V": { + "access": 1, + "override": "km" + }, + "\u003cinit\u003e (Lva;)V": { + "access": 1 + } + } + }, + "of": { + "name": "of", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "oo" + ], + "methods": { + "l ()V": { + "access": 1, + "override": "og" + }, + "b (ILzx;)Z": { + "access": 1, + "override": "og" + }, + "i ()Lon;": { + "access": 1, + "override": "oo" + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "f_ ()Leu;": { + "access": 1, + "override": "op" + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + }, + "b (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "r_ ()Z": { + "access": 1, + "override": "oo" + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "a (Log;)Z": { + "access": 1 + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "a (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (II)Lzx;": { + "access": 1, + "override": "og" + }, + "a (ILzx;)V": { + "access": 1, + "override": "og" + }, + "a (Lon;)V": { + "access": 1, + "override": "oo" + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "p_ ()V": { + "access": 1, + "override": "og" + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "\u003cinit\u003e (Ljava/lang/String;Loo;Loo;)V": { + "access": 1 + } + } + }, + "bpg": { + "name": "bpg", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;I)V": { + "access": 2 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/lang/String;)Lbpg;": { + "access": 9 + }, + "values ()[Lbpg;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lbpg;": { + "access": 9 + }, + "b ()I": { + "access": 1 + } + } + }, + "og": { + "name": "og", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "op" + ], + "methods": { + "l ()V": { + "access": 1025 + }, + "b (ILzx;)Z": { + "access": 1025 + }, + "b (II)V": { + "access": 1025 + }, + "a (ILzx;)V": { + "access": 1025 + }, + "o_ ()I": { + "access": 1025 + }, + "q_ ()I": { + "access": 1025 + }, + "p_ ()V": { + "access": 1025 + }, + "a_ (I)I": { + "access": 1025 + }, + "b (Lwn;)V": { + "access": 1025 + }, + "a (Lwn;)Z": { + "access": 1025 + }, + "b (I)Lzx;": { + "access": 1025 + }, + "c (Lwn;)V": { + "access": 1025 + }, + "g ()I": { + "access": 1025 + }, + "a (I)Lzx;": { + "access": 1025 + }, + "a (II)Lzx;": { + "access": 1025 + } + } + }, + "bpf": { + "name": "bpf", + "access": 33, + "superName": "bpa", + "methods": { + "\u003cinit\u003e (Ljy;FFZILbpj$a;FFF)V": { + "access": 2 + }, + "\u003cinit\u003e (Ljy;FFFFF)V": { + "access": 1 + }, + "a (Ljy;)Lbpf;": { + "access": 9 + }, + "a (Ljy;FFF)Lbpf;": { + "access": 9 + }, + "a (Ljy;F)Lbpf;": { + "access": 9 + } + } + }, + "oh": { + "name": "oh", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Loq;)V": { + "access": 1025 + } + } + }, + "bpi": { + "name": "bpi", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbph;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbph;" + }, + "override": "com/google/gson/JsonDeserializer" + } + } + }, + "oi": { + "name": "oi", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ladm;Lpk;Log;)V": { + "access": 9 + }, + "a (Ladm;DDDLog;)V": { + "access": 10 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ladm;DDDLzx;)V": { + "access": 10 + }, + "a (Ladm;Lcj;Log;)V": { + "access": 9 + } + } + }, + "bph": { + "name": "bph", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Z)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()Ljava/util/List;": { + "access": 1 + }, + "c ()Lbpg;": { + "access": 1 + }, + "a (Lbpg;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1 + } + } + }, + "oj": { + "name": "oj", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;)V": { + "access": 2 + }, + "a (I)Loj;": { + "access": 9 + }, + "values ()[Loj;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Loj;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "bpk": { + "name": "bpk", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "bpj", + "km" + ], + "methods": { + "k ()Z": { + "access": 1025 + } + } + }, + "ok": { + "name": "ok", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()F": { + "access": 1 + }, + "\u003cinit\u003e (Loj;JJF)V": { + "access": 1 + }, + "c ()F": { + "access": 1 + }, + "a (Loj;JJF)F": { + "access": 2 + } + } + }, + "bpj": { + "name": "bpj", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a ()Ljy;": { + "access": 1025 + }, + "e ()F": { + "access": 1025 + }, + "h ()F": { + "access": 1025 + }, + "g ()F": { + "access": 1025 + }, + "j ()Lbpj$a;": { + "access": 1025 + }, + "f ()F": { + "access": 1025 + }, + "i ()F": { + "access": 1025 + }, + "d ()I": { + "access": 1025 + }, + "b ()Z": { + "access": 1025 + } + } + }, + "ol": { + "name": "ol", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "op" + ], + "methods": { + "a (Lwm;Lwn;)Lxi;": { + "access": 1025 + }, + "k ()Ljava/lang/String;": { + "access": 1025 + } + } + }, + "on": { + "name": "on", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "b (Ldn;)Lon;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1 + } + } + }, + "bpo": { + "name": "bpo", + "access": 33, + "superName": "net/minecraft/server/MinecraftServer", + "methods": { + "p ()I": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "al ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "l ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/String;JLadr;Ljava/lang/String;)V": { + "access": 4, + "override": "net/minecraft/server/MinecraftServer" + }, + "\u003cinit\u003e (Lave;Ljava/lang/String;Ljava/lang/String;Ladp;)V": { + "access": 1 + }, + "q ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "h ()Lbd;": { + "access": 4, + "override": "net/minecraft/server/MinecraftServer" + }, + "b ()Z": { + "access": 1 + }, + "w ()V": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "a ()V": { + "access": 1 + }, + "i ()Z": { + "access": 4, + "exceptions": [ + "java/io/IOException" + ], + "override": "net/minecraft/server/MinecraftServer" + }, + "b (Lb;)Lb;": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "n ()Loj;": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "ae ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "a (Ladp$a;)V": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "ai ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "r ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "a (Lb;)V": { + "access": 4, + "override": "net/minecraft/server/MinecraftServer" + }, + "a (Loj;)V": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "o ()Z": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "ad ()Z": { + "access": 1, + "override": "os" + }, + "a (Lor;)V": { + "access": 1, + "override": "os" + }, + "m ()Ladp$a;": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "a (Ladp$a;Z)Ljava/lang/String;": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "A ()V": { + "access": 4, + "override": "net/minecraft/server/MinecraftServer" + }, + "t ()V": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + }, + "y ()Ljava/io/File;": { + "access": 1, + "override": "net/minecraft/server/MinecraftServer" + } + } + }, + "oo": { + "name": "oo", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "og", + "ol" + ], + "methods": { + "i ()Lon;": { + "access": 1025 + }, + "r_ ()Z": { + "access": 1025 + }, + "a (Lon;)V": { + "access": 1025 + } + } + }, + "bpn": { + "name": "bpn", + "access": 33, + "superName": "lx", + "methods": { + "b ()Lbpo;": { + "access": 1 + }, + "t ()Ldn;": { + "access": 1, + "override": "lx" + }, + "c ()Lnet/minecraft/server/MinecraftServer;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "()Lbpo;" + }, + "override": "lx" + }, + "a (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Ljava/lang/String;": { + "access": 1, + "override": "lx" + }, + "\u003cinit\u003e (Lbpo;)V": { + "access": 1 + }, + "b (Llf;)V": { + "access": 4, + "override": "lx" + } + } + }, + "op": { + "name": "op", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "f_ ()Leu;": { + "access": 1025 + }, + "l_ ()Z": { + "access": 1025 + }, + "e_ ()Ljava/lang/String;": { + "access": 1025 + } + } + }, + "bpq": { + "name": "bpq", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()Ljava/util/concurrent/atomic/AtomicInteger;": { + "access": 4104 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + } + } + }, + "oq": { + "name": "oq", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "og" + ], + "methods": { + "l ()V": { + "access": 1, + "override": "og" + }, + "b (ILzx;)Z": { + "access": 1, + "override": "og" + }, + "b (Loh;)V": { + "access": 1 + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "a (Loh;)V": { + "access": 1 + }, + "f_ ()Leu;": { + "access": 1, + "override": "op" + }, + "\u003cinit\u003e (Leu;I)V": { + "access": 1 + }, + "a (ILzx;)V": { + "access": 1, + "override": "og" + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "p_ ()V": { + "access": 1, + "override": "og" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + }, + "\u003cinit\u003e (Ljava/lang/String;ZI)V": { + "access": 1 + }, + "b (I)Lzx;": { + "access": 1, + "override": "og" + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "a (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (II)Lzx;": { + "access": 1, + "override": "og" + }, + "a (Lzx;)Lzx;": { + "access": 1 + } + } + }, + "bpp": { + "name": "bpp", + "access": 33, + "superName": "bd", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "or": { + "name": "or", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "c (Lor;)Ljava/util/Map;": { + "access": 4104 + }, + "c ()Ljava/util/Map;": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "d (Lor;)I": { + "access": 4104 + }, + "e ()V": { + "access": 1 + }, + "g (Lor;)Ljava/lang/String;": { + "access": 4104 + }, + "e (Lor;)Ljava/util/Map;": { + "access": 4104 + }, + "i ()V": { + "access": 2 + }, + "g ()J": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "b (Ljava/lang/String;Ljava/lang/Object;)V": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/Object;)V": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "a (Lor;)Los;": { + "access": 4104 + }, + "f ()Ljava/lang/String;": { + "access": 1 + }, + "b (Lor;)Ljava/lang/Object;": { + "access": 4104 + }, + "h ()V": { + "access": 2 + }, + "\u003cinit\u003e (Ljava/lang/String;Los;J)V": { + "access": 1 + }, + "h (Lor;)Ljava/net/URL;": { + "access": 4104 + }, + "f (Lor;)I": { + "access": 4104 + } + } + }, + "os": { + "name": "os", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "b (Lor;)V": { + "access": 1025 + }, + "ad ()Z": { + "access": 1025 + }, + "a (Lor;)V": { + "access": 1025 + } + } + }, + "awc$a": { + "name": "awc$a", + "access": 16432, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lawc$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lawc$a;": { + "access": 9 + }, + "b ()I": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;III)V": { + "access": 2 + }, + "a ()I": { + "access": 1 + } + } + }, + "bpr": { + "name": "bpr", + "access": 33, + "superName": "java/lang/Thread", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + }, + "b (Ljava/lang/String;)Ljava/lang/String;": { + "access": 9 + }, + "interrupt ()V": { + "access": 1, + "override": "java/lang/Thread" + } + } + }, + "ot": { + "name": "ot", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "og" + ], + "methods": { + "a (Lcq;)[I": { + "access": 1025 + }, + "a (ILzx;Lcq;)Z": { + "access": 1025 + }, + "b (ILzx;Lcq;)Z": { + "access": 1025 + } + } + }, + "ou": { + "name": "ou", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "h ()Leu;": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "\u003cinit\u003e (Low;IFFLjava/lang/String;F)V": { + "access": 1 + }, + "a ()Low;": { + "access": 1 + }, + "i ()F": { + "access": 1 + }, + "c ()F": { + "access": 1 + }, + "g ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "avq$1": { + "name": "avq$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "ov": { + "name": "ov", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "a (Lou;)Ljava/lang/String;": { + "access": 2 + }, + "f ()I": { + "access": 1 + }, + "g ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lpr;)V": { + "access": 1 + }, + "a (Low;FF)V": { + "access": 1 + }, + "c ()Lpr;": { + "access": 1 + }, + "i ()Lou;": { + "access": 2 + }, + "j ()V": { + "access": 2 + }, + "b ()Leu;": { + "access": 1 + }, + "h ()Lpr;": { + "access": 1 + } + } + }, + "bpw": { + "name": "bpw", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()Ljy;": { + "access": 1 + }, + "b ()D": { + "access": 1 + }, + "a (D)V": { + "access": 1 + }, + "c ()D": { + "access": 1 + }, + "b (D)V": { + "access": 1 + }, + "\u003cinit\u003e (Ljy;DDZ)V": { + "access": 1 + }, + "\u003cinit\u003e (Lbpw;)V": { + "access": 1 + }, + "d ()Z": { + "access": 1 + } + } + }, + "ow": { + "name": "ow", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lws;Lpk;)Low;": { + "access": 9 + }, + "q ()Low;": { + "access": 1 + }, + "t ()Low;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f ()F": { + "access": 1 + }, + "a (Lwq;Lpk;)Low;": { + "access": 9 + }, + "h ()Z": { + "access": 1 + }, + "n ()Low;": { + "access": 4 + }, + "k ()Low;": { + "access": 4 + }, + "a (Lpk;)Low;": { + "access": 9 + }, + "a (Ladi;)Low;": { + "access": 9 + }, + "l ()Low;": { + "access": 4 + }, + "a (Lpr;)Low;": { + "access": 9 + }, + "m ()Low;": { + "access": 4 + }, + "p ()Ljava/lang/String;": { + "access": 1 + }, + "a ()Z": { + "access": 1 + }, + "r ()Z": { + "access": 1 + }, + "a (Lpk;Lpk;)Low;": { + "access": 9 + }, + "d ()Low;": { + "access": 1 + }, + "e ()Z": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 4 + }, + "j ()Lpk;": { + "access": 1 + }, + "o ()Z": { + "access": 1 + }, + "b ()Low;": { + "access": 1 + }, + "i ()Lpk;": { + "access": 1 + }, + "b (Lpk;Lpk;)Low;": { + "access": 9 + }, + "s ()Z": { + "access": 1 + }, + "b (Lpr;)Leu;": { + "access": 1 + }, + "u ()Z": { + "access": 1 + }, + "a (Lwn;)Low;": { + "access": 9 + }, + "g ()Z": { + "access": 1 + }, + "c ()Z": { + "access": 1 + } + } + }, + "bpv": { + "name": "bpv", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "km" + ], + "methods": { + "a ()V": { + "access": 1 + }, + "a (Lbpv$a;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "km" + } + } + }, + "ox": { + "name": "ox", + "access": 33, + "superName": "ow", + "methods": { + "j ()Lpk;": { + "access": 1, + "override": "ow" + }, + "b (Lpr;)Leu;": { + "access": 1, + "override": "ow" + }, + "v ()Lox;": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;Lpk;)V": { + "access": 1 + }, + "w ()Z": { + "access": 1 + }, + "r ()Z": { + "access": 1, + "override": "ow" + } + } + }, + "bpy": { + "name": "bpy", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bqb" + ], + "methods": { + "a (Lbqb;)V": { + "access": 1 + }, + "b ()Lbpw;": { + "access": 1 + }, + "\u003cinit\u003e (Ljy;DDLbpg;)V": { + "access": 1 + }, + "c ()Ljy;": { + "access": 1 + }, + "g ()Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "()Lbpw;" + }, + "override": "bqb" + }, + "a ()I": { + "access": 1, + "override": "bqb" + }, + "d ()Lbpg;": { + "access": 1 + } + } + }, + "oy": { + "name": "oy", + "access": 33, + "superName": "ox", + "methods": { + "j ()Lpk;": { + "access": 1, + "override": "ow" + }, + "b (Lpr;)Leu;": { + "access": 1, + "override": "ow" + }, + "i ()Lpk;": { + "access": 1, + "override": "ow" + }, + "\u003cinit\u003e (Ljava/lang/String;Lpk;Lpk;)V": { + "access": 1 + } + } + }, + "bpx": { + "name": "bpx", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()V": { + "access": 1 + }, + "b (Lbpj;)V": { + "access": 1 + }, + "a (Ljy;)Ljava/net/URL;": { + "access": 10 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbpg;F)V": { + "access": 1 + }, + "a (Lbpx;Lbpx$a;)Lbpx$a;": { + "access": 4104 + }, + "a (Lbpx;Z)Z": { + "access": 4104 + }, + "a ()V": { + "access": 1 + }, + "a (Lbpx;)Lavh;": { + "access": 4104 + }, + "f ()V": { + "access": 1 + }, + "e ()V": { + "access": 1 + }, + "a (Lbpj;I)V": { + "access": 1 + }, + "i ()V": { + "access": 34 + }, + "a (Lbpj;Lbpw;)F": { + "access": 2 + }, + "d ()V": { + "access": 1 + }, + "a (Lbpj;Lbpw;Lbpg;)F": { + "access": 2 + }, + "h ()Lorg/apache/logging/log4j/Marker;": { + "access": 4104 + }, + "g ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "a (Lbpj;)Z": { + "access": 1 + }, + "b (Lbpx;)Lbpx$a;": { + "access": 4104 + }, + "\u003cinit\u003e (Lbpz;Lavh;)V": { + "access": 1 + }, + "a (Lwn;F)V": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "a (Lbpg;)F": { + "access": 2 + }, + "c (Lbpj;)V": { + "access": 1 + } + } + }, + "bpz": { + "name": "bpz", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bnj", + "km" + ], + "methods": { + "c (Lbpj;)Z": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "e ()V": { + "access": 1 + }, + "b (Lbpj;)V": { + "access": 1 + }, + "a ([Lbpg;)Lbpy;": { + "access": 129 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lbni;Lavh;)V": { + "access": 1 + }, + "a (Lbpj;I)V": { + "access": 1 + }, + "a (Lbpg;F)V": { + "access": 1 + }, + "d ()V": { + "access": 1 + }, + "a (Lbni;)V": { + "access": 1, + "override": "bnj" + }, + "a (Lbpj;)V": { + "access": 1 + }, + "a (Lbpz;)Lbqa;": { + "access": 4104 + }, + "a ()V": { + "access": 1 + }, + "a (Ljy;Lbph;)V": { + "access": 2 + }, + "a (Ljy;)Lbpy;": { + "access": 1 + }, + "a (Lwn;F)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "km" + }, + "a (Ljava/io/InputStream;)Ljava/util/Map;": { + "access": 4 + } + } + }, + "aqj$e": { + "name": "aqj$e", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$e;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "pa": { + "name": "pa", + "access": 33, + "superName": "pe", + "methods": { + "b (Lpr;Lqf;I)V": { + "access": 1, + "override": "pe" + }, + "a (Lpr;Lqf;I)V": { + "access": 1, + "override": "pe" + }, + "\u003cinit\u003e (ILjy;ZI)V": { + "access": 4 + } + } + }, + "aqj$d": { + "name": "aqj$d", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$d;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "bqb": { + "name": "bqb", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "g ()Ljava/lang/Object;": { + "access": 1025 + }, + "a ()I": { + "access": 1025 + } + } + }, + "pb": { + "name": "pb", + "access": 33, + "superName": "pe", + "methods": { + "\u003cinit\u003e (ILjy;ZI)V": { + "access": 4 + }, + "a (ILqd;)D": { + "access": 1, + "override": "pe" + } + } + }, + "aqj$c": { + "name": "aqj$c", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$c;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "bqa": { + "name": "bqa", + "access": 33, + "superName": "dd", + "methods": { + "a ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lbpy;)V": { + "access": 1 + }, + "b ()Ljava/util/Map;": { + "access": 4, + "override": "dd" + } + } + }, + "pc": { + "name": "pc", + "access": 33, + "superName": "pe", + "methods": { + "a (Lpr;Lqf;I)V": { + "access": 1, + "override": "pe" + }, + "\u003cinit\u003e (ILjy;ZI)V": { + "access": 1 + } + } + }, + "aqj$b": { + "name": "aqj$b", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$b;": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + } + } + }, + "nq$a": { + "name": "nq$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 17, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (IJLjava/lang/Object;Lnq$a;)V": { + "access": 0 + }, + "toString ()Ljava/lang/String;": { + "access": 17, + "override": "java/lang/Object" + }, + "b ()Ljava/lang/Object;": { + "access": 17 + }, + "a ()J": { + "access": 17 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 17, + "override": "java/lang/Object" + } + } + }, + "pd": { + "name": "pd", + "access": 33, + "superName": "pe", + "methods": { + "\u003cinit\u003e (ILjy;ZI)V": { + "access": 1 + }, + "a (II)Z": { + "access": 1, + "override": "pe" + }, + "b ()Z": { + "access": 1, + "override": "pe" + } + } + }, + "aqj$i": { + "name": "aqj$i", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$i;": { + "access": 9 + } + } + }, + "bqc": { + "name": "bqc", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bqb" + ], + "methods": { + "b ()Lbpw;": { + "access": 1 + }, + "\u003cinit\u003e (Lbpw;I)V": { + "access": 0 + }, + "g ()Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "()Lbpw;" + }, + "override": "bqb" + }, + "a ()I": { + "access": 1, + "override": "bqb" + } + } + }, + "pe": { + "name": "pe", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (II)Lpe;": { + "access": 4 + }, + "k ()I": { + "access": 1 + }, + "f ()I": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpf;)Ljava/lang/String;": { + "access": 9 + }, + "b ()Z": { + "access": 1 + }, + "a (D)Lpe;": { + "access": 4 + }, + "c ()Ljava/util/Set;": { + "access": 9 + }, + "l ()Ljava/util/Map;": { + "access": 1 + }, + "b (Ljava/lang/String;)Lpe;": { + "access": 9 + }, + "e ()Z": { + "access": 1 + }, + "h ()D": { + "access": 1 + }, + "\u003cinit\u003e (ILjy;ZI)V": { + "access": 4 + }, + "c (Ljava/lang/String;)Lpe;": { + "access": 1 + }, + "j ()Z": { + "access": 1 + }, + "a (Lpr;I)V": { + "access": 1 + }, + "a (Lpk;Lpk;Lpr;ID)V": { + "access": 1 + }, + "b (Lpr;Lqf;I)V": { + "access": 1 + }, + "a (Lpr;Lqf;I)V": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "a (II)Z": { + "access": 1 + }, + "a (ILqd;)D": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "a (Lqb;Ljava/lang/String;DI)Lpe;": { + "access": 1 + }, + "d ()I": { + "access": 1 + } + } + }, + "aqj$h": { + "name": "aqj$h", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ldn;)V": { + "access": 4, + "override": "aqt" + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$h;": { + "access": 9 + } + } + }, + "bqf": { + "name": "bqf", + "access": 33, + "superName": "bqh", + "methods": { + "\u003cinit\u003e (Lpr;Lpr;)V": { + "access": 1 + } + } + }, + "pf": { + "name": "pf", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "e ()Z": { + "access": 1 + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (IIIZZ)V": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "b (Lpr;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i ()I": { + "access": 2 + }, + "a (Ldn;)Ldn;": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "h ()Z": { + "access": 1 + }, + "b (Ldn;)Lpf;": { + "access": 9 + }, + "\u003cinit\u003e (II)V": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "\u003cinit\u003e (III)V": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "a ()I": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Lpf;)V": { + "access": 1 + }, + "a (Lpr;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Lpf;)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "g ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "aqj$g": { + "name": "aqj$g", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$g;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "bqe": { + "name": "bqe", + "access": 33, + "superName": "bqh", + "methods": { + "\u003cinit\u003e (Lmq;)V": { + "access": 1 + } + } + }, + "aqj$f": { + "name": "aqj$f", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$f;": { + "access": 9 + } + } + }, + "bqh": { + "name": "bqh", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + } + } + }, + "ph": { + "name": "ph", + "access": 1057, + "superName": "py", + "methods": { + "a (Z)V": { + "access": 1 + }, + "j_ ()Z": { + "access": 1, + "override": "pr" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (IZ)V": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "ps" + }, + "a (Lph;)Lph;": { + "access": 1025 + }, + "a (I)V": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "l ()I": { + "access": 1 + }, + "a (F)V": { + "access": 20 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "a (FF)V": { + "access": 20, + "override": "pk" + }, + "b (I)V": { + "access": 1 + }, + "n ()V": { + "access": 4 + } + } + }, + "bqg": { + "name": "bqg", + "access": 33, + "superName": "bqh", + "methods": { + "\u003cinit\u003e (Lpr;Lpr;)V": { + "access": 1 + } + } + }, + "pi": { + "name": "pi", + "access": 1537, + "superName": "java/lang/Object" + }, + "bqj": { + "name": "bqj", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "J ()Z": { + "access": 1 + }, + "a (Ljava/lang/String;Ltv/twitch/AuthToken;)Z": { + "access": 1 + }, + "Q ()Ltv/twitch/broadcast/FrameBuffer;": { + "access": 1 + }, + "b (Ljava/lang/String;JLjava/lang/String;Ljava/lang/String;)J": { + "access": 1 + }, + "j ()Ltv/twitch/broadcast/StreamInfo;": { + "access": 1 + }, + "q ()Z": { + "access": 1 + }, + "a (Ltv/twitch/broadcast/IngestServer;)V": { + "access": 1 + }, + "K ()V": { + "access": 1 + }, + "a (F)V": { + "access": 1 + }, + "e (Ljava/lang/String;)V": { + "access": 4 + }, + "s ()Ltv/twitch/broadcast/IngestServer;": { + "access": 1 + }, + "a (Lbqj$a;)V": { + "access": 4 + }, + "L ()V": { + "access": 4 + }, + "a (Ltv/twitch/broadcast/FrameBuffer;)V": { + "access": 1 + }, + "C ()Z": { + "access": 1 + }, + "H ()Z": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ltv/twitch/broadcast/FrameBuffer;)Ltv/twitch/ErrorCode;": { + "access": 1 + }, + "d (Ljava/lang/String;)V": { + "access": 4 + }, + "I ()Z": { + "access": 1 + }, + "l ()Ltv/twitch/broadcast/ChannelInfo;": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Z": { + "access": 1 + }, + "a (Ljava/lang/String;JJLjava/lang/String;Ljava/lang/String;)Z": { + "access": 1 + }, + "O ()Z": { + "access": 4 + }, + "E ()V": { + "access": 1 + }, + "a (IIFF)Ltv/twitch/broadcast/VideoParams;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "t ()Ltv/twitch/broadcast/IngestList;": { + "access": 1 + }, + "m ()Z": { + "access": 1 + }, + "b ()Z": { + "access": 1 + }, + "D ()Z": { + "access": 1 + }, + "B ()Ltv/twitch/broadcast/PixelFormat;": { + "access": 4 + }, + "P ()V": { + "access": 4 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "G ()Z": { + "access": 1 + }, + "a (Ltv/twitch/ErrorCode;)Z": { + "access": 4 + }, + "n ()Z": { + "access": 1 + }, + "w ()Lbql;": { + "access": 1 + }, + "o ()Z": { + "access": 1 + }, + "a (Ltv/twitch/broadcast/VideoParams;)Z": { + "access": 1 + }, + "y ()Z": { + "access": 4 + }, + "x ()J": { + "access": 1 + }, + "p ()Z": { + "access": 1 + }, + "A ()Ltv/twitch/ErrorCode;": { + "access": 1 + }, + "a (Ljava/lang/String;JLjava/lang/String;Ljava/lang/String;)Z": { + "access": 1 + }, + "F ()Z": { + "access": 1 + }, + "b (F)V": { + "access": 1 + }, + "a (Lbqj$b;)V": { + "access": 1 + }, + "M ()Lbql;": { + "access": 1 + } + } + }, + "pk": { + "name": "pk", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "m" + ], + "methods": { + "ab ()Z": { + "access": 1 + }, + "a (Lwn;Laui;)Z": { + "access": 1 + }, + "b (Laug;)Z": { + "access": 2 + }, + "aC ()F": { + "access": 1 + }, + "T ()Z": { + "access": 17 + }, + "ag ()Ljava/lang/String;": { + "access": 20 + }, + "n (Lpk;)V": { + "access": 1 + }, + "ak ()V": { + "access": 1 + }, + "aN ()Z": { + "access": 1 + }, + "I ()V": { + "access": 4 + }, + "aK ()Ljava/util/UUID;": { + "access": 1 + }, + "c (I)V": { + "access": 1 + }, + "d (I)V": { + "access": 1 + }, + "K ()V": { + "access": 1 + }, + "aQ ()Lew;": { + "access": 4 + }, + "u_ ()Z": { + "access": 1, + "override": "m" + }, + "aV ()Ldn;": { + "access": 1 + }, + "c (ILzx;)V": { + "access": 1 + }, + "a (Lzw;I)Luz;": { + "access": 1 + }, + "ap ()Laui;": { + "access": 1 + }, + "a (Larm;)Z": { + "access": 1 + }, + "a (Low;F)Z": { + "access": 1 + }, + "a (B)V": { + "access": 1 + }, + "av ()Z": { + "access": 1 + }, + "e (F)Laui;": { + "access": 1 + }, + "e (Ldn;)V": { + "access": 1 + }, + "ax ()Z": { + "access": 1 + }, + "aL ()Z": { + "access": 1 + }, + "a (ILjava/lang/String;)Z": { + "access": 1, + "override": "m" + }, + "s_ ()Z": { + "access": 4 + }, + "P ()Ljava/lang/String;": { + "access": 4 + }, + "e (I)V": { + "access": 1 + }, + "b (Lcj;)D": { + "access": 1 + }, + "a (Laug;)V": { + "access": 1 + }, + "a (DDDFF)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1028 + }, + "a (DZLafh;Lcj;)V": { + "access": 4 + }, + "aE ()I": { + "access": 1 + }, + "d (ILzx;)Z": { + "access": 1 + }, + "aW ()Z": { + "access": 1 + }, + "g (Lpk;)F": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "a (Leu;)V": { + "access": 1, + "override": "m" + }, + "R ()Z": { + "access": 1 + }, + "b (IZ)V": { + "access": 4 + }, + "H ()Lpz;": { + "access": 1 + }, + "a (Lpr;)V": { + "access": 1 + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "d (Z)V": { + "access": 1 + }, + "a (Luv;)V": { + "access": 1 + }, + "g (DDD)V": { + "access": 1 + }, + "a (Lpr;Lpk;)V": { + "access": 4 + }, + "c ()Lcj;": { + "access": 1, + "override": "m" + }, + "j (DDD)Z": { + "access": 4 + }, + "X ()V": { + "access": 4 + }, + "aJ ()Z": { + "access": 1 + }, + "O ()V": { + "access": 4 + }, + "f (I)V": { + "access": 4 + }, + "e (DDD)D": { + "access": 1 + }, + "a (DDDFFIZ)V": { + "access": 1 + }, + "m ()V": { + "access": 2 + }, + "b (DDDFF)V": { + "access": 1 + }, + "az ()I": { + "access": 1 + }, + "f (DDD)D": { + "access": 1 + }, + "f (FF)Laui;": { + "access": 20 + }, + "o (Lpk;)V": { + "access": 1 + }, + "an ()D": { + "access": 1 + }, + "ae ()Z": { + "access": 1 + }, + "c (Z)V": { + "access": 1 + }, + "c (Ldn;)Z": { + "access": 1 + }, + "k (Lpk;)Z": { + "access": 1 + }, + "a ([D)Ldu;": { + "access": 132 + }, + "V ()Z": { + "access": 1 + }, + "c (Lcj;)D": { + "access": 1 + }, + "F ()I": { + "access": 1 + }, + "f (Ldn;)V": { + "access": 1 + }, + "aj ()Z": { + "access": 1 + }, + "f ()Lpk;": { + "access": 1, + "override": "m" + }, + "a (DF)Lauh;": { + "access": 1 + }, + "M ()V": { + "access": 4 + }, + "e ()Ladm;": { + "access": 1, + "override": "m" + }, + "a (Llf;)Z": { + "access": 1 + }, + "aS ()F": { + "access": 1 + }, + "h ()V": { + "access": 1028 + }, + "d (F)Laui;": { + "access": 1 + }, + "d ()Laui;": { + "access": 1, + "override": "m" + }, + "d (Lwn;)V": { + "access": 1 + }, + "t_ ()V": { + "access": 1 + }, + "aA ()V": { + "access": 1 + }, + "b (DDD)V": { + "access": 1 + }, + "a (Lzw;IF)Luz;": { + "access": 1 + }, + "e (FF)V": { + "access": 1 + }, + "ac ()V": { + "access": 4 + }, + "j (Lpk;)Laug;": { + "access": 1 + }, + "f (F)V": { + "access": 1 + }, + "g (Z)V": { + "access": 1 + }, + "i (I)V": { + "access": 1 + }, + "h (Lpk;)D": { + "access": 1 + }, + "al ()V": { + "access": 1 + }, + "au ()Z": { + "access": 1 + }, + "aO ()Z": { + "access": 1 + }, + "b (Lpk;I)V": { + "access": 1 + }, + "aU ()Ln;": { + "access": 1 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + }, + "d (Lcj;)V": { + "access": 1 + }, + "aD ()Z": { + "access": 1 + }, + "a (D)Z": { + "access": 1 + }, + "l (Lpk;)Z": { + "access": 1 + }, + "U ()Z": { + "access": 1 + }, + "a (Lpk;)V": { + "access": 1 + }, + "a (FF)V": { + "access": 4 + }, + "aB ()[Lpk;": { + "access": 1 + }, + "a (FFF)V": { + "access": 1 + }, + "d (Ldn;)Z": { + "access": 1 + }, + "f (Z)V": { + "access": 1 + }, + "g (F)V": { + "access": 1 + }, + "Q ()V": { + "access": 4 + }, + "S ()Laug;": { + "access": 1 + }, + "h (I)V": { + "access": 1 + }, + "L ()I": { + "access": 1 + }, + "g (Ldn;)V": { + "access": 1 + }, + "Z ()V": { + "access": 4 + }, + "aw ()Z": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "i (Lpk;)V": { + "access": 1 + }, + "aM ()Ljava/lang/String;": { + "access": 1 + }, + "aa ()Ljava/lang/String;": { + "access": 4 + }, + "ay ()Z": { + "access": 1 + }, + "c (DDD)Z": { + "access": 1 + }, + "a (DDD)V": { + "access": 1 + }, + "ah ()V": { + "access": 1 + }, + "a ([F)Ldu;": { + "access": 132 + }, + "as ()[Lzx;": { + "access": 1 + }, + "a (Lcj;FF)V": { + "access": 1 + }, + "aq ()I": { + "access": 1 + }, + "aG ()Laui;": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "e (Lwn;)Z": { + "access": 1 + }, + "a (Ljava/lang/String;FF)V": { + "access": 1 + }, + "a (Ladi;Ladm;Lcj;Lalz;)F": { + "access": 1 + }, + "c (F)F": { + "access": 1 + }, + "J ()V": { + "access": 1 + }, + "c (FF)V": { + "access": 1 + }, + "a (Lcj;Lafh;)V": { + "access": 4 + }, + "ao ()F": { + "access": 1 + }, + "i (DDD)V": { + "access": 1 + }, + "h (DDD)Z": { + "access": 1 + }, + "a (Ladm;)V": { + "access": 1 + }, + "f_ ()Leu;": { + "access": 1, + "override": "m" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "aP ()Lcq;": { + "access": 1 + }, + "aH ()Lcq;": { + "access": 1 + }, + "af ()Z": { + "access": 4 + }, + "b (F)I": { + "access": 1 + }, + "a (Lzx;F)Luz;": { + "access": 1 + }, + "g (I)Z": { + "access": 4 + }, + "b (Low;)Z": { + "access": 1 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "m (Lpk;)V": { + "access": 1 + }, + "aT ()Z": { + "access": 1 + }, + "l_ ()Z": { + "access": 1 + }, + "Y ()V": { + "access": 1 + }, + "ai ()Z": { + "access": 1 + }, + "ar ()V": { + "access": 1 + }, + "f (Lwn;)Z": { + "access": 1 + }, + "b (FF)V": { + "access": 4 + }, + "W ()Z": { + "access": 1 + }, + "ad ()Z": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1028 + }, + "G ()V": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "a (Ln$a;I)V": { + "access": 1, + "override": "m" + }, + "a (Lc;)V": { + "access": 1 + }, + "e (Z)V": { + "access": 1 + }, + "aR ()Laug;": { + "access": 1 + }, + "a (Ladi;Ladm;Lcj;Lalz;F)Z": { + "access": 1 + }, + "aI ()Z": { + "access": 1 + }, + "N ()V": { + "access": 1 + }, + "d (DDD)V": { + "access": 1 + }, + "h (Z)V": { + "access": 1 + }, + "am ()D": { + "access": 1 + }, + "at ()Z": { + "access": 1 + } + } + }, + "bql": { + "name": "bql", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lbql$a;)V": { + "access": 1 + }, + "a (Lbql$b;)V": { + "access": 4 + }, + "\u003cinit\u003e (Ltv/twitch/broadcast/Stream;Ltv/twitch/broadcast/IngestList;)V": { + "access": 1 + }, + "n ()J": { + "access": 4 + }, + "a (Ltv/twitch/broadcast/IngestServer;)Z": { + "access": 4 + }, + "m ()V": { + "access": 1 + }, + "b (Ltv/twitch/broadcast/IngestServer;)V": { + "access": 4 + }, + "o ()V": { + "access": 4 + }, + "c ()Ltv/twitch/broadcast/IngestServer;": { + "access": 1 + }, + "k ()V": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "c (Ltv/twitch/broadcast/IngestServer;)Z": { + "access": 4 + }, + "i ()F": { + "access": 1 + }, + "j ()V": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "p ()V": { + "access": 4 + } + } + }, + "hg$1": { + "name": "hg$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "aqj$a": { + "name": "aqj$a", + "access": 33, + "superName": "aqj$m", + "methods": { + "\u003cinit\u003e (ILjava/util/Random;Laqe;Lcq;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/util/Random;II)V": { + "access": 4 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$a;": { + "access": 9 + }, + "a (Ladm;Ljava/util/Random;Laqe;)Z": { + "access": 1, + "override": "aqt" + }, + "a (Laqt;Ljava/util/List;Ljava/util/Random;)V": { + "access": 1, + "override": "aqt" + } + } + }, + "bqk": { + "name": "bqk", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "q ()V": { + "access": 1 + }, + "o ()Z": { + "access": 1 + }, + "h ()Lbqk$c;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lbqk$e;)V": { + "access": 1 + }, + "s ()V": { + "access": 4 + }, + "d (Ljava/lang/String;)Z": { + "access": 1 + }, + "a (Ltv/twitch/AuthToken;)V": { + "access": 1 + }, + "e (Ljava/lang/String;)Lbqk$a;": { + "access": 1 + }, + "r ()V": { + "access": 4 + }, + "a (Lbqk$c;)V": { + "access": 4 + }, + "a (Ljava/lang/String;Z)Z": { + "access": 4 + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "n (Ljava/lang/String;)V": { + "access": 4 + }, + "l (Ljava/lang/String;)Z": { + "access": 1 + }, + "t ()V": { + "access": 4 + }, + "j (Ljava/lang/String;)Z": { + "access": 1 + }, + "n ()Z": { + "access": 1 + }, + "a (Ljava/lang/String;Ljava/lang/String;)Z": { + "access": 1 + }, + "c (Ljava/lang/String;)V": { + "access": 1 + }, + "p ()V": { + "access": 1 + } + } + }, + "pm": { + "name": "pm", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b (Lpk;)Ljava/lang/String;": { + "access": 9 + }, + "a (Ljava/lang/String;Ladm;)Lpk;": { + "access": 9 + }, + "b (Ljava/lang/String;)Z": { + "access": 9 + }, + "a (Lpk;)I": { + "access": 9 + }, + "a (Ljava/lang/String;)I": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/lang/Class;Ljava/lang/String;III)V": { + "access": 10 + }, + "a (Ljava/lang/Class;Ljava/lang/String;I)V": { + "access": 10 + }, + "a (ILadm;)Lpk;": { + "access": 9 + }, + "a (Ldn;Ladm;)Lpk;": { + "access": 9 + }, + "a ()V": { + "access": 9 + }, + "b (I)Ljava/lang/String;": { + "access": 9 + }, + "a (Lpk;Ljava/lang/String;)Z": { + "access": 9 + }, + "b ()Ljava/util/List;": { + "access": 9 + }, + "a (I)Ljava/lang/Class;": { + "access": 9 + } + } + }, + "bqn": { + "name": "bqn", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bqj$b", + "bqk$e", + "bql$a", + "bqm" + ], + "methods": { + "q ()V": { + "access": 1, + "override": "bqm" + }, + "a (Ltv/twitch/broadcast/IngestList;)V": { + "access": 1, + "override": "bqj$b" + }, + "a (Z)V": { + "access": 1, + "override": "bqm" + }, + "g ()V": { + "access": 1, + "override": "bqm" + }, + "a (Ljava/lang/String;[Ltv/twitch/chat/ChatTokenizedMessage;)V": { + "access": 1, + "override": "bqk$e" + }, + "a (Lbqn;)Lbqj;": { + "access": 4104 + }, + "f (Ljava/lang/String;)V": { + "access": 1, + "override": "bqm" + }, + "b (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "bqj$b" + }, + "r ()V": { + "access": 1, + "override": "bqm" + }, + "i ()Z": { + "access": 1, + "override": "bqm" + }, + "f ()V": { + "access": 1, + "override": "bqm" + }, + "z ()Ljava/lang/String;": { + "access": 1, + "override": "bqm" + }, + "a (Ltv/twitch/broadcast/StreamInfo;)V": { + "access": 1, + "override": "bqj$b" + }, + "a (Lbqj$a;)V": { + "access": 1, + "override": "bqj$b" + }, + "B ()Ltv/twitch/ErrorCode;": { + "access": 1, + "override": "bqm" + }, + "C ()Z": { + "access": 1, + "override": "bqm" + }, + "e ()V": { + "access": 1, + "override": "bqk$e" + }, + "s ()[Ltv/twitch/broadcast/IngestServer;": { + "access": 1, + "override": "bqm" + }, + "b (Lbqn;)Lbqk;": { + "access": 4104 + }, + "j ()Z": { + "access": 1, + "override": "bqm" + }, + "d ()V": { + "access": 1, + "override": "bqk$e" + }, + "d (Ljava/lang/String;)V": { + "access": 1, + "override": "bqk$e" + }, + "a (Lbqk$c;)V": { + "access": 1, + "override": "bqk$e" + }, + "u ()V": { + "access": 1, + "override": "bqm" + }, + "k ()Z": { + "access": 1, + "override": "bqm" + }, + "A ()Z": { + "access": 1, + "override": "bqm" + }, + "c ()V": { + "access": 1, + "override": "bqj$b" + }, + "a (Ltv/twitch/ErrorCode;[Ltv/twitch/broadcast/GameInfo;)V": { + "access": 1, + "override": "bqj$b" + }, + "c (Ljava/lang/String;)V": { + "access": 1, + "override": "bqk$e" + }, + "c (F)F": { + "access": 9 + }, + "c (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "bqj$b" + }, + "b ()V": { + "access": 1, + "override": "bqj$b" + }, + "l ()Z": { + "access": 1, + "override": "bqm" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ljava/lang/String;)V": { + "access": 1, + "override": "bqk$e" + }, + "w ()Z": { + "access": 1, + "override": "bqm" + }, + "m ()V": { + "access": 1, + "override": "bqm" + }, + "b (F)I": { + "access": 9 + }, + "a ()V": { + "access": 1, + "override": "bqj$b" + }, + "D ()Z": { + "access": 1, + "override": "bqm" + }, + "G ()Lorg/apache/logging/log4j/Logger;": { + "access": 4104 + }, + "a (Lbqn;Lbqm$a;)Lbqm$a;": { + "access": 4104 + }, + "a (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "bqj$b" + }, + "a (Ljava/lang/String;Ltv/twitch/chat/ChatRawMessage;)V": { + "access": 2 + }, + "a (Ljava/lang/String;)V": { + "access": 1, + "override": "bqk$e" + }, + "\u003cinit\u003e (Lave;Lcom/mojang/authlib/properties/Property;)V": { + "access": 1 + }, + "e (Ljava/lang/String;)Ltv/twitch/chat/ChatUserInfo;": { + "access": 1, + "override": "bqm" + }, + "a (Ljava/util/Set;Ljava/util/Set;I)Z": { + "access": 2 + }, + "n ()V": { + "access": 1, + "override": "bqm" + }, + "a (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1, + "override": "bqk$e" + }, + "a (F)I": { + "access": 9 + }, + "v ()Lbql;": { + "access": 1, + "override": "bqm" + }, + "E ()Lbqm$a;": { + "access": 1, + "override": "bqm" + }, + "x ()I": { + "access": 1, + "override": "bqm" + }, + "y ()Z": { + "access": 1, + "override": "bqm" + }, + "a (Lbqh;JJ)V": { + "access": 1, + "override": "bqm" + }, + "a (Ljava/lang/String;[Ltv/twitch/chat/ChatRawMessage;)V": { + "access": 1, + "override": "bqk$e" + }, + "o ()V": { + "access": 1, + "override": "bqm" + }, + "F ()V": { + "access": 4 + }, + "a (Ljava/lang/String;[Ltv/twitch/chat/ChatUserInfo;[Ltv/twitch/chat/ChatUserInfo;[Ltv/twitch/chat/ChatUserInfo;)V": { + "access": 1, + "override": "bqk$e" + }, + "a (Lbql;Lbql$b;)V": { + "access": 1, + "override": "bql$a" + }, + "e (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "bqk$e" + }, + "h ()V": { + "access": 1, + "override": "bqm" + }, + "p ()V": { + "access": 1, + "override": "bqm" + }, + "a (Lbqh;J)V": { + "access": 1, + "override": "bqm" + }, + "a (Ltv/twitch/ErrorCode;Ltv/twitch/AuthToken;)V": { + "access": 1, + "override": "bqj$b" + }, + "d (Ltv/twitch/ErrorCode;)V": { + "access": 1, + "override": "bqk$e" + } + } + }, + "bqm": { + "name": "bqm", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "q ()V": { + "access": 1025 + }, + "a (Z)V": { + "access": 1025 + }, + "l ()Z": { + "access": 1025 + }, + "g ()V": { + "access": 1025 + }, + "f (Ljava/lang/String;)V": { + "access": 1025 + }, + "w ()Z": { + "access": 1025 + }, + "m ()V": { + "access": 1025 + }, + "D ()Z": { + "access": 1025 + }, + "r ()V": { + "access": 1025 + }, + "i ()Z": { + "access": 1025 + }, + "f ()V": { + "access": 1025 + }, + "e (Ljava/lang/String;)Ltv/twitch/chat/ChatUserInfo;": { + "access": 1025 + }, + "z ()Ljava/lang/String;": { + "access": 1025 + }, + "n ()V": { + "access": 1025 + }, + "B ()Ltv/twitch/ErrorCode;": { + "access": 1025 + }, + "v ()Lbql;": { + "access": 1025 + }, + "E ()Lbqm$a;": { + "access": 1025 + }, + "C ()Z": { + "access": 1025 + }, + "s ()[Ltv/twitch/broadcast/IngestServer;": { + "access": 1025 + }, + "j ()Z": { + "access": 1025 + }, + "x ()I": { + "access": 1025 + }, + "y ()Z": { + "access": 1025 + }, + "a (Lbqh;JJ)V": { + "access": 1025 + }, + "o ()V": { + "access": 1025 + }, + "h ()V": { + "access": 1025 + }, + "u ()V": { + "access": 1025 + }, + "k ()Z": { + "access": 1025 + }, + "A ()Z": { + "access": 1025 + }, + "p ()V": { + "access": 1025 + }, + "a (Lbqh;J)V": { + "access": 1025 + } + } + }, + "po": { + "name": "po", + "access": 49, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bpj$a": { + "name": "bpj$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lbpj$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;II)V": { + "access": 2 + }, + "values ()[Lbpj$a;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "pp": { + "name": "pp", + "access": 33, + "superName": "pk", + "methods": { + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "W ()Z": { + "access": 1, + "override": "pk" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "f (I)V": { + "access": 4, + "override": "pk" + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "aD ()Z": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDDI)V": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "l ()I": { + "access": 1 + }, + "j ()I": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "d (Lwn;)V": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "a (I)I": { + "access": 9 + } + } + }, + "zw$17": { + "name": "zw$17", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "bqo": { + "name": "bqo", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bqm" + ], + "methods": { + "q ()V": { + "access": 1, + "override": "bqm" + }, + "a (Z)V": { + "access": 1, + "override": "bqm" + }, + "l ()Z": { + "access": 1, + "override": "bqm" + }, + "g ()V": { + "access": 1, + "override": "bqm" + }, + "f (Ljava/lang/String;)V": { + "access": 1, + "override": "bqm" + }, + "w ()Z": { + "access": 1, + "override": "bqm" + }, + "m ()V": { + "access": 1, + "override": "bqm" + }, + "D ()Z": { + "access": 1, + "override": "bqm" + }, + "r ()V": { + "access": 1, + "override": "bqm" + }, + "i ()Z": { + "access": 1, + "override": "bqm" + }, + "f ()V": { + "access": 1, + "override": "bqm" + }, + "e (Ljava/lang/String;)Ltv/twitch/chat/ChatUserInfo;": { + "access": 1, + "override": "bqm" + }, + "z ()Ljava/lang/String;": { + "access": 1, + "override": "bqm" + }, + "n ()V": { + "access": 1, + "override": "bqm" + }, + "B ()Ltv/twitch/ErrorCode;": { + "access": 1, + "override": "bqm" + }, + "a ()Ljava/lang/Throwable;": { + "access": 1 + }, + "v ()Lbql;": { + "access": 1, + "override": "bqm" + }, + "E ()Lbqm$a;": { + "access": 1, + "override": "bqm" + }, + "\u003cinit\u003e (Ljava/lang/Throwable;)V": { + "access": 1 + }, + "C ()Z": { + "access": 1, + "override": "bqm" + }, + "s ()[Ltv/twitch/broadcast/IngestServer;": { + "access": 1, + "override": "bqm" + }, + "j ()Z": { + "access": 1, + "override": "bqm" + }, + "x ()I": { + "access": 1, + "override": "bqm" + }, + "y ()Z": { + "access": 1, + "override": "bqm" + }, + "a (Lbqh;JJ)V": { + "access": 1, + "override": "bqm" + }, + "o ()V": { + "access": 1, + "override": "bqm" + }, + "h ()V": { + "access": 1, + "override": "bqm" + }, + "u ()V": { + "access": 1, + "override": "bqm" + }, + "k ()Z": { + "access": 1, + "override": "bqm" + }, + "A ()Z": { + "access": 1, + "override": "bqm" + }, + "p ()V": { + "access": 1, + "override": "bqm" + }, + "a (Lbqh;J)V": { + "access": 1, + "override": "bqm" + } + } + }, + "bgl$1": { + "name": "bgl$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "pq": { + "name": "pq", + "access": 1057, + "superName": "ps", + "methods": { + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "a (DZLafh;Lcj;)V": { + "access": 4, + "override": "pk" + }, + "g (FF)V": { + "access": 1, + "override": "pr" + }, + "k_ ()Z": { + "access": 1, + "override": "pr" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + } + } + }, + "zw$16": { + "name": "zw$16", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "bqr": { + "name": "bqr", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "pr": { + "name": "pr", + "access": 1057, + "superName": "pk", + "methods": { + "aC ()F": { + "access": 1, + "override": "pk" + }, + "bL ()V": { + "access": 4 + }, + "ak ()V": { + "access": 1, + "override": "pk" + }, + "br ()I": { + "access": 1 + }, + "aY ()Z": { + "access": 1 + }, + "bi ()V": { + "access": 4 + }, + "h_ ()V": { + "access": 1 + }, + "K ()V": { + "access": 1, + "override": "pk" + }, + "c (ILzx;)V": { + "access": 1025, + "override": "pk" + }, + "bt ()Lpr;": { + "access": 1 + }, + "ap ()Laui;": { + "access": 1, + "override": "pk" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "h (FF)F": { + "access": 4 + }, + "bC ()F": { + "access": 4 + }, + "q (I)Lzx;": { + "access": 1025 + }, + "j_ ()Z": { + "access": 1 + }, + "B ()V": { + "access": 4 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (DZLafh;Lcj;)V": { + "access": 4, + "override": "pk" + }, + "c (Lpf;)V": { + "access": 1 + }, + "l (F)F": { + "access": 1 + }, + "bp ()Ljava/lang/String;": { + "access": 4 + }, + "bP ()V": { + "access": 4 + }, + "bk ()V": { + "access": 1 + }, + "a (Lqb;)Lqc;": { + "access": 1 + }, + "bb ()Z": { + "access": 4 + }, + "bH ()V": { + "access": 4 + }, + "r (Lpk;)Z": { + "access": 1 + }, + "d (Z)V": { + "access": 1, + "override": "pk" + }, + "i (F)V": { + "access": 1 + }, + "a (Lpe;)Z": { + "access": 1 + }, + "l (I)V": { + "access": 1 + }, + "b (Lpr;)V": { + "access": 1 + }, + "O ()V": { + "access": 4, + "override": "pk" + }, + "a (DDDFFIZ)V": { + "access": 1, + "override": "pk" + }, + "k_ ()Z": { + "access": 1 + }, + "m ()V": { + "access": 1 + }, + "bx ()V": { + "access": 4 + }, + "a (ZI)V": { + "access": 4 + }, + "bs ()Lov;": { + "access": 1 + }, + "d (Lpf;)Z": { + "access": 1 + }, + "bv ()I": { + "access": 17 + }, + "i (Z)V": { + "access": 1 + }, + "j (F)V": { + "access": 4 + }, + "bo ()Ljava/lang/String;": { + "access": 4 + }, + "ae ()Z": { + "access": 1, + "override": "pk" + }, + "bd ()Lpr;": { + "access": 1 + }, + "j ()V": { + "access": 1 + }, + "bA ()Lzx;": { + "access": 1025 + }, + "bF ()V": { + "access": 4 + }, + "bz ()Lpw;": { + "access": 1 + }, + "aZ ()V": { + "access": 4 + }, + "m (F)V": { + "access": 1 + }, + "by ()Lqf;": { + "access": 1 + }, + "a (Low;)V": { + "access": 1 + }, + "bm ()Z": { + "access": 1 + }, + "p (I)Lzx;": { + "access": 1025 + }, + "bD ()Z": { + "access": 4 + }, + "s (Lpk;)V": { + "access": 4 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "d (F)Laui;": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + }, + "o (I)V": { + "access": 17 + }, + "ac ()V": { + "access": 4, + "override": "pk" + }, + "aX ()V": { + "access": 4 + }, + "f (F)V": { + "access": 1, + "override": "pk" + }, + "p (Lpk;)V": { + "access": 1 + }, + "bj ()V": { + "access": 4 + }, + "bM ()Z": { + "access": 1 + }, + "bB ()F": { + "access": 4 + }, + "aO ()Z": { + "access": 1, + "override": "pk" + }, + "t (Lpk;)Z": { + "access": 1 + }, + "c (Lpr;)Z": { + "access": 1 + }, + "bh ()I": { + "access": 1 + }, + "b (Lpe;)Lpf;": { + "access": 1 + }, + "a (Lpk;)V": { + "access": 1, + "override": "pk" + }, + "bK ()V": { + "access": 4 + }, + "b (Lzx;)V": { + "access": 1 + }, + "n (I)Ljava/lang/String;": { + "access": 4 + }, + "d (Low;F)V": { + "access": 4 + }, + "g (F)V": { + "access": 1, + "override": "pk" + }, + "c (Low;F)F": { + "access": 4 + }, + "j (I)I": { + "access": 4 + }, + "a (Lpk;FDD)V": { + "access": 1 + }, + "bu ()F": { + "access": 17 + }, + "bI ()F": { + "access": 1 + }, + "bq ()V": { + "access": 4 + }, + "k (I)Z": { + "access": 1 + }, + "n ()I": { + "access": 2 + }, + "g (FF)V": { + "access": 1 + }, + "bl ()Ljava/util/Collection;": { + "access": 1 + }, + "a (Lpk;I)V": { + "access": 1 + }, + "as ()[Lzx;": { + "access": 1025, + "override": "pk" + }, + "b (Low;F)F": { + "access": 4 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "ba ()Z": { + "access": 4 + }, + "a (Lpf;)V": { + "access": 4 + }, + "bO ()Lauq;": { + "access": 1 + }, + "b (ZI)V": { + "access": 4 + }, + "q (Lpk;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lpf;Z)V": { + "access": 4 + }, + "bG ()V": { + "access": 4 + }, + "bn ()F": { + "access": 17 + }, + "be ()I": { + "access": 1 + }, + "bf ()Lpr;": { + "access": 1 + }, + "m (I)V": { + "access": 1 + }, + "ai ()Z": { + "access": 1, + "override": "pk" + }, + "ar ()V": { + "access": 1, + "override": "pk" + }, + "bJ ()Z": { + "access": 1 + }, + "bc ()Ljava/util/Random;": { + "access": 1 + }, + "b (Lwn;)I": { + "access": 4 + }, + "bN ()F": { + "access": 1 + }, + "a (Lauq;)Z": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "ad ()Z": { + "access": 1, + "override": "pk" + }, + "G ()V": { + "access": 1, + "override": "pk" + }, + "b (Lpf;)V": { + "access": 4 + }, + "k (F)V": { + "access": 1 + }, + "h (F)V": { + "access": 1 + }, + "bg ()I": { + "access": 1 + }, + "bw ()V": { + "access": 1 + }, + "bE ()F": { + "access": 4 + } + } + }, + "bqq": { + "name": "bqq", + "access": 33, + "superName": "org/lwjgl/util/vector/Matrix4f", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cinit\u003e ([F)V": { + "access": 1 + } + } + }, + "ps": { + "name": "ps", + "access": 1057, + "superName": "pr", + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "a (Lok;)V": { + "access": 4 + }, + "a (ZZ)V": { + "access": 1 + }, + "a (Lpk;Z)V": { + "access": 1 + }, + "bM ()Z": { + "access": 1, + "override": "pr" + }, + "A ()Lzw;": { + "access": 4 + }, + "q ()Lqq;": { + "access": 1 + }, + "K ()V": { + "access": 1, + "override": "pk" + }, + "p ()Lqp;": { + "access": 1 + }, + "bK ()V": { + "access": 20, + "override": "pr" + }, + "c (ILzx;)V": { + "access": 1, + "override": "pk" + }, + "z ()Ljava/lang/String;": { + "access": 4 + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "h (FF)F": { + "access": 4, + "override": "pr" + }, + "bW ()Z": { + "access": 1 + }, + "a (Lpk;FF)V": { + "access": 1 + }, + "bT ()F": { + "access": 1 + }, + "bY ()Z": { + "access": 1 + }, + "q (I)Lzx;": { + "access": 1, + "override": "pr" + }, + "w ()I": { + "access": 1 + }, + "C ()Z": { + "access": 4 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "bX ()V": { + "access": 1 + }, + "aE ()I": { + "access": 1, + "override": "pk" + }, + "d (ILzx;)Z": { + "access": 1, + "override": "pk" + }, + "b (FFF)F": { + "access": 2 + }, + "bZ ()Z": { + "access": 1 + }, + "cd ()Lpk;": { + "access": 1 + }, + "as ()[Lzx;": { + "access": 1, + "override": "pk" + }, + "r ()Lqo;": { + "access": 1 + }, + "ce ()Z": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "t ()Lta;": { + "access": 1 + }, + "e (Lwn;)Z": { + "access": 17, + "override": "pk" + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "a (II)Lzw;": { + "access": 9 + }, + "a (Lzx;)Z": { + "access": 4 + }, + "E ()V": { + "access": 4 + }, + "b (Ladm;)Lsw;": { + "access": 4 + }, + "bR ()Z": { + "access": 1 + }, + "b (Lok;)V": { + "access": 4 + }, + "v ()V": { + "access": 1 + }, + "a (Luz;)V": { + "access": 4 + }, + "a (Lok;Lpu;)Lpu;": { + "access": 1 + }, + "bQ ()I": { + "access": 1 + }, + "cc ()Z": { + "access": 1 + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "j (Z)V": { + "access": 1 + }, + "s ()Lsw;": { + "access": 1 + }, + "d (Lpr;)V": { + "access": 1 + }, + "a (Lwn;)Z": { + "access": 4 + }, + "a (ZI)V": { + "access": 4, + "override": "pr" + }, + "bS ()Z": { + "access": 1 + }, + "D ()V": { + "access": 4 + }, + "n (F)V": { + "access": 1 + }, + "a (Ljava/lang/Class;)Z": { + "access": 1 + }, + "cb ()Z": { + "access": 1 + }, + "bA ()Lzx;": { + "access": 1, + "override": "pr" + }, + "n ()V": { + "access": 2 + }, + "u ()Lpr;": { + "access": 1 + }, + "b (Lwn;)I": { + "access": 4, + "override": "pr" + }, + "ca ()V": { + "access": 4 + }, + "x ()V": { + "access": 1 + }, + "c (Lzx;)I": { + "access": 9 + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "k (F)V": { + "access": 1, + "override": "pr" + }, + "p (I)Lzx;": { + "access": 1, + "override": "pr" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "y ()V": { + "access": 1 + }, + "bV ()I": { + "access": 1 + }, + "k (Z)V": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "a (IF)V": { + "access": 1 + } + } + }, + "pt": { + "name": "pt", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "e ()Z": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Lpt;": { + "access": 9 + }, + "a ()Ljava/lang/Class;": { + "access": 1 + }, + "values ()[Lpt;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/Class;ILarm;ZZ)V": { + "access": 2 + }, + "d ()Z": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "zw$13": { + "name": "zw$13", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "bqs": { + "name": "bqs", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (ILjava/nio/IntBuffer;)V": { + "access": 9 + }, + "i (I)V": { + "access": 9 + }, + "j ()Ljava/lang/String;": { + "access": 9 + }, + "b (I)I": { + "access": 9 + }, + "c (I)V": { + "access": 9 + }, + "d (ILjava/nio/FloatBuffer;)V": { + "access": 9 + }, + "g (II)V": { + "access": 9 + }, + "d (I)V": { + "access": 9 + }, + "f ()Z": { + "access": 9 + }, + "c (ILjava/nio/IntBuffer;)V": { + "access": 9 + }, + "i ()Z": { + "access": 9 + }, + "g ()I": { + "access": 9 + }, + "d (II)Ljava/lang/String;": { + "access": 9 + }, + "a (ILjava/nio/ByteBuffer;)V": { + "access": 9 + }, + "c (ILjava/nio/FloatBuffer;)V": { + "access": 9 + }, + "b (IZLjava/nio/FloatBuffer;)V": { + "access": 9 + }, + "j (I)I": { + "access": 9 + }, + "a (II)I": { + "access": 9 + }, + "h (II)V": { + "access": 9 + }, + "e (I)V": { + "access": 9 + }, + "c (IZLjava/nio/FloatBuffer;)V": { + "access": 9 + }, + "h (I)V": { + "access": 9 + }, + "b (ILjava/lang/CharSequence;)I": { + "access": 9 + }, + "k (I)V": { + "access": 9 + }, + "a (ILjava/nio/FloatBuffer;)V": { + "access": 9 + }, + "e ()I": { + "access": 9 + }, + "a (IIII)V": { + "access": 9 + }, + "c (IIII)V": { + "access": 9 + }, + "e (II)Ljava/lang/String;": { + "access": 9 + }, + "d ()I": { + "access": 9 + }, + "a (IIIII)V": { + "access": 9 + }, + "i (II)V": { + "access": 9 + }, + "l (I)V": { + "access": 9 + }, + "b (II)V": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c ()Ljava/lang/String;": { + "access": 9 + }, + "f (I)V": { + "access": 9 + }, + "a (IFF)V": { + "access": 9 + }, + "a (IZLjava/nio/FloatBuffer;)V": { + "access": 9 + }, + "b ()Z": { + "access": 9 + }, + "a ()V": { + "access": 9 + }, + "a (I)V": { + "access": 9 + }, + "d (ILjava/nio/IntBuffer;)V": { + "access": 9 + }, + "b (ILjava/nio/IntBuffer;)V": { + "access": 9 + }, + "g (I)V": { + "access": 9 + }, + "a (ILjava/lang/CharSequence;)I": { + "access": 9 + }, + "a (ILjava/nio/ByteBuffer;I)V": { + "access": 9 + }, + "b (ILjava/nio/FloatBuffer;)V": { + "access": 9 + }, + "c (II)I": { + "access": 9 + }, + "f (II)V": { + "access": 9 + }, + "h ()I": { + "access": 9 + }, + "b (IIII)V": { + "access": 9 + } + } + }, + "pu": { + "name": "pu", + "access": 1537, + "superName": "java/lang/Object" + }, + "zw$12": { + "name": "zw$12", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "pv": { + "name": "pv", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Ljava/lang/Class;)Lps$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "zw$15": { + "name": "zw$15", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "pw": { + "name": "pw", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Lpw;": { + "access": 9 + }, + "values ()[Lpw;": { + "access": 9 + } + } + }, + "zw$14": { + "name": "zw$14", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "px": { + "name": "px", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "m_ ()Lpk;": { + "access": 1025 + }, + "b ()Ljava/lang/String;": { + "access": 1025 + } + } + }, + "py": { + "name": "py", + "access": 1057, + "superName": "ps", + "methods": { + "cf ()Z": { + "access": 1 + }, + "ck ()Z": { + "access": 1 + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "ch ()Lcj;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "ca ()V": { + "access": 4, + "override": "ps" + }, + "cj ()V": { + "access": 1 + }, + "ci ()F": { + "access": 1 + }, + "a (Lcj;I)V": { + "access": 1 + }, + "a (Lcj;)F": { + "access": 1 + }, + "e (Lcj;)Z": { + "access": 1 + }, + "cg ()Z": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "o (F)V": { + "access": 4 + } + } + }, + "pz": { + "name": "pz", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "d (I)F": { + "access": 1 + }, + "j (I)Lpz$a;": { + "access": 2 + }, + "h (I)Ldc;": { + "access": 1 + }, + "a (Lem;)V": { + "access": 1, + "exceptions": [ + "java/io/IOException" + ] + }, + "f (I)Lzx;": { + "access": 1 + }, + "e ()V": { + "access": 1 + }, + "a (I)B": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "i (I)V": { + "access": 1 + }, + "c ()Ljava/util/List;": { + "access": 1 + }, + "a (Lem;Lpz$a;)V": { + "access": 10, + "exceptions": [ + "java/io/IOException" + ] + }, + "a (Ljava/util/List;)V": { + "access": 1 + }, + "e (I)Ljava/lang/String;": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "a (ILjava/lang/Object;)V": { + "access": 1 + }, + "b (Lem;)Ljava/util/List;": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "b (ILjava/lang/Object;)V": { + "access": 1 + }, + "a (Ljava/util/List;Lem;)V": { + "access": 9, + "exceptions": [ + "java/io/IOException" + ] + }, + "b ()Ljava/util/List;": { + "access": 1 + }, + "b (I)S": { + "access": 1 + }, + "\u003cinit\u003e (Lpk;)V": { + "access": 1 + }, + "a (II)V": { + "access": 1 + }, + "c (I)I": { + "access": 1 + }, + "a ()Z": { + "access": 1 + } + } + }, + "zw$11": { + "name": "zw$11", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "zw$10": { + "name": "zw$10", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lzx;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + } + } + }, + "bej$a": { + "name": "bej$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "qa": { + "name": "qa", + "access": 1057, + "superName": "tm", + "interfaces": [ + "px" + ], + "methods": { + "cm ()V": { + "access": 4 + }, + "m_ ()Lpk;": { + "access": 4097, + "bouncer": { + "name": "co", + "desc": "()Lpr;" + }, + "override": "px" + }, + "m (Z)V": { + "access": 1 + }, + "b (Ljava/lang/String;)V": { + "access": 1 + }, + "e (Lpr;)Z": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "cn ()Z": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "co ()Lpr;": { + "access": 1 + }, + "c (Lpr;)Z": { + "access": 1, + "override": "pr" + }, + "a (Lpr;Lpr;)Z": { + "access": 1 + }, + "a (Low;)V": { + "access": 1, + "override": "pr" + }, + "l (Z)V": { + "access": 4 + }, + "cl ()Z": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "b ()Ljava/lang/String;": { + "access": 1, + "override": "px" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "cp ()Lse;": { + "access": 1 + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "n (Z)V": { + "access": 1 + }, + "bO ()Lauq;": { + "access": 1, + "override": "pr" + } + } + }, + "bmv$a": { + "name": "bmv$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "values ()[Lbmv$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lbmv$a;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "bej$b": { + "name": "bej$b", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "axx$a": { + "name": "axx$a", + "access": 32, + "superName": "avs", + "methods": { + "\u003cinit\u003e (Laxx;IIIIILwo;)V": { + "access": 2 + }, + "a (Laxx$a;)Lwo;": { + "access": 4104 + }, + "\u003cinit\u003e (Laxx;IIIIILwo;Laxx$1;)V": { + "access": 4096 + } + } + }, + "qb": { + "name": "qb", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "b ()D": { + "access": 1025 + }, + "a ()Ljava/lang/String;": { + "access": 1025 + }, + "a (D)D": { + "access": 1025 + }, + "c ()Z": { + "access": 1025 + }, + "d ()Lqb;": { + "access": 1025 + } + } + }, + "bmv$b": { + "name": "bmv$b", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "valueOf (Ljava/lang/String;)Lbmv$b;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "values ()[Lbmv$b;": { + "access": 9 + } + } + }, + "bej$c": { + "name": "bej$c", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "qc": { + "name": "qc", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "b ()D": { + "access": 1025 + }, + "a (D)V": { + "access": 1025 + }, + "c ()Ljava/util/Collection;": { + "access": 1025 + }, + "a (Lqd;)Z": { + "access": 1025 + }, + "a (Ljava/util/UUID;)Lqd;": { + "access": 1025 + }, + "e ()D": { + "access": 1025 + }, + "c (Lqd;)V": { + "access": 1025 + }, + "d ()V": { + "access": 1025 + }, + "b (Lqd;)V": { + "access": 1025 + }, + "a (I)Ljava/util/Collection;": { + "access": 1025 + }, + "a ()Lqb;": { + "access": 1025 + } + } + }, + "bej$d": { + "name": "bej$d", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "qd": { + "name": "qd", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "e ()Z": { + "access": 1 + }, + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Ljava/lang/String;DI)V": { + "access": 1 + }, + "a (Z)Lqd;": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Ljava/util/UUID;Ljava/lang/String;DI)V": { + "access": 1 + }, + "d ()D": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a ()Ljava/util/UUID;": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + } + } + }, + "qe": { + "name": "qe", + "access": 1057, + "superName": "java/lang/Object", + "interfaces": [ + "qb" + ], + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "b ()D": { + "access": 1, + "override": "qb" + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "qb" + }, + "a (Z)Lqe;": { + "access": 1 + }, + "c ()Z": { + "access": 1, + "override": "qb" + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Lqb;Ljava/lang/String;D)V": { + "access": 4 + }, + "d ()Lqb;": { + "access": 1, + "override": "qb" + } + } + }, + "qf": { + "name": "qf", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a (Lqc;)V": { + "access": 1 + }, + "c (Lqb;)Lqc;": { + "access": 1028 + }, + "a (Lqb;)Lqc;": { + "access": 1 + }, + "b (Lqb;)Lqc;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)Lqc;": { + "access": 1 + }, + "a ()Ljava/util/Collection;": { + "access": 1 + }, + "b (Lcom/google/common/collect/Multimap;)V": { + "access": 1 + }, + "a (Lcom/google/common/collect/Multimap;)V": { + "access": 1 + } + } + }, + "qh": { + "name": "qh", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "qc" + ], + "methods": { + "b (I)Ljava/util/Collection;": { + "access": 2 + }, + "a (Ljava/util/UUID;)Lqd;": { + "access": 1, + "override": "qc" + }, + "d ()V": { + "access": 1, + "override": "qc" + }, + "\u003cinit\u003e (Lqf;Lqb;)V": { + "access": 1 + }, + "g ()D": { + "access": 2 + }, + "b ()D": { + "access": 1, + "override": "qc" + }, + "a (D)V": { + "access": 1, + "override": "qc" + }, + "c ()Ljava/util/Collection;": { + "access": 1, + "override": "qc" + }, + "a (Lqd;)Z": { + "access": 1, + "override": "qc" + }, + "e ()D": { + "access": 1, + "override": "qc" + }, + "f ()V": { + "access": 4 + }, + "c (Lqd;)V": { + "access": 1, + "override": "qc" + }, + "b (Lqd;)V": { + "access": 1, + "override": "qc" + }, + "a (I)Ljava/util/Collection;": { + "access": 1, + "override": "qc" + }, + "a ()Lqb;": { + "access": 1, + "override": "qc" + } + } + }, + "qi": { + "name": "qi", + "access": 33, + "superName": "qf", + "methods": { + "a (Lqc;)V": { + "access": 1, + "override": "qf" + }, + "b ()Ljava/util/Set;": { + "access": 1 + }, + "b (Ljava/lang/String;)Lqh;": { + "access": 1 + }, + "c (Lqb;)Lqc;": { + "access": 4, + "override": "qf" + }, + "b (Lqb;)Lqc;": { + "access": 1, + "override": "qf" + }, + "a (Lqb;)Lqc;": { + "access": 4097, + "bouncer": { + "name": "e", + "desc": "(Lqb;)Lqh;" + }, + "override": "qf" + }, + "e (Lqb;)Lqh;": { + "access": 1 + }, + "c ()Ljava/util/Collection;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)Lqc;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "(Ljava/lang/String;)Lqh;" + }, + "override": "qf" + } + } + }, + "qj": { + "name": "qj", + "access": 33, + "superName": "qe", + "methods": { + "\u003cinit\u003e (Lqb;Ljava/lang/String;DDD)V": { + "access": 1 + }, + "a (Ljava/lang/String;)Lqj;": { + "access": 1 + }, + "a (D)D": { + "access": 1, + "override": "qb" + }, + "g ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "bej$e": { + "name": "bej$e", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "qm": { + "name": "qm", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lpr;)V": { + "access": 1 + }, + "a (FFF)F": { + "access": 2 + } + } + }, + "qo": { + "name": "qo", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lps;)V": { + "access": 1 + } + } + }, + "qp": { + "name": "qp", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "g ()D": { + "access": 1 + }, + "f ()D": { + "access": 1 + }, + "e ()D": { + "access": 1 + }, + "\u003cinit\u003e (Lps;)V": { + "access": 1 + }, + "a (DDDFF)V": { + "access": 1 + }, + "a (Lpk;FF)V": { + "access": 1 + }, + "a (FFF)F": { + "access": 2 + }, + "b ()Z": { + "access": 1 + } + } + }, + "qq": { + "name": "qq", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()D": { + "access": 1 + }, + "a (DDDD)V": { + "access": 1 + }, + "f ()D": { + "access": 1 + }, + "e ()D": { + "access": 1 + }, + "\u003cinit\u003e (Lps;)V": { + "access": 1 + }, + "d ()D": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "a ()Z": { + "access": 1 + }, + "a (FFF)F": { + "access": 4 + } + } + }, + "bdg$2": { + "name": "bdg$2", + "access": 32, + "superName": "io/netty/channel/ChannelInitializer", + "methods": { + "\u003cinit\u003e (Lbdg;Lbdd;Lbde;)V": { + "access": 0 + }, + "initChannel (Lio/netty/channel/Channel;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/channel/ChannelInitializer" + } + } + }, + "bdg$1": { + "name": "bdg$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "jp" + ], + "methods": { + "\u003cinit\u003e (Lbdg;Lek;Lbde;)V": { + "access": 0 + }, + "a (Leu;)V": { + "access": 1, + "override": "ep" + }, + "a (Ljq;)V": { + "access": 1, + "override": "jp" + }, + "a (Ljr;)V": { + "access": 1, + "override": "jp" + } + } + }, + "qs": { + "name": "qs", + "access": 33, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lpy;Ljava/lang/Class;FDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Lpy;Ljava/lang/Class;Lcom/google/common/base/Predicate;FDD)V": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "rd" + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "qt": { + "name": "qt", + "access": 33, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lua;F)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "rd" + }, + "a (Lwn;)Z": { + "access": 2 + } + } + }, + "qu": { + "name": "qu", + "access": 33, + "superName": "qx", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lps;)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "qv": { + "name": "qv", + "access": 33, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "f ()Ltm;": { + "access": 2 + }, + "g ()V": { + "access": 2 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Ltm;D)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "net/minecraft/realms/DisconnectedRealmsScreen": { + "name": "net/minecraft/realms/DisconnectedRealmsScreen", + "access": 33, + "superName": "net/minecraft/realms/RealmsScreen", + "methods": { + "buttonClicked (Lnet/minecraft/realms/RealmsButton;)V": { + "access": 1, + "override": "net/minecraft/realms/RealmsScreen" + }, + "init ()V": { + "access": 1, + "override": "net/minecraft/realms/RealmsScreen" + }, + "keyPressed (CI)V": { + "access": 1, + "override": "net/minecraft/realms/RealmsScreen" + }, + "\u003cinit\u003e (Lnet/minecraft/realms/RealmsScreen;Ljava/lang/String;Leu;)V": { + "access": 1 + }, + "render (IIF)V": { + "access": 1, + "override": "net/minecraft/realms/RealmsScreen" + } + } + }, + "qw": { + "name": "qw", + "access": 33, + "superName": "rd", + "methods": { + "a (Lafh;)Z": { + "access": 2 + }, + "\u003cinit\u003e (Lps;F)V": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "rd" + }, + "g ()V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "h ()Z": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "bdx$a": { + "name": "bdx$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "qx": { + "name": "qx", + "access": 1057, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lps;)V": { + "access": 1 + }, + "a (Lcj;)Lagh;": { + "access": 2 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "qy": { + "name": "qy", + "access": 33, + "superName": "rd", + "methods": { + "f ()I": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lps;)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "qz": { + "name": "qz", + "access": 33, + "superName": "rd", + "methods": { + "f ()Laui;": { + "access": 2 + }, + "\u003cinit\u003e (Lpy;D)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "ra": { + "name": "ra", + "access": 33, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lps;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rb": { + "name": "rb", + "access": 33, + "superName": "rd", + "methods": { + "a (Lcj;)Z": { + "access": 2 + }, + "e ()V": { + "access": 1, + "override": "rd" + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lqa;DFF)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rc": { + "name": "rc", + "access": 33, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Ltm;D)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "adz$a": { + "name": "adz$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (II)Lady;": { + "access": 1 + }, + "\u003cinit\u003e (Ladz;II)V": { + "access": 1 + } + } + }, + "rd": { + "name": "rd", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a (I)V": { + "access": 1 + }, + "i ()Z": { + "access": 1 + }, + "e ()V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "j ()I": { + "access": 1 + }, + "d ()V": { + "access": 1 + }, + "c ()V": { + "access": 1 + }, + "a ()Z": { + "access": 1025 + }, + "b ()Z": { + "access": 1 + } + } + }, + "re": { + "name": "re", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "a (Lrd;)V": { + "access": 1 + }, + "a (Lre$a;)Z": { + "access": 2 + }, + "a (Lre$a;Lre$a;)Z": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (ILrd;)V": { + "access": 1 + }, + "b (Lre$a;)Z": { + "access": 2 + }, + "\u003cinit\u003e (Lnt;)V": { + "access": 1 + } + } + }, + "rf": { + "name": "rf", + "access": 33, + "superName": "ro", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lwi;D)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "a (Ladm;Lcj;)Z": { + "access": 4, + "override": "ro" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "ps$a": { + "name": "ps$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "values ()[Lps$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "valueOf (Ljava/lang/String;)Lps$a;": { + "access": 9 + } + } + }, + "rg": { + "name": "rg", + "access": 33, + "superName": "ri", + "methods": { + "\u003cinit\u003e (Lps;Ljava/lang/Class;FF)V": { + "access": 1 + } + } + }, + "eb$a": { + "name": "eb$a", + "access": 1057, + "superName": "eb", + "methods": { + "g ()D": { + "access": 1025 + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "h ()F": { + "access": 1025 + }, + "e ()S": { + "access": 1025 + }, + "f ()B": { + "access": 1025 + }, + "d ()I": { + "access": 1025 + }, + "c ()J": { + "access": 1025 + } + } + }, + "rh": { + "name": "rh", + "access": 33, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lps;F)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "ri": { + "name": "ri", + "access": 33, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lps;Ljava/lang/Class;FF)V": { + "access": 1 + }, + "\u003cinit\u003e (Lps;Ljava/lang/Class;F)V": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "rd" + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rj": { + "name": "rj", + "access": 33, + "superName": "ri", + "methods": { + "\u003cinit\u003e (Lwi;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rk": { + "name": "rk", + "access": 33, + "superName": "rd", + "methods": { + "f ()Z": { + "access": 2 + }, + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lwi;)V": { + "access": 1 + }, + "g ()V": { + "access": 2 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rl": { + "name": "rl", + "access": 33, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lpy;Ljava/lang/Class;DZ)V": { + "access": 1 + }, + "\u003cinit\u003e (Lpy;DZ)V": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "rd" + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "a (Lpr;)D": { + "access": 4 + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rm": { + "name": "rm", + "access": 33, + "superName": "rd", + "methods": { + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lpy;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rn": { + "name": "rn", + "access": 33, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lpy;DZ)V": { + "access": 1 + }, + "a (Lte;)Z": { + "access": 2 + }, + "f ()V": { + "access": 2 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "a (Ltf;)Lte;": { + "access": 2 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "ro": { + "name": "ro", + "access": 1057, + "superName": "rd", + "methods": { + "f ()Z": { + "access": 4 + }, + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lpy;DI)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "a (Ladm;Lcj;)Z": { + "access": 1028 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "g ()Z": { + "access": 2 + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "alu$1": { + "name": "alu$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "rp": { + "name": "rp", + "access": 33, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lpy;D)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rq": { + "name": "rq", + "access": 33, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lpy;DF)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rr": { + "name": "rr", + "access": 33, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lps;)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rs": { + "name": "rs", + "access": 33, + "superName": "ro", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lts;D)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "a (Ladm;Lcj;)Z": { + "access": 4, + "override": "ro" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rt": { + "name": "rt", + "access": 33, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lty;)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "ru": { + "name": "ru", + "access": 33, + "superName": "qx", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lps;Z)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rv": { + "name": "rv", + "access": 33, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lpy;D)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rw": { + "name": "rw", + "access": 33, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lwi;D)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "ry": { + "name": "ry", + "access": 33, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lps;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "rz": { + "name": "rz", + "access": 33, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lpy;D)V": { + "access": 1 + }, + "\u003cinit\u003e (Lpy;DI)V": { + "access": 1 + }, + "f ()V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b (I)V": { + "access": 1 + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "zp$a": { + "name": "zp$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;IFIF)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f ()F": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "valueOf (Ljava/lang/String;)Lzp$a;": { + "access": 9 + }, + "a ()I": { + "access": 1 + }, + "a (Lzx;)Lzp$a;": { + "access": 9 + }, + "a (I)Lzp$a;": { + "access": 9 + }, + "e ()I": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "d ()F": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;IF)V": { + "access": 2 + }, + "g ()Z": { + "access": 1 + }, + "values ()[Lzp$a;": { + "access": 9 + } + } + }, + "sa": { + "name": "sa", + "access": 33, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lvx;DIF)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lvx;DIIF)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "sb": { + "name": "sb", + "access": 33, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lpy;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "bgl$b": { + "name": "bgl$b", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/gson/JsonDeserializer" + ], + "methods": { + "c (Lcom/google/gson/JsonObject;)Ljava/lang/String;": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgl;": { + "access": 1, + "exceptions": [ + "com/google/gson/JsonParseException" + ] + }, + "a (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List;": { + "access": 4 + }, + "b (Lcom/google/gson/JsonObject;)Ljava/util/Map;": { + "access": 2 + }, + "deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "com/google/gson/JsonParseException" + ], + "bouncer": { + "name": "a", + "desc": "(Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgl;" + }, + "override": "com/google/gson/JsonDeserializer" + }, + "a (Lcom/google/gson/JsonObject;)Z": { + "access": 4 + } + } + }, + "sc": { + "name": "sc", + "access": 33, + "superName": "rd", + "methods": { + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lpy;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "box$b": { + "name": "box$b", + "access": 32, + "superName": "oa$a", + "interfaces": [ + "java/lang/Comparable" + ], + "methods": { + "a (Lbox$b;)I": { + "access": 1 + }, + "compareTo (Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lbox$b;)I" + }, + "override": "java/lang/Comparable" + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Lboq;I)V": { + "access": 1 + }, + "a ()I": { + "access": 4 + } + } + }, + "bgl$a": { + "name": "bgl$a", + "access": 48, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbgl;Lbgl$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e (Lbgl;)V": { + "access": 2 + } + } + }, + "sd": { + "name": "sd", + "access": 33, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Ltp;D)V": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "box$a": { + "name": "box$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lboq;I)Lbox$a;": { + "access": 1 + }, + "b ()Lboq;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a ()Lbox;": { + "access": 1 + } + } + }, + "se": { + "name": "se", + "access": 33, + "superName": "rd", + "methods": { + "a (Z)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lqa;)V": { + "access": 1 + } + } + }, + "bgl$c": { + "name": "bgl$c", + "access": 33, + "superName": "java/lang/RuntimeException", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "sf": { + "name": "sf", + "access": 33, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lvn;)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "sg": { + "name": "sg", + "access": 33, + "superName": "rd", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lwi;)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "aad$1": { + "name": "aad$1", + "access": 48, + "superName": "cn", + "methods": { + "b (Lck;Lzx;)Lzx;": { + "access": 1, + "override": "cn" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lck;)V": { + "access": 4, + "override": "cn" + } + } + }, + "sh": { + "name": "sh", + "access": 33, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lpy;DLzw;Z)V": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "e ()V": { + "access": 1, + "override": "rd" + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "si": { + "name": "si", + "access": 33, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lwi;)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "sj": { + "name": "sj", + "access": 33, + "superName": "rg", + "methods": { + "e ()V": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lwi;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "rd" + } + } + }, + "sl": { + "name": "sl", + "access": 33, + "superName": "st", + "methods": { + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lty;)V": { + "access": 1 + } + } + }, + "cm$1": { + "name": "cm$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "sm": { + "name": "sm", + "access": 33, + "superName": "st", + "methods": { + "\u003cinit\u003e (Lpy;Z[Ljava/lang/Class;)V": { + "access": 129 + }, + "a (Lpy;Lpr;)V": { + "access": 4 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "sn": { + "name": "sn", + "access": 33, + "superName": "rd", + "methods": { + "a (Lsn;)Lps;": { + "access": 4104 + }, + "\u003cinit\u003e (Lps;Ljava/lang/Class;)V": { + "access": 1 + }, + "f ()D": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "so": { + "name": "so", + "access": 33, + "superName": "rd", + "methods": { + "f ()D": { + "access": 4 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lso;)Lps;": { + "access": 4104 + }, + "\u003cinit\u003e (Lps;)V": { + "access": 1 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "sp": { + "name": "sp", + "access": 33, + "superName": "st", + "methods": { + "\u003cinit\u003e (Lpy;Ljava/lang/Class;Z)V": { + "access": 1 + }, + "\u003cinit\u003e (Lpy;Ljava/lang/Class;IZZLcom/google/common/base/Predicate;)V": { + "access": 1 + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lpy;Ljava/lang/Class;ZZ)V": { + "access": 1 + } + } + }, + "sq": { + "name": "sq", + "access": 33, + "superName": "sp", + "methods": { + "\u003cinit\u003e (Lqa;Ljava/lang/Class;ZLcom/google/common/base/Predicate;)V": { + "access": 1 + }, + "a ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "ajb$a": { + "name": "ajb$a", + "access": 16432, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "valueOf (Ljava/lang/String;)Lajb$a;": { + "access": 9 + }, + "values ()[Lajb$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;ILjava/lang/String;)V": { + "access": 2 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + } + } + }, + "sr": { + "name": "sr", + "access": 33, + "superName": "st", + "methods": { + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lqa;)V": { + "access": 1 + } + } + }, + "ss": { + "name": "ss", + "access": 33, + "superName": "st", + "methods": { + "c ()V": { + "access": 1, + "override": "rd" + }, + "a ()Z": { + "access": 1, + "override": "rd" + }, + "\u003cinit\u003e (Lqa;)V": { + "access": 1 + } + } + }, + "st": { + "name": "st", + "access": 1057, + "superName": "rd", + "methods": { + "\u003cinit\u003e (Lpy;Z)V": { + "access": 1 + }, + "f ()D": { + "access": 4 + }, + "d ()V": { + "access": 1, + "override": "rd" + }, + "c ()V": { + "access": 1, + "override": "rd" + }, + "a (Lps;Lpr;ZZ)Z": { + "access": 9 + }, + "a (Lpr;)Z": { + "access": 2 + }, + "\u003cinit\u003e (Lpy;ZZ)V": { + "access": 1 + }, + "a (Lpr;Z)Z": { + "access": 4 + }, + "b ()Z": { + "access": 1, + "override": "rd" + } + } + }, + "sv": { + "name": "sv", + "access": 33, + "superName": "sw", + "methods": { + "a ()Lasy;": { + "access": 4, + "override": "sw" + }, + "e ()Z": { + "access": 1 + }, + "d (Z)V": { + "access": 1 + }, + "p ()I": { + "access": 2 + }, + "a (Z)V": { + "access": 1 + }, + "a (Laui;Laui;III)Z": { + "access": 4, + "override": "sw" + }, + "a (IIIIIILaui;DD)Z": { + "access": 2 + }, + "d ()V": { + "access": 4, + "override": "sw" + }, + "h ()Z": { + "access": 1 + }, + "b (Z)V": { + "access": 1 + }, + "b ()Z": { + "access": 4, + "override": "sw" + }, + "e (Z)V": { + "access": 1 + }, + "c (Z)V": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "\u003cinit\u003e (Lps;Ladm;)V": { + "access": 1 + }, + "c ()Laui;": { + "access": 4, + "override": "sw" + }, + "b (IIIIIILaui;DD)Z": { + "access": 2 + } + } + }, + "sw": { + "name": "sw", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "a ()Lasy;": { + "access": 1028 + }, + "a (Lpk;)Lasx;": { + "access": 1 + }, + "l ()V": { + "access": 4 + }, + "j ()Lasx;": { + "access": 1 + }, + "o ()Z": { + "access": 4 + }, + "a (Laui;)V": { + "access": 4 + }, + "a (Laui;Laui;III)Z": { + "access": 1028 + }, + "m ()Z": { + "access": 1 + }, + "d ()V": { + "access": 4 + }, + "a (DDD)Lasx;": { + "access": 17 + }, + "a (Lasx;D)Z": { + "access": 1 + }, + "a (DDDD)Z": { + "access": 1 + }, + "b ()Z": { + "access": 1028 + }, + "a (Lpk;D)Z": { + "access": 1 + }, + "k ()V": { + "access": 1 + }, + "a (Lcj;)Lasx;": { + "access": 1 + }, + "a (D)V": { + "access": 1 + }, + "a (F)V": { + "access": 1 + }, + "i ()F": { + "access": 1 + }, + "\u003cinit\u003e (Lps;Ladm;)V": { + "access": 1 + }, + "c ()Laui;": { + "access": 1028 + }, + "n ()V": { + "access": 1 + } + } + }, + "sx": { + "name": "sx", + "access": 33, + "superName": "sv", + "methods": { + "a (Lpk;)Lasx;": { + "access": 1, + "override": "sw" + }, + "a (Lpk;D)Z": { + "access": 1, + "override": "sw" + }, + "k ()V": { + "access": 1, + "override": "sw" + }, + "a (Lcj;)Lasx;": { + "access": 1, + "override": "sw" + }, + "\u003cinit\u003e (Lps;Ladm;)V": { + "access": 1 + } + } + }, + "sy": { + "name": "sy", + "access": 33, + "superName": "sw", + "methods": { + "a ()Lasy;": { + "access": 4, + "override": "sw" + }, + "l ()V": { + "access": 4, + "override": "sw" + }, + "a (Laui;Laui;III)Z": { + "access": 4, + "override": "sw" + }, + "d ()V": { + "access": 4, + "override": "sw" + }, + "\u003cinit\u003e (Lps;Ladm;)V": { + "access": 1 + }, + "c ()Laui;": { + "access": 4, + "override": "sw" + }, + "b ()Z": { + "access": 4, + "override": "sw" + } + } + }, + "ta": { + "name": "ta", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "\u003cinit\u003e (Lps;)V": { + "access": 1 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "tc": { + "name": "tc", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lpy;IILaui;)Laui;": { + "access": 9 + }, + "a (Lpy;II)Laui;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c (Lpy;IILaui;)Laui;": { + "access": 10 + }, + "b (Lpy;IILaui;)Laui;": { + "access": 9 + } + } + }, + "te": { + "name": "te", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "d ()Lcj;": { + "access": 1 + }, + "e ()Lcj;": { + "access": 1 + }, + "f ()I": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "b ()V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (II)Lcq;": { + "access": 10 + }, + "c (Lcj;)Z": { + "access": 1 + }, + "a (Lcj;)I": { + "access": 1 + }, + "a ()V": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "\u003cinit\u003e (Lcj;III)V": { + "access": 1 + }, + "\u003cinit\u003e (Lcj;Lcq;I)V": { + "access": 1 + }, + "i ()Z": { + "access": 1 + }, + "g ()I": { + "access": 1 + }, + "b (Lcj;)I": { + "access": 1 + }, + "h ()I": { + "access": 1 + }, + "b (III)I": { + "access": 1 + } + } + }, + "aoi$a": { + "name": "aoi$a", + "access": 32, + "superName": "cj", + "methods": { + "\u003cinit\u003e (Lcj;I)V": { + "access": 1 + }, + "q ()I": { + "access": 1 + } + } + }, + "tf": { + "name": "tf", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "l ()V": { + "access": 2 + }, + "a (Lcj;)Z": { + "access": 1 + }, + "c (Lcj;)Lte;": { + "access": 1 + }, + "a (Ladm;)V": { + "access": 1 + }, + "a ()Lcj;": { + "access": 1 + }, + "m ()V": { + "access": 2 + }, + "f (Lcj;)Z": { + "access": 2 + }, + "a (I)V": { + "access": 1 + }, + "i ()Z": { + "access": 1 + }, + "a (Lte;)V": { + "access": 1 + }, + "j ()V": { + "access": 2 + }, + "a (Ljava/lang/String;I)I": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "n ()V": { + "access": 2 + }, + "b (Lpr;)Lpr;": { + "access": 1 + }, + "f ()Ljava/util/List;": { + "access": 1 + }, + "a (Lcj;III)Laui;": { + "access": 2 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Ljava/lang/String;)I": { + "access": 1 + }, + "e (Lcj;)Lte;": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1 + }, + "b (Lcj;)Lte;": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1 + }, + "d (Ljava/lang/String;)Z": { + "access": 1 + }, + "a (Lcj;Lcj;)Z": { + "access": 2 + }, + "k ()V": { + "access": 2 + }, + "e ()I": { + "access": 1 + }, + "h ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "c (Lpr;)Lwn;": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "a (Lpr;)V": { + "access": 1 + } + } + }, + "tg": { + "name": "tg", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 1 + }, + "a (Lcj;)Laui;": { + "access": 2 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "c ()Z": { + "access": 2 + }, + "b ()Z": { + "access": 2 + } + } + }, + "net/minecraft/realms/RealmsVertexFormatElement": { + "name": "net/minecraft/realms/RealmsVertexFormatElement", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 1, + "override": "java/lang/Object" + }, + "isPosition ()Z": { + "access": 1 + }, + "getVertexFormatElement ()Lbmv;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "getIndex ()I": { + "access": 1 + }, + "getByteSize ()I": { + "access": 1 + }, + "getCount ()I": { + "access": 1 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 1, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (Lbmv;)V": { + "access": 1 + } + } + }, + "th": { + "name": "th", + "access": 33, + "superName": "ate", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Lanm;)Ljava/lang/String;": { + "access": 9 + }, + "e ()V": { + "access": 2 + }, + "c (Lcj;)Lte;": { + "access": 2 + }, + "a (Ladm;)V": { + "access": 1 + }, + "g ()V": { + "access": 2 + }, + "a (Lcj;Lcq;I)I": { + "access": 2 + }, + "b (Ldn;)V": { + "access": 1, + "override": "ate" + }, + "a (Ldn;)V": { + "access": 1, + "override": "ate" + }, + "d (Lcj;)V": { + "access": 2 + }, + "a ()V": { + "access": 1 + }, + "a (Lcj;I)Ltf;": { + "access": 1 + }, + "f (Lcj;)Z": { + "access": 2 + }, + "e (Lcj;)Z": { + "access": 2 + }, + "b ()Ljava/util/List;": { + "access": 1 + }, + "f ()V": { + "access": 2 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "b (Lcj;)V": { + "access": 2 + }, + "a (Lcj;)V": { + "access": 1 + } + } + }, + "tj": { + "name": "tj", + "access": 1057, + "superName": "ps", + "interfaces": [ + "pi" + ], + "methods": { + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "cb ()Z": { + "access": 1, + "override": "ps" + }, + "a (Lwn;)Z": { + "access": 4, + "override": "ps" + } + } + }, + "tk": { + "name": "tk", + "access": 33, + "superName": "tj", + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "E ()V": { + "access": 4, + "override": "ps" + }, + "a (Z)V": { + "access": 1 + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "bL ()V": { + "access": 4, + "override": "pr" + }, + "a (Ljava/util/Calendar;)Z": { + "access": 2 + }, + "bB ()F": { + "access": 4, + "override": "pr" + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "ae ()Z": { + "access": 1, + "override": "pk" + }, + "n ()Z": { + "access": 1 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "bC ()F": { + "access": 4, + "override": "pr" + }, + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (DZLafh;Lcj;)V": { + "access": 4, + "override": "pk" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "s (Lpk;)V": { + "access": 4, + "override": "pr" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "aI ()Z": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + } + } + }, + "bcy$3$1": { + "name": "bcy$3$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "awx" + ], + "methods": { + "\u003cinit\u003e (Lbcy$3;)V": { + "access": 0 + }, + "a (ZI)V": { + "access": 1, + "override": "awx" + } + } + }, + "tm": { + "name": "tm", + "access": 1057, + "superName": "ph", + "interfaces": [ + "pi" + ], + "methods": { + "cq ()Lwn;": { + "access": 1 + }, + "E ()V": { + "access": 4, + "override": "ps" + }, + "a (Ltm;)Z": { + "access": 1 + }, + "w ()I": { + "access": 1, + "override": "ps" + }, + "C ()Z": { + "access": 4, + "override": "ps" + }, + "b (Lwn;)I": { + "access": 4, + "override": "pr" + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "cr ()Z": { + "access": 1 + }, + "a (Lcj;)F": { + "access": 1, + "override": "py" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "ps" + }, + "c (Lwn;)V": { + "access": 1 + }, + "cs ()V": { + "access": 1 + }, + "d (Lzx;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "a (Lwn;Lzx;)V": { + "access": 4 + } + } + }, + "tn": { + "name": "tn", + "access": 33, + "superName": "tm", + "methods": { + "a (Lcj;Lafh;)V": { + "access": 4, + "override": "pk" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "b (Lwn;)I": { + "access": 4, + "override": "pr" + }, + "C ()Z": { + "access": 4, + "override": "ps" + }, + "al ()V": { + "access": 1, + "override": "pk" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "a (Lph;)Lph;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "(Lph;)Ltn;" + }, + "override": "ph" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "cl ()Z": { + "access": 1 + }, + "l (Z)V": { + "access": 1 + }, + "d (Lzx;)Z": { + "access": 1, + "override": "tm" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "b (Lph;)Ltn;": { + "access": 1 + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + } + } + }, + "to": { + "name": "to", + "access": 33, + "superName": "tm", + "methods": { + "a (Lcj;Lafh;)V": { + "access": 4, + "override": "pk" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "bB ()F": { + "access": 4, + "override": "pr" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "ps" + }, + "a (Lph;)Lph;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "(Lph;)Lto;" + }, + "override": "ph" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "b (Lph;)Lto;": { + "access": 1 + } + } + }, + "tp": { + "name": "tp", + "access": 33, + "superName": "tm", + "interfaces": [ + "oh" + ], + "methods": { + "a (Z)V": { + "access": 1, + "override": "ph" + }, + "a (Ltm;)Z": { + "access": 1, + "override": "tm" + }, + "dg ()Z": { + "access": 2 + }, + "m (Z)V": { + "access": 1 + }, + "cA ()Z": { + "access": 1 + }, + "br ()I": { + "access": 1, + "override": "pr" + }, + "l (Z)V": { + "access": 1 + }, + "de ()V": { + "access": 2 + }, + "d (Lzx;)Z": { + "access": 1, + "override": "tm" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "g (Lwn;)V": { + "access": 1 + }, + "cC ()I": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "d (ILzx;)Z": { + "access": 1, + "override": "pk" + }, + "cv ()Z": { + "access": 1 + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "cJ ()Z": { + "access": 1 + }, + "di ()F": { + "access": 2 + }, + "cS ()Z": { + "access": 1 + }, + "cP ()Z": { + "access": 1 + }, + "dj ()D": { + "access": 2 + }, + "r (I)V": { + "access": 1 + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "b (Ljava/lang/String;)V": { + "access": 1 + }, + "cw ()Z": { + "access": 1 + }, + "a (Lok;Lpu;)Lpu;": { + "access": 1, + "override": "ps" + }, + "cn ()Z": { + "access": 1 + }, + "cm ()I": { + "access": 1 + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "k_ ()Z": { + "access": 1, + "override": "pr" + }, + "cY ()V": { + "access": 2 + }, + "a (Loq;)V": { + "access": 1, + "override": "oh" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "ps" + }, + "o (Z)V": { + "access": 1 + }, + "da ()V": { + "access": 2 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "ae ()Z": { + "access": 1, + "override": "pk" + }, + "p (Z)V": { + "access": 1 + }, + "cb ()Z": { + "access": 1, + "override": "ps" + }, + "cE ()V": { + "access": 1 + }, + "f (Lzx;)I": { + "access": 2 + }, + "cW ()V": { + "access": 1 + }, + "h (Lwn;)Z": { + "access": 1 + }, + "cy ()Z": { + "access": 1 + }, + "a (Low;)V": { + "access": 1, + "override": "pr" + }, + "cp ()Z": { + "access": 1 + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "dc ()V": { + "access": 2 + }, + "bD ()Z": { + "access": 4, + "override": "pr" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "cM ()[Ljava/lang/String;": { + "access": 1 + }, + "bV ()I": { + "access": 1, + "override": "ps" + }, + "a (Lpk;Lxj;)V": { + "access": 2 + }, + "cG ()Z": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + }, + "cH ()Ljava/lang/String;": { + "access": 4 + }, + "p (F)F": { + "access": 1 + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "q (F)F": { + "access": 1 + }, + "df ()V": { + "access": 2 + }, + "al ()V": { + "access": 1, + "override": "pk" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "bB ()F": { + "access": 4, + "override": "pr" + }, + "cI ()I": { + "access": 1 + }, + "cL ()Ljava/lang/String;": { + "access": 1 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + }, + "u (I)I": { + "access": 1 + }, + "t (I)V": { + "access": 1 + }, + "c (IZ)V": { + "access": 2 + }, + "i (Lwn;)V": { + "access": 2 + }, + "r (F)F": { + "access": 1 + }, + "f (Z)V": { + "access": 1, + "override": "pk" + }, + "s (Z)V": { + "access": 1 + }, + "w ()I": { + "access": 1, + "override": "ps" + }, + "cx ()I": { + "access": 1 + }, + "cD ()Z": { + "access": 1 + }, + "a (Lzw;)Z": { + "access": 9 + }, + "s (I)V": { + "access": 1 + }, + "cR ()Z": { + "access": 1 + }, + "v (I)V": { + "access": 1 + }, + "g (FF)V": { + "access": 1, + "override": "pr" + }, + "ct ()Ljava/lang/String;": { + "access": 1 + }, + "r (Z)V": { + "access": 1 + }, + "dh ()V": { + "access": 2 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "cB ()Z": { + "access": 1 + }, + "o (F)V": { + "access": 4, + "override": "py" + }, + "cK ()Z": { + "access": 1 + }, + "a (Lcj;Lafh;)V": { + "access": 4, + "override": "pk" + }, + "cl ()I": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "db ()V": { + "access": 2 + }, + "a (Lph;)Lph;": { + "access": 1, + "override": "ph" + }, + "e (Lzx;)V": { + "access": 1 + }, + "cu ()F": { + "access": 1 + }, + "w (I)Z": { + "access": 2 + }, + "dk ()D": { + "access": 2 + }, + "co ()Z": { + "access": 1 + }, + "cF ()D": { + "access": 1 + }, + "dd ()V": { + "access": 2 + }, + "t (Z)V": { + "access": 4 + }, + "q (Z)V": { + "access": 1 + }, + "a (Lpk;D)Ltp;": { + "access": 4 + }, + "cz ()Z": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "cZ ()I": { + "access": 2 + }, + "n (Z)V": { + "access": 1 + }, + "cO ()Z": { + "access": 1 + }, + "cX ()V": { + "access": 1 + } + } + }, + "tq": { + "name": "tq", + "access": 1057, + "superName": "py", + "interfaces": [ + "pi" + ], + "methods": { + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "w ()I": { + "access": 1, + "override": "ps" + }, + "C ()Z": { + "access": 4, + "override": "ps" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + } + } + }, + "tr": { + "name": "tr", + "access": 33, + "superName": "to", + "methods": { + "a (Lph;)Lph;": { + "access": 4097, + "bouncer": { + "name": "c", + "desc": "(Lph;)Ltr;" + }, + "override": "ph" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "c (Lph;)Ltr;": { + "access": 1 + }, + "b (Lph;)Lto;": { + "access": 4097, + "bouncer": { + "name": "c", + "desc": "(Lph;)Ltr;" + }, + "override": "to" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "ps" + } + } + }, + "ts": { + "name": "ts", + "access": 33, + "superName": "qa", + "methods": { + "E ()V": { + "access": 1, + "override": "ps" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "cm ()V": { + "access": 4, + "override": "qa" + }, + "a (Ltm;)Z": { + "access": 1, + "override": "tm" + }, + "r (I)V": { + "access": 1 + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "m (Z)V": { + "access": 1, + "override": "qa" + }, + "a (Lok;Lpu;)Lpu;": { + "access": 1, + "override": "ps" + }, + "bB ()F": { + "access": 4, + "override": "pr" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "ps" + }, + "a (Lph;)Lph;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "(Lph;)Lts;" + }, + "override": "ph" + }, + "bS ()Z": { + "access": 1, + "override": "ps" + }, + "d (Lzx;)Z": { + "access": 1, + "override": "tm" + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "ct ()I": { + "access": 1 + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "C ()Z": { + "access": 4, + "override": "ps" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "b (Lph;)Lts;": { + "access": 1 + }, + "r (Lpk;)Z": { + "access": 1, + "override": "pr" + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + } + } + }, + "tt": { + "name": "tt", + "access": 33, + "superName": "tm", + "methods": { + "a (Lcj;Lafh;)V": { + "access": 4, + "override": "pk" + }, + "a (Luv;)V": { + "access": 1, + "override": "pk" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "cm ()Lqw;": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "ps" + }, + "a (Lph;)Lph;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "(Lph;)Ltt;" + }, + "override": "ph" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "cl ()Z": { + "access": 1 + }, + "l (Z)V": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "b (Lph;)Ltt;": { + "access": 1 + }, + "d (Lzx;)Z": { + "access": 1, + "override": "tm" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "bW ()Z": { + "access": 1, + "override": "ps" + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + } + } + }, + "tu": { + "name": "tu", + "access": 33, + "superName": "tm", + "methods": { + "E ()V": { + "access": 1, + "override": "ps" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "cw ()V": { + "access": 2 + }, + "r (I)V": { + "access": 1 + }, + "a (ZLtu$b;)V": { + "access": 1 + }, + "a (Ltu$b;)V": { + "access": 1 + }, + "a (Lok;Lpu;)Lpu;": { + "access": 1, + "override": "ps" + }, + "br ()I": { + "access": 1, + "override": "pr" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "cm ()Ljava/lang/String;": { + "access": 4 + }, + "a (Lph;)Lph;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "(Lph;)Ltu;" + }, + "override": "ph" + }, + "d (Lzx;)Z": { + "access": 1, + "override": "tm" + }, + "cx ()Z": { + "access": 2 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "Y ()V": { + "access": 1, + "override": "pk" + }, + "a (DD)V": { + "access": 2 + }, + "a (Ltu;)Z": { + "access": 4104 + }, + "b (Ltu$b;)V": { + "access": 1 + }, + "bq ()V": { + "access": 4, + "override": "pr" + }, + "ct ()V": { + "access": 2 + }, + "a (Lzw;)Z": { + "access": 2 + }, + "cu ()V": { + "access": 2 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "cp ()V": { + "access": 4 + }, + "co ()I": { + "access": 4 + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "cl ()Z": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "cv ()V": { + "access": 2 + }, + "b (D)V": { + "access": 1 + }, + "b (Lph;)Ltu;": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "r (Lpk;)Z": { + "access": 1, + "override": "pr" + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "bE ()F": { + "access": 4, + "override": "pr" + }, + "cn ()I": { + "access": 1 + }, + "p (F)F": { + "access": 1 + } + } + }, + "ait$a": { + "name": "ait$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lait$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lait$a;": { + "access": 9 + } + } + }, + "tv": { + "name": "tv", + "access": 33, + "superName": "tm", + "methods": { + "a (Lcj;Lafh;)V": { + "access": 4, + "override": "pk" + }, + "E ()V": { + "access": 4, + "override": "ps" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "q (F)F": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "v ()V": { + "access": 1, + "override": "ps" + }, + "a (Lok;Lpu;)Lpu;": { + "access": 1, + "override": "ps" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "ps" + }, + "a (Lph;)Lph;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "(Lph;)Ltv;" + }, + "override": "ph" + }, + "l (Z)V": { + "access": 1 + }, + "b (Lph;)Ltv;": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "b (Lzd;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Lzd;)[F": { + "access": 9 + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "a (Ljava/util/Random;)Lzd;": { + "access": 9 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "cl ()Lzd;": { + "access": 1 + }, + "a (Ltm;Ltm;)Lzd;": { + "access": 2 + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "cm ()Z": { + "access": 1 + }, + "p (F)F": { + "access": 1 + } + } + }, + "tw": { + "name": "tw", + "access": 33, + "superName": "tq", + "interfaces": [ + "vx" + ], + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "a (Lpr;F)V": { + "access": 1, + "override": "vx" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + } + } + }, + "tx": { + "name": "tx", + "access": 33, + "superName": "tz", + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "V ()Z": { + "access": 1, + "override": "pk" + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "bB ()F": { + "access": 4, + "override": "pr" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "g (FF)V": { + "access": 1, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "a (Ltx;)Z": { + "access": 4104 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "n ()Z": { + "access": 1 + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "b (FFF)V": { + "access": 1 + } + } + }, + "ty": { + "name": "ty", + "access": 33, + "superName": "tq", + "methods": { + "j (I)I": { + "access": 4, + "override": "pr" + }, + "n ()Ltf;": { + "access": 1 + }, + "a (Lcj;Lafh;)V": { + "access": 4, + "override": "pk" + }, + "E ()V": { + "access": 4, + "override": "ps" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "cl ()I": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "cn ()Z": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "cm ()I": { + "access": 1 + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "a (Low;)V": { + "access": 1, + "override": "pr" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "l (Z)V": { + "access": 1 + }, + "s (Lpk;)V": { + "access": 4, + "override": "pr" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "a (Ljava/lang/Class;)Z": { + "access": 1, + "override": "ps" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "r (Lpk;)Z": { + "access": 1, + "override": "pr" + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + } + } + }, + "tz": { + "name": "tz", + "access": 1057, + "superName": "ps", + "interfaces": [ + "pi" + ], + "methods": { + "K ()V": { + "access": 1, + "override": "pk" + }, + "aL ()Z": { + "access": 1, + "override": "pk" + }, + "bS ()Z": { + "access": 1, + "override": "ps" + }, + "w ()I": { + "access": 1, + "override": "ps" + }, + "C ()Z": { + "access": 4, + "override": "ps" + }, + "b (Lwn;)I": { + "access": 4, + "override": "pr" + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "aY ()Z": { + "access": 1, + "override": "pr" + } + } + }, + "cm$b": { + "name": "cm$b", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Iterable" + ], + "methods": { + "\u003cinit\u003e (Ljava/lang/Class;[Ljava/lang/Iterable;)V": { + "access": 2 + }, + "iterator ()Ljava/util/Iterator;": { + "access": 1, + "override": "java/lang/Iterable" + }, + "\u003cinit\u003e (Ljava/lang/Class;[Ljava/lang/Iterable;Lcm$1;)V": { + "access": 4096 + } + } + }, + "vh$1": { + "name": "vh$1", + "access": 32, + "superName": "add", + "methods": { + "a (I)V": { + "access": 1, + "override": "add" + }, + "b ()Lcj;": { + "access": 1, + "override": "add" + }, + "\u003cinit\u003e (Lvh;)V": { + "access": 0 + }, + "a ()Ladm;": { + "access": 1, + "override": "add" + } + } + }, + "cm$a": { + "name": "cm$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "\u003cinit\u003e (Lcm$1;)V": { + "access": 4096 + }, + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "([Ljava/lang/Object;)Ljava/util/List;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "a ([Ljava/lang/Object;)Ljava/util/List;": { + "access": 1 + } + } + }, + "ua": { + "name": "ua", + "access": 33, + "superName": "qa", + "methods": { + "a (Lcj;Lafh;)V": { + "access": 4, + "override": "pk" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "E ()V": { + "access": 4, + "override": "ps" + }, + "a (Ltm;)Z": { + "access": 1, + "override": "tm" + }, + "q (F)F": { + "access": 1 + }, + "m (Z)V": { + "access": 1, + "override": "qa" + }, + "bQ ()I": { + "access": 1, + "override": "ps" + }, + "bB ()F": { + "access": 4, + "override": "pr" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "b (Lph;)Lua;": { + "access": 1 + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "d (Lpr;)V": { + "access": 1, + "override": "ps" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "ps" + }, + "o (Z)V": { + "access": 1 + }, + "a (Lph;)Lph;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "(Lph;)Lua;" + }, + "override": "ph" + }, + "d (Lzx;)Z": { + "access": 1, + "override": "tm" + }, + "cx ()Z": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "cu ()F": { + "access": 1 + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "a (Lzd;)V": { + "access": 1 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "p (Z)V": { + "access": 1 + }, + "cb ()Z": { + "access": 1, + "override": "ps" + }, + "cw ()Lzd;": { + "access": 1 + }, + "C ()Z": { + "access": 4, + "override": "ps" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "ct ()Z": { + "access": 1 + }, + "a (Lpr;Lpr;)Z": { + "access": 1, + "override": "qa" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "cv ()Z": { + "access": 1 + }, + "i (FF)F": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bV ()I": { + "access": 1, + "override": "ps" + }, + "r (Lpk;)Z": { + "access": 1, + "override": "pr" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "p (F)F": { + "access": 1 + } + } + }, + "uc": { + "name": "uc", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "bu ()F": { + "access": 1025 + }, + "f_ ()Leu;": { + "access": 1025 + }, + "bn ()F": { + "access": 1025 + } + } + }, + "nm$a": { + "name": "nm$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "hashCode ()I": { + "access": 17, + "override": "java/lang/Object" + }, + "\u003cinit\u003e (IILjava/lang/Object;Lnm$a;)V": { + "access": 0 + }, + "toString ()Ljava/lang/String;": { + "access": 17, + "override": "java/lang/Object" + }, + "b ()Ljava/lang/Object;": { + "access": 17 + }, + "equals (Ljava/lang/Object;)Z": { + "access": 17, + "override": "java/lang/Object" + }, + "a ()I": { + "access": 17 + } + } + }, + "ud": { + "name": "ud", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lue;Low;F)Z": { + "access": 1025 + }, + "a ()Ladm;": { + "access": 1025 + } + } + }, + "ue": { + "name": "ue", + "access": 33, + "superName": "pk", + "methods": { + "\u003cinit\u003e (Lud;Ljava/lang/String;FF)V": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "b (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "ad ()Z": { + "access": 1, + "override": "pk" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "k (Lpk;)Z": { + "access": 1, + "override": "pk" + } + } + }, + "uf": { + "name": "uf", + "access": 33, + "superName": "pk", + "methods": { + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "ad ()Z": { + "access": 1, + "override": "pk" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "ug": { + "name": "ug", + "access": 33, + "superName": "ps", + "interfaces": [ + "uc", + "ud", + "vq" + ], + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "b (Laug;)Z": { + "access": 2 + }, + "e (Low;F)Z": { + "access": 4 + }, + "cf ()V": { + "access": 2 + }, + "b (D)F": { + "access": 2 + }, + "aZ ()V": { + "access": 4, + "override": "pr" + }, + "bB ()F": { + "access": 4, + "override": "pr" + }, + "b (IF)[D": { + "access": 1 + }, + "ad ()Z": { + "access": 1, + "override": "pk" + }, + "G ()V": { + "access": 1, + "override": "pk" + }, + "a (Ljava/util/List;)V": { + "access": 2 + }, + "b (Ljava/util/List;)V": { + "access": 2 + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "D ()V": { + "access": 4, + "override": "ps" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "a (Lue;Low;F)Z": { + "access": 1, + "override": "ud" + }, + "aB ()[Lpk;": { + "access": 1, + "override": "pk" + }, + "a ()Ladm;": { + "access": 1, + "override": "ud" + }, + "n ()V": { + "access": 2 + }, + "a (Lcj;)V": { + "access": 2 + } + } + }, + "uk": { + "name": "uk", + "access": 33, + "superName": "vv", + "interfaces": [ + "uc", + "vx" + ], + "methods": { + "t (I)D": { + "access": 2 + }, + "E ()V": { + "access": 4, + "override": "ps" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "cl ()I": { + "access": 1 + }, + "r (I)V": { + "access": 1 + }, + "b (II)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "br ()I": { + "access": 1, + "override": "pr" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "b (I)F": { + "access": 1 + }, + "a (Lpk;)V": { + "access": 1, + "override": "pk" + }, + "D ()V": { + "access": 4, + "override": "ps" + }, + "a (Lpr;F)V": { + "access": 1, + "override": "vx" + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "u (I)D": { + "access": 2 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "n ()V": { + "access": 1 + }, + "bz ()Lpw;": { + "access": 1, + "override": "pr" + }, + "a (I)F": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "b (FFF)F": { + "access": 2 + }, + "c (Lpf;)V": { + "access": 1, + "override": "pr" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "a (Lafh;)Z": { + "access": 9 + }, + "v (I)D": { + "access": 2 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "aA ()V": { + "access": 1, + "override": "pk" + }, + "a (ILpr;)V": { + "access": 2 + }, + "a (IDDDZ)V": { + "access": 2 + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "s (I)I": { + "access": 1 + }, + "cm ()Z": { + "access": 1 + }, + "e (FF)V": { + "access": 1, + "override": "pk" + } + } + }, + "baf$a": { + "name": "baf$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "bah" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 2 + }, + "a (FI)V": { + "access": 1, + "override": "bah" + }, + "A_ ()Leu;": { + "access": 1, + "override": "bah" + }, + "a (Lbaf;)V": { + "access": 1, + "override": "bah" + }, + "B_ ()Z": { + "access": 1, + "override": "bah" + }, + "\u003cinit\u003e (Lbaf$1;)V": { + "access": 4096 + } + } + }, + "baf$b": { + "name": "baf$b", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "bah" + ], + "methods": { + "\u003cinit\u003e (IZ)V": { + "access": 1 + }, + "a (FI)V": { + "access": 1, + "override": "bah" + }, + "A_ ()Leu;": { + "access": 1, + "override": "bah" + }, + "a (Lbaf;)V": { + "access": 1, + "override": "bah" + }, + "B_ ()Z": { + "access": 1, + "override": "bah" + } + } + }, + "um": { + "name": "um", + "access": 33, + "superName": "pr", + "methods": { + "a (Lwn;Laui;)Z": { + "access": 1, + "override": "pk" + }, + "w ()Ldc;": { + "access": 1 + }, + "a (Z)V": { + "access": 2 + }, + "v ()Ldc;": { + "access": 1 + }, + "bM ()Z": { + "access": 1, + "override": "pr" + }, + "m (Z)V": { + "access": 2 + }, + "u ()Ldc;": { + "access": 1 + }, + "x ()Ldc;": { + "access": 1 + }, + "y ()Ldc;": { + "access": 1 + }, + "bL ()V": { + "access": 4, + "override": "pr" + }, + "t ()Ldc;": { + "access": 1 + }, + "q ()Z": { + "access": 1 + }, + "a (D)Z": { + "access": 1, + "override": "pk" + }, + "l (Z)V": { + "access": 2 + }, + "c (ILzx;)V": { + "access": 1, + "override": "pk" + }, + "a (F)V": { + "access": 2 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "h (FF)F": { + "access": 4, + "override": "pr" + }, + "r ()Z": { + "access": 1 + }, + "q (I)Lzx;": { + "access": 1, + "override": "pr" + }, + "j_ ()Z": { + "access": 1, + "override": "pr" + }, + "B ()V": { + "access": 4, + "override": "pr" + }, + "C ()V": { + "access": 2 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "d (ILzx;)Z": { + "access": 1, + "override": "pk" + }, + "g (FF)V": { + "access": 1, + "override": "pr" + }, + "s ()Z": { + "access": 1 + }, + "a (Lwn;I)V": { + "access": 2 + }, + "aW ()Z": { + "access": 1, + "override": "pk" + }, + "d (Ldc;)V": { + "access": 1 + }, + "z ()Ldn;": { + "access": 2 + }, + "as ()[Lzx;": { + "access": 1, + "override": "pk" + }, + "A ()V": { + "access": 2 + }, + "b (Ldc;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "f (Ldc;)V": { + "access": 1 + }, + "j (Z)V": { + "access": 2 + }, + "D ()V": { + "access": 2 + }, + "ae ()Z": { + "access": 1, + "override": "pk" + }, + "n ()Z": { + "access": 1 + }, + "bA ()Lzx;": { + "access": 1, + "override": "pr" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldc;)V": { + "access": 1 + }, + "ad ()Z": { + "access": 1, + "override": "pk" + }, + "G ()V": { + "access": 1, + "override": "pk" + }, + "p (I)Lzx;": { + "access": 1, + "override": "pr" + }, + "p ()Z": { + "access": 1 + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "h (Ldn;)V": { + "access": 2 + }, + "s (Lpk;)V": { + "access": 4, + "override": "pr" + }, + "e (Ldc;)V": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "e (Z)V": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "k (Z)V": { + "access": 2 + }, + "n (Z)V": { + "access": 2 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "c (Ldc;)V": { + "access": 1 + } + } + }, + "tf$a": { + "name": "tf$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Ltf;Lpr;I)V": { + "access": 0 + } + } + }, + "un": { + "name": "un", + "access": 1057, + "superName": "pk", + "methods": { + "g (DDD)V": { + "access": 1, + "override": "pk" + }, + "a (I)D": { + "access": 2 + }, + "j ()Z": { + "access": 1 + }, + "aP ()Lcq;": { + "access": 1, + "override": "pk" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "ad ()Z": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "n ()Lcj;": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lcj;)V": { + "access": 1 + }, + "af ()Z": { + "access": 4, + "override": "pk" + }, + "o ()V": { + "access": 2 + }, + "l (Lpk;)Z": { + "access": 1, + "override": "pk" + }, + "a (Lcq;)V": { + "access": 4 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "l ()I": { + "access": 1025 + }, + "b (Lpk;)V": { + "access": 1025 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "d (DDD)V": { + "access": 1, + "override": "pk" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "m ()I": { + "access": 1025 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "b (DDD)V": { + "access": 1, + "override": "pk" + } + } + }, + "uo": { + "name": "uo", + "access": 33, + "superName": "un", + "methods": { + "p ()I": { + "access": 1 + }, + "ao ()F": { + "access": 1, + "override": "pk" + }, + "a (Lpk;Z)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lcj;Lcq;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (IZ)V": { + "access": 2 + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Lzx;)V": { + "access": 1 + }, + "a (D)Z": { + "access": 1, + "override": "pk" + }, + "a (I)V": { + "access": 1 + }, + "o ()Lzx;": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "l ()I": { + "access": 1, + "override": "un" + }, + "b (Lpk;)V": { + "access": 1, + "override": "un" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "b (Lzx;)V": { + "access": 2 + }, + "e (Lwn;)Z": { + "access": 1, + "override": "pk" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "m ()I": { + "access": 1, + "override": "un" + }, + "a (Lzx;Z)V": { + "access": 2 + }, + "q ()I": { + "access": 1 + } + } + }, + "up": { + "name": "up", + "access": 33, + "superName": "un", + "methods": { + "j ()Z": { + "access": 1, + "override": "un" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "b (Ladm;Lcj;)Lup;": { + "access": 9 + }, + "\u003cinit\u003e (Ladm;Lcj;)V": { + "access": 1 + }, + "a (D)Z": { + "access": 1, + "override": "pk" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "a (Lcq;)V": { + "access": 1, + "override": "un" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "l ()I": { + "access": 1, + "override": "un" + }, + "b (Lpk;)V": { + "access": 1, + "override": "un" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "e (Lwn;)Z": { + "access": 1, + "override": "pk" + }, + "m ()I": { + "access": 1, + "override": "un" + }, + "d (Ldn;)Z": { + "access": 1, + "override": "pk" + }, + "a (Ladm;Lcj;)Lup;": { + "access": 9 + } + } + }, + "uq": { + "name": "uq", + "access": 33, + "superName": "un", + "methods": { + "l ()I": { + "access": 1, + "override": "un" + }, + "\u003cinit\u003e (Ladm;Lcj;Lcq;)V": { + "access": 1 + }, + "b (Lpk;)V": { + "access": 1, + "override": "un" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;Lcj;Lcq;Ljava/lang/String;)V": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "m ()I": { + "access": 1, + "override": "un" + }, + "a (DDDFFIZ)V": { + "access": 1, + "override": "pk" + }, + "b (DDDFF)V": { + "access": 1, + "override": "pk" + } + } + }, + "ur": { + "name": "ur", + "access": 33, + "superName": "pk", + "methods": { + "\u003cinit\u003e (Ladm;DDDLwn;)V": { + "access": 1 + }, + "i (DDD)V": { + "access": 1, + "override": "pk" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ladm;Lwn;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "m ()Lzx;": { + "access": 2 + }, + "a (DDDFFIZ)V": { + "access": 1, + "override": "pk" + }, + "a (D)Z": { + "access": 1, + "override": "pk" + }, + "c (DDDFF)V": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "l ()I": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "j ()Ljava/util/List;": { + "access": 9 + }, + "J ()V": { + "access": 1, + "override": "pk" + } + } + }, + "us": { + "name": "us", + "access": 33, + "superName": "oa$a", + "methods": { + "a ()Lus;": { + "access": 1 + }, + "a (Ljava/util/Random;)Lzx;": { + "access": 1 + }, + "a (F)Lus;": { + "access": 1 + }, + "\u003cinit\u003e (Lzx;I)V": { + "access": 1 + } + } + }, + "uu": { + "name": "uu", + "access": 1057, + "superName": "pk", + "methods": { + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + } + } + }, + "avv$1": { + "name": "avv$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "uv": { + "name": "uv", + "access": 33, + "superName": "uu", + "methods": { + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "awh$a": { + "name": "awh$a", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/Comparator" + ], + "methods": { + "\u003cinit\u003e (Lawh$1;)V": { + "access": 4096 + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "a (Lbdc;Lbdc;)I": { + "access": 1 + }, + "compare (Ljava/lang/Object;Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lbdc;Lbdc;)I" + }, + "override": "java/util/Comparator" + } + } + }, + "bho$2": { + "name": "bho$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Lbho;Lbhn;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "ty$a$1": { + "name": "ty$a$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpr;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Lty$a;Lcom/google/common/base/Predicate;Lpy;)V": { + "access": 0 + }, + "a (Lpr;)Z": { + "access": 1 + } + } + }, + "bqm$a": { + "name": "bqm$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lbqm$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lbqm$a;": { + "access": 9 + } + } + }, + "bho$1": { + "name": "bho$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Lbho;Lbhn;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "ux": { + "name": "ux", + "access": 33, + "superName": "pk", + "methods": { + "j (Lpk;)Laug;": { + "access": 1, + "override": "pk" + }, + "i (DDD)V": { + "access": 1, + "override": "pk" + }, + "a (Z)V": { + "access": 1 + }, + "al ()V": { + "access": 1, + "override": "pk" + }, + "j ()F": { + "access": 1 + }, + "a (DDDFFIZ)V": { + "access": 1, + "override": "pk" + }, + "a (I)V": { + "access": 1 + }, + "an ()D": { + "access": 1, + "override": "pk" + }, + "a (F)V": { + "access": 1 + }, + "ae ()Z": { + "access": 1, + "override": "pk" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "ar ()V": { + "access": 1, + "override": "pk" + }, + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "S ()Laug;": { + "access": 1, + "override": "pk" + }, + "b (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "ad ()Z": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "a (DZLafh;Lcj;)V": { + "access": 4, + "override": "pk" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "l ()I": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "e (Lwn;)Z": { + "access": 1, + "override": "pk" + }, + "m ()I": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "b (I)V": { + "access": 1 + } + } + }, + "uy": { + "name": "uy", + "access": 33, + "superName": "pk", + "methods": { + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "a (Z)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;DDDLalz;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "ad ()Z": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "aJ ()Z": { + "access": 1, + "override": "pk" + }, + "j ()Ladm;": { + "access": 1 + }, + "a (Lc;)V": { + "access": 1, + "override": "pk" + }, + "l ()Lalz;": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + } + } + }, + "uz": { + "name": "uz", + "access": 33, + "superName": "pk", + "methods": { + "m ()Ljava/lang/String;": { + "access": 1 + }, + "q ()V": { + "access": 1 + }, + "a (Luz;)Z": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ljava/lang/String;)V": { + "access": 1 + }, + "v ()V": { + "access": 1 + }, + "l ()Lzx;": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;DDDLzx;)V": { + "access": 1 + }, + "f (I)V": { + "access": 4, + "override": "pk" + }, + "a (Lzx;)V": { + "access": 1 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + }, + "c (I)V": { + "access": 1, + "override": "pk" + }, + "aD ()Z": { + "access": 1, + "override": "pk" + }, + "w ()V": { + "access": 2 + }, + "a (I)V": { + "access": 1 + }, + "r ()V": { + "access": 1 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "j ()V": { + "access": 1 + }, + "o ()I": { + "access": 1 + }, + "n ()Ljava/lang/String;": { + "access": 1 + }, + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "W ()Z": { + "access": 1, + "override": "pk" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "s ()Z": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "u ()V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "d (Lwn;)V": { + "access": 1, + "override": "pk" + }, + "c (Ljava/lang/String;)V": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "p ()V": { + "access": 1 + } + } + }, + "va": { + "name": "va", + "access": 1057, + "superName": "pk", + "interfaces": [ + "op" + ], + "methods": { + "j (Lpk;)Laug;": { + "access": 1, + "override": "pk" + }, + "a (IIIZ)V": { + "access": 1 + }, + "a (Z)V": { + "access": 1 + }, + "p ()F": { + "access": 1 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + }, + "k (DDD)Laui;": { + "access": 1 + }, + "j (I)V": { + "access": 1 + }, + "u ()Lalz;": { + "access": 1 + }, + "a (F)V": { + "access": 1 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "w ()I": { + "access": 1 + }, + "S ()Laug;": { + "access": 1, + "override": "pk" + }, + "a (Lalz;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "i (Lpk;)V": { + "access": 1, + "override": "pk" + }, + "aM ()Ljava/lang/String;": { + "access": 1, + "override": "pk" + }, + "k (I)V": { + "access": 1 + }, + "a (Ladm;DDDLva$a;)Lva;": { + "access": 9 + }, + "v ()I": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "J ()V": { + "access": 1, + "override": "pk" + }, + "m ()D": { + "access": 4 + }, + "a (DDDD)Laui;": { + "access": 1 + }, + "i (DDD)V": { + "access": 1, + "override": "pk" + }, + "l (I)V": { + "access": 1 + }, + "f_ ()Leu;": { + "access": 1, + "override": "m" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (DDDFFIZ)V": { + "access": 1, + "override": "pk" + }, + "an ()D": { + "access": 1, + "override": "pk" + }, + "a (Ljava/lang/String;)V": { + "access": 1, + "override": "pk" + }, + "ae ()Z": { + "access": 1, + "override": "pk" + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "ar ()V": { + "access": 1, + "override": "pk" + }, + "n ()V": { + "access": 4 + }, + "t ()Lalz;": { + "access": 1 + }, + "s ()Lva$a;": { + "access": 1025 + }, + "a (Lcj;Lalz;)V": { + "access": 4 + }, + "ad ()Z": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "a (Low;)V": { + "access": 1 + }, + "o ()V": { + "access": 4 + }, + "r ()I": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "x ()Z": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "b (DDD)V": { + "access": 1, + "override": "pk" + }, + "q ()I": { + "access": 1 + } + } + }, + "vb": { + "name": "vb", + "access": 33, + "superName": "vd", + "methods": { + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "s ()Lva$a;": { + "access": 1, + "override": "va" + }, + "w ()I": { + "access": 1, + "override": "va" + }, + "u ()Lalz;": { + "access": 1, + "override": "va" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "a (Low;)V": { + "access": 1, + "override": "va" + } + } + }, + "bho$3": { + "name": "bho$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Lbho;Ladf;Lbfd;Lbht;Lbhq;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "vc": { + "name": "vc", + "access": 33, + "superName": "va", + "methods": { + "a (IIIZ)V": { + "access": 1, + "override": "va" + }, + "s ()Lva$a;": { + "access": 1, + "override": "va" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "u ()Lalz;": { + "access": 1, + "override": "va" + }, + "i (I)V": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "j ()Ladc;": { + "access": 1 + }, + "e (Lwn;)Z": { + "access": 1, + "override": "pk" + }, + "b (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 4, + "override": "pk" + } + } + }, + "vd": { + "name": "vd", + "access": 1057, + "superName": "va", + "interfaces": [ + "oo" + ], + "methods": { + "l ()V": { + "access": 1, + "override": "og" + }, + "b (ILzx;)Z": { + "access": 1, + "override": "og" + }, + "i ()Lon;": { + "access": 1, + "override": "oo" + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + }, + "c (I)V": { + "access": 1, + "override": "pk" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + }, + "b (I)Lzx;": { + "access": 1, + "override": "og" + }, + "r_ ()Z": { + "access": 1, + "override": "oo" + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "a (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (II)Lzx;": { + "access": 1, + "override": "og" + }, + "a (ILzx;)V": { + "access": 1, + "override": "og" + }, + "b (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "a (Lon;)V": { + "access": 1, + "override": "oo" + }, + "p_ ()V": { + "access": 1, + "override": "og" + }, + "a (Low;)V": { + "access": 1, + "override": "va" + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "o ()V": { + "access": 4, + "override": "va" + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "e (Lwn;)Z": { + "access": 1, + "override": "pk" + }, + "J ()V": { + "access": 1, + "override": "pk" + } + } + }, + "ve": { + "name": "ve", + "access": 33, + "superName": "va", + "methods": { + "s ()Lva$a;": { + "access": 1, + "override": "va" + }, + "j ()Z": { + "access": 4 + }, + "a (Lcj;Lalz;)V": { + "access": 4, + "override": "va" + }, + "b (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "a (Low;)V": { + "access": 1, + "override": "va" + }, + "o ()V": { + "access": 4, + "override": "va" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "i (Z)V": { + "access": 4 + }, + "u ()Lalz;": { + "access": 1, + "override": "va" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "e (Lwn;)Z": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "m ()D": { + "access": 4, + "override": "va" + } + } + }, + "vf": { + "name": "vf", + "access": 33, + "superName": "vd", + "interfaces": [ + "ali" + ], + "methods": { + "a (IIIZ)V": { + "access": 1, + "override": "va" + }, + "s ()Lva$a;": { + "access": 1, + "override": "va" + }, + "w ()I": { + "access": 1, + "override": "va" + }, + "E ()Z": { + "access": 1 + }, + "A ()D": { + "access": 1, + "override": "ali" + }, + "b (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "y ()Z": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "a (Low;)V": { + "access": 1, + "override": "va" + }, + "D ()Z": { + "access": 1 + }, + "k ()Ljava/lang/String;": { + "access": 1, + "override": "ol" + }, + "a (Lwm;Lwn;)Lxi;": { + "access": 1, + "override": "ol" + }, + "B ()D": { + "access": 1, + "override": "ali" + }, + "u ()Lalz;": { + "access": 1, + "override": "va" + }, + "i (Z)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "m (I)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "e (Lwn;)Z": { + "access": 1, + "override": "pk" + }, + "z ()Ladm;": { + "access": 1, + "override": "ali" + }, + "C ()D": { + "access": 1, + "override": "ali" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "vg": { + "name": "vg", + "access": 33, + "superName": "va", + "methods": { + "a (IIIZ)V": { + "access": 1, + "override": "va" + }, + "s ()Lva$a;": { + "access": 1, + "override": "va" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "e (Lwn;)Z": { + "access": 1, + "override": "pk" + } + } + }, + "bny$a": { + "name": "bny$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lbny;Lbnx;Ljava/lang/Class;)V": { + "access": 2 + }, + "\u003cinit\u003e (Lbny;Lbnx;Ljava/lang/Class;Lbny$1;)V": { + "access": 4096 + } + } + }, + "vh": { + "name": "vh", + "access": 33, + "superName": "va", + "methods": { + "s ()Lva$a;": { + "access": 1, + "override": "va" + }, + "u ()Lalz;": { + "access": 1, + "override": "va" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "j ()Ladd;": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "vi": { + "name": "vi", + "access": 33, + "superName": "va", + "methods": { + "a (IIIZ)V": { + "access": 1, + "override": "va" + }, + "s ()Lva$a;": { + "access": 1, + "override": "va" + }, + "b (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "y ()Z": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "a (Low;)V": { + "access": 1, + "override": "va" + }, + "u ()Lalz;": { + "access": 1, + "override": "va" + }, + "l ()I": { + "access": 1 + }, + "b (D)V": { + "access": 4 + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "a (Ladi;Ladm;Lcj;Lalz;F)Z": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "j ()V": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "a (Ladi;Ladm;Lcj;Lalz;)F": { + "access": 1, + "override": "pk" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + } + } + }, + "vj": { + "name": "vj", + "access": 33, + "superName": "pk", + "methods": { + "l ()V": { + "access": 2 + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "ad ()Z": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 4, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDDLpr;)V": { + "access": 1 + }, + "j ()Lpr;": { + "access": 1 + } + } + }, + "vl": { + "name": "vl", + "access": 33, + "superName": "vv", + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "E ()V": { + "access": 4, + "override": "ps" + }, + "a (Z)V": { + "access": 1 + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "n_ ()Z": { + "access": 4, + "override": "vv" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "n ()Z": { + "access": 1 + }, + "at ()Z": { + "access": 1, + "override": "pk" + }, + "c (F)F": { + "access": 1, + "override": "pk" + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + } + } + }, + "vm": { + "name": "vm", + "access": 33, + "superName": "wc", + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "a (Lok;Lpu;)Lpu;": { + "access": 1, + "override": "ps" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "r (Lpk;)Z": { + "access": 1, + "override": "pr" + } + } + }, + "aqo$a": { + "name": "aqo$a", + "access": 33, + "superName": "aqu", + "methods": { + "\u003cinit\u003e (Ladm;Ljava/util/Random;II)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "vn": { + "name": "vn", + "access": 33, + "superName": "vv", + "methods": { + "a (Luv;)V": { + "access": 1, + "override": "pk" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "cr ()V": { + "access": 2 + }, + "a (F)F": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "cn ()Z": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "cm ()I": { + "access": 1 + }, + "aE ()I": { + "access": 1, + "override": "pk" + }, + "a (Low;)V": { + "access": 1, + "override": "pr" + }, + "a (Lwn;)Z": { + "access": 4, + "override": "ps" + }, + "cp ()Z": { + "access": 1 + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "a (I)V": { + "access": 1 + }, + "cq ()V": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "n ()Z": { + "access": 1 + }, + "co ()V": { + "access": 1 + }, + "r (Lpk;)Z": { + "access": 1, + "override": "pr" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + } + } + }, + "vo": { + "name": "vo", + "access": 33, + "superName": "vv", + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "E ()V": { + "access": 4, + "override": "ps" + }, + "a (Z)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "k (DDD)Z": { + "access": 4 + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "b (Lpk;)Z": { + "access": 4 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "a (Lvo;Lwn;)Z": { + "access": 4104 + }, + "n ()Z": { + "access": 4 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "cm ()Lalz;": { + "access": 1 + }, + "co ()Z": { + "access": 1 + }, + "a (Lalz;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "cq ()Ljava/util/Set;": { + "access": 4104 + }, + "c (Lwn;)Z": { + "access": 2 + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "a (Lvo;Z)Z": { + "access": 4104 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "cp ()Lqd;": { + "access": 4104 + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + } + } + }, + "vp": { + "name": "vp", + "access": 33, + "superName": "vv", + "methods": { + "a (Lcj;Lafh;)V": { + "access": 4, + "override": "pk" + }, + "bz ()Lpw;": { + "access": 1, + "override": "pr" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "a (Z)V": { + "access": 1 + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "n_ ()Z": { + "access": 4, + "override": "vv" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "n ()Z": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "vq": { + "name": "vq", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "pi" + ], + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "vr": { + "name": "vr", + "access": 33, + "superName": "pq", + "interfaces": [ + "vq" + ], + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "a (Z)V": { + "access": 1 + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "bB ()F": { + "access": 4, + "override": "pr" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "cf ()I": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "bV ()I": { + "access": 1, + "override": "ps" + }, + "n ()Z": { + "access": 1 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + } + } + }, + "vs": { + "name": "vs", + "access": 33, + "superName": "vv", + "methods": { + "aS ()F": { + "access": 1, + "override": "pk" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "a (Lcj;)F": { + "access": 1, + "override": "py" + } + } + }, + "vt": { + "name": "vt", + "access": 33, + "superName": "vv", + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "E ()V": { + "access": 4, + "override": "ps" + }, + "a (Z)V": { + "access": 1 + }, + "q (F)F": { + "access": 1 + }, + "b (Ladm;)Lsw;": { + "access": 4, + "override": "ps" + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "i (I)V": { + "access": 1, + "override": "pk" + }, + "bQ ()I": { + "access": 1, + "override": "ps" + }, + "cn ()Z": { + "access": 1 + }, + "a (Lvt;Z)V": { + "access": 4104 + }, + "a (IZ)V": { + "access": 2 + }, + "cm ()I": { + "access": 1 + }, + "a (I)Z": { + "access": 2 + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "bS ()Z": { + "access": 1, + "override": "ps" + }, + "l (Z)V": { + "access": 2 + }, + "a (Lvt;)Lrz;": { + "access": 4104 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "n ()Z": { + "access": 1 + }, + "co ()V": { + "access": 1 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "w ()I": { + "access": 1, + "override": "ps" + }, + "a (F)F": { + "access": 1 + }, + "bq ()V": { + "access": 4, + "override": "pr" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "cq ()Lpr;": { + "access": 1 + }, + "g (FF)V": { + "access": 1, + "override": "pr" + }, + "cp ()Z": { + "access": 1 + }, + "a (Lcj;)F": { + "access": 1, + "override": "py" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "n_ ()Z": { + "access": 4, + "override": "vv" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "a (Lvt;I)V": { + "access": 4104 + }, + "b (I)V": { + "access": 2 + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "p (F)F": { + "access": 1 + } + } + }, + "vu": { + "name": "vu", + "access": 33, + "superName": "wb", + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "ch ()V": { + "access": 4, + "override": "wb" + }, + "ck ()Ljava/lang/String;": { + "access": 4, + "override": "wb" + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "cg ()I": { + "access": 4, + "override": "wb" + }, + "br ()I": { + "access": 1, + "override": "pr" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "bS ()Z": { + "access": 1, + "override": "ps" + }, + "cl ()Z": { + "access": 4, + "override": "wb" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "ci ()Z": { + "access": 4, + "override": "wb" + }, + "at ()Z": { + "access": 1, + "override": "pk" + }, + "bH ()V": { + "access": 4, + "override": "pr" + }, + "cj ()I": { + "access": 4, + "override": "wb" + }, + "n ()Lcy;": { + "access": 4, + "override": "wb" + }, + "cf ()Lwb;": { + "access": 4, + "override": "wb" + }, + "c (F)F": { + "access": 1, + "override": "pk" + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "bF ()V": { + "access": 4, + "override": "pr" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + } + } + }, + "vv": { + "name": "vv", + "access": 1057, + "superName": "py", + "interfaces": [ + "vq" + ], + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "P ()Ljava/lang/String;": { + "access": 4, + "override": "pk" + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "aa ()Ljava/lang/String;": { + "access": 4, + "override": "pk" + }, + "a (Lcj;)F": { + "access": 1, + "override": "py" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "n_ ()Z": { + "access": 4 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "ba ()Z": { + "access": 4, + "override": "pr" + }, + "n (I)Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "r (Lpk;)Z": { + "access": 1, + "override": "pr" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "akv$a": { + "name": "akv$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 4 + }, + "\u003cinit\u003e ([F)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "b ()[F": { + "access": 1 + } + } + }, + "vw": { + "name": "vw", + "access": 33, + "superName": "we", + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "E ()V": { + "access": 4, + "override": "ps" + }, + "a (Lok;)V": { + "access": 4, + "override": "ps" + }, + "b (Lpr;)V": { + "access": 1, + "override": "pr" + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "bq ()V": { + "access": 4, + "override": "pr" + }, + "a (Lok;Lpu;)Lpu;": { + "access": 1, + "override": "ps" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Lvw;Lpk;)V": { + "access": 4104 + }, + "a (Lwn;)Z": { + "access": 1, + "override": "ps" + }, + "bS ()Z": { + "access": 1, + "override": "ps" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "b (Lpk;)V": { + "access": 2 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "cm ()Z": { + "access": 1 + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "n ()V": { + "access": 4, + "override": "we" + } + } + }, + "vx": { + "name": "vx", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lpr;F)V": { + "access": 1025 + } + } + }, + "vy": { + "name": "vy", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lqf;)Ldu;": { + "access": 9 + }, + "a (Ldn;)Lqd;": { + "access": 9 + }, + "a (Lqd;)Ldn;": { + "access": 10 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lqf;Ldu;)V": { + "access": 9 + }, + "a (Lqc;Ldn;)V": { + "access": 10 + }, + "a (Lqc;)Ldn;": { + "access": 10 + } + } + }, + "vz": { + "name": "vz", + "access": 33, + "superName": "vv", + "methods": { + "a (Lcj;Lafh;)V": { + "access": 4, + "override": "pk" + }, + "bz ()Lpw;": { + "access": 1, + "override": "pr" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "a (Lcj;)F": { + "access": 1, + "override": "py" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "n_ ()Z": { + "access": 4, + "override": "vv" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "am ()D": { + "access": 1, + "override": "pk" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "po$a": { + "name": "po$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "a (Lpk;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Lzx;)V": { + "access": 1 + } + } + }, + "wa": { + "name": "wa", + "access": 33, + "superName": "vv", + "interfaces": [ + "vx" + ], + "methods": { + "a (Lcj;Lafh;)V": { + "access": 4, + "override": "pk" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "a (Lok;)V": { + "access": 4, + "override": "ps" + }, + "ak ()V": { + "access": 1, + "override": "pk" + }, + "a (Lok;Lpu;)Lpu;": { + "access": 1, + "override": "ps" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "cm ()I": { + "access": 1 + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "a (I)V": { + "access": 1 + }, + "c (ILzx;)V": { + "access": 1, + "override": "pk" + }, + "a (Lpr;F)V": { + "access": 1, + "override": "vx" + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "n ()V": { + "access": 1 + }, + "bz ()Lpw;": { + "access": 1, + "override": "pr" + }, + "bq ()V": { + "access": 4, + "override": "pr" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Low;)V": { + "access": 1, + "override": "pr" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "am ()D": { + "access": 1, + "override": "pk" + }, + "r (Lpk;)Z": { + "access": 1, + "override": "pr" + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + } + } + }, + "wb": { + "name": "wb", + "access": 33, + "superName": "ps", + "interfaces": [ + "vq" + ], + "methods": { + "ck ()Ljava/lang/String;": { + "access": 4 + }, + "ch ()V": { + "access": 4 + }, + "bR ()Z": { + "access": 1, + "override": "ps" + }, + "cg ()I": { + "access": 4 + }, + "i (I)V": { + "access": 1, + "override": "pk" + }, + "a (Lok;Lpu;)Lpu;": { + "access": 1, + "override": "ps" + }, + "bQ ()I": { + "access": 1, + "override": "ps" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "bB ()F": { + "access": 4, + "override": "pr" + }, + "cn ()Z": { + "access": 4 + }, + "e (Lpr;)V": { + "access": 4 + }, + "cm ()I": { + "access": 1 + }, + "a (I)V": { + "access": 4 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "n ()Lcy;": { + "access": 4 + }, + "bF ()V": { + "access": 4, + "override": "pr" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "i (Lpk;)V": { + "access": 1, + "override": "pk" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "cl ()Z": { + "access": 4 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "ci ()Z": { + "access": 4 + }, + "d (Lwn;)V": { + "access": 1, + "override": "pk" + }, + "cj ()I": { + "access": 4 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "cf ()Lwb;": { + "access": 4 + }, + "J ()V": { + "access": 1, + "override": "pk" + } + } + }, + "wc": { + "name": "wc", + "access": 33, + "superName": "vv", + "methods": { + "a (Lcj;Lafh;)V": { + "access": 4, + "override": "pk" + }, + "bz ()Lpw;": { + "access": 1, + "override": "pr" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "a (Z)V": { + "access": 1 + }, + "b (Ladm;)Lsw;": { + "access": 4, + "override": "ps" + }, + "a (Lok;Lpu;)Lpu;": { + "access": 1, + "override": "ps" + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "k_ ()Z": { + "access": 1, + "override": "pr" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "d (Lpf;)Z": { + "access": 1, + "override": "pr" + }, + "an ()D": { + "access": 1, + "override": "pk" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "n ()Z": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "aA ()V": { + "access": 1, + "override": "pk" + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + } + } + }, + "wd": { + "name": "wd", + "access": 33, + "superName": "vv", + "interfaces": [ + "vx" + ], + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "a (Z)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "a (Lpr;F)V": { + "access": 1, + "override": "vx" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "n ()Z": { + "access": 1 + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "b (ZI)V": { + "access": 4, + "override": "pr" + }, + "c (Low;F)F": { + "access": 4, + "override": "pr" + } + } + }, + "we": { + "name": "we", + "access": 33, + "superName": "vv", + "methods": { + "a (Lcj;Lafh;)V": { + "access": 4, + "override": "pk" + }, + "a (Lzx;)Z": { + "access": 4, + "override": "ps" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "a (Z)V": { + "access": 1 + }, + "a (Lok;)V": { + "access": 4, + "override": "ps" + }, + "m (Z)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lok;Lpu;)Lpu;": { + "access": 1, + "override": "ps" + }, + "br ()I": { + "access": 1, + "override": "pr" + }, + "cn ()Z": { + "access": 1 + }, + "A ()Lzw;": { + "access": 4, + "override": "ps" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "ps" + }, + "a (I)V": { + "access": 4 + }, + "l (Z)V": { + "access": 1 + }, + "a (F)V": { + "access": 20 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "a (FF)V": { + "access": 20, + "override": "pk" + }, + "n ()V": { + "access": 4 + }, + "co ()Z": { + "access": 1 + }, + "bz ()Lpw;": { + "access": 1, + "override": "pr" + }, + "b (Lwn;)I": { + "access": 4, + "override": "pr" + }, + "C ()Z": { + "access": 4, + "override": "ps" + }, + "j_ ()Z": { + "access": 1, + "override": "pr" + }, + "bq ()V": { + "access": 4, + "override": "pr" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Low;)V": { + "access": 1, + "override": "pr" + }, + "cp ()Z": { + "access": 1 + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "cr ()I": { + "access": 4 + }, + "cq ()V": { + "access": 4 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "n (Z)V": { + "access": 1 + }, + "am ()D": { + "access": 1, + "override": "pk" + }, + "r (Lpk;)Z": { + "access": 1, + "override": "pr" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "a (Lpr;)V": { + "access": 1, + "override": "pk" + } + } + }, + "ave$2": { + "name": "ave$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "wg": { + "name": "wg", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "acy" + ], + "methods": { + "a_ (Lzx;)V": { + "access": 1, + "override": "acy" + }, + "a_ (Lwn;)V": { + "access": 1, + "override": "acy" + }, + "a (Lada;)V": { + "access": 1, + "override": "acy" + }, + "b_ (Lwn;)Lada;": { + "access": 1, + "override": "acy" + }, + "f_ ()Leu;": { + "access": 1, + "override": "acy" + }, + "\u003cinit\u003e (Lwn;Leu;)V": { + "access": 1 + }, + "a (Lacz;)V": { + "access": 1, + "override": "acy" + }, + "v_ ()Lwn;": { + "access": 1, + "override": "acy" + } + } + }, + "ave$3": { + "name": "ave$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "wh": { + "name": "wh", + "access": 1537, + "superName": "java/lang/Object", + "interfaces": [ + "pi" + ] + }, + "wi": { + "name": "wi", + "access": 33, + "superName": "ph", + "interfaces": [ + "acy", + "wh" + ], + "methods": { + "aX ()V": { + "access": 4, + "override": "pr" + }, + "m (Z)V": { + "access": 1 + }, + "cq ()Loq;": { + "access": 1 + }, + "cr ()Z": { + "access": 1 + }, + "l (Z)V": { + "access": 1 + }, + "z ()Ljava/lang/String;": { + "access": 4, + "override": "ps" + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "cs ()Z": { + "access": 1 + }, + "C ()Z": { + "access": 4, + "override": "ps" + }, + "a_ (Lwn;)V": { + "access": 1, + "override": "acy" + }, + "cu ()Z": { + "access": 1 + }, + "a (Lzw;)Z": { + "access": 2 + }, + "a (Lacz;)V": { + "access": 1, + "override": "acy" + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "ct ()Z": { + "access": 1 + }, + "s (I)Z": { + "access": 2 + }, + "d (ILzx;)Z": { + "access": 1, + "override": "pk" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "cv ()V": { + "access": 2 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "cm ()Z": { + "access": 1 + }, + "a (Luv;)V": { + "access": 1, + "override": "pk" + }, + "E ()V": { + "access": 4, + "override": "ps" + }, + "cl ()I": { + "access": 1 + }, + "r (I)V": { + "access": 1 + }, + "cw ()V": { + "access": 2 + }, + "\u003cinit\u003e (Ladm;I)V": { + "access": 1 + }, + "b (Lpr;)V": { + "access": 1, + "override": "pr" + }, + "f_ ()Leu;": { + "access": 1, + "override": "m" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lok;Lpu;)Lpu;": { + "access": 1, + "override": "ps" + }, + "a (Luz;)V": { + "access": 4, + "override": "ps" + }, + "a (Lcy;)V": { + "access": 2 + }, + "b (Lph;)Lwi;": { + "access": 1 + }, + "cn ()Z": { + "access": 1 + }, + "a (Lwn;)Z": { + "access": 1, + "override": "ps" + }, + "o (Z)V": { + "access": 1 + }, + "a (Lph;)Lph;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "(Lph;)Lwi;" + }, + "override": "ph" + }, + "a_ (Lzx;)V": { + "access": 1, + "override": "acy" + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "v_ ()Lwn;": { + "access": 1, + "override": "acy" + }, + "cb ()Z": { + "access": 1, + "override": "ps" + }, + "n ()V": { + "access": 4, + "override": "ph" + }, + "co ()Z": { + "access": 1 + }, + "b_ (Lwn;)Lada;": { + "access": 1, + "override": "acy" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "cp ()V": { + "access": 1 + }, + "a (Low;)V": { + "access": 1, + "override": "pr" + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "a (Lada;)V": { + "access": 1, + "override": "acy" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "n (Z)Z": { + "access": 1 + } + } + }, + "ave$1": { + "name": "ave$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "ms" + ], + "methods": { + "a (Ljava/lang/String;)Ljava/lang/String;": { + "access": 1, + "override": "ms" + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + } + } + }, + "wl": { + "name": "wl", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a ()F": { + "access": 1 + }, + "b ()F": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (F)V": { + "access": 1 + }, + "b (F)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1 + } + } + }, + "wm": { + "name": "wm", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "og" + ], + "methods": { + "a (Lzx;)Z": { + "access": 1 + }, + "l ()V": { + "access": 1, + "override": "og" + }, + "b (ILzx;)Z": { + "access": 1, + "override": "og" + }, + "h ()Lzx;": { + "access": 1 + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "a (Lafh;)F": { + "access": 1 + }, + "f_ ()Leu;": { + "access": 1, + "override": "op" + }, + "e (I)Lzx;": { + "access": 1 + }, + "c (Lzw;)I": { + "access": 2 + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "b (Ldu;)V": { + "access": 1 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + }, + "d (I)V": { + "access": 1 + }, + "p ()Lzx;": { + "access": 1 + }, + "b (Lwm;)V": { + "access": 1 + }, + "b (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (Ldu;)Ldu;": { + "access": 1 + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "j ()I": { + "access": 1 + }, + "a (F)V": { + "access": 1 + }, + "b (Lzx;)V": { + "access": 1 + }, + "a (Lzw;IZZ)V": { + "access": 1 + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "c (Lzx;)Z": { + "access": 1 + }, + "a (II)Lzx;": { + "access": 1, + "override": "og" + }, + "a (I)Lzx;": { + "access": 1, + "override": "og" + }, + "n ()V": { + "access": 1 + }, + "b (Lzw;)Z": { + "access": 1 + }, + "e (Lzx;)I": { + "access": 2 + }, + "d (Lzx;)I": { + "access": 2 + }, + "i ()I": { + "access": 9 + }, + "a (Lzw;)Z": { + "access": 1 + }, + "a (ILzx;)V": { + "access": 1, + "override": "og" + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "a (Lzw;I)I": { + "access": 2 + }, + "b (Lafh;)Z": { + "access": 1 + }, + "p_ ()V": { + "access": 1, + "override": "og" + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "k ()V": { + "access": 1 + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "a (Lzw;IILdn;)I": { + "access": 1 + }, + "m ()I": { + "access": 1 + }, + "\u003cinit\u003e (Lwn;)V": { + "access": 1 + } + } + }, + "wn": { + "name": "wn", + "access": 1057, + "superName": "pr", + "methods": { + "ak ()V": { + "access": 1, + "override": "pk" + }, + "cg ()I": { + "access": 1 + }, + "br ()I": { + "access": 1, + "override": "pr" + }, + "a (Lzx;ZZ)Luz;": { + "access": 1 + }, + "I ()V": { + "access": 1, + "override": "pk" + }, + "u_ ()Z": { + "access": 1, + "override": "m" + }, + "c (ILzx;)V": { + "access": 1, + "override": "pk" + }, + "a (F)V": { + "access": 1 + }, + "bW ()Z": { + "access": 1 + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "b (Ljava/lang/String;)Ljava/util/UUID;": { + "access": 9 + }, + "aL ()Z": { + "access": 1, + "override": "pk" + }, + "q (I)Lzx;": { + "access": 1, + "override": "pr" + }, + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "P ()Ljava/lang/String;": { + "access": 4, + "override": "pk" + }, + "a (Lon;)Z": { + "access": 1 + }, + "a (ZZZ)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "ce ()F": { + "access": 1 + }, + "s ()V": { + "access": 4 + }, + "c (Lpk;)V": { + "access": 1 + }, + "d (ILzx;)Z": { + "access": 1, + "override": "pk" + }, + "bp ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "a (Ladc;)V": { + "access": 1 + }, + "bb ()Z": { + "access": 4, + "override": "pr" + }, + "a (Lcj;Z)V": { + "access": 1 + }, + "k (DDD)V": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "cm ()Z": { + "access": 1 + }, + "a (Lpr;)V": { + "access": 1, + "override": "pk" + }, + "j (Z)Z": { + "access": 1 + }, + "r (I)V": { + "access": 1 + }, + "v ()Z": { + "access": 1025 + }, + "a (Lwn;Z)V": { + "access": 1 + }, + "b (Lmw;)V": { + "access": 1 + }, + "cn ()Z": { + "access": 1 + }, + "X ()V": { + "access": 4, + "override": "pk" + }, + "m ()V": { + "access": 1, + "override": "pr" + }, + "a (Lwn;)Z": { + "access": 1 + }, + "ck ()I": { + "access": 1 + }, + "a (Lcq;)V": { + "access": 2 + }, + "a (Lcj;Lcq;Lzx;)Z": { + "access": 1 + }, + "j (F)V": { + "access": 4, + "override": "pr" + }, + "cb ()V": { + "access": 1 + }, + "bo ()Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "bX ()I": { + "access": 1 + }, + "bF ()V": { + "access": 1, + "override": "pr" + }, + "bA ()Lzx;": { + "access": 1, + "override": "pr" + }, + "bQ ()Lzx;": { + "access": 1 + }, + "a (Lol;)V": { + "access": 1 + }, + "a (Z)Luz;": { + "access": 1 + }, + "e (Lpk;)Ljava/util/Collection;": { + "access": 2 + }, + "aj ()Z": { + "access": 1, + "override": "pk" + }, + "m (F)V": { + "access": 1, + "override": "pr" + }, + "d (Lpk;)V": { + "access": 2 + }, + "a (Lcom/mojang/authlib/GameProfile;)Ljava/util/UUID;": { + "access": 9 + }, + "a (Low;)V": { + "access": 1, + "override": "pr" + }, + "p (I)Lzx;": { + "access": 1, + "override": "pr" + }, + "b (Leu;)V": { + "access": 1 + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "bD ()Z": { + "access": 4, + "override": "pr" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "a (Ladm;Lcj;Z)Lcj;": { + "access": 9 + }, + "ci ()Z": { + "access": 1 + }, + "a (Lmw;I)V": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "aA ()V": { + "access": 1, + "override": "pk" + }, + "e (FF)V": { + "access": 1, + "override": "pk" + }, + "aX ()V": { + "access": 4, + "override": "pr" + }, + "b (Lzx;I)V": { + "access": 4 + }, + "a (Lzx;Z)Luz;": { + "access": 1 + }, + "a (Log;)V": { + "access": 1 + }, + "u (I)V": { + "access": 1 + }, + "aO ()Z": { + "access": 1, + "override": "pk" + }, + "b (Lpk;I)V": { + "access": 1, + "override": "pk" + }, + "bV ()V": { + "access": 1 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "m" + }, + "a (Lmw;)V": { + "access": 1 + }, + "bZ ()Lzx;": { + "access": 1 + }, + "bT ()I": { + "access": 1 + }, + "bK ()V": { + "access": 4, + "override": "pr" + }, + "\u003cinit\u003e (Ladm;Lcom/mojang/authlib/GameProfile;)V": { + "access": 1 + }, + "d (Low;F)V": { + "access": 4, + "override": "pr" + }, + "n (I)Ljava/lang/String;": { + "access": 4, + "override": "pr" + }, + "a (Ladp$a;)V": { + "access": 1 + }, + "cl ()Lxg;": { + "access": 1 + }, + "cf ()Z": { + "access": 1 + }, + "bI ()F": { + "access": 1, + "override": "pr" + }, + "s (I)V": { + "access": 1 + }, + "L ()I": { + "access": 1, + "override": "pk" + }, + "b (Lafh;)Z": { + "access": 1 + }, + "a (Lzx;I)V": { + "access": 1 + }, + "g (FF)V": { + "access": 1, + "override": "pr" + }, + "aa ()Ljava/lang/String;": { + "access": 4, + "override": "pk" + }, + "as ()[Lzx;": { + "access": 1, + "override": "pk" + }, + "bR ()I": { + "access": 1 + }, + "aq ()I": { + "access": 1, + "override": "pk" + }, + "a (Ltp;Log;)V": { + "access": 1 + }, + "t ()V": { + "access": 1 + }, + "a (Ljava/lang/String;FF)V": { + "access": 1, + "override": "pk" + }, + "bO ()Lauq;": { + "access": 1, + "override": "pr" + }, + "J ()V": { + "access": 1, + "override": "pk" + }, + "a (Lafh;)F": { + "access": 1 + }, + "f_ ()Leu;": { + "access": 1, + "override": "m" + }, + "a (Luz;)V": { + "access": 4 + }, + "cc ()Z": { + "access": 1 + }, + "cd ()Lcom/mojang/authlib/GameProfile;": { + "access": 1 + }, + "bY ()F": { + "access": 1 + }, + "a (Lzx;)V": { + "access": 1 + }, + "a (Lacy;)V": { + "access": 1 + }, + "bS ()Z": { + "access": 1 + }, + "a (Lcj;)Lwn$a;": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "cp ()Lauo;": { + "access": 1 + }, + "u (Lpk;)Z": { + "access": 1 + }, + "b (Lpk;)V": { + "access": 1 + }, + "a (Laln;)V": { + "access": 1 + }, + "bJ ()Z": { + "access": 1, + "override": "pr" + }, + "n ()V": { + "access": 4 + }, + "f (Lpk;)V": { + "access": 1 + }, + "b (Lwn;)I": { + "access": 4, + "override": "pr" + }, + "ch ()Lcj;": { + "access": 1 + }, + "f (Lwn;)Z": { + "access": 1, + "override": "pk" + }, + "bN ()F": { + "access": 1, + "override": "pr" + }, + "ca ()V": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Lwo;)Z": { + "access": 1 + }, + "p ()Z": { + "access": 2 + }, + "cq ()Z": { + "access": 1 + }, + "co ()Lyd;": { + "access": 1 + }, + "k (Z)V": { + "access": 1 + }, + "am ()D": { + "access": 1, + "override": "pk" + }, + "l (DDD)V": { + "access": 2 + }, + "cj ()I": { + "access": 1 + }, + "bU ()V": { + "access": 1 + } + } + }, + "wo": { + "name": "wo", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lwo;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;)V": { + "access": 2 + }, + "d ()Leu;": { + "access": 1 + }, + "valueOf (Ljava/lang/String;)Lwo;": { + "access": 9 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "wq": { + "name": "wq", + "access": 33, + "superName": "pk", + "interfaces": [ + "wv" + ], + "methods": { + "i (DDD)V": { + "access": 1, + "override": "pk" + }, + "s_ ()Z": { + "access": 4, + "override": "pk" + }, + "a (Z)V": { + "access": 1 + }, + "l ()Z": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lpr;Lpr;FF)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "j ()D": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (DDDFFIZ)V": { + "access": 1, + "override": "pk" + }, + "aD ()Z": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;Lpr;F)V": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "aS ()F": { + "access": 1, + "override": "pk" + }, + "c (DDDFF)V": { + "access": 1, + "override": "wv" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "b (D)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "d (Lwn;)V": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "wr": { + "name": "wr", + "access": 33, + "superName": "pk", + "methods": { + "a (D)Z": { + "access": 1, + "override": "pk" + }, + "i (DDD)V": { + "access": 1, + "override": "pk" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "c (F)F": { + "access": 1, + "override": "pk" + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "a (Lcj;)V": { + "access": 1 + }, + "aD ()Z": { + "access": 1, + "override": "pk" + } + } + }, + "ws": { + "name": "ws", + "access": 1057, + "superName": "pk", + "methods": { + "ao ()F": { + "access": 1, + "override": "pk" + }, + "a (Lauh;)V": { + "access": 1028 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "ad ()Z": { + "access": 1, + "override": "pk" + }, + "j ()F": { + "access": 4 + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 1 + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "a (D)Z": { + "access": 1, + "override": "pk" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lpr;DDD)V": { + "access": 1 + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "c (F)F": { + "access": 1, + "override": "pk" + } + } + }, + "wt": { + "name": "wt", + "access": 33, + "superName": "pk", + "methods": { + "a (D)Z": { + "access": 1, + "override": "pk" + }, + "i (DDD)V": { + "access": 1, + "override": "pk" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;DDDLzx;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (B)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "c (F)F": { + "access": 1, + "override": "pk" + }, + "b (F)I": { + "access": 1, + "override": "pk" + }, + "aD ()Z": { + "access": 1, + "override": "pk" + } + } + }, + "wu": { + "name": "wu", + "access": 33, + "superName": "ws", + "methods": { + "a (Lauh;)V": { + "access": 4, + "override": "ws" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lpr;DDD)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 1 + } + } + }, + "wv": { + "name": "wv", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "c (DDDFF)V": { + "access": 1025 + } + } + }, + "ahq$a": { + "name": "ahq$a", + "access": 33, + "superName": "akw", + "methods": { + "a ()Lzx;": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Ldn;)V": { + "access": 1, + "override": "akw" + }, + "a (Lzx;)V": { + "access": 1 + } + } + }, + "ww": { + "name": "ww", + "access": 33, + "superName": "ws", + "methods": { + "a (Lauh;)V": { + "access": 4, + "override": "ws" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lpr;DDD)V": { + "access": 1 + }, + "ad ()Z": { + "access": 1, + "override": "pk" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 1 + } + } + }, + "wx": { + "name": "wx", + "access": 33, + "superName": "wy", + "methods": { + "\u003cinit\u003e (Ladm;Lpr;)V": { + "access": 1 + }, + "a (Lauh;)V": { + "access": 4, + "override": "wy" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + } + } + }, + "axx$1": { + "name": "axx$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "wy": { + "name": "wy", + "access": 1057, + "superName": "pk", + "interfaces": [ + "wv" + ], + "methods": { + "i (DDD)V": { + "access": 1, + "override": "pk" + }, + "a (Lauh;)V": { + "access": 1028 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "j ()F": { + "access": 4 + }, + "a (D)Z": { + "access": 1, + "override": "pk" + }, + "l ()F": { + "access": 4 + }, + "n ()Lpr;": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lpr;)V": { + "access": 1 + }, + "c (DDDFF)V": { + "access": 1, + "override": "wv" + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + }, + "m ()F": { + "access": 4 + } + } + }, + "wz": { + "name": "wz", + "access": 33, + "superName": "wy", + "methods": { + "\u003cinit\u003e (Ladm;Lpr;)V": { + "access": 1 + }, + "a (Lauh;)V": { + "access": 4, + "override": "wy" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + } + } + }, + "i$a": { + "name": "i$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "b ()D": { + "access": 1 + }, + "a ()D": { + "access": 1 + }, + "\u003cinit\u003e (DDZ)V": { + "access": 4 + }, + "c ()Z": { + "access": 1 + } + } + }, + "xa": { + "name": "xa", + "access": 33, + "superName": "wy", + "methods": { + "\u003cinit\u003e (Ladm;Lpr;)V": { + "access": 1 + }, + "a (Lauh;)V": { + "access": 4, + "override": "wy" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "t_ ()V": { + "access": 1, + "override": "pk" + } + } + }, + "ave$8": { + "name": "ave$8", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "xb": { + "name": "xb", + "access": 33, + "superName": "wy", + "methods": { + "l ()F": { + "access": 4, + "override": "wy" + }, + "\u003cinit\u003e (Ladm;Lpr;)V": { + "access": 1 + }, + "a (Lauh;)V": { + "access": 4, + "override": "wy" + }, + "\u003cinit\u003e (Ladm;DDD)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "j ()F": { + "access": 4, + "override": "wy" + }, + "m ()F": { + "access": 4, + "override": "wy" + } + } + }, + "ave$9": { + "name": "ave$9", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "awx" + ], + "methods": { + "a (ZI)V": { + "access": 1, + "override": "awx" + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + } + } + }, + "xc": { + "name": "xc", + "access": 33, + "superName": "wy", + "methods": { + "\u003cinit\u003e (Ladm;Lpr;Lzx;)V": { + "access": 1 + }, + "a (Lauh;)V": { + "access": 4, + "override": "wy" + }, + "\u003cinit\u003e (Ladm;DDDLzx;)V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "a (Ldn;)V": { + "access": 1, + "override": "pk" + }, + "j ()F": { + "access": 4, + "override": "wy" + }, + "l ()F": { + "access": 4, + "override": "wy" + }, + "a (I)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;DDDI)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lpr;I)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "o ()I": { + "access": 1 + }, + "m ()F": { + "access": 4, + "override": "wy" + } + } + }, + "ave$6": { + "name": "ave$6", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "xd": { + "name": "xd", + "access": 33, + "superName": "ws", + "methods": { + "a (Z)V": { + "access": 1 + }, + "l ()Z": { + "access": 1 + }, + "h ()V": { + "access": 4, + "override": "pk" + }, + "a (Lauh;)V": { + "access": 4, + "override": "ws" + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;Lpr;DDD)V": { + "access": 1 + }, + "ad ()Z": { + "access": 1, + "override": "pk" + }, + "a (Low;F)Z": { + "access": 1, + "override": "pk" + }, + "j ()F": { + "access": 4, + "override": "ws" + }, + "at ()Z": { + "access": 1, + "override": "pk" + }, + "\u003cinit\u003e (Ladm;DDDDDD)V": { + "access": 1 + }, + "a (Ladi;Ladm;Lcj;Lalz;)F": { + "access": 1, + "override": "pk" + } + } + }, + "ave$7": { + "name": "ave$7", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "ave$4": { + "name": "ave$4", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "ave$5": { + "name": "ave$5", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "\u003cinit\u003e (Lave;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "xg": { + "name": "xg", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "b (Ldn;)V": { + "access": 1 + }, + "a (Ldn;)V": { + "access": 1 + }, + "a (Lzs;Lzx;)V": { + "access": 1 + }, + "a ()I": { + "access": 1 + }, + "a (I)V": { + "access": 1 + }, + "a (Lwn;)V": { + "access": 1 + }, + "e ()F": { + "access": 1 + }, + "a (F)V": { + "access": 1 + }, + "b (F)V": { + "access": 1 + }, + "a (IF)V": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "c ()Z": { + "access": 1 + } + } + }, + "xi": { + "name": "xi", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "b ()V": { + "access": 1 + }, + "a (Lwn;Z)V": { + "access": 1 + }, + "a (Log;)V": { + "access": 1 + }, + "b (II)V": { + "access": 1 + }, + "b (Lyg;)Z": { + "access": 1 + }, + "a (IIZLwn;)V": { + "access": 4 + }, + "b (Log;)I": { + "access": 9 + }, + "a (I)Lyg;": { + "access": 1 + }, + "b (I)I": { + "access": 9 + }, + "a (Lwn;)Z": { + "access": 1025 + }, + "a (Log;I)Lyg;": { + "access": 1 + }, + "a (Lyg;)Lyg;": { + "access": 4 + }, + "a (Ljava/util/Set;ILzx;I)V": { + "access": 9 + }, + "a ([Lzx;)V": { + "access": 1 + }, + "a (Lakw;)I": { + "access": 9 + }, + "a (Lxn;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lyg;Lzx;Z)Z": { + "access": 9 + }, + "a (IIILwn;)Lzx;": { + "access": 1 + }, + "a (ILzx;)V": { + "access": 1 + }, + "d ()V": { + "access": 4 + }, + "a (Lzx;Lyg;)Z": { + "access": 1 + }, + "b (Lwn;I)Lzx;": { + "access": 1 + }, + "d (II)I": { + "access": 9 + }, + "b (Lwn;)V": { + "access": 1 + }, + "a (ILwn;)Z": { + "access": 9 + }, + "a (Lwm;)S": { + "access": 1 + }, + "c (Lwn;)Z": { + "access": 1 + }, + "a (Lzx;IIZ)Z": { + "access": 4 + }, + "a ()Ljava/util/List;": { + "access": 1 + }, + "c (I)I": { + "access": 9 + }, + "a (Lwn;I)Z": { + "access": 1 + }, + "b (Lxn;)V": { + "access": 1 + } + } + }, + "xj": { + "name": "xj", + "access": 33, + "superName": "oq", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 1 + }, + "\u003cinit\u003e (Leu;I)V": { + "access": 1 + } + } + }, + "xk": { + "name": "xk", + "access": 33, + "superName": "xi", + "methods": { + "\u003cinit\u003e (Lwm;Ladm;Lwn;)V": { + "access": 1 + }, + "a (Log;)V": { + "access": 1, + "override": "xi" + }, + "e ()V": { + "access": 1 + }, + "a (Lxn;)V": { + "access": 1, + "override": "xi" + }, + "b (II)V": { + "access": 1, + "override": "xi" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lxk;)I": { + "access": 4104 + }, + "b (Lwn;I)Lzx;": { + "access": 1, + "override": "xi" + }, + "b (Lwn;)V": { + "access": 1, + "override": "xi" + }, + "\u003cinit\u003e (Lwm;Ladm;Lcj;Lwn;)V": { + "access": 1 + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + }, + "a (Ljava/lang/String;)V": { + "access": 1 + }, + "a (Lxk;)Log;": { + "access": 4104 + } + } + }, + "xl": { + "name": "xl", + "access": 33, + "superName": "xi", + "methods": { + "a (Lxn;)V": { + "access": 1, + "override": "xi" + }, + "b (II)V": { + "access": 1, + "override": "xi" + }, + "\u003cinit\u003e (Log;Log;)V": { + "access": 1 + }, + "e ()Log;": { + "access": 1 + }, + "b (Lwn;I)Lzx;": { + "access": 1, + "override": "xi" + }, + "b (Lwn;)V": { + "access": 1, + "override": "xi" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + } + } + }, + "xm": { + "name": "xm", + "access": 33, + "superName": "xi", + "methods": { + "b ()V": { + "access": 1, + "override": "xi" + }, + "a (Lxn;)V": { + "access": 1, + "override": "xi" + }, + "b (II)V": { + "access": 1, + "override": "xi" + }, + "\u003cinit\u003e (Lwm;Log;)V": { + "access": 1 + }, + "b (Lwn;I)Lzx;": { + "access": 1, + "override": "xi" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + } + } + }, + "xn": { + "name": "xn", + "access": 1537, + "superName": "java/lang/Object", + "methods": { + "a (Lxi;Ljava/util/List;)V": { + "access": 1025 + }, + "a (Lxi;Log;)V": { + "access": 1025 + }, + "a (Lxi;ILzx;)V": { + "access": 1025 + }, + "a (Lxi;II)V": { + "access": 1025 + } + } + }, + "xo": { + "name": "xo", + "access": 33, + "superName": "xi", + "methods": { + "\u003cinit\u003e (Log;Log;Lwn;)V": { + "access": 1 + }, + "e ()Log;": { + "access": 1 + }, + "b (Lwn;I)Lzx;": { + "access": 1, + "override": "xi" + }, + "b (Lwn;)V": { + "access": 1, + "override": "xi" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + } + } + }, + "po$1": { + "name": "po$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "xp": { + "name": "xp", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "og" + ], + "methods": { + "l ()V": { + "access": 1, + "override": "og" + }, + "b (ILzx;)Z": { + "access": 1, + "override": "og" + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "f_ ()Leu;": { + "access": 1, + "override": "op" + }, + "i ()I": { + "access": 1 + }, + "a (ILzx;)V": { + "access": 1, + "override": "og" + }, + "\u003cinit\u003e (Lxi;II)V": { + "access": 1 + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "p_ ()V": { + "access": 1, + "override": "og" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "c (II)Lzx;": { + "access": 1 + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + }, + "b (I)Lzx;": { + "access": 1, + "override": "og" + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "h ()I": { + "access": 1 + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "a (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (II)Lzx;": { + "access": 1, + "override": "og" + } + } + }, + "po$2": { + "name": "po$2", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "xq": { + "name": "xq", + "access": 33, + "superName": "xi", + "methods": { + "a (Log;)V": { + "access": 1, + "override": "xi" + }, + "a (Lzx;Lyg;)Z": { + "access": 1, + "override": "xi" + }, + "\u003cinit\u003e (Lwm;Ladm;Lcj;)V": { + "access": 1 + }, + "b (Lwn;I)Lzx;": { + "access": 1, + "override": "xi" + }, + "b (Lwn;)V": { + "access": 1, + "override": "xi" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + } + } + }, + "po$3": { + "name": "po$3", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "xr": { + "name": "xr", + "access": 33, + "superName": "xi", + "methods": { + "\u003cinit\u003e (Log;Log;)V": { + "access": 1 + }, + "b (Lwn;I)Lzx;": { + "access": 1, + "override": "xi" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + } + } + }, + "po$4": { + "name": "po$4", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Lpk;)Z": { + "access": 1 + } + } + }, + "xs": { + "name": "xs", + "access": 33, + "superName": "xi", + "methods": { + "b ()V": { + "access": 1, + "override": "xi" + }, + "e ()I": { + "access": 1 + }, + "a (Lxn;)V": { + "access": 1, + "override": "xi" + }, + "b (II)V": { + "access": 1, + "override": "xi" + }, + "a (Log;)V": { + "access": 1, + "override": "xi" + }, + "\u003cinit\u003e (Lwm;Ladm;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lwm;Ladm;Lcj;)V": { + "access": 1 + }, + "a (Lwn;I)Z": { + "access": 1, + "override": "xi" + }, + "b (Lwn;I)Lzx;": { + "access": 1, + "override": "xi" + }, + "a (Lzx;II)Ljava/util/List;": { + "access": 2 + }, + "b (Lwn;)V": { + "access": 1, + "override": "xi" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + } + } + }, + "xt": { + "name": "xt", + "access": 33, + "superName": "yg", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "\u003cinit\u003e (Log;III)V": { + "access": 1 + }, + "b (Lzx;)I": { + "access": 1, + "override": "yg" + }, + "c_ (Lzx;)Z": { + "access": 9 + } + } + }, + "xu": { + "name": "xu", + "access": 33, + "superName": "xi", + "methods": { + "b ()V": { + "access": 1, + "override": "xi" + }, + "a (Lxn;)V": { + "access": 1, + "override": "xi" + }, + "b (II)V": { + "access": 1, + "override": "xi" + }, + "\u003cinit\u003e (Lwm;Log;)V": { + "access": 1 + }, + "b (Lwn;I)Lzx;": { + "access": 1, + "override": "xi" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + } + } + }, + "xv": { + "name": "xv", + "access": 33, + "superName": "yg", + "methods": { + "\u003cinit\u003e (Lwn;Log;III)V": { + "access": 1 + }, + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "a (Lwn;Lzx;)V": { + "access": 1, + "override": "yg" + }, + "a (Lzx;I)V": { + "access": 4, + "override": "yg" + }, + "c (Lzx;)V": { + "access": 4, + "override": "yg" + }, + "a (I)Lzx;": { + "access": 1, + "override": "yg" + } + } + }, + "xw": { + "name": "xw", + "access": 33, + "superName": "xi", + "methods": { + "\u003cinit\u003e (Lwm;Log;Lwn;)V": { + "access": 1 + }, + "b (Lwn;I)Lzx;": { + "access": 1, + "override": "xi" + }, + "b (Lwn;)V": { + "access": 1, + "override": "xi" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + } + } + }, + "xx": { + "name": "xx", + "access": 33, + "superName": "xi", + "methods": { + "\u003cinit\u003e (Log;Log;Ltp;Lwn;)V": { + "access": 1 + }, + "b (Lwn;I)Lzx;": { + "access": 1, + "override": "xi" + }, + "b (Lwn;)V": { + "access": 1, + "override": "xi" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + } + } + }, + "xy": { + "name": "xy", + "access": 33, + "superName": "xi", + "methods": { + "\u003cinit\u003e (Lwm;ZLwn;)V": { + "access": 1 + }, + "a (Log;)V": { + "access": 1, + "override": "xi" + }, + "a (Lzx;Lyg;)Z": { + "access": 1, + "override": "xi" + }, + "b (Lwn;I)Lzx;": { + "access": 1, + "override": "xi" + }, + "b (Lwn;)V": { + "access": 1, + "override": "xi" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + } + } + }, + "bdg$2$1": { + "name": "bdg$2$1", + "access": 32, + "superName": "io/netty/channel/SimpleChannelInboundHandler", + "methods": { + "a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ] + }, + "channelActive (Lio/netty/channel/ChannelHandlerContext;)V": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/channel/ChannelInboundHandler" + }, + "\u003cinit\u003e (Lbdg$2;)V": { + "access": 0 + }, + "channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V": { + "access": 4100, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "(Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V" + }, + "override": "io/netty/channel/SimpleChannelInboundHandler" + }, + "exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/channel/ChannelHandler" + } + } + }, + "ya": { + "name": "ya", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "og" + ], + "methods": { + "l ()V": { + "access": 1, + "override": "og" + }, + "b (ILzx;)Z": { + "access": 1, + "override": "og" + }, + "e (I)Z": { + "access": 2 + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "f_ ()Leu;": { + "access": 1, + "override": "op" + }, + "a (ILzx;)V": { + "access": 1, + "override": "og" + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "p_ ()V": { + "access": 1, + "override": "og" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + }, + "d (I)V": { + "access": 1 + }, + "b (I)Lzx;": { + "access": 1, + "override": "og" + }, + "i ()Lacz;": { + "access": 1 + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "h ()V": { + "access": 1 + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "\u003cinit\u003e (Lwn;Lacy;)V": { + "access": 1 + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "a (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (II)Lzx;": { + "access": 1, + "override": "og" + } + } + }, + "yb": { + "name": "yb", + "access": 33, + "superName": "xi", + "methods": { + "d (I)V": { + "access": 1 + }, + "b ()V": { + "access": 1, + "override": "xi" + }, + "a (Lxn;)V": { + "access": 1, + "override": "xi" + }, + "a (Log;)V": { + "access": 1, + "override": "xi" + }, + "b (II)V": { + "access": 1, + "override": "xi" + }, + "e ()Lya;": { + "access": 1 + }, + "b (Lwn;I)Lzx;": { + "access": 1, + "override": "xi" + }, + "b (Lwn;)V": { + "access": 1, + "override": "xi" + }, + "\u003cinit\u003e (Lwm;Lacy;Ladm;)V": { + "access": 1 + }, + "a (Lwn;)Z": { + "access": 1, + "override": "xi" + } + } + }, + "yc": { + "name": "yc", + "access": 33, + "superName": "yg", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "a (Lacz;Lzx;Lzx;)Z": { + "access": 2 + }, + "\u003cinit\u003e (Lwn;Lacy;Lya;III)V": { + "access": 1 + }, + "a (Lzx;I)V": { + "access": 4, + "override": "yg" + }, + "a (Lwn;Lzx;)V": { + "access": 1, + "override": "yg" + }, + "c (Lzx;)V": { + "access": 4, + "override": "yg" + }, + "a (I)Lzx;": { + "access": 1, + "override": "yg" + } + } + }, + "yd": { + "name": "yd", + "access": 33, + "superName": "oq", + "methods": { + "a (Ldu;)V": { + "access": 1 + }, + "a (Lalf;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "h ()Ldu;": { + "access": 1 + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + } + } + }, + "ye": { + "name": "ye", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "og" + ], + "methods": { + "l ()V": { + "access": 1, + "override": "og" + }, + "b (ILzx;)Z": { + "access": 1, + "override": "og" + }, + "b (II)V": { + "access": 1, + "override": "og" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "f_ ()Leu;": { + "access": 1, + "override": "op" + }, + "a (ILzx;)V": { + "access": 1, + "override": "og" + }, + "o_ ()I": { + "access": 1, + "override": "og" + }, + "q_ ()I": { + "access": 1, + "override": "og" + }, + "p_ ()V": { + "access": 1, + "override": "og" + }, + "a_ (I)I": { + "access": 1, + "override": "og" + }, + "e_ ()Ljava/lang/String;": { + "access": 1, + "override": "op" + }, + "b (Lwn;)V": { + "access": 1, + "override": "og" + }, + "a (Lwn;)Z": { + "access": 1, + "override": "og" + }, + "b (I)Lzx;": { + "access": 1, + "override": "og" + }, + "c (Lwn;)V": { + "access": 1, + "override": "og" + }, + "g ()I": { + "access": 1, + "override": "og" + }, + "l_ ()Z": { + "access": 1, + "override": "op" + }, + "a (I)Lzx;": { + "access": 1, + "override": "og" + }, + "a (II)Lzx;": { + "access": 1, + "override": "og" + } + } + }, + "yf": { + "name": "yf", + "access": 33, + "superName": "yg", + "methods": { + "a (Lzx;)Z": { + "access": 1, + "override": "yg" + }, + "a (Lzx;I)V": { + "access": 4, + "override": "yg" + }, + "a (Lwn;Lzx;)V": { + "access": 1, + "override": "yg" + }, + "c (Lzx;)V": { + "access": 4, + "override": "yg" + }, + "a (I)Lzx;": { + "access": 1, + "override": "yg" + }, + "\u003cinit\u003e (Lwn;Lxp;Log;III)V": { + "access": 1 + } + } + }, + "bgp$1": { + "name": "bgp$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "yg": { + "name": "yg", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lzx;)Z": { + "access": 1 + }, + "e ()Z": { + "access": 1 + }, + "a (Log;I)Z": { + "access": 1 + }, + "a (Lzx;Lzx;)V": { + "access": 1 + }, + "\u003cinit\u003e (Log;III)V": { + "access": 1 + }, + "d ()Lzx;": { + "access": 1 + }, + "b (Lzx;)I": { + "access": 1 + }, + "a (Lzx;I)V": { + "access": 4 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "a ()I": { + "access": 1 + }, + "a (Lwn;)Z": { + "access": 1 + }, + "b ()Z": { + "access": 1 + }, + "d (Lzx;)V": { + "access": 1 + }, + "f ()V": { + "access": 1 + }, + "a (Lwn;Lzx;)V": { + "access": 1 + }, + "c (Lzx;)V": { + "access": 4 + }, + "a (I)Lzx;": { + "access": 1 + } + } + }, + "yi": { + "name": "yi", + "access": 33, + "superName": "aae", + "methods": { + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "zw" + } + } + }, + "yj": { + "name": "yj", + "access": 33, + "superName": "zw", + "methods": { + "x_ ()Lyj$a;": { + "access": 1 + }, + "a (Lzx;Lzx;)Z": { + "access": 1, + "override": "zw" + }, + "d ()[I": { + "access": 4104 + }, + "b (Lzx;I)V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "d_ (Lzx;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Lyj$a;II)V": { + "access": 1 + }, + "b (Lzx;)I": { + "access": 1 + }, + "c (Lzx;)V": { + "access": 1 + }, + "b ()I": { + "access": 1, + "override": "zw" + }, + "a (Lzx;I)I": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "yk": { + "name": "yk", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lum;Ljava/util/Random;)V": { + "access": 2 + } + } + }, + "bnp$3$1": { + "name": "bnp$3$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Lbnp$3;Ljava/util/Map;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "yl": { + "name": "yl", + "access": 33, + "superName": "za", + "methods": { + "a (Lzx;Lafh;)F": { + "access": 1, + "override": "zw" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Lzw$a;)V": { + "access": 4 + } + } + }, + "bmi$1": { + "name": "bmi$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lbmi;[[I)V": { + "access": 0 + } + } + }, + "ym": { + "name": "ym", + "access": 33, + "superName": "yo", + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "zw" + }, + "h (Lzx;)Lzd;": { + "access": 2 + }, + "a (Lzx;Lwn;Ljava/util/List;Z)V": { + "access": 1, + "override": "zw" + }, + "a (Lzx;I)I": { + "access": 1, + "override": "zw" + }, + "c ()Lyz;": { + "access": 1, + "override": "zw" + } + } + }, + "yn": { + "name": "yn", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "yo": { + "name": "yo", + "access": 33, + "superName": "zw", + "methods": { + "b (Ljava/lang/String;)Lyo;": { + "access": 1 + }, + "e_ (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "a ()Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "zw" + }, + "a (Ladm;Lwn;Lcj;Lzx;)Z": { + "access": 9 + }, + "d ()Lafh;": { + "access": 1 + }, + "a (Ladm;Lcj;Lcq;Lwn;Lzx;)Z": { + "access": 1 + }, + "c (Ljava/lang/String;)Lzw;": { + "access": 4097, + "bouncer": { + "name": "b", + "desc": "(Ljava/lang/String;)Lyo;" + }, + "override": "zw" + }, + "c ()Lyz;": { + "access": 1, + "override": "zw" + } + } + }, + "aqn$b$a": { + "name": "aqn$b$a", + "access": 32, + "superName": "aqt$a", + "methods": { + "\u003cinit\u003e ()V": { + "access": 2 + }, + "a (Ljava/util/Random;IIIZ)V": { + "access": 1, + "override": "aqt$a" + }, + "\u003cinit\u003e (Laqn$1;)V": { + "access": 4096 + } + } + }, + "yp": { + "name": "yp", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + } + } + }, + "yq": { + "name": "yq", + "access": 33, + "superName": "zw", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "yr": { + "name": "yr", + "access": 33, + "superName": "zw", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "f_ (Lzx;)Z": { + "access": 1, + "override": "zw" + }, + "b ()I": { + "access": 1, + "override": "zw" + } + } + }, + "ys": { + "name": "ys", + "access": 33, + "superName": "zw", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "yt": { + "name": "yt", + "access": 33, + "superName": "zw", + "methods": { + "e (Lzx;)Laba;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Ladm;Lwn;I)V": { + "access": 1, + "override": "zw" + }, + "d (Lzx;)I": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + }, + "b ()I": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "yu": { + "name": "yu", + "access": 33, + "superName": "zs", + "methods": { + "b (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (I)V": { + "access": 1 + } + } + }, + "ben$a": { + "name": "ben$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "yv": { + "name": "yv", + "access": 33, + "superName": "zw", + "methods": { + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "a (Ladm;Lcj;)Z": { + "access": 1 + }, + "a (Lzx;Lwn;Lzw;)Lzx;": { + "access": 2 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "yw": { + "name": "yw", + "access": 33, + "superName": "zw", + "methods": { + "e ()Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "w_ ()Z": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "yx": { + "name": "yx", + "access": 33, + "superName": "zw", + "methods": { + "e_ (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "zw" + } + } + }, + "yy": { + "name": "yy", + "access": 33, + "superName": "zw", + "methods": { + "f ()Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 4 + }, + "c (Lzx;Ladm;Lwn;)Lff;": { + "access": 1 + } + } + }, + "yz": { + "name": "yz", + "access": 1057, + "superName": "java/lang/Object", + "methods": { + "f ()I": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "j ()Z": { + "access": 1 + }, + "n ()[Lacj;": { + "access": 1 + }, + "e ()Lzw;": { + "access": 1025 + }, + "h ()Z": { + "access": 1 + }, + "k ()Lyz;": { + "access": 1 + }, + "m ()Z": { + "access": 1 + }, + "d ()Lzx;": { + "access": 1 + }, + "c ()Ljava/lang/String;": { + "access": 1 + }, + "i ()Lyz;": { + "access": 1 + }, + "a (Ljava/util/List;)V": { + "access": 1 + }, + "a ()I": { + "access": 1 + }, + "a (Ljava/lang/String;)Lyz;": { + "access": 1 + }, + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 1 + }, + "a (Lacj;)Z": { + "access": 1 + }, + "l ()I": { + "access": 1 + }, + "b ()Ljava/lang/String;": { + "access": 1 + }, + "a ([Lacj;)Lyz;": { + "access": 129 + }, + "a (Ljava/util/List;[Lacj;)V": { + "access": 129 + }, + "g ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "arr$1": { + "name": "arr$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "za": { + "name": "za", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lafh;)F": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lzx;)Z": { + "access": 1, + "override": "zw" + }, + "h ()Ljava/lang/String;": { + "access": 1 + }, + "a (Lzx;Ladm;Lafh;Lcj;Lpr;)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (FLzw$a;Ljava/util/Set;)V": { + "access": 4 + }, + "g ()Lzw$a;": { + "access": 1 + }, + "w_ ()Z": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lpr;Lpr;)Z": { + "access": 1, + "override": "zw" + }, + "i ()Lcom/google/common/collect/Multimap;": { + "access": 1, + "override": "zw" + }, + "b ()I": { + "access": 1, + "override": "zw" + } + } + }, + "zb": { + "name": "zb", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "a (Ladm;Lcj;Lcq;Lafh;)V": { + "access": 9 + } + } + }, + "zc": { + "name": "zc", + "access": 33, + "superName": "aae", + "methods": { + "\u003cinit\u003e (Lafh;Lafh;Lcom/google/common/base/Function;)V": { + "access": 1 + }, + "a (Lzx;I)I": { + "access": 1, + "override": "zw" + } + } + }, + "zd": { + "name": "zd", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;IIILjava/lang/String;Ljava/lang/String;Larn;La;)V": { + "access": 2 + }, + "b (I)Lzd;": { + "access": 9 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "valueOf (Ljava/lang/String;)Lzd;": { + "access": 9 + }, + "values ()[Lzd;": { + "access": 9 + }, + "a (I)Lzd;": { + "access": 9 + }, + "e ()Larn;": { + "access": 1 + }, + "d ()Ljava/lang/String;": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "a ()I": { + "access": 1 + } + } + }, + "lx$1": { + "name": "lx$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "amq" + ], + "methods": { + "a (Lams;DD)V": { + "access": 1, + "override": "amq" + }, + "a (Lams;I)V": { + "access": 1, + "override": "amq" + }, + "b (Lams;I)V": { + "access": 1, + "override": "amq" + }, + "\u003cinit\u003e (Llx;)V": { + "access": 0 + }, + "a (Lams;D)V": { + "access": 1, + "override": "amq" + }, + "b (Lams;D)V": { + "access": 1, + "override": "amq" + }, + "a (Lams;DDJ)V": { + "access": 1, + "override": "amq" + }, + "c (Lams;D)V": { + "access": 1, + "override": "amq" + } + } + }, + "ze": { + "name": "ze", + "access": 33, + "superName": "zw", + "methods": { + "e_ (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lwn;Lpr;)Z": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "a (Ladm;Lcj;I)V": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "zw" + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Lzx;Ladm;Lcj;)Z": { + "access": 9 + } + } + }, + "bj$a": { + "name": "bj$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "a ()V": { + "access": 0 + }, + "b (Lbj$a;)V": { + "access": 1 + }, + "a (Ladm;)I": { + "access": 1 + }, + "a (Lbj$a;)D": { + "access": 0 + }, + "b ()F": { + "access": 0 + }, + "a (Ljava/util/Random;DDDD)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "b (Ladm;)Z": { + "access": 1 + }, + "\u003cinit\u003e (DD)V": { + "access": 0 + }, + "a (DDDD)Z": { + "access": 1 + } + } + }, + "zf": { + "name": "zf", + "access": 33, + "superName": "yo", + "methods": { + "e_ (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "a (I)I": { + "access": 1, + "override": "zw" + } + } + }, + "zg": { + "name": "zg", + "access": 33, + "superName": "zw", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "zh": { + "name": "zh", + "access": 33, + "superName": "yy", + "methods": { + "\u003cinit\u003e ()V": { + "access": 4 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "zi": { + "name": "zi", + "access": 33, + "superName": "zw", + "methods": { + "f (Lzx;)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "f_ (Lzx;)Z": { + "access": 1, + "override": "zw" + }, + "g (Lzx;)Laaj;": { + "access": 1, + "override": "zw" + }, + "b (Ljava/util/Random;)Lob;": { + "access": 1 + }, + "a (Lzx;Lwn;Ljava/util/List;Z)V": { + "access": 1, + "override": "zw" + }, + "a (Ljava/util/Random;III)Lob;": { + "access": 1 + }, + "a (Laci;Ljava/util/List;)V": { + "access": 1 + }, + "h (Lzx;)Ldu;": { + "access": 1 + }, + "a (Lacl;)Lzx;": { + "access": 1 + }, + "a (Lzx;Lacl;)V": { + "access": 1 + } + } + }, + "zj": { + "name": "zj", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "zk": { + "name": "zk", + "access": 33, + "superName": "zw", + "methods": { + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "adm$1": { + "name": "adm$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Ladm;Lcj;)V": { + "access": 0 + } + } + }, + "zl": { + "name": "zl", + "access": 33, + "superName": "zw", + "methods": { + "f (Lzx;)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "aly$1": { + "name": "aly$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Function" + ], + "methods": { + "apply (Ljava/lang/Object;)Ljava/lang/Object;": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Ljava/util/Map$Entry;)Ljava/lang/String;" + }, + "override": "com/google/common/base/Function" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Ljava/util/Map$Entry;)Ljava/lang/String;": { + "access": 1 + } + } + }, + "zm": { + "name": "zm", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "zn": { + "name": "zn", + "access": 33, + "superName": "zw", + "methods": { + "a (Ldn;Ljava/util/List;)V": { + "access": 9 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzx;Lwn;Ljava/util/List;Z)V": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Ljava/lang/String;)Leb;": { + "access": 9 + }, + "a (Lzx;I)I": { + "access": 1, + "override": "zw" + } + } + }, + "zo": { + "name": "zo", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lzx;Lwn;Ljava/util/List;Z)V": { + "access": 1, + "override": "zw" + } + } + }, + "zp": { + "name": "zp", + "access": 33, + "superName": "zs", + "methods": { + "i (Lzx;)F": { + "access": 1, + "override": "zs" + }, + "c (Lzx;Ladm;Lwn;)V": { + "access": 4, + "override": "zs" + }, + "e_ (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "zw" + }, + "h (Lzx;)I": { + "access": 1, + "override": "zs" + }, + "j (Lzx;)Ljava/lang/String;": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (Z)V": { + "access": 1 + } + } + }, + "zq": { + "name": "zq", + "access": 33, + "superName": "zw", + "methods": { + "e ()Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "f_ (Lzx;)Z": { + "access": 1, + "override": "zw" + }, + "w_ ()Z": { + "access": 1, + "override": "zw" + }, + "b ()I": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "zr": { + "name": "zr", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "zs": { + "name": "zs", + "access": 33, + "superName": "zw", + "methods": { + "\u003cinit\u003e (IFZ)V": { + "access": 1 + }, + "c (Lzx;Ladm;Lwn;)V": { + "access": 4 + }, + "e (Lzx;)Laba;": { + "access": 1, + "override": "zw" + }, + "i (Lzx;)F": { + "access": 1 + }, + "a (IIIF)Lzs;": { + "access": 1 + }, + "\u003cinit\u003e (IZ)V": { + "access": 1 + }, + "d (Lzx;)I": { + "access": 1, + "override": "zw" + }, + "h ()Lzs;": { + "access": 1 + }, + "b (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + }, + "g ()Z": { + "access": 1 + }, + "h (Lzx;)I": { + "access": 1 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1, + "override": "zw" + } + } + }, + "zt": { + "name": "zt", + "access": 33, + "superName": "zs", + "methods": { + "\u003cinit\u003e (IFZ)V": { + "access": 1 + }, + "c (Lzx;Ladm;Lwn;)V": { + "access": 4, + "override": "zs" + }, + "f (Lzx;)Z": { + "access": 1, + "override": "zw" + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1, + "override": "zw" + }, + "g (Lzx;)Laaj;": { + "access": 1, + "override": "zw" + } + } + }, + "zu": { + "name": "zu", + "access": 33, + "superName": "zw", + "methods": { + "\u003cinit\u003e (Ljava/lang/Class;)V": { + "access": 1 + }, + "a (Ladm;Lcj;Lcq;)Lun;": { + "access": 2 + }, + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + } + } + }, + "adm$3": { + "name": "adm$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "zv": { + "name": "zv", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e (Lzw$a;)V": { + "access": 1 + }, + "w_ ()Z": { + "access": 1, + "override": "zw" + }, + "a (Lzx;Lwn;Ladm;Lcj;Lalz;)Z": { + "access": 4 + }, + "g ()Ljava/lang/String;": { + "access": 1 + } + } + }, + "adm$2": { + "name": "adm$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Ladm;Lafh;)V": { + "access": 0 + } + } + }, + "zw": { + "name": "zw", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "a (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "b (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1 + }, + "a (Lafh;Lzw;)V": { + "access": 12 + }, + "a (Lzx;Lpr;Lpr;)Z": { + "access": 1 + }, + "j (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "a (Lzx;Ladm;Lwn;)Lzx;": { + "access": 1 + }, + "b (Lzw;)I": { + "access": 9 + }, + "f ()Z": { + "access": 1 + }, + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1 + }, + "g (Lzx;)Laaj;": { + "access": 1 + }, + "c (Lafh;)V": { + "access": 10 + }, + "r ()Z": { + "access": 1 + }, + "e (Ljava/lang/String;)Lzw;": { + "access": 4 + }, + "e ()Z": { + "access": 1 + }, + "a (Lzx;Lzx;)Z": { + "access": 1 + }, + "a (Lzx;Ladm;Lpk;IZ)V": { + "access": 1 + }, + "d (Lzx;)I": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "f_ (Lzx;)Z": { + "access": 1 + }, + "a (Ladm;Lwn;Z)Lauh;": { + "access": 4 + }, + "b (Lafh;)Z": { + "access": 1 + }, + "d (Lzx;Ladm;Lwn;)V": { + "access": 1 + }, + "a (Lyz;)Lzw;": { + "access": 1 + }, + "s ()Z": { + "access": 1 + }, + "c (I)Lzw;": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "a (Lzx;Ladm;Lwn;I)V": { + "access": 1 + }, + "l ()I": { + "access": 1 + }, + "k ()Z": { + "access": 1 + }, + "q ()Lzw;": { + "access": 1 + }, + "t ()V": { + "access": 9 + }, + "a (Lzx;I)I": { + "access": 1 + }, + "e (Lzx;)Laba;": { + "access": 1 + }, + "a (Lafh;)Lzw;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "m ()Z": { + "access": 1 + }, + "a (Lzx;Lwn;Ljava/util/List;Z)V": { + "access": 1 + }, + "a (Z)Lzw;": { + "access": 4 + }, + "i ()Lcom/google/common/collect/Multimap;": { + "access": 1 + }, + "c ()Lyz;": { + "access": 1 + }, + "a (Lzx;Lafh;)F": { + "access": 1 + }, + "j ()I": { + "access": 1 + }, + "k (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "a (I)I": { + "access": 1 + }, + "b ()I": { + "access": 1 + }, + "e_ (Lzx;)Ljava/lang/String;": { + "access": 1 + }, + "c (Lzw;)Lzw;": { + "access": 1 + }, + "d (Ljava/lang/String;)Lzw;": { + "access": 9 + }, + "a (ILjava/lang/String;Lzw;)V": { + "access": 10 + }, + "a (Lzw;Lyz;Ljava/util/List;)V": { + "access": 1 + }, + "a (Lzx;Ladm;Lafh;Lcj;Lpr;)Z": { + "access": 1 + }, + "l (Lzx;)Z": { + "access": 1 + }, + "d (I)Lzw;": { + "access": 4 + }, + "a (Ldn;)Z": { + "access": 1 + }, + "c (Ljava/lang/String;)Lzw;": { + "access": 1 + }, + "p ()Z": { + "access": 1 + }, + "a (Lzx;Lwn;Lpr;)Z": { + "access": 1 + }, + "f (Lzx;)Z": { + "access": 1 + }, + "b (I)Lzw;": { + "access": 9 + }, + "n ()Lzw;": { + "access": 1 + }, + "w_ ()Z": { + "access": 1 + }, + "a (ILjy;Lzw;)V": { + "access": 10 + } + } + }, + "zx": { + "name": "zx", + "access": 49, + "superName": "java/lang/Object", + "methods": { + "a (Ladm;Lwn;)Lzx;": { + "access": 1 + }, + "a (Lpr;Lwn;)V": { + "access": 1 + }, + "m ()Laba;": { + "access": 1 + }, + "a (ILjava/util/Random;)Z": { + "access": 1 + }, + "a (Lwn;Lpr;)Z": { + "access": 1 + }, + "c (Ljava/lang/String;)Lzx;": { + "access": 1 + }, + "c (I)V": { + "access": 1 + }, + "r ()V": { + "access": 1 + }, + "f ()Z": { + "access": 1 + }, + "d (Lzx;)Z": { + "access": 2 + }, + "c (Lafh;)Z": { + "access": 1 + }, + "e ()Z": { + "access": 1 + }, + "a (Lzx;Lzx;)Z": { + "access": 9 + }, + "d (Ldn;)V": { + "access": 1 + }, + "b (Lzx;Lzx;)Z": { + "access": 9 + }, + "a (Ljava/lang/String;Z)Ldn;": { + "access": 1 + }, + "a (Lzw;)V": { + "access": 1 + }, + "\u003cinit\u003e ()V": { + "access": 2 + }, + "\u003cinit\u003e (Lafh;II)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "a (Ladm;Lafh;Lcj;Lwn;)V": { + "access": 1 + }, + "A ()I": { + "access": 1 + }, + "a (Ldn;)Lzx;": { + "access": 9 + }, + "b (Lafh;)Z": { + "access": 1 + }, + "d ()Z": { + "access": 1 + }, + "b (Lzx;)Lzx;": { + "access": 9 + }, + "s ()Z": { + "access": 1 + }, + "a ()Ljava/lang/String;": { + "access": 1 + }, + "l ()I": { + "access": 1 + }, + "B ()Lcom/google/common/collect/Multimap;": { + "access": 1 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "b (Ladm;Lwn;)Lzx;": { + "access": 1 + }, + "\u003cinit\u003e (Lafh;I)V": { + "access": 1 + }, + "a (ILpr;)V": { + "access": 1 + }, + "t ()Z": { + "access": 1 + }, + "b (I)V": { + "access": 1 + }, + "a (Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1 + }, + "a (Lzx;)Z": { + "access": 1 + }, + "v ()Z": { + "access": 1 + }, + "z ()Luo;": { + "access": 1 + }, + "a (Lafh;)F": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "b (Ldn;)Ldn;": { + "access": 1 + }, + "\u003cinit\u003e (Lzw;II)V": { + "access": 1 + }, + "u ()Laaj;": { + "access": 1 + }, + "k ()Lzx;": { + "access": 1 + }, + "a (Ljava/lang/String;Leb;)V": { + "access": 1 + }, + "w ()Z": { + "access": 1 + }, + "a (Ladm;Lwn;I)V": { + "access": 1 + }, + "j ()I": { + "access": 1 + }, + "c (Lzx;)Z": { + "access": 1 + }, + "n ()Z": { + "access": 1 + }, + "c (Lzx;Lzx;)Z": { + "access": 9 + }, + "a (Ladm;Lpk;IZ)V": { + "access": 1 + }, + "p ()Ldu;": { + "access": 1 + }, + "a (I)Lzx;": { + "access": 1 + }, + "C ()Leu;": { + "access": 1 + }, + "o ()Ldn;": { + "access": 1 + }, + "c (Ldn;)V": { + "access": 1 + }, + "i ()I": { + "access": 1 + }, + "b (Ladm;Lwn;I)V": { + "access": 1 + }, + "y ()Z": { + "access": 1 + }, + "a (Luo;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lzw;)V": { + "access": 1 + }, + "\u003cinit\u003e (Lzw;I)V": { + "access": 1 + }, + "q ()Ljava/lang/String;": { + "access": 1 + }, + "a (Laci;I)V": { + "access": 1 + }, + "b ()Lzw;": { + "access": 1 + }, + "d (Lafh;)Z": { + "access": 1 + }, + "\u003cinit\u003e (Lafh;)V": { + "access": 1 + }, + "h ()I": { + "access": 1 + }, + "g ()Z": { + "access": 1 + }, + "x ()Z": { + "access": 1 + }, + "a (Lwn;Z)Ljava/util/List;": { + "access": 1 + } + } + }, + "adm$4": { + "name": "adm$4", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Ladm;)V": { + "access": 0 + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + } + } + }, + "zy": { + "name": "zy", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "a (Ljava/lang/String;)Lzw;": { + "access": 10 + } + } + }, + "zz": { + "name": "zz", + "access": 33, + "superName": "zw", + "methods": { + "a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z": { + "access": 1, + "override": "zw" + }, + "\u003cinit\u003e ()V": { + "access": 1 + }, + "a (Lwn;Ladm;Lcj;)Z": { + "access": 9 + } + } + }, + "baf$1": { + "name": "baf$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "bah" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (FI)V": { + "access": 1, + "override": "bah" + }, + "A_ ()Leu;": { + "access": 1, + "override": "bah" + }, + "a (Lbaf;)V": { + "access": 1, + "override": "bah" + }, + "B_ ()Z": { + "access": 1, + "override": "bah" + } + } + }, + "yz$3": { + "name": "yz$3", + "access": 48, + "superName": "yz", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 0 + }, + "e ()Lzw;": { + "access": 1, + "override": "yz" + } + } + }, + "yz$4": { + "name": "yz$4", + "access": 48, + "superName": "yz", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 0 + }, + "e ()Lzw;": { + "access": 1, + "override": "yz" + } + } + }, + "yz$5": { + "name": "yz$5", + "access": 48, + "superName": "yz", + "methods": { + "f ()I": { + "access": 1, + "override": "yz" + }, + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 0 + }, + "e ()Lzw;": { + "access": 1, + "override": "yz" + } + } + }, + "yz$6": { + "name": "yz$6", + "access": 48, + "superName": "yz", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 0 + }, + "e ()Lzw;": { + "access": 1, + "override": "yz" + } + } + }, + "yz$7": { + "name": "yz$7", + "access": 48, + "superName": "yz", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 0 + }, + "e ()Lzw;": { + "access": 1, + "override": "yz" + } + } + }, + "yz$8": { + "name": "yz$8", + "access": 48, + "superName": "yz", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 0 + }, + "e ()Lzw;": { + "access": 1, + "override": "yz" + } + } + }, + "yz$9": { + "name": "yz$9", + "access": 48, + "superName": "yz", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 0 + }, + "e ()Lzw;": { + "access": 1, + "override": "yz" + } + } + }, + "ait$1": { + "name": "ait$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "arr$a": { + "name": "arr$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Larr$a;": { + "access": 9 + }, + "values ()[Larr$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "is$a": { + "name": "is$a", + "access": 16433, + "superName": "java/lang/Enum", + "methods": { + "valueOf (Ljava/lang/String;)Lis$a;": { + "access": 9 + }, + "\u003cinit\u003e (Ljava/lang/String;I)V": { + "access": 2 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "values ()[Lis$a;": { + "access": 9 + } + } + }, + "yz$1": { + "name": "yz$1", + "access": 48, + "superName": "yz", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 0 + }, + "e ()Lzw;": { + "access": 1, + "override": "yz" + } + } + }, + "yz$2": { + "name": "yz$2", + "access": 48, + "superName": "yz", + "methods": { + "\u003cinit\u003e (ILjava/lang/String;)V": { + "access": 0 + }, + "e ()Lzw;": { + "access": 1, + "override": "yz" + } + } + }, + "bgp$b": { + "name": "bgp$b", + "access": 16432, + "superName": "java/lang/Enum", + "methods": { + "values ()[Lbgp$b;": { + "access": 9 + }, + "a ()Lcq;": { + "access": 1 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "c ()I": { + "access": 1 + }, + "\u003cinit\u003e (Ljava/lang/String;ILcq;II)V": { + "access": 2 + }, + "a (Lbgp$b;)Z": { + "access": 4104 + }, + "valueOf (Ljava/lang/String;)Lbgp$b;": { + "access": 9 + }, + "d ()Z": { + "access": 2 + }, + "b ()I": { + "access": 1 + } + } + }, + "bgp$a": { + "name": "bgp$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "a (I)V": { + "access": 1 + }, + "a ()Lbgp$b;": { + "access": 1 + }, + "\u003cinit\u003e (Lbgp$b;II)V": { + "access": 1 + }, + "c ()I": { + "access": 1 + }, + "d ()I": { + "access": 1 + }, + "b ()I": { + "access": 1 + } + } + }, + "bny$1": { + "name": "bny$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "awh$1": { + "name": "awh$1", + "access": 4128, + "superName": "java/lang/Object" + }, + "bdk$a": { + "name": "bdk$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bdk$b": { + "name": "bdk$b", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "bcy$3": { + "name": "bcy$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Lbcy;Ljava/lang/String;Ljava/lang/String;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "bcy$2": { + "name": "bcy$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/util/concurrent/FutureCallback" + ], + "methods": { + "\u003cinit\u003e (Lbcy;Ljava/lang/String;)V": { + "access": 0 + }, + "onSuccess (Ljava/lang/Object;)V": { + "access": 1, + "override": "com/google/common/util/concurrent/FutureCallback" + }, + "onFailure (Ljava/lang/Throwable;)V": { + "access": 1, + "override": "com/google/common/util/concurrent/FutureCallback" + } + } + }, + "bcy$1": { + "name": "bcy$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/util/concurrent/FutureCallback" + ], + "methods": { + "\u003cinit\u003e (Lbcy;Ljava/lang/String;)V": { + "access": 0 + }, + "onSuccess (Ljava/lang/Object;)V": { + "access": 1, + "override": "com/google/common/util/concurrent/FutureCallback" + }, + "onFailure (Ljava/lang/Throwable;)V": { + "access": 1, + "override": "com/google/common/util/concurrent/FutureCallback" + } + } + }, + "bcy$4": { + "name": "bcy$4", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "bdk$c": { + "name": "bdk$c", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "bed" + ], + "methods": { + "a (ILadm;DDDDDD[I)Lbeb;": { + "access": 129, + "override": "bed" + }, + "\u003cinit\u003e ()V": { + "access": 1 + } + } + }, + "mw$1": { + "name": "mw$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "mx" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (I)Ljava/lang/String;": { + "access": 1, + "override": "mx" + } + } + }, + "aig$1": { + "name": "aig$1", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Laio$a;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (Laio$a;)Z": { + "access": 1 + } + } + }, + "aig$2": { + "name": "aig$2", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "mw$4": { + "name": "mw$4", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "mx" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (I)Ljava/lang/String;": { + "access": 1, + "override": "mx" + } + } + }, + "mw$3": { + "name": "mw$3", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "mx" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (I)Ljava/lang/String;": { + "access": 1, + "override": "mx" + } + } + }, + "net/minecraft/realms/RealmsAnvilLevelStorageSource": { + "name": "net/minecraft/realms/RealmsAnvilLevelStorageSource", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "levelExists (Ljava/lang/String;)Z": { + "access": 1 + }, + "isNewLevelIdAcceptable (Ljava/lang/String;)Z": { + "access": 1 + }, + "requiresConversion (Ljava/lang/String;)Z": { + "access": 1 + }, + "clearAll ()V": { + "access": 1 + }, + "getName ()Ljava/lang/String;": { + "access": 1 + }, + "\u003cinit\u003e (Latr;)V": { + "access": 1 + }, + "isConvertible (Ljava/lang/String;)Z": { + "access": 1 + }, + "deleteLevel (Ljava/lang/String;)Z": { + "access": 1 + }, + "renameLevel (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 1 + }, + "convertLevel (Ljava/lang/String;Lnu;)Z": { + "access": 1 + }, + "getLevelList ()Ljava/util/List;": { + "access": 1, + "exceptions": [ + "atq" + ] + } + } + }, + "mw$2": { + "name": "mw$2", + "access": 48, + "superName": "java/lang/Object", + "interfaces": [ + "mx" + ], + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "a (I)Ljava/lang/String;": { + "access": 1, + "override": "mx" + } + } + }, + "akz$1": { + "name": "akz$1", + "access": 32, + "superName": "adc", + "methods": { + "e ()Ladm;": { + "access": 1, + "override": "m" + }, + "c ()Lcj;": { + "access": 1, + "override": "m" + }, + "h ()V": { + "access": 1, + "override": "adc" + }, + "a (Ljava/lang/String;)V": { + "access": 1, + "override": "adc" + }, + "i ()I": { + "access": 1, + "override": "adc" + }, + "d ()Laui;": { + "access": 1, + "override": "m" + }, + "f ()Lpk;": { + "access": 1, + "override": "m" + }, + "\u003cinit\u003e (Lakz;)V": { + "access": 0 + }, + "a (Lio/netty/buffer/ByteBuf;)V": { + "access": 1, + "override": "adc" + } + } + }, + "ek$6": { + "name": "ek$6", + "access": 48, + "superName": "io/netty/channel/ChannelInitializer", + "methods": { + "\u003cinit\u003e (Lek;)V": { + "access": 0 + }, + "initChannel (Lio/netty/channel/Channel;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/channel/ChannelInitializer" + } + } + }, + "ek$5": { + "name": "ek$5", + "access": 48, + "superName": "io/netty/channel/ChannelInitializer", + "methods": { + "\u003cinit\u003e (Lek;)V": { + "access": 0 + }, + "initChannel (Lio/netty/channel/Channel;)V": { + "access": 4, + "exceptions": [ + "java/lang/Exception" + ], + "override": "io/netty/channel/ChannelInitializer" + } + } + }, + "ek$4": { + "name": "ek$4", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/lang/Runnable" + ], + "methods": { + "\u003cinit\u003e (Lek;Lel;Lel;Lff;[Lio/netty/util/concurrent/GenericFutureListener;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "ek$3": { + "name": "ek$3", + "access": 48, + "superName": "no", + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "b ()Ljava/lang/Object;": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "()Lio/netty/channel/local/LocalEventLoopGroup;" + }, + "override": "no" + }, + "a ()Lio/netty/channel/local/LocalEventLoopGroup;": { + "access": 4 + } + } + }, + "ek$2": { + "name": "ek$2", + "access": 48, + "superName": "no", + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "b ()Ljava/lang/Object;": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "()Lio/netty/channel/epoll/EpollEventLoopGroup;" + }, + "override": "no" + }, + "a ()Lio/netty/channel/epoll/EpollEventLoopGroup;": { + "access": 4 + } + } + }, + "ek$1": { + "name": "ek$1", + "access": 48, + "superName": "no", + "methods": { + "\u003cinit\u003e ()V": { + "access": 0 + }, + "b ()Ljava/lang/Object;": { + "access": 4100, + "bouncer": { + "name": "a", + "desc": "()Lio/netty/channel/nio/NioEventLoopGroup;" + }, + "override": "no" + }, + "a ()Lio/netty/channel/nio/NioEventLoopGroup;": { + "access": 4 + } + } + }, + "sp$1": { + "name": "sp$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "com/google/common/base/Predicate" + ], + "methods": { + "apply (Ljava/lang/Object;)Z": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpr;)Z" + }, + "override": "com/google/common/base/Predicate" + }, + "\u003cinit\u003e (Lsp;Lcom/google/common/base/Predicate;)V": { + "access": 0 + }, + "a (Lpr;)Z": { + "access": 1 + } + } + }, + "ann$1": { + "name": "ann$1", + "access": 32, + "superName": "ams", + "methods": { + "g ()D": { + "access": 1, + "override": "ams" + }, + "f ()D": { + "access": 1, + "override": "ams" + }, + "\u003cinit\u003e (Lann;)V": { + "access": 0 + } + } + }, + "ahu$1": { + "name": "ahu$1", + "access": 4128, + "superName": "java/lang/Object", + "methods": { + "\u003cclinit\u003e ()V": { + "access": 8 + } + } + }, + "ek$a": { + "name": "ek$a", + "access": 32, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Lff;[Lio/netty/util/concurrent/GenericFutureListener;)V": { + "access": 129 + }, + "b (Lek$a;)[Lio/netty/util/concurrent/GenericFutureListener;": { + "access": 4104 + }, + "a (Lek$a;)Lff;": { + "access": 4104 + } + } + }, + "net/minecraft/client/main/Main$2": { + "name": "net/minecraft/client/main/Main$2", + "access": 48, + "superName": "java/lang/Thread", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;)V": { + "access": 0 + }, + "run ()V": { + "access": 1, + "override": "java/lang/Runnable" + } + } + }, + "atg$a": { + "name": "atg$a", + "access": 33, + "superName": "java/lang/Object", + "methods": { + "\u003cinit\u003e (Latg;Lwn;)V": { + "access": 1 + }, + "a (Lzx;)Lff;": { + "access": 1 + }, + "a (II)V": { + "access": 1 + } + } + }, + "net/minecraft/client/main/Main$1": { + "name": "net/minecraft/client/main/Main$1", + "access": 48, + "superName": "java/net/Authenticator", + "methods": { + "\u003cinit\u003e (Ljava/lang/String;Ljava/lang/String;)V": { + "access": 0 + }, + "getPasswordAuthentication ()Ljava/net/PasswordAuthentication;": { + "access": 4, + "override": "java/net/Authenticator" + } + } + }, + "ahu$a": { + "name": "ahu$a", + "access": 16433, + "superName": "java/lang/Enum", + "interfaces": [ + "nw" + ], + "methods": { + "a (I)Lahu$a;": { + "access": 9 + }, + "valueOf (Ljava/lang/String;)Lahu$a;": { + "access": 9 + }, + "\u003cclinit\u003e ()V": { + "access": 8 + }, + "\u003cinit\u003e (Ljava/lang/String;IILjava/lang/String;Lcq;)V": { + "access": 2 + }, + "toString ()Ljava/lang/String;": { + "access": 1, + "override": "java/lang/Object" + }, + "l ()Ljava/lang/String;": { + "access": 1, + "override": "nw" + }, + "a (Lcq;Lcq;)Lahu$a;": { + "access": 9 + }, + "c ()Lcq;": { + "access": 1 + }, + "values ()[Lahu$a;": { + "access": 9 + }, + "a ()I": { + "access": 1 + } + } + }, + "sp$a": { + "name": "sp$a", + "access": 33, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/Comparator" + ], + "methods": { + "\u003cinit\u003e (Lpk;)V": { + "access": 1 + }, + "a (Lpk;Lpk;)I": { + "access": 1 + }, + "compare (Ljava/lang/Object;Ljava/lang/Object;)I": { + "access": 4097, + "bouncer": { + "name": "a", + "desc": "(Lpk;Lpk;)I" + }, + "override": "java/util/Comparator" + } + } + }, + "ayn$d": { + "name": "ayn$d", + "access": 32, + "superName": "avs", + "methods": { + "a (Lave;II)V": { + "access": 1, + "override": "avs" + }, + "b (Z)V": { + "access": 1 + }, + "\u003cinit\u003e (IIILjy;II)V": { + "access": 4 + }, + "c ()Z": { + "access": 1 + } + } + }, + "ayn$c": { + "name": "ayn$c", + "access": 32, + "superName": "ayn$d", + "methods": { + "b (II)V": { + "access": 1, + "override": "avs" + }, + "\u003cinit\u003e (Layn;IIIII)V": { + "access": 1 + } + } + }, + "ayn$b": { + "name": "ayn$b", + "access": 32, + "superName": "ayn$d", + "methods": { + "b (II)V": { + "access": 1, + "override": "avs" + }, + "\u003cinit\u003e (Layn;III)V": { + "access": 1 + } + } + }, + "ayn$a": { + "name": "ayn$a", + "access": 32, + "superName": "ayn$d", + "methods": { + "b (II)V": { + "access": 1, + "override": "avs" + }, + "\u003cinit\u003e (Layn;III)V": { + "access": 1 + } + } + }, + "pk$1": { + "name": "pk$1", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lpk;)V": { + "access": 0 + } + } + }, + "pk$2": { + "name": "pk$2", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lpk;)V": { + "access": 0 + } + } + }, + "pk$3": { + "name": "pk$3", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lpk;)V": { + "access": 0 + } + } + }, + "pk$4": { + "name": "pk$4", + "access": 32, + "superName": "java/lang/Object", + "interfaces": [ + "java/util/concurrent/Callable" + ], + "methods": { + "a ()Ljava/lang/String;": { + "access": 1, + "exceptions": [ + "java/lang/Exception" + ] + }, + "call ()Ljava/lang/Object;": { + "access": 4097, + "exceptions": [ + "java/lang/Exception" + ], + "bouncer": { + "name": "a", + "desc": "()Ljava/lang/String;" + }, + "override": "java/util/concurrent/Callable" + }, + "\u003cinit\u003e (Lpk;)V": { + "access": 0 + } + } + } +}
\ No newline at end of file diff --git a/mappings/data/joined.tsrg b/mappings/data/joined.tsrg new file mode 100644 index 0000000..da869cc --- /dev/null +++ b/mappings/data/joined.tsrg @@ -0,0 +1,27873 @@ +a net/minecraft/util/EnumChatFormatting + A field_96303_A + B field_96304_B + C field_175747_C + D $VALUES + a BLACK + b DARK_BLUE + c DARK_GREEN + d DARK_AQUA + e DARK_RED + f DARK_PURPLE + g GOLD + h GRAY + i DARK_GRAY + j BLUE + k GREEN + l AQUA + m RED + n LIGHT_PURPLE + o YELLOW + p WHITE + q OBFUSCATED + r BOLD + s STRIKETHROUGH + t UNDERLINE + u ITALIC + v RESET + w field_96331_x + x field_96330_y + y field_175748_y + z field_96329_z + a (I)La; func_175744_a + a (Ljava/lang/String;)Ljava/lang/String; func_110646_a + a (ZZ)Ljava/util/Collection; func_96296_a + b ()I func_175746_b + b (Ljava/lang/String;)La; func_96300_b + c ()Z func_96301_b + c (Ljava/lang/String;)Ljava/lang/String; func_175745_c + d ()Z func_96302_c + e ()Ljava/lang/String; func_96297_d + toString ()Ljava/lang/String; toString + values ()[La; values +aa net/minecraft/command/server/CommandEmote + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +aaa net/minecraft/item/ItemLeaves + b field_150940_b + a (I)I func_77647_b + a (Lzx;I)I func_82790_a + e_ (Lzx;)Ljava/lang/String; func_77667_c +aab net/minecraft/item/ItemMap + a (ILadm;)Latg; func_150912_a + a (Ladm;Lpk;Latg;)V func_77872_a + a (Lzx;Ladm;)Latg; func_77873_a + a (Lzx;Ladm;Lpk;IZ)V func_77663_a + a (Lzx;Lwn;Ljava/util/List;Z)V func_77624_a + c (Lzx;Ladm;Lwn;)Lff; func_150911_c + d (Lzx;Ladm;Lwn;)V func_77622_d +aac net/minecraft/item/ItemBucketMilk + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + b (Lzx;Ladm;Lwn;)Lzx; func_77654_b + d (Lzx;)I func_77626_a + e (Lzx;)Laba; func_77661_b +aad net/minecraft/item/ItemMinecart + a field_96602_b + b field_77841_a + a (Laad;)Lva$a; access$000 + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +aad$1 net/minecraft/item/ItemMinecart$1 + b field_96465_b + a (Lck;)V func_82485_a + b (Lck;Lzx;)Lzx; func_82487_b +aae net/minecraft/item/ItemMultiTexture + b field_179227_b + c field_179228_c + a (I)I func_77647_b + e_ (Lzx;)Ljava/lang/String; func_77667_c +aae$1 net/minecraft/item/ItemMultiTexture$1 + a field_179542_a + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +aaf net/minecraft/item/ItemNameTag + a (Lzx;Lwn;Lpr;)Z func_111207_a +aag net/minecraft/item/ItemPickaxe + c field_150915_c + a (Lzx;Lafh;)F func_150893_a + b (Lafh;)Z func_150897_b +aah net/minecraft/item/ItemPiston + a (I)I func_77647_b +aai net/minecraft/item/ItemPotion + a field_77836_a + b field_77835_b + a (Lzw;Lyz;Ljava/util/List;)V func_150895_a + a (Lzx;)Ljava/lang/String; func_77653_i + a (Lzx;I)I func_82790_a + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + a (Lzx;Lwn;Ljava/util/List;Z)V func_77624_a + b (Lzx;Ladm;Lwn;)Lzx; func_77654_b + d (Lzx;)I func_77626_a + e (I)Ljava/util/List; func_77834_f + e (Lzx;)Laba; func_77661_b + f (I)Z func_77831_g + f (Lzx;)Z func_77636_d + g (I)I func_77620_a + h (I)Z func_77833_h + h (Lzx;)Ljava/util/List; func_77832_l +aaj net/minecraft/item/EnumRarity + a COMMON + b UNCOMMON + c RARE + d EPIC + e field_77937_e + f field_77934_f + g $VALUES + valueOf (Ljava/lang/String;)Laaj; valueOf + values ()[Laaj; values +aak net/minecraft/item/ItemRecord + a field_150929_a + b field_150928_b + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a + a (Lzx;Lwn;Ljava/util/List;Z)V func_77624_a + b (Ljava/lang/String;)Laak; func_150926_b + g ()Ljava/lang/String; func_150927_i + g (Lzx;)Laaj; func_77613_e +aal net/minecraft/item/ItemRedstone + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +aam net/minecraft/item/ItemSaddle + a (Lzx;Lpr;Lpr;)Z func_77644_a + a (Lzx;Lwn;Lpr;)Z func_111207_a +aan net/minecraft/item/ItemSeedFood + b field_150908_b + c field_82809_c + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +aao net/minecraft/item/ItemSeeds + a field_150925_a + b field_77838_b + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +aap net/minecraft/item/ItemShears + a (Lzx;Ladm;Lafh;Lcj;Lpr;)Z func_179218_a + a (Lzx;Lafh;)F func_150893_a + b (Lafh;)Z func_150897_b +aaq net/minecraft/item/ItemSpade + c field_150916_c + b (Lafh;)Z func_150897_b +aar net/minecraft/item/ItemSign + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +aas net/minecraft/item/ItemSimpleFoiled + f (Lzx;)Z func_77636_d +aat net/minecraft/item/ItemSkull + a field_82807_a + a (I)I func_77647_b + a (Ldn;)Z func_179215_a + a (Lzw;Lyz;Ljava/util/List;)V func_150895_a + a (Lzx;)Ljava/lang/String; func_77653_i + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a + e_ (Lzx;)Ljava/lang/String; func_77667_c +aau net/minecraft/item/ItemSlab + b field_150949_c + c field_179226_c + a (I)I func_77647_b + a (Ladm;Lcj;Lcq;Lwn;Lzx;)Z func_179222_a + a (Lzx;Ladm;Lcj;Ljava/lang/Object;)Z func_180615_a + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a + e_ (Lzx;)Ljava/lang/String; func_77667_c +aav net/minecraft/item/ItemSnow + a (I)I func_77647_b + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +aaw net/minecraft/item/ItemSnowball + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a +aax net/minecraft/item/ItemMonsterPlacer + a (Ladm;IDDD)Lpk; func_77840_a + a (Lzw;Lyz;Ljava/util/List;)V func_150895_a + a (Lzx;)Ljava/lang/String; func_77653_i + a (Lzx;I)I func_82790_a + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +aay net/minecraft/item/ItemSword + a field_150934_a + b field_150933_b + a (Lzx;Ladm;Lafh;Lcj;Lpr;)Z func_179218_a + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + a (Lzx;Lafh;)F func_150893_a + a (Lzx;Lpr;Lpr;)Z func_77644_a + a (Lzx;Lzx;)Z func_82789_a + b ()I func_77619_b + b (Lafh;)Z func_150897_b + d (Lzx;)I func_77626_a + e (Lzx;)Laba; func_77661_b + g ()F func_150931_i + h ()Ljava/lang/String; func_150932_j + i ()Lcom/google/common/collect/Multimap; func_111205_h + w_ ()Z func_77662_d +aaz net/minecraft/item/ItemColored + b field_150944_b + c field_150945_c + a (I)I func_77647_b + a (Lzx;I)I func_82790_a + a ([Ljava/lang/String;)Laaz; func_150943_a + e_ (Lzx;)Ljava/lang/String; func_77667_c +ab net/minecraft/command/CommandEnchant + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + d ()[Ljava/lang/String; func_90022_d +aba net/minecraft/item/EnumAction + a NONE + b EAT + c DRINK + d BLOCK + e BOW + f $VALUES + valueOf (Ljava/lang/String;)Laba; valueOf + values ()[Laba; values +abb net/minecraft/item/ItemLilyPad + a (Lzx;I)I func_82790_a + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a +abc net/minecraft/item/ItemWritableBook + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + b (Ldn;)Z func_150930_a +abd net/minecraft/item/ItemEditableBook + a (Lzx;)Ljava/lang/String; func_77653_i + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + a (Lzx;Lwn;)V func_179229_a + a (Lzx;Lwn;Ljava/util/List;Z)V func_77624_a + b (Ldn;)Z func_77828_a + f (Lzx;)Z func_77636_d + h (Lzx;)I func_179230_h +abe net/minecraft/potion/PotionHelper + a field_77924_a + b field_77922_b + c field_77923_c + d field_77920_d + e field_77921_e + f field_77918_f + g field_77919_g + h field_77931_h + i field_77932_i + j field_77929_j + k field_77930_k + l field_82818_l + m field_151423_m + n field_179538_n + o field_179539_o + p field_179540_p + q field_77925_n + r field_77926_o + a (I)I func_77909_a + a (II)Z func_77914_a + a (IIIIII)I func_77908_a + a (IIZZZ)I func_77906_a + a (ILjava/lang/String;)I func_77913_a + a (IZ)I func_77915_a + a (Ljava/lang/String;III)I func_77912_a + a (Ljava/util/Collection;)I func_77911_a + a (ZZZIIII)I func_77904_a + b (IZ)Ljava/util/List; func_77917_b + b (Ljava/util/Collection;)Z func_82817_b + c (I)Ljava/lang/String; func_77905_c + c (II)I func_77910_c + d (II)I func_77916_d + h (I)I func_77907_h +abh net/minecraft/item/crafting/RecipesArmorDyes + a ()I func_77570_a + a (Lxp;)Lzx; func_77572_b + a (Lxp;Ladm;)Z func_77569_a + b ()Lzx; func_77571_b + b (Lxp;)[Lzx; func_179532_b +abi net/minecraft/item/crafting/RecipesArmor + a field_77611_a + b field_77610_b + a (Labt;)V func_77609_a +abj net/minecraft/item/crafting/RecipesBanners + a (Labt;)V func_179534_a +abj$1 net/minecraft/item/crafting/RecipesBanners$1 +abj$a net/minecraft/item/crafting/RecipesBanners$RecipeAddPattern + a ()I func_77570_a + a (Lxp;)Lzx; func_77572_b + a (Lxp;Ladm;)Z func_77569_a + b ()Lzx; func_77571_b + b (Lxp;)[Lzx; func_179532_b + c (Lxp;)Laku$a; func_179533_c +abj$b net/minecraft/item/crafting/RecipesBanners$RecipeDuplicatePattern + a ()I func_77570_a + a (Lxp;)Lzx; func_77572_b + a (Lxp;Ladm;)Z func_77569_a + b ()Lzx; func_77571_b + b (Lxp;)[Lzx; func_179532_b +abk net/minecraft/item/crafting/RecipeBookCloning + a ()I func_77570_a + a (Lxp;)Lzx; func_77572_b + a (Lxp;Ladm;)Z func_77569_a + b ()Lzx; func_77571_b + b (Lxp;)[Lzx; func_179532_b +abl net/minecraft/item/crafting/RecipesDyes + a (Labt;)V func_77607_a +abm net/minecraft/item/crafting/RecipeFireworks + a field_92102_a + a ()I func_77570_a + a (Lxp;)Lzx; func_77572_b + a (Lxp;Ladm;)Z func_77569_a + b ()Lzx; func_77571_b + b (Lxp;)[Lzx; func_179532_b +abn net/minecraft/item/crafting/RecipesFood + a (Labt;)V func_77608_a +abo net/minecraft/item/crafting/FurnaceRecipes + a field_77606_a + b field_77604_b + c field_77605_c + a ()Labo; func_77602_a + a (Lafh;Lzx;F)V func_151393_a + a (Lzw;Lzx;F)V func_151396_a + a (Lzx;)Lzx; func_151395_a + a (Lzx;Lzx;)Z func_151397_a + a (Lzx;Lzx;F)V func_151394_a + b ()Ljava/util/Map; func_77599_b + b (Lzx;)F func_151398_b +abp net/minecraft/item/crafting/RecipesMapCloning + a ()I func_77570_a + a (Lxp;)Lzx; func_77572_b + a (Lxp;Ladm;)Z func_77569_a + b ()Lzx; func_77571_b + b (Lxp;)[Lzx; func_179532_b +abq net/minecraft/item/crafting/RecipesMapExtending + a (Lxp;)Lzx; func_77572_b + a (Lxp;Ladm;)Z func_77569_a +abr net/minecraft/item/crafting/RecipesIngots + a field_77591_a + a (Labt;)V func_77590_a +abs net/minecraft/item/crafting/IRecipe + a ()I func_77570_a + a (Lxp;)Lzx; func_77572_b + a (Lxp;Ladm;)Z func_77569_a + b ()Lzx; func_77571_b + b (Lxp;)[Lzx; func_179532_b +abt net/minecraft/item/crafting/CraftingManager + a field_77598_a + b field_77597_b + a ()Labt; func_77594_a + a (Labs;)V func_180302_a + a (Lxp;Ladm;)Lzx; func_82787_a + a (Lzx;[Ljava/lang/Object;)Labv; func_92103_a + b ()Ljava/util/List; func_77592_b + b (Lxp;Ladm;)[Lzx; func_180303_b + b (Lzx;[Ljava/lang/Object;)V func_77596_b +abt$1 net/minecraft/item/crafting/CraftingManager$1 + a field_77582_a + a (Labs;Labs;)I compare + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare +abu net/minecraft/item/crafting/RecipeRepairItem + a ()I func_77570_a + a (Lxp;)Lzx; func_77572_b + a (Lxp;Ladm;)Z func_77569_a + b ()Lzx; func_77571_b + b (Lxp;)[Lzx; func_179532_b +abv net/minecraft/item/crafting/ShapedRecipes + a field_77576_b + b field_77577_c + c field_77574_d + d field_77575_e + e field_92101_f + a ()I func_77570_a + a (Lxp;)Lzx; func_77572_b + a (Lxp;IIZ)Z func_77573_a + a (Lxp;Ladm;)Z func_77569_a + b ()Lzx; func_77571_b + b (Lxp;)[Lzx; func_179532_b +abw net/minecraft/item/crafting/ShapelessRecipes + a field_77580_a + b field_77579_b + a ()I func_77570_a + a (Lxp;)Lzx; func_77572_b + a (Lxp;Ladm;)Z func_77569_a + b ()Lzx; func_77571_b + b (Lxp;)[Lzx; func_179532_b +abx net/minecraft/item/crafting/RecipesCrafting + a (Labt;)V func_77589_a +aby net/minecraft/item/crafting/RecipesTools + a field_77588_a + b field_77587_b + a (Labt;)V func_77586_a +abz net/minecraft/item/crafting/RecipesWeapons + a field_77585_a + b field_77584_b + a (Labt;)V func_77583_a +ac net/minecraft/command/CommandEntityData + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +acb net/minecraft/enchantment/EnchantmentArrowDamage + a (I)I func_77321_a + b ()I func_77325_b + b (I)I func_77317_b +acc net/minecraft/enchantment/EnchantmentArrowFire + a (I)I func_77321_a + b ()I func_77325_b + b (I)I func_77317_b +acd net/minecraft/enchantment/EnchantmentArrowInfinite + a (I)I func_77321_a + b ()I func_77325_b + b (I)I func_77317_b +ace net/minecraft/enchantment/EnchantmentArrowKnockback + a (I)I func_77321_a + b ()I func_77325_b + b (I)I func_77317_b +acf net/minecraft/enchantment/EnchantmentDamage + E field_77359_A + F field_77360_B + G field_77362_C + H field_77358_D + a field_77361_a + a ()Ljava/lang/String; func_77320_a + a (I)I func_77321_a + a (ILpw;)F func_152376_a + a (Laci;)Z func_77326_a + a (Lpr;Lpk;I)V func_151368_a + a (Lzx;)Z func_92089_a + b ()I func_77325_b + b (I)I func_77317_b +acg net/minecraft/enchantment/EnchantmentDurability + a (I)I func_77321_a + a (Lzx;)Z func_92089_a + a (Lzx;ILjava/util/Random;)Z func_92097_a + b ()I func_77325_b + b (I)I func_77317_b +ach net/minecraft/enchantment/EnchantmentDigging + a (I)I func_77321_a + a (Lzx;)Z func_92089_a + b ()I func_77325_b + b (I)I func_77317_b +aci net/minecraft/enchantment/Enchantment + A field_151369_A + B field_77352_x + C field_77351_y + D field_77350_z + E field_180307_E + F field_77333_a + a field_180311_a + b field_77331_b + c field_180310_c + d field_77329_d + e field_180309_e + f field_77327_f + g field_180308_g + h field_180317_h + i field_77341_i + j field_92091_k + k field_180316_k + l field_180314_l + m field_180315_m + n field_180312_n + o field_180313_o + p field_77334_n + q field_77335_o + r field_77349_p + s field_77348_q + t field_77347_r + u field_77346_s + v field_77345_t + w field_77344_u + x field_77343_v + y field_77342_w + z field_151370_z + a ()Ljava/lang/String; func_77320_a + a (I)I func_77321_a + a (ILow;)I func_77318_a + a (ILpw;)F func_152376_a + a (Laci;)Z func_77326_a + a (Lpr;Lpk;I)V func_151368_a + a (Lzx;)Z func_92089_a + b ()I func_77325_b + b (I)I func_77317_b + b (Ljava/lang/String;)Laci; func_180305_b + b (Lpr;Lpk;I)V func_151367_b + c ()Ljava/util/Set; func_181077_c + c (I)Laci; func_180306_c + c (Ljava/lang/String;)Laci; func_77322_b + d ()I func_77324_c + d (I)Ljava/lang/String; func_77316_c + e ()I func_77319_d +acj net/minecraft/enchantment/EnumEnchantmentType + a ALL + b ARMOR + c ARMOR_FEET + d ARMOR_LEGS + e ARMOR_TORSO + f ARMOR_HEAD + g WEAPON + h DIGGER + i FISHING_ROD + j BREAKABLE + k BOW + l $VALUES + a (Lzw;)Z func_77557_a + valueOf (Ljava/lang/String;)Lacj; valueOf + values ()[Lacj; values +ack net/minecraft/enchantment/EnchantmentHelper + a field_77522_a + b field_77520_b + c field_77521_c + d field_151388_d + e field_151389_e + a (ILzx;)I func_77506_a + a (I[Lzx;)I func_77511_a + a (Laci;Lpr;)Lzx; func_92099_a + a (Lack$c;Lzx;)V func_77518_a + a (Lack$c;[Lzx;)V func_77516_a + a (Ljava/util/Map;Lzx;)V func_82782_a + a (Ljava/util/Random;IILzx;)I func_77514_a + a (Ljava/util/Random;Lzx;I)Lzx; func_77504_a + a (Lpk;)I func_180319_a + a (Lpr;)I func_77501_a + a (Lpr;Lpk;)V func_151384_a + a (Lzx;)Ljava/util/Map; func_82781_a + a (Lzx;Lpw;)F func_152377_a + a ([Lzx;Low;)I func_77508_a + b (ILzx;)Ljava/util/Map; func_77505_b + b (Ljava/util/Random;Lzx;I)Ljava/util/List; func_77513_b + b (Lpk;)I func_180318_b + b (Lpr;)I func_90036_a + b (Lpr;Lpk;)V func_151385_b + c (Lpr;)I func_77509_b + e (Lpr;)Z func_77502_d + f (Lpr;)I func_77517_e + g (Lpr;)I func_151386_g + h (Lpr;)I func_151387_h + i (Lpr;)I func_77519_f + j (Lpr;)Z func_77510_g +ack$1 net/minecraft/enchantment/EnchantmentHelper$1 +ack$a net/minecraft/enchantment/EnchantmentHelper$DamageIterator + a field_151366_a + b field_151365_b + a (Laci;I)V func_77493_a +ack$b net/minecraft/enchantment/EnchantmentHelper$HurtIterator + a field_151364_a + b field_151363_b + a (Laci;I)V func_77493_a +ack$c net/minecraft/enchantment/EnchantmentHelper$IModifier + a (Laci;I)V func_77493_a +ack$d net/minecraft/enchantment/EnchantmentHelper$ModifierLiving + a field_77495_a + b field_77494_b + a (Laci;I)V func_77493_a +ack$e net/minecraft/enchantment/EnchantmentHelper$ModifierDamage + a field_77497_a + b field_77496_b + a (Laci;I)V func_77493_a +acl net/minecraft/enchantment/EnchantmentData + b field_76302_b + c field_76303_c +acm net/minecraft/enchantment/EnchantmentFireAspect + a (I)I func_77321_a + b ()I func_77325_b + b (I)I func_77317_b +acn net/minecraft/enchantment/EnchantmentFishingSpeed + a (I)I func_77321_a + b ()I func_77325_b + b (I)I func_77317_b +aco net/minecraft/enchantment/EnchantmentKnockback + a (I)I func_77321_a + b ()I func_77325_b + b (I)I func_77317_b +acp net/minecraft/enchantment/EnchantmentLootBonus + a (I)I func_77321_a + a (Laci;)Z func_77326_a + b ()I func_77325_b + b (I)I func_77317_b +acq net/minecraft/enchantment/EnchantmentOxygen + a (I)I func_77321_a + b ()I func_77325_b + b (I)I func_77317_b +acr net/minecraft/enchantment/EnchantmentProtection + E field_77354_A + F field_77355_B + G field_77357_C + H field_77353_D + a field_77356_a + a ()Ljava/lang/String; func_77320_a + a (I)I func_77321_a + a (ILow;)I func_77318_a + a (Laci;)Z func_77326_a + a (Lpk;D)D func_92092_a + a (Lpk;I)I func_92093_a + b ()I func_77325_b + b (I)I func_77317_b +acs net/minecraft/enchantment/EnchantmentThorns + a (I)I func_77321_a + a (ILjava/util/Random;)Z func_92094_a + a (Lzx;)Z func_92089_a + b ()I func_77325_b + b (I)I func_77317_b + b (ILjava/util/Random;)I func_92095_b + b (Lpr;Lpk;I)V func_151367_b +act net/minecraft/enchantment/EnchantmentUntouching + a (I)I func_77321_a + a (Laci;)Z func_77326_a + a (Lzx;)Z func_92089_a + b ()I func_77325_b + b (I)I func_77317_b +acu net/minecraft/enchantment/EnchantmentWaterWalker + a (I)I func_77321_a + b ()I func_77325_b + b (I)I func_77317_b +acv net/minecraft/enchantment/EnchantmentWaterWorker + a (I)I func_77321_a + b ()I func_77325_b + b (I)I func_77317_b +acy net/minecraft/entity/IMerchant + a (Lacz;)V func_70933_a + a (Lada;)V func_70930_a + a_ (Lwn;)V func_70932_a_ + a_ (Lzx;)V func_110297_a_ + b_ (Lwn;)Lada; func_70934_b + f_ ()Leu; func_145748_c_ + v_ ()Lwn; func_70931_l_ +acz net/minecraft/village/MerchantRecipe + a field_77403_a + b field_77401_b + c field_77402_c + d field_77400_d + e field_82786_e + f field_180323_f + a ()Lzx; func_77394_a + a (I)V func_82783_a + a (Ldn;)V func_77390_a + b ()Lzx; func_77396_b + c ()Z func_77398_c + d ()Lzx; func_77397_d + e ()I func_180321_e + f ()I func_180320_f + g ()V func_77399_f + h ()Z func_82784_g + i ()V func_82785_h + j ()Z func_180322_j + k ()Ldn; func_77395_g +ad net/minecraft/command/CommandExecuteAt + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +ad$1 net/minecraft/command/CommandExecuteAt$1 + a field_174804_a + b field_174802_b + c field_174803_c + d field_174800_d + e field_174801_e + f field_174798_f + g field_174799_g + a (ILjava/lang/String;)Z func_70003_b + a (Leu;)V func_145747_a + a (Ln$a;I)V func_174794_a + c ()Lcj; func_180425_c + d ()Laui; func_174791_d + e ()Ladm; func_130014_f_ + e_ ()Ljava/lang/String; func_70005_c_ + f ()Lpk; func_174793_f + f_ ()Leu; func_145748_c_ + u_ ()Z func_174792_t_ +ada net/minecraft/village/MerchantRecipeList + a ()Ldn; func_77202_a + a (Ldn;)V func_77201_a + a (Lem;)V func_151391_a + a (Lzx;Lzx;)Z func_181078_a + a (Lzx;Lzx;I)Lacz; func_77203_a + b (Lem;)Lada; func_151390_b +adc net/minecraft/command/server/CommandBlockLogic + a field_145766_a + b field_145764_b + c field_145765_c + d field_145762_d + e field_145763_e + f field_145761_f + g field_175575_g + a (ILjava/lang/String;)Z func_70003_b + a (Ladm;)V func_145755_a + a (Ldn;)V func_145758_a + a (Leu;)V func_145747_a + a (Lio/netty/buffer/ByteBuf;)V func_145757_a + a (Ljava/lang/String;)V func_145752_a + a (Ln$a;I)V func_174794_a + a (Lwn;)Z func_175574_a + a (Z)V func_175573_a + b (Ldn;)V func_145759_b + b (Leu;)V func_145750_b + b (Ljava/lang/String;)V func_145754_b + e_ ()Ljava/lang/String; func_70005_c_ + f_ ()Leu; func_145748_c_ + h ()V func_145756_e + i ()I func_145751_f + j ()I func_145760_g + k ()Leu; func_145749_h + l ()Ljava/lang/String; func_145753_i + m ()Z func_175571_m + n ()Ln; func_175572_n + u_ ()Z func_174792_t_ +adc$1 net/minecraft/command/server/CommandBlockLogic$1 + a field_180325_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +adc$2 net/minecraft/command/server/CommandBlockLogic$2 + a field_180327_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +add net/minecraft/tileentity/MobSpawnerBaseLogic + a field_98286_b + b field_98288_a + c field_98285_e + d field_98282_f + e field_98287_c + f field_98284_d + g field_98283_g + h field_98293_h + i field_98294_i + j field_98291_j + k field_98292_k + l field_98289_l + m field_98290_m + a ()Ladm; func_98271_a + a (I)V func_98267_a + a (Ladd$a;)V func_98277_a + a (Ladm;)Lpk; func_180612_a + a (Ldn;)V func_98270_a + a (Ljava/lang/String;)V func_98272_a + a (Lpk;Z)Lpk; func_180613_a + b ()Lcj; func_177221_b + b (I)Z func_98268_b + b (Ldn;)V func_98280_b + c ()V func_98278_g + d ()D func_177222_d + e ()D func_177223_e + f ()Ljava/lang/String; func_98276_e + g ()Z func_98279_f + h ()V func_98273_j + i ()Ladd$a; func_98269_i +add$a net/minecraft/tileentity/MobSpawnerBaseLogic$WeightedRandomMinecart + b field_98221_d + c field_98222_b + d field_98223_c + a ()Ldn; func_98220_a + a (Ladd$a;)Ljava/lang/String; access$000 + b (Ladd$a;)Ldn; access$100 +ade net/minecraft/block/BlockEventData + a field_180329_a + b field_151344_d + c field_151345_e + d field_151343_f + a ()Lcj; func_180328_a + b ()I func_151339_d + c ()I func_151338_e + d ()Lafh; func_151337_f + equals (Ljava/lang/Object;)Z equals + toString ()Ljava/lang/String; toString +adf net/minecraft/util/EnumWorldBlockLayer + a SOLID + b CUTOUT_MIPPED + c CUTOUT + d TRANSLUCENT + e field_180338_e + f $VALUES + toString ()Ljava/lang/String; toString + values ()[Ladf; values +adg net/minecraft/world/ChunkCoordIntPair + a field_77276_a + b field_77275_b + a ()I func_77273_a + a (I)Lcj; func_180619_a + a (II)J func_77272_a + a (III)Lcj; func_180331_a + b ()I func_77274_b + c ()I func_180334_c + d ()I func_180333_d + e ()I func_180332_e + equals (Ljava/lang/Object;)Z equals + f ()I func_180330_f + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +adi net/minecraft/world/Explosion + a field_77286_a + b field_82755_b + c field_77290_i + d field_77287_j + e field_77284_b + f field_77285_c + g field_77282_d + h field_77283_e + i field_77280_f + j field_77281_g + k field_77288_k + a ()V func_77278_a + a (Z)V func_77279_a + b ()Ljava/util/Map; func_77277_b + c ()Lpr; func_94613_c + d ()V func_180342_d + e ()Ljava/util/List; func_180343_e +adj net/minecraft/world/ColorizerFoliage + a field_77471_a + a ()I func_77466_a + a (DD)I func_77470_a + a ([I)V func_77467_a + b ()I func_77469_b + c ()I func_77468_c +adk net/minecraft/world/GameRules + a field_82771_a + a ()Ldn; func_82770_a + a (Ldn;)V func_82768_a + a (Ljava/lang/String;)Ljava/lang/String; func_82767_a + a (Ljava/lang/String;Ladk$b;)Z func_180264_a + a (Ljava/lang/String;Ljava/lang/String;)V func_82764_b + a (Ljava/lang/String;Ljava/lang/String;Ladk$b;)V func_180262_a + b ()[Ljava/lang/String; func_82763_b + b (Ljava/lang/String;)Z func_82766_b + c (Ljava/lang/String;)I func_180263_c + e (Ljava/lang/String;)Z func_82765_e +adk$a net/minecraft/world/GameRules$Value + a field_82762_a + b field_82760_b + c field_82761_c + d field_82759_d + e field_180256_e + a ()Ljava/lang/String; func_82756_a + a (Ljava/lang/String;)V func_82757_a + b ()Z func_82758_b + c ()I func_180255_c + e ()Ladk$b; func_180254_e +adk$b net/minecraft/world/GameRules$ValueType + a ANY_VALUE + b BOOLEAN_VALUE + c NUMERICAL_VALUE + d $VALUES + values ()[Ladk$b; values +adl net/minecraft/world/ColorizerGrass + a field_77481_a + a (DD)I func_77480_a + a ([I)V func_77479_a +adm net/minecraft/world/World + A field_72982_D + B field_72984_F + C field_96442_D + D field_72995_K + E field_72993_I + F field_72985_G + G field_72992_H + H field_72994_J + I field_73008_k + J field_73016_r + K field_83016_L + L field_72990_M + M field_147481_N + N field_175728_M + a field_181546_a + b field_147484_a + c field_147483_b + d field_73001_c + e field_72999_e + f field_72996_f + g field_72997_g + h field_147482_g + i field_175730_i + j field_73010_i + k field_73007_j + l field_175729_l + m field_73005_l + n field_73006_m + o field_73003_n + p field_73004_o + q field_73018_p + r field_73017_q + s field_73012_v + t field_73011_w + u field_73021_x + v field_73020_y + w field_73019_z + x field_72986_A + y field_72987_B + z field_72988_C + A ()Ljava/lang/String; func_72827_u + A (Lcj;)I func_175687_A + B ()V func_72966_v + B (Lcj;)V func_175652_B + C ()V func_72947_a + C (Lcj;)Z func_175727_C + D ()V func_72903_x + D (Lcj;)Z func_180502_D + E ()Ljava/util/List; func_72910_y + E (Lcj;)Lok; func_175649_E + F ()I func_181545_F + F (Lcj;)Z func_175696_F + G ()Ladr; func_175624_G + H ()V func_72882_A + I ()V func_72906_B + J ()J func_72905_C + K ()J func_82737_E + L ()J func_72820_D + M ()Lcj; func_175694_M + N ()Lamv; func_72863_F + O ()Latp; func_72860_G + P ()Lato; func_72912_H + Q ()Ladk; func_82736_K + R ()Z func_72911_I + S ()Z func_72896_J + T ()Laua; func_175693_T + U ()I func_72800_K + V ()I func_72940_L + W ()Z func_72806_N + X ()D func_72919_O + Y ()Ljava/util/Calendar; func_83015_S + Z ()Lauo; func_96441_U + a (DDDD)Lwn; func_72977_a + a (DDDDDDLdn;)V func_92088_a + a (DDDLjava/lang/String;FF)V func_72908_a + a (DDDLjava/lang/String;FFZ)V func_72980_b + a (F)I func_72967_a + a (I)Lpk; func_73045_a + a (II)Lamy; func_72964_e + a (III)Ljava/util/Random; func_72843_D + a (IIII)V func_72975_g + a (IIIIIIZ)Z func_175663_a + a (IILamy;)V func_147467_a + a (IIZ)Z func_175680_a + a (ILcj;I)V func_175669_a + a (IZDDDDDD[I)V func_175720_a + a (J)V func_82738_a + a (Lado;)V func_72954_a + a (Ladp;)V func_72963_a + a (Ladq;Lcj;)Z func_175683_a + a (Lads;Lcj;)I func_175705_a + a (Lads;Lcj;I)V func_175653_a + a (Lafh;Lcj;Ljava/util/Random;)V func_175637_a + a (Lafh;Lcj;ZLcq;Lpk;Lzx;)Z func_175716_a + a (Lakw;)Z func_175700_a + a (Lams;Lpk;)Z func_175673_a + a (Lamy;Z)Ljava/util/List; func_72920_a + a (Laqe;)Z func_175711_a + a (Laqe;Z)Ljava/util/List; func_175712_a + a (Laug;)Ljava/util/List; func_147461_a + a (Laug;Larm;)Z func_72875_a + a (Laug;Larm;Lpk;)Z func_72918_a + a (Laug;Lpk;)Z func_72917_a + a (Laui;Laug;)F func_72842_a + a (Laui;Laui;)Lauh; func_72933_a + a (Laui;Laui;Z)Lauh; func_72901_a + a (Laui;Laui;ZZZ)Lauh; func_147447_a + a (Lb;)Lc; func_72914_a + a (Lcj;)Z func_175701_a + a (Lcj;I)Z func_175697_a + a (Lcj;IZ)Z func_175648_a + a (Lcj;Lads;)I func_175638_a + a (Lcj;Lafh;)Z func_175691_a + a (Lcj;Lafh;I)V func_175684_a + a (Lcj;Lafh;II)V func_175654_a + a (Lcj;Lafh;Lcq;)V func_175695_a + a (Lcj;Lakw;)V func_175690_a + a (Lcj;Lalz;)Z func_175656_a + a (Lcj;Lalz;I)Z func_180501_a + a (Lcj;Lcj;)Z func_175707_a + a (Lcj;Lcj;Z)Z func_175706_a + a (Lcj;Lcq;)I func_175627_a + a (Lcj;Ljava/lang/String;)V func_175717_a + a (Lcj;Z)Z func_175668_a + a (Lcy;DDDDDD[I)V func_175688_a + a (Lcy;ZDDDDDD[I)V func_175682_a + a (Ljava/lang/Class;)I func_72907_a + a (Ljava/lang/Class;Laug;)Ljava/util/List; func_72872_a + a (Ljava/lang/Class;Laug;Lcom/google/common/base/Predicate;)Ljava/util/List; func_175647_a + a (Ljava/lang/Class;Laug;Lpk;)Lpk; func_72857_a + a (Ljava/lang/Class;Lcom/google/common/base/Predicate;)Ljava/util/List; func_175644_a + a (Ljava/lang/Class;Ljava/lang/String;)Late; func_72943_a + a (Ljava/lang/String;)Lwn; func_72924_a + a (Ljava/lang/String;Late;)V func_72823_a + a (Ljava/lang/String;Lcj;)Lcj; func_180499_a + a (Ljava/util/Collection;)V func_147448_a + a (Lpk;)V func_72923_a + a (Lpk;B)V func_72960_a + a (Lpk;D)Lwn; func_72890_a + a (Lpk;DDDFZ)Ladi; func_72876_a + a (Lpk;DDDFZZ)Ladi; func_72885_a + a (Lpk;F)Laui; func_72833_a + a (Lpk;Laug;)Ljava/util/List; func_72945_a + a (Lpk;Laug;Lcom/google/common/base/Predicate;)Ljava/util/List; func_175674_a + a (Lpk;Ljava/lang/String;FF)V func_72956_a + a (Lpk;Z)V func_72866_a + a (Lwn;ILcj;I)V func_180498_a + a (Lwn;Lcj;)Z func_175660_a + a (Lwn;Lcj;Lcq;)Z func_175719_a + a (Lwn;Ljava/lang/String;FF)V func_85173_a + a (Z)Z func_72955_a + a (ZZ)V func_72891_a + aa ()Loj; func_175659_aa + ab ()I func_175657_ab + ac ()I func_175658_ac + ad ()Z func_175686_ad + ae ()Lth; func_175714_ae + af ()Lams; func_175723_af + b ()Ladm; func_175643_b + b (DDDD)Z func_175636_b + b (F)F func_72971_b + b (I)V func_181544_b + b (II)I func_82734_g + b (IIIIII)V func_147458_c + b (ILcj;I)V func_175718_b + b (J)V func_72877_b + b (Lado;)V func_72848_b + b (Lads;Lcj;)I func_175642_b + b (Lakw;)V func_147457_a + b (Laqe;Z)Z func_175639_b + b (Laug;)Z func_72855_b + b (Laug;Larm;)Z func_72830_b + b (Lcj;)Lady; func_180494_b + b (Lcj;I)I func_175626_b + b (Lcj;Lafh;)V func_175722_b + b (Lcj;Lafh;II)V func_180497_b + b (Lcj;Lakw;)V func_175646_b + b (Lcj;Lcj;)V func_175704_b + b (Lcj;Lcq;)Z func_175709_b + b (Lcj;Z)Z func_175655_b + b (Ljava/lang/Class;Lcom/google/common/base/Predicate;)Ljava/util/List; func_175661_b + b (Ljava/lang/String;)I func_72841_b + b (Ljava/util/Collection;)V func_175650_b + b (Ljava/util/UUID;)Lwn; func_152378_a + b (Lpk;)V func_72847_b + b (Lpk;Laug;)Ljava/util/List; func_72839_b + c ()V func_72835_b + c (F)F func_72826_c + c (I)V func_175692_b + c (II)Z func_72916_c + c (ILcj;I)V func_175715_c + c (Lads;Lcj;)Z func_180500_c + c (Laug;)Z func_72829_c + c (Lcj;)Lafh; func_175703_c + c (Lcj;Lafh;)V func_175685_c + c (Lcj;Lafh;II)V func_175641_c + c (Lcj;Lcq;)I func_175651_c + c (Lcj;Z)I func_175721_c + c (Ljava/util/Collection;)V func_175681_c + c (Lpk;)Z func_72942_c + d ()V func_72854_c + d (F)F func_72929_e + d (I)V func_175702_c + d (Laug;)Z func_72953_d + d (Lcj;)Z func_175623_d + d (Lcj;Lafh;)V func_180496_d + d (Lcj;Z)Z func_175677_d + d (Lpk;)Z func_72838_d + e (F)Laui; func_72824_f + e (Laug;)Z func_147470_e + e (Lcj;)Z func_175667_e + e (Lcj;Lafh;)V func_175666_e + e (Lcj;Z)Z func_175670_e + e (Lpk;)V func_72900_e + f (F)Laui; func_72948_g + f (Lcj;)Lamy; func_175726_f + f (Lcj;Z)Z func_175708_f + f (Lpk;)V func_72973_f + g ()V func_72974_f + g (F)F func_72880_h + g (Lcj;)Z func_175698_g + g (Lpk;)V func_72870_g + h ()V func_147456_g + h (F)F func_72819_i + h (Lcj;)V func_175689_h + h (Lpk;)V func_72897_h + i ()V func_72939_s + i (F)V func_147442_i + i (Lcj;)Z func_175678_i + j (F)F func_72867_j + j (Lcj;)Z func_175710_j + k ()Lamv; func_72970_h + k (F)V func_72894_k + k (Lcj;)I func_175699_k + l (Lcj;)I func_175671_l + m (Lcj;)Lcj; func_175645_m + n (Lcj;)V func_175679_n + o (Lcj;)F func_175724_o + p ()V func_72979_l + p (Lcj;)Lalz; func_180495_p + q ()I func_152379_p + q (Lcj;)Lcj; func_175725_q + r (Lcj;)Lcj; func_175672_r + s (Lcj;)Lakw; func_175625_s + t (Lcj;)V func_175713_t + u (Lcj;)Z func_175665_u + v ()Laec; func_72959_q + v (Lcj;)Z func_175675_v + w ()Z func_72935_r + w (Lcj;)Z func_175662_w + x ()I func_72853_d + x (Lcj;)Z func_175664_x + y ()F func_130001_d + y (Lcj;)I func_175676_y + z ()Ljava/lang/String; func_72981_t + z (Lcj;)Z func_175640_z +adm$1 net/minecraft/world/World$1 + a field_180253_a + b field_77485_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +adm$2 net/minecraft/world/World$2 + a field_151300_a + b field_77405_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +adm$3 net/minecraft/world/World$3 + a field_77440_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +adm$4 net/minecraft/world/World$4 + a field_151308_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +adn net/minecraft/world/MinecraftException +ado net/minecraft/world/IWorldAccess + a (IIIIII)V func_147585_a + a (ILcj;I)V func_180440_a + a (IZDDDDDD[I)V func_180442_a + a (Lcj;)V func_174960_a + a (Ljava/lang/String;DDDFF)V func_72704_a + a (Ljava/lang/String;Lcj;)V func_174961_a + a (Lpk;)V func_72703_a + a (Lwn;ILcj;I)V func_180439_a + a (Lwn;Ljava/lang/String;DDDFF)V func_85102_a + b (ILcj;I)V func_180441_b + b (Lcj;)V func_174959_b + b (Lpk;)V func_72709_b +adp net/minecraft/world/WorldSettings + a field_77174_a + b field_77172_b + c field_77173_c + d field_77170_d + e field_77171_e + f field_77168_f + g field_77169_g + h field_82751_h + a ()Ladp; func_77159_a + a (I)Ladp$a; func_77161_a + a (Ljava/lang/String;)Ladp; func_82750_a + b ()Ladp; func_77166_b + c ()Z func_77167_c + d ()J func_77160_d + e ()Ladp$a; func_77162_e + f ()Z func_77158_f + g ()Z func_77164_g + h ()Ladr; func_77165_h + i ()Z func_77163_i + j ()Ljava/lang/String; func_82749_j +adp$a net/minecraft/world/WorldSettings$GameType + a NOT_SET + b SURVIVAL + c CREATIVE + d ADVENTURE + e SPECTATOR + f field_77154_e + g field_77151_f + h $VALUES + a ()I func_77148_a + a (I)Ladp$a; func_77146_a + a (Ljava/lang/String;)Ladp$a; func_77142_a + a (Lwl;)V func_77147_a + b ()Ljava/lang/String; func_77149_b + c ()Z func_82752_c + d ()Z func_77145_d + e ()Z func_77144_e + values ()[Ladp$a; values +adq net/minecraft/world/IBlockAccess + G ()Ladr; func_175624_G + W ()Z func_72806_N + a (Lcj;Lcq;)I func_175627_a + b (Lcj;)Lady; func_180494_b + b (Lcj;I)I func_175626_b + d (Lcj;)Z func_175623_d + p (Lcj;)Lalz; func_180495_p + s (Lcj;)Lakw; func_175625_s +adr net/minecraft/world/WorldType + a field_77139_a + b field_77137_b + c field_77138_c + d field_77135_d + e field_151360_e + f field_180271_f + g field_180272_g + h field_77136_e + i field_82748_f + j field_77133_f + k field_77134_g + l field_77140_h + m field_77141_i + n field_151361_l + a ()Ljava/lang/String; func_77127_a + a (I)Ladr; func_77132_a + a (Ljava/lang/String;)Ladr; func_77130_a + a (Z)Ladr; func_77124_a + b ()Ljava/lang/String; func_77128_b + c ()Ljava/lang/String; func_151359_c + d ()I func_77131_c + e ()Z func_77126_d + f ()Z func_77125_e + g ()I func_82747_f + h ()Z func_151357_h + i ()Ladr; func_77129_f + j ()Ladr; func_151358_j +ads net/minecraft/world/EnumSkyBlock + a SKY + b BLOCK + c field_77198_c + d $VALUES + valueOf (Ljava/lang/String;)Lads; valueOf + values ()[Lads; values +adt net/minecraft/world/SpawnerAnimals + a field_180268_a + b field_77193_b + a (Ladm;II)Lcj; func_180621_a + a (Ladm;Lady;IIIILjava/util/Random;)V func_77191_a + a (Lle;ZZZ)I func_77192_a + a (Lps$a;Ladm;Lcj;)Z func_180267_a +adu net/minecraft/world/Teleporter + a field_85192_a + b field_77187_a + c field_85191_c + d field_85190_d + a (J)V func_85189_a + a (Lpk;)Z func_85188_a + a (Lpk;F)V func_180266_a + b (Lpk;F)Z func_180620_b +adu$a net/minecraft/world/Teleporter$PortalPosition + c field_85087_d + d field_85088_e +adv net/minecraft/world/ChunkCache + a field_72818_a + b field_72816_b + c field_72817_c + d field_72814_d + e field_72815_e + G ()Ladr; func_175624_G + W ()Z func_72806_N + a (Lads;Lcj;)I func_175629_a + a (Lcj;Lcq;)I func_175627_a + b (Lads;Lcj;)I func_175628_b + b (Lcj;)Lady; func_180494_b + b (Lcj;I)I func_175626_b + d (Lcj;)Z func_175623_d + p (Lcj;)Lalz; func_180495_p + s (Lcj;)Lakw; func_175625_s +adw net/minecraft/world/NextTickListEntry + a field_180282_a + b field_77180_e + c field_82754_f + d field_77177_f + e field_151352_g + f field_77178_g + a ()Lafh; func_151351_a + a (I)V func_82753_a + a (J)Ladw; func_77176_a + a (Ladw;)I compareTo + compareTo (Ljava/lang/Object;)I compareTo + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +adx net/minecraft/world/biome/BiomeGenBeach +ady net/minecraft/world/biome/BiomeGenBase + A field_76777_m + B field_76774_n + C field_76775_o + D field_76789_p + E field_76788_q + F field_76787_r + G field_76786_s + H field_76785_t + I field_76784_u + J field_76783_v + K field_76782_w + L field_76792_x + M field_150574_L + N field_150575_M + O field_150576_N + P field_150577_O + Q field_150583_P + R field_150582_Q + S field_150585_R + T field_150584_S + U field_150579_T + V field_150578_U + W field_150581_V + X field_150580_W + Y field_150588_X + Z field_150587_Y + a field_150596_a + aA field_76757_N + aB field_76758_O + aC field_76763_Q + aD field_150586_aC + aE field_76773_a + aa field_150589_Z + ab field_150607_aa + ac field_150608_ab + ad field_180279_ad + ae field_150605_ac + af field_180281_af + ag field_180280_ag + ah field_76791_y + ai field_76790_z + aj field_150609_ah + ak field_76752_A + al field_76753_B + am field_76754_C + an field_76748_D + ao field_76749_E + ap field_76750_F + aq field_76751_G + ar field_76759_H + as field_76760_I + at field_76761_J + au field_76762_K + av field_76755_L + aw field_82914_M + ax field_76766_R + ay field_76765_S + az field_76756_M + b field_150594_b + c field_150595_c + d field_150592_d + e field_150593_e + f field_150590_f + g field_150591_g + h field_150602_h + i field_150603_i + j field_150600_j + k field_150601_k + l field_150598_l + m field_150599_m + n field_150597_n + o field_180278_o + p field_76771_b + q field_76772_c + r field_76769_d + s field_76770_e + t field_76767_f + u field_76768_g + v field_76780_h + w field_76781_i + x field_76778_j + y field_76779_k + z field_76776_l + a ()Laeb; func_76729_a + a (F)I func_76731_a + a (FF)Lady; func_76732_a + a (I)Lady; func_76733_a + a (ILady;)Lady; func_180276_a + a (IZ)Lady; func_150557_a + a (Ladm;Ljava/util/Random;Lans;IID)V func_180622_a + a (Ladm;Ljava/util/Random;Lcj;)V func_180624_a + a (Lady$a;)Lady; func_150570_a + a (Lady;)Z func_150569_a + a (Lcj;)F func_180626_a + a (Ljava/lang/String;)Lady; func_76735_a + a (Ljava/util/Random;)Laoh; func_150567_a + a (Ljava/util/Random;Lcj;)Lagw$a; func_180623_a + a (Lpt;)Ljava/util/List; func_76747_a + b ()Lady; func_76745_m + b (I)Lady; func_76739_b + b (Ladm;Ljava/util/Random;Lans;IID)V func_180628_b + b (Lcj;)I func_180627_b + b (Ljava/util/Random;)Laot; func_76730_b + c ()Lady; func_76742_b + c (I)Lady; func_150563_c + c (Lcj;)I func_180625_c + d ()Z func_76746_c + d (I)Lady; func_180277_d + e ()Z func_76738_d + e (I)Lady; func_150568_d + f ()Z func_76736_e + g ()F func_76741_f + h ()I func_76744_g + i ()F func_76727_i + j ()Z func_150559_j + k ()Lady; func_150566_k + l ()Ljava/lang/Class; func_150562_l + m ()Lady$b; func_150561_m + n ()[Lady; func_150565_n +ady$1 net/minecraft/world/biome/BiomeGenBase$1 + a field_180275_a +ady$a net/minecraft/world/biome/BiomeGenBase$Height + a field_150777_a + b field_150776_b + a ()Lady$a; func_150775_a +ady$b net/minecraft/world/biome/BiomeGenBase$TempCategory + a OCEAN + b COLD + c MEDIUM + d WARM + e $VALUES + values ()[Lady$b; values +ady$c net/minecraft/world/biome/BiomeGenBase$SpawnListEntry + b field_76300_b + c field_76301_c + d field_76299_d + toString ()Ljava/lang/String; toString +adz net/minecraft/world/biome/BiomeCache + a field_76844_a + b field_76842_b + c field_76843_c + d field_76841_d + a ()V func_76838_a + a (II)Ladz$a; func_76840_a + a (IILady;)Lady; func_180284_a + a (Ladz;)Laec; access$000 + c (II)[Lady; func_76839_e +adz$a net/minecraft/world/biome/BiomeCache$Block + a field_76890_b + b field_76891_c + c field_76888_d + d field_76889_e + e field_76886_f + f field_76887_g + a (II)Lady; func_76885_a +ae net/minecraft/command/CommandXP + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + d ()[Ljava/lang/String; func_71542_c +aea net/minecraft/world/biome/BiomeColorHelper + a field_180291_a + b field_180289_b + c field_180290_c + a (Ladq;Lcj;)I func_180286_a + a (Ladq;Lcj;Laea$a;)I func_180285_a + b (Ladq;Lcj;)I func_180287_b + c (Ladq;Lcj;)I func_180288_c +aea$1 net/minecraft/world/biome/BiomeColorHelper$1 + a (Lady;Lcj;)I func_180283_a +aea$2 net/minecraft/world/biome/BiomeColorHelper$2 + a (Lady;Lcj;)I func_180283_a +aea$3 net/minecraft/world/biome/BiomeColorHelper$3 + a (Lady;Lcj;)I func_180283_a +aea$a net/minecraft/world/biome/BiomeColorHelper$ColorResolver + a (Lady;Lcj;)I func_180283_a +aeb net/minecraft/world/biome/BiomeDecorator + A field_76832_z + B field_76802_A + C field_76803_B + D field_76804_C + E field_76798_D + F field_76799_E + G field_76800_F + H field_76801_G + I field_76805_H + J field_76806_I + K field_76807_J + L field_76808_K + a field_76815_a + b field_76813_b + c field_180294_c + d field_180293_d + e field_76809_f + f field_76810_g + g field_76822_h + h field_76823_i + i field_76820_j + j field_180296_j + k field_180297_k + l field_180295_l + m field_76821_k + n field_76818_l + o field_76819_m + p field_180299_p + q field_180298_q + r field_76831_p + s field_150514_p + t field_76828_s + u field_76827_t + v field_76826_u + w field_76825_v + x field_76824_w + y field_76834_x + z field_76833_y + a ()V func_76797_b + a (ILaot;II)V func_76795_a + a (Ladm;Ljava/util/Random;Lady;Lcj;)V func_180292_a + a (Lady;)V func_150513_a + b (ILaot;II)V func_76793_b +aec net/minecraft/world/biome/WorldChunkManager + b field_76944_d + c field_76945_e + d field_76942_f + e field_76943_g + f field_180301_f + a ()Ljava/util/List; func_76932_a + a (FI)F func_76939_a + a (IIILjava/util/List;)Z func_76940_a + a (IIILjava/util/List;Ljava/util/Random;)Lcj; func_180630_a + a (Lcj;)Lady; func_180631_a + a (Lcj;Lady;)Lady; func_180300_a + a ([FIIII)[F func_76936_a + a ([Lady;IIII)[Lady; func_76937_a + a ([Lady;IIIIZ)[Lady; func_76931_a + b ()V func_76938_b + b ([Lady;IIII)[Lady; func_76933_b +aed net/minecraft/world/biome/BiomeGenDesert + a (Ladm;Ljava/util/Random;Lcj;)V func_180624_a +aee net/minecraft/world/biome/BiomeGenHills + aD field_82915_S + aE field_150634_aD + aF field_150635_aE + aG field_150636_aF + aH field_150637_aG + aI field_150638_aH + a (Ladm;Ljava/util/Random;Lans;IID)V func_180622_a + a (Ladm;Ljava/util/Random;Lcj;)V func_180624_a + a (Ljava/util/Random;)Laoh; func_150567_a + b (Lady;)Laee; func_150633_b + d (I)Lady; func_180277_d +aef net/minecraft/world/biome/WorldChunkManagerHell + b field_76947_d + c field_76946_f + a (IIILjava/util/List;)Z func_76940_a + a (IIILjava/util/List;Ljava/util/Random;)Lcj; func_180630_a + a (Lcj;)Lady; func_180631_a + a ([FIIII)[F func_76936_a + a ([Lady;IIII)[Lady; func_76937_a + a ([Lady;IIIIZ)[Lady; func_76931_a + b ([Lady;IIII)[Lady; func_76933_b +aeg net/minecraft/world/biome/BiomeGenForest + aD field_150629_aC + aE field_150630_aD + aF field_150631_aE + aG field_150632_aF + a (IZ)Lady; func_150557_a + a (Ladm;Ljava/util/Random;Lcj;)V func_180624_a + a (Ljava/util/Random;)Laoh; func_150567_a + a (Ljava/util/Random;Lcj;)Lagw$a; func_180623_a + b (Lcj;)I func_180627_b + d (I)Lady; func_180277_d +aeg$1 net/minecraft/world/biome/BiomeGenForest$2 + aD field_150612_aC + a (Ljava/util/Random;)Laoh; func_150567_a +aeg$2 net/minecraft/world/biome/BiomeGenForest$1 + aD field_150613_aC + a (Ladm;Ljava/util/Random;Lcj;)V func_180624_a +aeh net/minecraft/world/biome/BiomeGenHell +aei net/minecraft/world/biome/BiomeGenSnow + aD field_150615_aC + aE field_150616_aD + aF field_150617_aE + a (Ladm;Ljava/util/Random;Lcj;)V func_180624_a + a (Ljava/util/Random;)Laoh; func_150567_a + d (I)Lady; func_180277_d +aej net/minecraft/world/biome/BiomeGenJungle + aD field_150614_aC + aE field_181620_aE + aF field_181621_aF + aG field_181622_aG + a (Ladm;Ljava/util/Random;Lcj;)V func_180624_a + a (Ljava/util/Random;)Laoh; func_150567_a + b (Ljava/util/Random;)Laot; func_76730_b +aek net/minecraft/world/biome/BiomeGenMesa + aD field_150621_aC + aE field_150622_aD + aF field_150623_aE + aG field_150624_aF + aH field_150625_aG + aI field_150626_aH + aJ field_150620_aI + a (III)Lalz; func_180629_a + a (J)V func_150619_a + a (Ladm;Ljava/util/Random;Lans;IID)V func_180622_a + a (Ladm;Ljava/util/Random;Lcj;)V func_180624_a + a (Ljava/util/Random;)Laoh; func_150567_a + b (Lcj;)I func_180627_b + c (Lcj;)I func_180625_c + d (I)Lady; func_180277_d +ael net/minecraft/world/biome/BiomeGenMushroomIsland +aem net/minecraft/world/biome/BiomeGenMutated + aE field_150611_aD + a (Ladm;Ljava/util/Random;Lans;IID)V func_180622_a + a (Ladm;Ljava/util/Random;Lcj;)V func_180624_a + a (Lady;)Z func_150569_a + a (Ljava/util/Random;)Laoh; func_150567_a + b (Lcj;)I func_180627_b + c (Lcj;)I func_180625_c + g ()F func_76741_f + l ()Ljava/lang/Class; func_150562_l + m ()Lady$b; func_150561_m +aen net/minecraft/world/biome/BiomeGenOcean + a (Ladm;Ljava/util/Random;Lans;IID)V func_180622_a + m ()Lady$b; func_150561_m +aeo net/minecraft/world/biome/BiomeGenPlains + aD field_150628_aC + a (Ladm;Ljava/util/Random;Lcj;)V func_180624_a + a (Ljava/util/Random;Lcj;)Lagw$a; func_180623_a + d (I)Lady; func_180277_d +aeq net/minecraft/world/biome/BiomeGenRiver +aer net/minecraft/world/biome/BiomeGenSavanna + aD field_150627_aC + a (Ladm;Ljava/util/Random;Lcj;)V func_180624_a + a (Ljava/util/Random;)Laoh; func_150567_a + d (I)Lady; func_180277_d +aer$a net/minecraft/world/biome/BiomeGenSavanna$Mutated + a (Ladm;Ljava/util/Random;Lans;IID)V func_180622_a + a (Ladm;Ljava/util/Random;Lcj;)V func_180624_a +aes net/minecraft/world/biome/BiomeGenStoneBeach +aet net/minecraft/world/biome/BiomeGenSwamp + a (Ladm;Ljava/util/Random;Lans;IID)V func_180622_a + a (Ljava/util/Random;)Laoh; func_150567_a + a (Ljava/util/Random;Lcj;)Lagw$a; func_180623_a + b (Lcj;)I func_180627_b + c (Lcj;)I func_180625_c +aeu net/minecraft/world/biome/BiomeGenTaiga + aD field_150639_aC + aE field_150640_aD + aF field_150641_aE + aG field_150642_aF + aH field_150643_aG + aI field_150644_aH + a (Ladm;Ljava/util/Random;Lans;IID)V func_180622_a + a (Ladm;Ljava/util/Random;Lcj;)V func_180624_a + a (Ljava/util/Random;)Laoh; func_150567_a + b (Ljava/util/Random;)Laot; func_76730_b + d (I)Lady; func_180277_d +aev net/minecraft/world/biome/BiomeGenEnd + a (F)I func_76731_a +aew net/minecraft/world/biome/BiomeEndDecorator + M field_76835_L + a (Lady;)V func_150513_a +aey net/minecraft/block/BlockAir + a (Ladm;Lcj;)Z func_176200_f + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Lalz;Z)Z func_176209_a + b ()I func_149645_b + c ()Z func_149662_c +aez net/minecraft/block/BlockAnvil + a field_176506_a + b field_176505_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Lalz;)I func_180651_a + a (Luy;)V func_149829_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + a_ (Ladm;Lcj;)V func_176502_a_ + b (Lalz;)Lalz; func_176217_b + c ()Z func_149662_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e +aez$a net/minecraft/block/BlockAnvil$Anvil + a field_175130_a + b field_175129_b + a (Lwm;Lwn;)Lxi; func_174876_a + e_ ()Ljava/lang/String; func_70005_c_ + f_ ()Leu; func_145748_c_ + k ()Ljava/lang/String; func_174875_k + l_ ()Z func_145818_k_ +af net/minecraft/command/CommandFill + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +afa net/minecraft/block/BlockBanner + a field_176449_a + b field_176448_b + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Ladm;Lwn;Lcj;Lalz;Lakw;)V func_180657_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;)Laug; func_180646_a + b (Ladq;Lcj;)Z func_176205_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + f ()Ljava/lang/String; func_149732_F + g ()Z func_181623_g +afa$1 net/minecraft/block/BlockBanner$1 + a field_180370_a +afa$a net/minecraft/block/BlockBanner$BlockBannerStanding + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e +afa$b net/minecraft/block/BlockBanner$BlockBannerHanging + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladq;Lcj;)V func_180654_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e +afb net/minecraft/block/BlockBarrier + a (Ladm;Lcj;Lalz;FI)V func_180653_a + b ()I func_149645_b + c ()Z func_149662_c + h ()F func_149685_I +afc net/minecraft/block/BlockContainer + a (Ladm;Lcj;Lalz;II)Z func_180648_a + a (Ladm;Lcj;Lcq;)Z func_181086_a + b ()I func_149645_b + b (Ladm;Lcj;Lalz;)V func_180663_b + e (Ladm;Lcj;)Z func_181087_e +afd net/minecraft/block/BlockBasePressurePlate + a (Ladm;)I func_149738_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;I)V func_180666_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180645_a + a (Ladm;Lcj;Lalz;Lpk;)V func_180634_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lalz;Lcq;)I func_180656_a + a (Lalz;I)Lalz; func_176575_a + a (Lcj;)Laug; func_180667_a + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladq;Lcj;)Z func_176205_b + b (Ladq;Lcj;Lalz;Lcq;)I func_176211_b + c ()Z func_149662_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + d (Lalz;)V func_180668_d + e (Ladm;Lcj;)V func_176578_d + e (Lalz;)I func_176576_e + f (Ladm;Lcj;)I func_180669_e + g ()Z func_181623_g + i ()Z func_149744_f + j ()V func_149683_g + k ()I func_149656_h + m (Ladm;Lcj;)Z func_176577_m +afe net/minecraft/block/BlockRailBase + a field_150053_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Z)Lalz; func_176564_a + a (Ladm;Lcj;Laui;Laui;)Lauh; func_180636_a + a (Ladq;Lcj;)V func_180654_a + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lalz;Lafh;)V func_176561_b + c ()Z func_149662_c + c (Ladm;Lcj;Lalz;)V func_176213_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + d (Lalz;)Z func_176563_d + e (Ladm;Lcj;)Z func_176562_d + k ()I func_149656_h + m ()Ladf; func_180664_k + n ()Lamo; func_176560_l +afe$1 net/minecraft/block/BlockRailBase$1 + a field_180371_a +afe$a net/minecraft/block/BlockRailBase$Rail + a field_150662_a + b field_150660_b + c field_180367_c + d field_180365_d + e field_180366_e + f field_150656_f + g field_150657_g + a ()I func_150650_a + a (Lafe$a;)Z func_150653_a + a (Lafe$b;)V func_180360_a + a (Lcj;)Z func_180359_a + a (ZZ)Lafe$a; func_180364_a + b ()Lalz; func_180362_b + b (Lafe$a;)Z func_150649_b + b (Lcj;)Lafe$a; func_180697_b + c ()V func_150651_b + c (Lafe$a;)V func_150645_c + c (Lcj;)Z func_180363_c + d (Lcj;)Z func_180361_d +afe$b net/minecraft/block/BlockRailBase$EnumRailDirection + a NORTH_SOUTH + b EAST_WEST + c ASCENDING_EAST + d ASCENDING_WEST + e ASCENDING_NORTH + f ASCENDING_SOUTH + g SOUTH_EAST + h SOUTH_WEST + i NORTH_WEST + j NORTH_EAST + k field_177030_k + l field_177027_l + m field_177028_m + n $VALUES + a ()I func_177015_a + a (I)Lafe$b; func_177016_a + c ()Z func_177018_c + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lafe$b; values +aff net/minecraft/block/BlockBeacon + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + b ()I func_149645_b + c ()Z func_149662_c + d ()Z func_149686_d + f (Ladm;Lcj;)V func_176450_d + m ()Ladf; func_180664_k +aff$1 net/minecraft/block/BlockBeacon$1 + a field_180358_a + b field_180357_b + run ()V run +aff$1$1 net/minecraft/block/BlockBeacon$1$1 + a field_180369_a + b field_180368_b + run ()V run +afg net/minecraft/block/BlockBed + a field_176472_a + b field_176471_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;I)Lcj; func_176468_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lwn;)V func_176208_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladq;Lcj;)V func_180654_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + e (Ladm;Lcj;)Z func_176469_d + f (Ladm;Lcj;)Lwn; func_176470_e + k ()I func_149656_h + l ()V func_149978_e + m ()Ladf; func_180664_k +afg$a net/minecraft/block/BlockBed$EnumPartType + a HEAD + b FOOT + c field_177036_c + d $VALUES + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lafg$a; values +afh net/minecraft/block/Block + A field_149758_A + B field_149759_B + C field_149760_C + D field_149754_D + E field_149755_E + F field_149756_F + G field_149757_G + H field_149762_H + I field_149763_I + J field_149764_J + K field_181083_K + L field_149765_K + M field_176227_L + N field_176228_M + O field_149770_b + a field_176230_a + b field_149772_a + c field_149771_c + d field_176229_d + e field_149769_e + f field_149766_f + g field_149767_g + h field_149779_h + i field_149780_i + j field_149777_j + k field_149778_k + l field_149775_l + m field_149776_m + n field_149773_n + o field_149774_o + p field_149788_p + q field_176231_q + r field_149787_q + s field_149786_r + t field_149785_s + u field_149784_t + v field_149783_u + w field_149782_v + x field_149781_w + y field_149790_y + z field_149789_z + A ()Z func_149703_v + B ()D func_149704_x + C ()D func_149753_y + D ()D func_149665_z + E ()D func_149669_A + F ()D func_149706_B + G ()D func_149693_C + H ()I func_149635_D + I ()Z func_149700_E + J ()Z func_149652_G + K ()Lafh; func_149649_H + L ()Lyz; func_149708_J + M ()Z func_149648_K + N ()Z func_149698_L + O ()Z func_149740_M + P ()Lama; func_176194_O + Q ()Lalz; func_176223_P + R ()Lafh$a; func_176218_Q + S ()V func_149671_p + a ()Ljava/lang/String; func_149739_a + a (F)Lafh; func_149715_a + a (FFFFFF)V func_149676_a + a (I)Lalz; func_176203_a + a (ILjava/lang/String;Lafh;)V func_176219_a + a (ILjava/util/Random;)I func_149679_a + a (ILjy;Lafh;)V func_176215_a + a (Ladi;)Z func_149659_a + a (Ladm;)I func_149738_a + a (Ladm;Lcj;)Z func_176200_f + a (Ladm;Lcj;Ladi;)V func_180652_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Ladm;Lcj;Lalz;II)Z func_180648_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V func_180638_a + a (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180645_a + a (Ladm;Lcj;Lalz;Lpk;)V func_180634_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lalz;Lwn;)V func_176208_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Laui;Laui;)Lauh; func_180636_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladm;Lcj;Lcq;Lzx;)Z func_176193_a + a (Ladm;Lcj;Lpk;)V func_176199_a + a (Ladm;Lcj;Lpk;F)V func_180658_a + a (Ladm;Lcj;Lpk;Laui;)Laui; func_176197_a + a (Ladm;Lcj;Lwn;)V func_180649_a + a (Ladm;Lcj;Lzx;)V func_180635_a + a (Ladm;Lpk;)V func_176216_a + a (Ladm;Lwn;Lcj;Lalz;Lakw;)V func_180657_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;I)I func_180662_a + a (Ladq;Lcj;Lalz;Lcq;)I func_180656_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Lafh$b;)Lafh; func_149672_a + a (Lafh;)I func_149682_b + a (Lafh;Lafh;)Z func_149680_a + a (Lalz;)I func_180651_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Lalz;Z)Z func_176209_a + a (Laui;)Z func_149654_a + a (Ljava/util/Random;)I func_149745_a + a (Lpk;)F func_149638_a + a (Lwn;Ladm;Lcj;)F func_180647_a + a (Lyz;)Lafh; func_149647_a + a (Lzw;)Lafh; func_149634_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + a (Z)Lafh; func_149675_a + b ()I func_149645_b + b (F)Lafh; func_149752_b + b (Ladm;Lcj;)Laug; func_180646_a + b (Ladm;Lcj;I)V func_180637_b + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lalz;I)V func_176226_b + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladm;Lcj;Lcq;)Z func_176198_a + b (Ladq;Lcj;)Z func_176205_b + b (Ladq;Lcj;Lalz;Lcq;)I func_176211_b + b (Ladq;Lcj;Lcq;)Z func_176212_b + b (Lafh;)Z func_149667_c + b (Lalz;)Lalz; func_176217_b + b (Laui;)Z func_149687_b + b (Ljava/lang/String;)Lafh; func_149684_b + c ()Z func_149662_c + c (F)Lafh; func_149711_c + c (I)Lafh; func_149729_e + c (Ladm;Lcj;)Lzw; func_180665_b + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + c (Ladq;Lcj;)I func_176207_c + c (Lalz;)I func_176201_c + c (Laui;)Z func_149661_c + c (Ljava/lang/String;)Lafh; func_149663_c + d ()Z func_149686_d + d (I)Lalz; func_176220_d + d (Ladm;Lcj;)Z func_176196_c + d (Ladm;Lcj;Lalz;)V func_176206_d + d (Ladq;Lcj;)I func_176202_d + e ()Lama; func_180661_e + e (I)Lafh; func_149713_g + f ()Ljava/lang/String; func_149732_F + f (Lalz;)I func_176210_f + g ()Z func_181623_g + g (Ladm;Lcj;)F func_176195_g + g (Lalz;)Larn; func_180659_g + h ()F func_149685_I + h (Lalz;)I func_180644_h + i ()Z func_149744_f + i (Lalz;)Lzx; func_180643_i + j ()V func_149683_g + j (Ladm;Lcj;)I func_176222_j + j (Lalz;)V func_180632_j + k ()I func_149656_h + k (Ladm;Lcj;)V func_176224_k + l (Ladm;Lcj;)I func_180641_l + m ()Ladf; func_180664_k + o ()Z func_149730_j + p ()I func_149717_k + q ()Z func_149751_l + r ()I func_149750_m + s ()Z func_149710_n + t ()Larm; func_149688_o + toString ()Ljava/lang/String; toString + u ()Z func_149637_q + v ()Z func_149721_r + w ()Z func_176214_u + x ()Lafh; func_149722_s + y ()Z func_149653_t + z ()Z func_149716_u +afh$1 net/minecraft/block/Block$1 + a ()Ljava/lang/String; func_150495_a + b ()Ljava/lang/String; func_150496_b +afh$2 net/minecraft/block/Block$2 + a ()Ljava/lang/String; func_150495_a +afh$3 net/minecraft/block/Block$3 + a ()Ljava/lang/String; func_150495_a + b ()Ljava/lang/String; func_150496_b +afh$4 net/minecraft/block/Block$4 + a ()Ljava/lang/String; func_150495_a + b ()Ljava/lang/String; func_150496_b + c ()Ljava/lang/String; func_150498_e +afh$a net/minecraft/block/Block$EnumOffsetType + a NONE + b XZ + c XYZ + d $VALUES + values ()[Lafh$a; values +afh$b net/minecraft/block/Block$SoundType + a field_150501_a + b field_150499_b + c field_150500_c + a ()Ljava/lang/String; func_150495_a + b ()Ljava/lang/String; func_150496_b + c ()Ljava/lang/String; func_150498_e + d ()F func_150497_c + e ()F func_150494_d +afi net/minecraft/init/Blocks + A field_150322_A + B field_150323_B + C field_150324_C + D field_150318_D + E field_150319_E + F field_150320_F + G field_150321_G + H field_150329_H + I field_150330_I + J field_150331_J + K field_150332_K + L field_150325_L + M field_180384_M + N field_150327_N + O field_150328_O + P field_150338_P + Q field_150337_Q + R field_150340_R + S field_150339_S + T field_150334_T + U field_150333_U + V field_150336_V + W field_150335_W + X field_150342_X + Y field_150341_Y + Z field_150343_Z + a field_150350_a + aA field_150454_av + aB field_150452_aw + aC field_150450_ax + aD field_150439_ay + aE field_150437_az + aF field_150429_aA + aG field_150430_aB + aH field_150431_aC + aI field_150432_aD + aJ field_150433_aE + aK field_150434_aF + aL field_150435_aG + aM field_150436_aH + aN field_150421_aI + aO field_180407_aO + aP field_180408_aP + aQ field_180404_aQ + aR field_180403_aR + aS field_180406_aS + aT field_180405_aT + aU field_150423_aK + aV field_150424_aL + aW field_150425_aM + aX field_150426_aN + aY field_150427_aO + aZ field_150428_aP + aa field_150478_aa + ab field_150480_ab + ac field_150474_ac + ad field_150476_ad + ae field_150486_ae + af field_150488_af + ag field_150482_ag + ah field_150484_ah + ai field_150462_ai + aj field_150464_aj + ak field_150458_ak + al field_150460_al + am field_150470_am + an field_150472_an + ao field_180413_ao + ap field_180414_ap + aq field_180412_aq + ar field_180411_ar + as field_180410_as + at field_180409_at + au field_150468_ap + av field_150448_aq + aw field_150446_ar + ax field_150444_as + ay field_150442_at + az field_150456_au + b field_150348_b + bA field_150387_bl + bB field_150388_bm + bC field_150381_bn + bD field_150382_bo + bE field_150383_bp + bF field_150384_bq + bG field_150378_br + bH field_150377_bs + bI field_150380_bt + bJ field_150379_bu + bK field_150374_bv + bL field_150373_bw + bM field_150376_bx + bN field_150375_by + bO field_150372_bz + bP field_150412_bA + bQ field_150477_bB + bR field_150479_bC + bS field_150473_bD + bT field_150475_bE + bU field_150485_bF + bV field_150487_bG + bW field_150481_bH + bX field_150483_bI + bY field_150461_bJ + bZ field_150463_bK + ba field_150414_aQ + bb field_150413_aR + bc field_150416_aS + bd field_150415_aT + be field_150418_aU + bf field_150417_aV + bg field_150420_aW + bh field_150419_aX + bi field_150411_aY + bj field_150410_aZ + bk field_150440_ba + bl field_150393_bb + bm field_150394_bc + bn field_150395_bd + bo field_180390_bo + bp field_180391_bp + bq field_180392_bq + br field_180386_br + bs field_180385_bs + bt field_180387_bt + bu field_150389_bf + bv field_150390_bg + bw field_150391_bh + bx field_150392_bi + by field_150385_bj + bz field_150386_bk + c field_150349_c + cA field_150402_ci + cB field_150403_cj + cC field_150400_ck + cD field_150401_cl + cE field_180399_cE + cF field_150398_cm + cG field_150399_cn + cH field_150397_co + cI field_180397_cI + cJ field_180398_cJ + cK field_180393_cK + cL field_180394_cL + cM field_180395_cM + cN field_180396_cN + cO field_180388_cO + cP field_180389_cP + ca field_150457_bL + cb field_150459_bM + cc field_150469_bN + cd field_150471_bO + ce field_150465_bP + cf field_150467_bQ + cg field_150447_bR + ch field_150445_bS + ci field_150443_bT + cj field_150441_bU + ck field_150455_bV + cl field_150453_bW + cm field_180402_cm + cn field_150451_bX + co field_150449_bY + cp field_150438_bZ + cq field_150371_ca + cr field_150370_cb + cs field_150408_cc + ct field_150409_cd + cu field_150406_ce + cv field_180401_cv + cw field_180400_cw + cx field_150407_cf + cy field_150404_cg + cz field_150405_ch + d field_150346_d + e field_150347_e + f field_150344_f + g field_150345_g + h field_150357_h + i field_150358_i + j field_150355_j + k field_150356_k + l field_150353_l + m field_150354_m + n field_150351_n + o field_150352_o + p field_150366_p + q field_150365_q + r field_150364_r + s field_150363_s + t field_150362_t + u field_150361_u + v field_150360_v + w field_150359_w + x field_150369_x + y field_150368_y + z field_150367_z + a (Ljava/lang/String;)Lafh; func_180383_a +afj net/minecraft/block/IGrowable + a (Ladm;Lcj;Lalz;Z)Z func_176473_a + a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z func_180670_a + b (Ladm;Ljava/util/Random;Lcj;Lalz;)V func_176474_b +afk net/minecraft/block/BlockBookshelf + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a +afl net/minecraft/block/BlockBrewingStand + a field_176451_a + O ()Z func_149740_M + a (I)Lalz; func_176203_a + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V func_180638_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b ()I func_149645_b + b (Ladm;Lcj;Lalz;)V func_180663_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + f ()Ljava/lang/String; func_149732_F + j ()V func_149683_g + l (Ladm;Lcj;)I func_180641_l + m ()Ladf; func_180664_k +afm net/minecraft/block/BlockBush + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c ()Z func_149662_c + c (Lafh;)Z func_149854_a + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e (Ladm;Lcj;Lalz;)V func_176475_e + f (Ladm;Lcj;Lalz;)Z func_180671_f + m ()Ladf; func_180664_k +afn net/minecraft/block/BlockButton + N field_150047_a + a field_176585_a + b field_176584_b + a (I)Lalz; func_176203_a + a (Ladm;)I func_149738_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180645_a + a (Ladm;Lcj;Lalz;Lpk;)V func_180634_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lcq;)Z func_181088_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lalz;Lcq;)I func_180656_a + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladm;Lcj;Lcq;)Z func_176198_a + b (Ladq;Lcj;Lalz;Lcq;)I func_176211_b + c ()Z func_149662_c + c (Ladm;Lcj;Lcq;)V func_176582_b + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + d (Lalz;)V func_180681_d + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)Z func_176583_e + f (Ladm;Lcj;Lalz;)V func_180680_f + i ()Z func_149744_f + j ()V func_149683_g +afn$1 net/minecraft/block/BlockButton$1 + a field_180420_a +afo net/minecraft/block/BlockCactus + a field_176587_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lpk;)V func_180634_a + b (Ladm;Lcj;)Laug; func_180646_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c ()Z func_149662_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + e (Ladm;Lcj;)Z func_176586_d + m ()Ladf; func_180664_k +afp net/minecraft/block/BlockCake + a field_176589_a + O ()Z func_149740_M + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lwn;)V func_180649_a + a (Ladq;Lcj;)V func_180654_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a + b (Ladm;Lcj;)Laug; func_180646_a + b (Ladm;Lcj;Lalz;Lwn;)V func_180682_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + e (Ladm;Lcj;)Z func_176588_d + j ()V func_149683_g + l (Ladm;Lcj;)I func_180641_l + m ()Ladf; func_180664_k +afq net/minecraft/block/BlockCarrot + l ()Lzw; func_149866_i + n ()Lzw; func_149865_P +afr net/minecraft/block/BlockCauldron + a field_176591_a + O ()Z func_149740_M + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;I)V func_176590_a + a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V func_180638_a + a (Ladm;Lcj;Lalz;Lpk;)V func_180634_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + j ()V func_149683_g + k (Ladm;Lcj;)V func_176224_k + l (Ladm;Lcj;)I func_180641_l +afs net/minecraft/block/BlockChest + a field_176459_a + b field_149956_a + O ()Z func_149740_M + a (I)Lalz; func_176203_a + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lalz;Lcq;)I func_180656_a + b ()I func_149645_b + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladq;Lcj;Lalz;Lcq;)I func_176211_b + c ()Z func_149662_c + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)Lalz; func_176455_e + f (Ladm;Lcj;)Loo; func_180676_d + f (Ladm;Lcj;Lalz;)Lalz; func_176458_f + i ()Z func_149744_f + l (Ladm;Lcj;)I func_180641_l + m (Ladm;Lcj;)Z func_176454_e + n (Ladm;Lcj;)Z func_176457_m + o (Ladm;Lcj;)Z func_176456_n + p (Ladm;Lcj;)Z func_176453_o +aft net/minecraft/block/BlockClay + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a +afu net/minecraft/block/BlockCocoa + a field_176501_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lalz;Z)Z func_176473_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z func_180670_a + a (Ladq;Lcj;)V func_180654_a + b (Ladm;Lcj;)Laug; func_180646_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladm;Ljava/util/Random;Lcj;Lalz;)V func_176474_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)Z func_176499_e + f (Ladm;Lcj;Lalz;)V func_176500_f + j (Ladm;Lcj;)I func_176222_j + m ()Ladf; func_180664_k +afu$1 net/minecraft/block/BlockCocoa$1 + a field_180415_a +afv net/minecraft/block/BlockColored + a field_176581_a + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + g (Lalz;)Larn; func_180659_g +afw net/minecraft/block/BlockCommandBlock + a field_176452_a + O ()Z func_149740_M + a (I)Lalz; func_176203_a + a (Ladm;)I func_149738_a + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ljava/util/Random;)I func_149745_a + b ()I func_149645_b + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + l (Ladm;Lcj;)I func_180641_l +afx net/minecraft/block/BlockRedstoneComparator + a field_176464_a + b field_176463_b + a (I)Lalz; func_176203_a + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;II)Z func_180648_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladm;Lcq;Lcj;)Luo; func_176461_a + a (Ladq;Lcj;Lalz;)I func_176408_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c (Ladm;Lcj;)Lzw; func_180665_b + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Lalz;)I func_176201_c + d (Lalz;)I func_176403_d + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)Z func_176404_e + e (Lalz;)Lalz; func_180674_e + f ()Ljava/lang/String; func_149732_F + f (Ladm;Lcj;Lalz;)I func_176397_f + g (Ladm;Lcj;Lalz;)V func_176398_g + j (Ladm;Lcj;Lalz;)I func_176460_j + k (Ladm;Lcj;Lalz;)V func_176462_k + k (Lalz;)Lalz; func_180675_k + l (Lalz;)Z func_176406_l +afx$1 net/minecraft/block/BlockRedstoneComparator$1 + a field_180418_a + b field_180417_b + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +afx$a net/minecraft/block/BlockRedstoneComparator$Mode + a COMPARE + b SUBTRACT + c field_177041_c + d $VALUES + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lafx$a; values +afy net/minecraft/block/BlockWorkbench + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a +afy$a net/minecraft/block/BlockWorkbench$InterfaceCraftingTable + a field_175128_a + b field_175127_b + a (Lwm;Lwn;)Lxi; func_174876_a + e_ ()Ljava/lang/String; func_70005_c_ + f_ ()Leu; func_145748_c_ + k ()Ljava/lang/String; func_174875_k + l_ ()Z func_145818_k_ +afz net/minecraft/block/BlockCrops + a field_176488_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Ladm;Lcj;Lalz;Z)Z func_176473_a + a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z func_180670_a + a (Lafh;Ladm;Lcj;)F func_180672_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladm;Ljava/util/Random;Lcj;Lalz;)V func_176474_b + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lafh;)Z func_149854_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + f (Ladm;Lcj;Lalz;)Z func_180671_f + g (Ladm;Lcj;Lalz;)V func_176487_g + l ()Lzw; func_149866_i + n ()Lzw; func_149865_P +ag net/minecraft/command/CommandDifficulty + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + e (Ljava/lang/String;)Loj; func_180531_e +aga net/minecraft/block/BlockDaylightDetector + a field_176436_a + b field_176435_b + a (I)Lalz; func_176203_a + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lalz;Lcq;)I func_180656_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + b ()I func_149645_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + f (Ladm;Lcj;)V func_180677_d + i ()Z func_149744_f +agb net/minecraft/block/BlockDeadBush + a (Ladm;Lcj;)Z func_176200_f + a (Ladm;Lwn;Lcj;Lalz;Lakw;)V func_180657_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + c (Lafh;)Z func_149854_a + g (Lalz;)Larn; func_180659_g +agc net/minecraft/block/BlockRailDetector + N field_176574_M + b field_176573_b + O ()Z func_149740_M + a (I)Lalz; func_176203_a + a (Ladm;)I func_149738_a + a (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180645_a + a (Ladm;Lcj;Lalz;Lpk;)V func_180634_a + a (Ladm;Lcj;Ljava/lang/Class;[Lcom/google/common/base/Predicate;)Ljava/util/List; func_176571_a + a (Ladq;Lcj;Lalz;Lcq;)I func_180656_a + a (Lcj;)Laug; func_176572_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladq;Lcj;Lalz;Lcq;)I func_176211_b + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)V func_176570_e + i ()Z func_149744_f + l (Ladm;Lcj;)I func_180641_l + n ()Lamo; func_176560_l +agc$1 net/minecraft/block/BlockRailDetector$1 + a (Lafe$b;)Z apply + apply (Ljava/lang/Object;)Z apply +agd net/minecraft/block/BlockRedstoneDiode + N field_149914_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180645_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladq;Lcj;Lalz;)I func_176408_a + a (Ladq;Lcj;Lalz;Lcq;)I func_180656_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladq;Lcj;Lalz;)Z func_176405_b + b (Ladq;Lcj;Lalz;Lcq;)I func_176211_b + b (Lafh;)Z func_149667_c + c ()Z func_149662_c + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Ladq;Lcj;Lalz;)I func_176407_c + c (Ladq;Lcj;Lcq;)I func_176401_c + c (Lafh;)Z func_149908_a + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + d (Ladm;Lcj;Lalz;)V func_176206_d + d (Lafh;)Z func_149909_d + d (Lalz;)I func_176403_d + e (Ladm;Lcj;)Z func_176409_d + e (Ladm;Lcj;Lalz;)Z func_176404_e + e (Lafh;)Z func_149907_e + e (Lalz;)Lalz; func_180674_e + f (Ladm;Lcj;Lalz;)I func_176397_f + g (Ladm;Lcj;Lalz;)V func_176398_g + h (Ladm;Lcj;Lalz;)V func_176400_h + i ()Z func_149744_f + i (Ladm;Lcj;Lalz;)Z func_176402_i + k (Lalz;)Lalz; func_180675_k + l (Lalz;)Z func_176406_l + m ()Ladf; func_180664_k + m (Lalz;)I func_176399_m +age net/minecraft/block/BlockDirectional + O field_176387_N +agf net/minecraft/block/BlockDirt + a field_176386_a + b field_176385_b + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + g (Lalz;)Larn; func_180659_g + j (Ladm;Lcj;)I func_176222_j +agf$a net/minecraft/block/BlockDirt$DirtType + a DIRT + b COARSE_DIRT + c PODZOL + d field_176930_d + e field_176931_e + f field_176928_f + g field_176929_g + h field_181067_h + i $VALUES + a ()I func_176925_a + a (I)Lagf$a; func_176924_a + c ()Ljava/lang/String; func_176927_c + d ()Larn; func_181066_d + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lagf$a; values +agg net/minecraft/block/BlockDispenser + N field_149943_a + O field_149942_b + a field_176441_a + b field_176440_b + O ()Z func_149740_M + a (I)Lalz; func_176203_a + a (Ladm;)I func_149738_a + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Lck;)Lcz; func_149939_a + a (Lzx;)Lcr; func_149940_a + b ()I func_149645_b + b (I)Lcq; func_149937_b + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Lalz;)Lalz; func_176217_b + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)V func_176438_e + f (Ladm;Lcj;)V func_176439_d + l (Ladm;Lcj;)I func_180641_l +agh net/minecraft/block/BlockDoor + N field_176521_M + O field_176522_N + P field_176523_O + a field_176520_a + b field_176519_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lwn;)V func_176208_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Laui;Laui;)Lauh; func_180636_a + a (Ladm;Lcj;Z)V func_176512_a + a (Ladq;Lcj;)V func_180654_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (I)I func_176510_b + b (Ladm;Lcj;)Laug; func_180646_a + b (Ladq;Lcj;)Z func_176205_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + e (Ladq;Lcj;)I func_176515_e + f ()Ljava/lang/String; func_149732_F + f (I)Lcq; func_176511_f + f (Ladq;Lcj;)Z func_176514_f + g (I)Z func_176516_g + h (Ladq;Lcj;)Lcq; func_176517_h + i (I)Z func_176518_i + j (I)Z func_176513_j + k ()I func_149656_h + k (I)V func_150011_b + l ()Lzw; func_176509_j + m ()Ladf; func_180664_k +agh$a net/minecraft/block/BlockDoor$EnumDoorHalf + a UPPER + b LOWER + c $VALUES + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lagh$a; values +agh$b net/minecraft/block/BlockDoor$EnumHingePosition + a LEFT + b RIGHT + c $VALUES + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lagh$b; values +agi net/minecraft/block/BlockDoublePlant + N field_181084_N + a field_176493_a + b field_176492_b + R ()Lafh$a; func_176218_Q + a (I)Lalz; func_176203_a + a (Ladm;Lcj;)Z func_176200_f + a (Ladm;Lcj;Lagi$b;I)V func_176491_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lalz;Lwn;)V func_176208_a + a (Ladm;Lcj;Lalz;Z)Z func_176473_a + a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z func_180670_a + a (Ladm;Lwn;Lcj;Lalz;Lakw;)V func_180657_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;I)I func_180662_a + a (Lalz;)I func_180651_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + b (Ladm;Lcj;Lalz;Lwn;)Z func_176489_b + b (Ladm;Ljava/util/Random;Lcj;Lalz;)V func_176474_b + c (Lalz;)I func_176201_c + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)V func_176475_e + e (Ladq;Lcj;)Lagi$b; func_176490_e + f (Ladm;Lcj;Lalz;)Z func_180671_f + j (Ladm;Lcj;)I func_176222_j +agi$a net/minecraft/block/BlockDoublePlant$EnumBlockHalf + a UPPER + b LOWER + c $VALUES + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lagi$a; values +agi$b net/minecraft/block/BlockDoublePlant$EnumPlantType + a SUNFLOWER + b SYRINGA + c GRASS + d FERN + e ROSE + f PAEONIA + g field_176941_g + h field_176949_h + i field_176950_i + j field_176947_j + k $VALUES + a ()I func_176936_a + a (I)Lagi$b; func_176938_a + c ()Ljava/lang/String; func_176939_c + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lagi$b; values +agj net/minecraft/block/BlockDragonEgg + a (Ladm;)I func_149738_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lwn;)V func_180649_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Ladm;Lcj;Lalz;)V func_176213_c + d ()Z func_149686_d + e (Ladm;Lcj;)V func_180683_d + f (Ladm;Lcj;)V func_180684_e +agk net/minecraft/block/BlockDropper + P field_149947_P + a (Ladm;I)Lakw; func_149915_a + a (Lzx;)Lcr; func_149940_a + f (Ladm;Lcj;)V func_176439_d +agl net/minecraft/block/BlockDynamicLiquid + a field_149815_a + a (Ladm;Lcj;I)I func_176371_a + a (Ladm;Lcj;ILcq;)I func_176374_a + a (Ladm;Lcj;Lalz;I)V func_176375_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c (Ladm;Lcj;Lalz;)V func_176213_c + f (Ladm;Lcj;)Ljava/util/Set; func_176376_e + f (Ladm;Lcj;Lalz;)V func_180690_f + g (Ladm;Lcj;Lalz;)Z func_176372_g + h (Ladm;Lcj;Lalz;)Z func_176373_h +agm net/minecraft/block/BlockEnchantmentTable + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + b ()I func_149645_b + c ()Z func_149662_c + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + d ()Z func_149686_d +agn net/minecraft/block/BlockEndPortal + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V func_180638_a + a (Ladm;Lcj;Lalz;Lpk;)V func_180634_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Ljava/util/Random;)I func_149745_a + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + d ()Z func_149686_d + g (Lalz;)Larn; func_180659_g +ago net/minecraft/block/BlockEndPortalFrame + a field_176508_a + b field_176507_b + O ()Z func_149740_M + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V func_180638_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + c ()Z func_149662_c + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + j ()V func_149683_g + l (Ladm;Lcj;)I func_180641_l +agp net/minecraft/block/BlockEnderChest + a field_176437_a + I ()Z func_149700_E + a (I)Lalz; func_176203_a + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a + b ()I func_149645_b + c ()Z func_149662_c + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e +agq net/minecraft/block/ITileEntityProvider + a (Ladm;I)Lakw; func_149915_a +agr net/minecraft/block/BlockFalling + N field_149832_M + a (Ladm;)I func_149738_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Luy;)V func_149829_a + a_ (Ladm;Lcj;)V func_176502_a_ + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c (Ladm;Lcj;Lalz;)V func_176213_c + e (Ladm;Lcj;)Z func_180685_d + f (Ladm;Lcj;)V func_176503_e +ags net/minecraft/block/BlockFarmland + a field_176531_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lpk;F)V func_180658_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + e (Ladm;Lcj;)Z func_176529_d + f (Ladm;Lcj;)Z func_176530_e +ags$1 net/minecraft/block/BlockFarmland$1 + a field_181625_a +agt net/minecraft/block/BlockFence + N field_176527_M + O field_176528_N + a field_176526_a + b field_176525_b + a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V func_180638_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + b (Ladq;Lcj;)Z func_176205_b + c ()Z func_149662_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + e (Ladq;Lcj;)Z func_176524_e +agu net/minecraft/block/BlockFenceGate + N field_176467_M + a field_176466_a + b field_176465_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + b (Ladq;Lcj;)Z func_176205_b + c ()Z func_149662_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e +agv net/minecraft/block/BlockFire + N field_176544_M + O field_176545_N + P field_176546_O + Q field_176541_P + R field_176539_Q + S field_176542_R + T field_149849_a + U field_149848_b + a field_176543_a + b field_176540_b + A ()Z func_149703_v + N ()Z func_149698_L + a (I)Lalz; func_176203_a + a (Ladm;)I func_149738_a + a (Ladm;Lcj;ILjava/util/Random;I)V func_176536_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Lafh;II)V func_180686_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Ljava/util/Random;)I func_149745_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c ()Z func_149662_c + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + c (Lafh;)I func_176532_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + d (Lafh;)I func_176534_d + e ()Lama; func_180661_e + e (Ladm;Lcj;)Z func_176537_d + e (Ladq;Lcj;)Z func_176535_e + f (Ladm;Lcj;)Z func_176533_e + g (Lalz;)Larn; func_180659_g + l ()V func_149843_e + m ()Ladf; func_180664_k + m (Ladm;Lcj;)I func_176538_m +agw net/minecraft/block/BlockFlower + a field_176496_a + R ()Lafh$a; func_176218_Q + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + l ()Lagw$b; func_176495_j + n ()Lamo; func_176494_l +agw$1 net/minecraft/block/BlockFlower$1 + a field_180355_a + a (Lagw$a;)Z apply + apply (Ljava/lang/Object;)Z apply +agw$a net/minecraft/block/BlockFlower$EnumFlowerType + a DANDELION + b POPPY + c BLUE_ORCHID + d ALLIUM + e HOUSTONIA + f RED_TULIP + g ORANGE_TULIP + h WHITE_TULIP + i PINK_TULIP + j OXEYE_DAISY + k field_176981_k + l field_176978_l + m field_176979_m + n field_176976_n + o field_176977_o + p $VALUES + a ()Lagw$b; func_176964_a + a (Lagw$b;)[Lagw$a; func_176966_a + a (Lagw$b;I)Lagw$a; func_176967_a + b ()I func_176968_b + d ()Ljava/lang/String; func_176963_d + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lagw$a; values +agw$a$1 net/minecraft/block/BlockFlower$EnumFlowerType$1 + a field_180351_a + a (Lagw$a;)Z apply + apply (Ljava/lang/Object;)Z apply +agw$b net/minecraft/block/BlockFlower$EnumFlowerColor + a YELLOW + b RED + c $VALUES + a ()Lagw; func_180346_a + values ()[Lagw$b; values +agx net/minecraft/block/BlockFlowerPot + a field_176444_a + b field_176443_b + M ()Z func_149648_K + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lwn;)V func_176208_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladq;Lcj;I)I func_180662_a + a (Lafh;I)Z func_149928_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b ()I func_149645_b + b (Ladm;Lcj;Lalz;)V func_180663_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + f ()Ljava/lang/String; func_149732_F + f (Ladm;Lcj;)Lalg; func_176442_d + j ()V func_149683_g + j (Ladm;Lcj;)I func_176222_j + m ()Ladf; func_180664_k +agx$1 net/minecraft/block/BlockFlowerPot$1 + a field_180353_a + b field_180352_b +agx$a net/minecraft/block/BlockFlowerPot$EnumFlowerType + a EMPTY + b POPPY + c BLUE_ORCHID + d ALLIUM + e HOUSTONIA + f RED_TULIP + g ORANGE_TULIP + h WHITE_TULIP + i PINK_TULIP + j OXEYE_DAISY + k DANDELION + l OAK_SAPLING + m SPRUCE_SAPLING + n BIRCH_SAPLING + o JUNGLE_SAPLING + p ACACIA_SAPLING + q DARK_OAK_SAPLING + r MUSHROOM_RED + s MUSHROOM_BROWN + t DEAD_BUSH + u FERN + v CACTUS + w field_177006_w + x $VALUES + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lagx$a; values +agy net/minecraft/block/BlockDoubleStoneSlabNew + l ()Z func_176552_j +agz net/minecraft/block/BlockDoubleStoneSlab + l ()Z func_176552_j +ah net/minecraft/command/CommandGameMode + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + d ()[Ljava/lang/String; func_71538_c + h (Lm;Ljava/lang/String;)Ladp$a; func_71539_b +aha net/minecraft/block/BlockDoubleWoodSlab + l ()Z func_176552_j +ahb net/minecraft/block/BlockFurnace + N field_149934_M + a field_176447_a + b field_149932_b + O ()Z func_149740_M + a (I)Lalz; func_176203_a + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (ZLadm;Lcj;)V func_176446_a + b ()I func_149645_b + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Lalz;)Lalz; func_176217_b + c (Ladm;Lcj;)Lzw; func_180665_b + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)V func_176445_e + l (Ladm;Lcj;)I func_180641_l +ahb$1 net/minecraft/block/BlockFurnace$1 + a field_180356_a +ahc net/minecraft/block/BlockGlass + I ()Z func_149700_E + a (Ljava/util/Random;)I func_149745_a + d ()Z func_149686_d + m ()Ladf; func_180664_k +ahd net/minecraft/block/BlockGlowstone + a (ILjava/util/Random;)I func_149679_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a + g (Lalz;)Larn; func_180659_g +ahe net/minecraft/block/BlockGrass + a field_176498_a + H ()I func_149635_D + a (Ladm;Lcj;Lalz;Z)Z func_176473_a + a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z func_180670_a + a (Ladq;Lcj;I)I func_180662_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladm;Ljava/util/Random;Lcj;Lalz;)V func_176474_b + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + h (Lalz;)I func_180644_h + m ()Ladf; func_180664_k +ahf net/minecraft/block/BlockGravel + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + g (Lalz;)Larn; func_180659_g +ahg net/minecraft/block/BlockHalfStoneSlabNew + l ()Z func_176552_j +ahh net/minecraft/block/BlockSlab + a field_176554_a + I ()Z func_149700_E + a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V func_180638_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Ljava/util/Random;)I func_149745_a + a (Lzx;)Ljava/lang/Object; func_176553_a + b (I)Ljava/lang/String; func_150002_b + c ()Z func_149662_c + c (Lafh;)Z func_150003_a + d ()Z func_149686_d + j ()V func_149683_g + j (Ladm;Lcj;)I func_176222_j + l ()Z func_176552_j + n ()Lamo; func_176551_l +ahh$a net/minecraft/block/BlockSlab$EnumBlockHalf + a TOP + b BOTTOM + c field_176988_c + d $VALUES + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lahh$a; values +ahi net/minecraft/block/BlockHalfStoneSlab + l ()Z func_176552_j +ahj net/minecraft/block/BlockBreakable + a field_149996_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + c ()Z func_149662_c +ahk net/minecraft/block/BlockHalfWoodSlab + l ()Z func_176552_j +ahl net/minecraft/block/BlockHardenedClay + g (Lalz;)Larn; func_180659_g +ahm net/minecraft/block/BlockHay + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + i (Lalz;)Lzx; func_180643_i +ahn net/minecraft/block/BlockHopper + a field_176430_a + b field_176429_b + O ()Z func_149740_M + a (I)Lalz; func_176203_a + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V func_180638_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + b ()I func_149645_b + b (I)Lcq; func_176428_b + b (Ladm;Lcj;Lalz;)V func_180663_b + c ()Z func_149662_c + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)V func_176427_e + f (I)Z func_149917_c + l (Ladm;Lcj;)I func_180641_l + m ()Ladf; func_180664_k +ahn$1 net/minecraft/block/BlockHopper$1 + a (Lcq;)Z apply + apply (Ljava/lang/Object;)Z apply +aho net/minecraft/block/BlockHugeMushroom + a field_176380_a + b field_176379_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + g (Lalz;)Larn; func_180659_g +aho$1 net/minecraft/block/BlockHugeMushroom$1 + a field_181092_a +aho$a net/minecraft/block/BlockHugeMushroom$EnumType + a NORTH_WEST + b NORTH + c NORTH_EAST + d WEST + e CENTER + f EAST + g SOUTH_WEST + h SOUTH + i SOUTH_EAST + j STEM + k ALL_INSIDE + l ALL_OUTSIDE + m ALL_STEM + n field_176905_n + o field_176906_o + p field_176914_p + q $VALUES + a ()I func_176896_a + a (I)Laho$a; func_176895_a + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Laho$a; values +ahp net/minecraft/block/BlockIce + a (Ladm;Lwn;Lcj;Lalz;Lakw;)V func_180657_a + a (Ljava/util/Random;)I func_149745_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + k ()I func_149656_h + m ()Ladf; func_180664_k +ahq net/minecraft/block/BlockJukebox + a field_176432_a + O ()Z func_149740_M + a (I)Lalz; func_176203_a + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lalz;Lzx;)V func_176431_a + b ()I func_149645_b + b (Ladm;Lcj;Lalz;)V func_180663_b + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)V func_180678_e + l (Ladm;Lcj;)I func_180641_l +ahq$a net/minecraft/block/BlockJukebox$TileEntityJukebox + a field_145858_a + a ()Lzx; func_145856_a + a (Ldn;)V func_145839_a + a (Lzx;)V func_145857_a + b (Ldn;)V func_145841_b +ahr net/minecraft/block/BlockLadder + a field_176382_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lcq;)Z func_176381_b + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladq;Lcj;)V func_180654_a + b (Ladm;Lcj;)Laug; func_180646_a + c ()Z func_149662_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + m ()Ladf; func_180664_k +ahr$1 net/minecraft/block/BlockLadder$1 + a field_180190_a +ahs net/minecraft/block/BlockLeaves + N field_150128_a + O field_150127_b + P field_176238_O + a field_176237_a + b field_176236_b + H ()I func_149635_D + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Ladm;Lcj;Lalz;I)V func_176234_a + a (Ladq;Lcj;I)I func_180662_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a + b (I)Laio$a; func_176233_b + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Z)V func_150122_b + c ()Z func_149662_c + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + d (Lalz;)I func_176232_d + e (Ladm;Lcj;)V func_176235_d + h (Lalz;)I func_180644_h + m ()Ladf; func_180664_k + w ()Z func_176214_u +ahu net/minecraft/block/BlockLever + a field_176360_a + b field_176359_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lcq;)Z func_181090_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lalz;Lcq;)I func_180656_a + a (Lcq;)I func_176357_a + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lcq;)Z func_176198_a + b (Ladq;Lcj;Lalz;Lcq;)I func_176211_b + c ()Z func_149662_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)Z func_181091_e + i ()Z func_149744_f +ahu$1 net/minecraft/block/BlockLever$1 + a field_180165_a + b field_180163_b + c field_180164_c +ahu$a net/minecraft/block/BlockLever$EnumOrientation + a DOWN_X + b EAST + c WEST + d SOUTH + e NORTH + f UP_Z + g UP_X + h DOWN_Z + i field_176869_i + j field_176866_j + k field_176867_k + l field_176864_l + m $VALUES + a ()I func_176855_a + a (I)Lahu$a; func_176853_a + a (Lcq;Lcq;)Lahu$a; func_176856_a + c ()Lcq; func_176852_c + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lahu$a; values +ahv net/minecraft/block/BlockLiquid + b field_176367_b + a (I)Lalz; func_176203_a + a (Ladm;)I func_149738_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lpk;Laui;)Laui; func_176197_a + a (Ladq;Lcj;I)I func_180662_a + a (Ladq;Lcj;Larm;)D func_180689_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Lalz;Z)Z func_176209_a + a (Larm;)Lagl; func_176361_a + a (Ljava/util/Random;)I func_149745_a + b ()I func_149645_b + b (I)F func_149801_b + b (Ladq;Lcj;)Z func_176205_b + b (Ladq;Lcj;Lcq;)Z func_176212_b + b (Larm;)Lajw; func_176363_b + c ()Z func_149662_c + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + c (Ladq;Lcj;)I func_176207_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + e (Ladm;Lcj;)V func_180688_d + e (Ladm;Lcj;Lalz;)Z func_176365_e + e (Ladq;Lcj;)I func_176362_e + f (Ladq;Lcj;)I func_176366_f + g (Ladq;Lcj;)Z func_176364_g + h (Ladq;Lcj;)Laui; func_180687_h + m ()Ladf; func_180664_k +ahw net/minecraft/block/BlockLog + a field_176299_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + b (Ladm;Lcj;Lalz;)V func_180663_b +ahw$1 net/minecraft/block/BlockLog$1 + a field_180167_a +ahw$a net/minecraft/block/BlockLog$EnumAxis + a X + b Y + c Z + d NONE + e field_176874_e + f $VALUES + a (Lcq$a;)Lahw$a; func_176870_a + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lahw$a; values +ahx net/minecraft/block/BlockMelon + a (ILjava/util/Random;)I func_149679_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a +ahy net/minecraft/block/BlockMobSpawner + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a + b ()I func_149645_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + m ()Ladf; func_180664_k +ahz net/minecraft/block/BlockSilverfish + a field_176378_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Ljava/util/Random;)I func_149745_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + d (Lalz;)Z func_176377_d + e ()Lama; func_180661_e + i (Lalz;)Lzx; func_180643_i + j (Ladm;Lcj;)I func_176222_j +ahz$1 net/minecraft/block/BlockSilverfish$1 + a field_180178_a +ahz$a net/minecraft/block/BlockSilverfish$EnumType + a STONE + b COBBLESTONE + c STONEBRICK + d MOSSY_STONEBRICK + e CRACKED_STONEBRICK + f CHISELED_STONEBRICK + g field_176885_g + h field_176893_h + i field_176894_i + j field_176891_j + k $VALUES + a ()I func_176881_a + a (I)Lahz$a; func_176879_a + a (Lalz;)Lahz$a; func_176878_a + c ()Ljava/lang/String; func_176882_c + d ()Lalz; func_176883_d + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lahz$a; values +ahz$a$1 net/minecraft/block/BlockSilverfish$EnumType$1 + d ()Lalz; func_176883_d +ahz$a$2 net/minecraft/block/BlockSilverfish$EnumType$2 + d ()Lalz; func_176883_d +ahz$a$3 net/minecraft/block/BlockSilverfish$EnumType$3 + d ()Lalz; func_176883_d +ahz$a$4 net/minecraft/block/BlockSilverfish$EnumType$4 + d ()Lalz; func_176883_d +ahz$a$5 net/minecraft/block/BlockSilverfish$EnumType$5 + d ()Lalz; func_176883_d +ahz$a$6 net/minecraft/block/BlockSilverfish$EnumType$6 + d ()Lalz; func_176883_d +ai net/minecraft/command/CommandGameRule + a ()I func_82362_a + a (Ladk;Ljava/lang/String;)V func_175773_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + d ()Ladk; func_82366_d +aia net/minecraft/block/BlockMushroom + a (Ladm;Lcj;Lalz;Z)Z func_176473_a + a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z func_180670_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladm;Ljava/util/Random;Lcj;Lalz;)V func_176474_b + c (Lafh;)Z func_149854_a + d (Ladm;Lcj;)Z func_176196_c + d (Ladm;Lcj;Lalz;Ljava/util/Random;)Z func_176485_d + f (Ladm;Lcj;Lalz;)Z func_180671_f +aib net/minecraft/block/BlockMycelium + a field_176384_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e +aic net/minecraft/block/BlockNetherBrick + g (Lalz;)Larn; func_180659_g +aid net/minecraft/block/BlockNetherWart + a field_176486_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lafh;)Z func_149854_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + f (Ladm;Lcj;Lalz;)Z func_180671_f +aie net/minecraft/block/BlockNetherrack + g (Lalz;)Larn; func_180659_g +aif net/minecraft/block/BlockNewLeaf + Q field_176240_P + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;I)V func_176234_a + a (Ladm;Lwn;Lcj;Lalz;Lakw;)V func_180657_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + b (I)Laio$a; func_176233_b + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + i (Lalz;)Lzx; func_180643_i + j (Ladm;Lcj;)I func_176222_j +aif$1 net/minecraft/block/BlockNewLeaf$1 + a (Laio$a;)Z apply + apply (Ljava/lang/Object;)Z apply +aig net/minecraft/block/BlockNewLog + b field_176300_b + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + g (Lalz;)Larn; func_180659_g + i (Lalz;)Lzx; func_180643_i +aig$1 net/minecraft/block/BlockNewLog$1 + a (Laio$a;)Z apply + apply (Ljava/lang/Object;)Z apply +aig$2 net/minecraft/block/BlockNewLog$2 + a field_181093_a + b field_180191_a +aih net/minecraft/block/BlockStoneSlabNew + N field_176559_M + b field_176558_b + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + a (Lzx;)Ljava/lang/Object; func_176553_a + b (I)Ljava/lang/String; func_150002_b + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + f ()Ljava/lang/String; func_149732_F + g (Lalz;)Larn; func_180659_g + n ()Lamo; func_176551_l +aih$a net/minecraft/block/BlockStoneSlabNew$EnumType + a RED_SANDSTONE + b field_176921_b + c field_176922_c + d field_176919_d + e field_181069_e + f $VALUES + a ()I func_176915_a + a (I)Laih$a; func_176916_a + c ()Larn; func_181068_c + d ()Ljava/lang/String; func_176918_c + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Laih$a; values +aii net/minecraft/block/BlockNote + a field_176434_a + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;II)Z func_180648_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lwn;)V func_180649_a + b ()I func_149645_b + b (I)Ljava/lang/String; func_176433_b +aij net/minecraft/block/BlockObsidian + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + g (Lalz;)Larn; func_180659_g +aik net/minecraft/block/BlockOldLeaf + Q field_176239_P + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;I)V func_176234_a + a (Ladm;Lwn;Lcj;Lalz;Lakw;)V func_180657_a + a (Ladq;Lcj;I)I func_180662_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + b (I)Laio$a; func_176233_b + c (Lalz;)I func_176201_c + d (Lalz;)I func_176232_d + e ()Lama; func_180661_e + h (Lalz;)I func_180644_h + i (Lalz;)Lzx; func_180643_i +aik$1 net/minecraft/block/BlockOldLeaf$1 + a (Laio$a;)Z apply + apply (Ljava/lang/Object;)Z apply +ail net/minecraft/block/BlockOldLog + b field_176301_b + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + g (Lalz;)Larn; func_180659_g + i (Lalz;)Lzx; func_180643_i +ail$1 net/minecraft/block/BlockOldLog$1 + a (Laio$a;)Z apply + apply (Ljava/lang/Object;)Z apply +ail$2 net/minecraft/block/BlockOldLog$2 + a field_181094_a + b field_180203_a +aim net/minecraft/block/BlockOre + a (ILjava/util/Random;)I func_149679_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Lalz;)I func_180651_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a + j (Ladm;Lcj;)I func_176222_j +ain net/minecraft/block/BlockPackedIce + a (Ljava/util/Random;)I func_149745_a +aio net/minecraft/block/BlockPlanks + a field_176383_a + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + g (Lalz;)Larn; func_180659_g +aio$a net/minecraft/block/BlockPlanks$EnumType + a OAK + b SPRUCE + c BIRCH + d JUNGLE + e ACACIA + f DARK_OAK + g field_176842_g + h field_176850_h + i field_176851_i + j field_176848_j + k field_181071_k + l $VALUES + a ()I func_176839_a + a (I)Laio$a; func_176837_a + c ()Larn; func_181070_c + d ()Ljava/lang/String; func_176840_c + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Laio$a; values +aip net/minecraft/block/BlockPortal + a field_176550_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lpk;)V func_180634_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Lcq$a;)I func_176549_a + a (Ljava/util/Random;)I func_149745_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c (Ladm;Lcj;)Lzw; func_180665_b + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + e (Ladm;Lcj;)Z func_176548_d + f (Ladm;Lcj;)Lamd$b; func_181089_f + m ()Ladf; func_180664_k +aip$a net/minecraft/block/BlockPortal$Size + a field_150867_a + b field_150865_b + c field_150866_c + d field_150863_d + e field_150864_e + f field_150861_f + g field_150862_g + h field_150868_h + a ()I func_181100_a + a (Lafh;)Z func_150857_a + a (Laip$a;)I access$000 + a (Lcj;Lcq;)I func_180120_a + b ()I func_181101_b + b (Laip$a;)I access$100 + c ()I func_150858_a + c (Laip$a;)I access$200 + d ()Z func_150860_b + d (Laip$a;)Lcq; access$300 + e ()V func_150859_c + e (Laip$a;)Lcj; access$400 +aiq net/minecraft/block/BlockPotato + a (Ladm;Lcj;Lalz;FI)V func_180653_a + l ()Lzw; func_149866_i + n ()Lzw; func_149865_P +air net/minecraft/block/BlockCompressedPowered + a (Ladq;Lcj;Lalz;Lcq;)I func_180656_a + i ()Z func_149744_f +ais net/minecraft/block/BlockRailPowered + N field_176569_M + b field_176568_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;ZI)Z func_176566_a + a (Ladm;Lcj;ZILafe$b;)Z func_176567_a + b (Ladm;Lcj;Lalz;Lafh;)V func_176561_b + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + n ()Lamo; func_176560_l +ais$1 net/minecraft/block/BlockRailPowered$1 + a (Lafe$b;)Z apply + apply (Ljava/lang/Object;)Z apply +ais$2 net/minecraft/block/BlockRailPowered$2 + a field_180121_a +ait net/minecraft/block/BlockPressurePlate + a field_176580_a + b field_150069_a + a (I)Lalz; func_176203_a + a (Lalz;I)Lalz; func_176575_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + e (Lalz;)I func_176576_e + f (Ladm;Lcj;)I func_180669_e +ait$1 net/minecraft/block/BlockPressurePlate$1 + a field_180127_a +ait$a net/minecraft/block/BlockPressurePlate$Sensitivity + a EVERYTHING + b MOBS + c $VALUES + values ()[Lait$a; values +aiu net/minecraft/block/BlockPrismarine + N field_176333_M + O field_176334_N + a field_176332_a + b field_176331_b + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + f ()Ljava/lang/String; func_149732_F + g (Lalz;)Larn; func_180659_g +aiu$a net/minecraft/block/BlockPrismarine$EnumType + a ROUGH + b BRICKS + c DARK + d field_176813_d + e field_176814_e + f field_176811_f + g field_176812_g + h $VALUES + a ()I func_176807_a + a (I)Laiu$a; func_176810_a + c ()Ljava/lang/String; func_176809_c + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Laiu$a; values +aiv net/minecraft/block/BlockPumpkin + N field_176395_M + P field_176396_O + Q field_181085_Q + a field_176394_a + b field_176393_b + T ()Lamd; func_176389_S + U ()Lamd; func_176388_T + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Lalz;)I func_176201_c + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + e (Ladm;Lcj;)Z func_176390_d + f (Ladm;Lcj;)V func_180673_e + l ()Lamd; func_176392_j + n ()Lamd; func_176391_l +aiv$1 net/minecraft/block/BlockPumpkin$1 + a (Lalz;)Z apply + apply (Ljava/lang/Object;)Z apply +aiw net/minecraft/block/BlockQuartz + a field_176335_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + g (Lalz;)Larn; func_180659_g + i (Lalz;)Lzx; func_180643_i +aiw$1 net/minecraft/block/BlockQuartz$1 + a field_180101_a +aiw$a net/minecraft/block/BlockQuartz$EnumType + a DEFAULT + b CHISELED + c LINES_Y + d LINES_X + e LINES_Z + f field_176797_f + g field_176798_g + h field_176805_h + i field_176806_i + j $VALUES + a ()I func_176796_a + a (I)Laiw$a; func_176794_a + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Laiw$a; values +aix net/minecraft/block/BlockRail + b field_176565_b + a (I)Lalz; func_176203_a + b (Ladm;Lcj;Lalz;Lafh;)V func_176561_b + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + n ()Lamo; func_176560_l +aiy net/minecraft/block/BlockRedFlower + l ()Lagw$b; func_176495_j +aiz net/minecraft/block/BlockRedSandstone + a field_176336_a + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e +aiz$a net/minecraft/block/BlockRedSandstone$EnumType + a DEFAULT + b CHISELED + c SMOOTH + d field_176831_d + e field_176832_e + f field_176829_f + g field_176830_g + h $VALUES + a ()I func_176827_a + a (I)Laiz$a; func_176825_a + c ()Ljava/lang/String; func_176828_c + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Laiz$a; values +aj net/minecraft/command/CommandGive + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + d ()[Ljava/lang/String; func_71536_c +aja net/minecraft/block/BlockRedstoneOre + a field_150187_a + a (ILjava/util/Random;)I func_149679_a + a (Ladm;)I func_149738_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Lpk;)V func_176199_a + a (Ladm;Lcj;Lwn;)V func_180649_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + e (Ladm;Lcj;)V func_176352_d + f (Ladm;Lcj;)V func_180691_e + i (Lalz;)Lzx; func_180643_i +ajb net/minecraft/block/BlockRedstoneWire + N field_176349_M + O field_176350_N + P field_176351_O + Q field_150181_a + R field_150179_b + a field_176348_a + b field_176347_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;I)I func_176342_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lcj;Lalz;)Lalz; func_176345_a + a (Ladq;Lcj;I)I func_180662_a + a (Ladq;Lcj;Lalz;Lcq;)I func_180656_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Lcq;)Z func_176343_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (I)I func_176337_b + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladq;Lcj;Lalz;Lcq;)I func_176211_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + c (Ladq;Lcj;Lcq;)Lajb$a; func_176341_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + d (Ladq;Lcj;Lcq;)Z func_176339_d + d (Lalz;)Z func_176346_d + e ()Lama; func_180661_e + e (Ladm;Lcj;)V func_176344_d + e (Ladm;Lcj;Lalz;)Lalz; func_176338_e + e (Ladq;Lcj;)Z func_176340_e + i ()Z func_149744_f + m ()Ladf; func_180664_k +ajb$a net/minecraft/block/BlockRedstoneWire$EnumAttachPosition + a UP + b SIDE + c NONE + d field_176820_d + e $VALUES + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lajb$a; values +ajc net/minecraft/block/BlockRedstoneLight + a field_150171_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c (Ladm;Lcj;)Lzw; func_180665_b + c (Ladm;Lcj;Lalz;)V func_176213_c + i (Lalz;)Lzx; func_180643_i +ajd net/minecraft/block/BlockRedstoneTorch + N field_150113_a + b field_150112_b + a (Ladm;)I func_149738_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180645_a + a (Ladm;Lcj;Z)Z func_176598_a + a (Ladq;Lcj;Lalz;Lcq;)I func_180656_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladq;Lcj;Lalz;Lcq;)I func_176211_b + b (Lafh;)Z func_149667_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + g (Ladm;Lcj;Lalz;)Z func_176597_g + i ()Z func_149744_f +ajd$a net/minecraft/block/BlockRedstoneTorch$Toggle + a field_180111_a + b field_150844_d +aje net/minecraft/block/BlockReed + a field_176355_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladq;Lcj;I)I func_180662_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + e (Ladm;Lcj;)Z func_176354_d + e (Ladm;Lcj;Lalz;)Z func_176353_e + m ()Ladf; func_180664_k +ajf net/minecraft/block/BlockRedstoneRepeater + a field_176411_a + b field_176410_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladq;Lcj;Lalz;)Z func_176405_b + c (Ladm;Lcj;)Lzw; func_180665_b + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + c (Lafh;)Z func_149908_a + c (Lalz;)I func_176201_c + d (Lalz;)I func_176403_d + e ()Lama; func_180661_e + e (Lalz;)Lalz; func_180674_e + f ()Ljava/lang/String; func_149732_F + k (Lalz;)Lalz; func_180675_k +ajg net/minecraft/block/BlockRotatedPillar + N field_176298_M +ajh net/minecraft/block/BlockSand + a field_176504_a + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + g (Lalz;)Larn; func_180659_g +ajh$a net/minecraft/block/BlockSand$EnumType + a SAND + b RED_SAND + c field_176695_c + d field_176692_d + e field_176693_e + f field_176690_f + g field_176691_g + h $VALUES + a ()I func_176688_a + a (I)Lajh$a; func_176686_a + c ()Larn; func_176687_c + d ()Ljava/lang/String; func_176685_d + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lajh$a; values +aji net/minecraft/block/BlockSandStone + a field_176297_a + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + g (Lalz;)Larn; func_180659_g +aji$a net/minecraft/block/BlockSandStone$EnumType + a DEFAULT + b CHISELED + c SMOOTH + d field_176679_d + e field_176680_e + f field_176677_f + g field_176678_g + h $VALUES + a ()I func_176675_a + a (I)Laji$a; func_176673_a + c ()Ljava/lang/String; func_176676_c + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Laji$a; values +ajj net/minecraft/block/BlockSapling + a field_176480_a + b field_176479_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;IILaio$a;)Z func_181624_a + a (Ladm;Lcj;Laio$a;)Z func_176477_a + a (Ladm;Lcj;Lalz;Z)Z func_176473_a + a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z func_180670_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladm;Ljava/util/Random;Lcj;Lalz;)V func_176474_b + c (Lalz;)I func_176201_c + d (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_176478_d + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_176476_e + f ()Ljava/lang/String; func_149732_F +ajj$1 net/minecraft/block/BlockSapling$1 + a field_177065_a +ajk net/minecraft/block/BlockSeaLantern + I ()Z func_149700_E + a (ILjava/util/Random;)I func_149679_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a + g (Lalz;)Larn; func_180659_g +ajl net/minecraft/block/BlockSign + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;)Laug; func_180646_a + b (Ladq;Lcj;)Z func_176205_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + g ()Z func_181623_g +ajm net/minecraft/block/BlockSkull + N field_176419_M + O field_176420_N + P field_176421_O + a field_176418_a + b field_176417_b + a (I)Lalz; func_176203_a + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalo;)V func_180679_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Ladm;Lcj;Lalz;Lwn;)V func_176208_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladq;Lcj;)V func_180654_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lzx;)Z func_176415_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + f ()Ljava/lang/String; func_149732_F + j (Ladm;Lcj;)I func_176222_j + l ()Lamd; func_176414_j + n ()Lamd; func_176416_l +ajm$1 net/minecraft/block/BlockSkull$1 + a (Lamc;)Z apply + apply (Ljava/lang/Object;)Z apply +ajm$2 net/minecraft/block/BlockSkull$2 + a field_177063_a +ajn net/minecraft/block/BlockSlime + a (Ladm;Lcj;Lpk;)V func_176199_a + a (Ladm;Lcj;Lpk;F)V func_180658_a + a (Ladm;Lpk;)V func_176216_a + m ()Ladf; func_180664_k +ajo net/minecraft/block/BlockSnowBlock + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b +ajp net/minecraft/block/BlockSnow + a field_176315_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;)Z func_176200_f + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lwn;Lcj;Lalz;Lakw;)V func_180657_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Ljava/util/Random;)I func_149745_a + b (I)V func_150154_b + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladq;Lcj;)Z func_176205_b + c ()Z func_149662_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)Z func_176314_e + j ()V func_149683_g +ajq net/minecraft/block/BlockSoulSand + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lpk;)V func_180634_a +ajr net/minecraft/block/BlockSponge + a field_176313_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + e (Ladm;Lcj;)Z func_176312_d + e (Ladm;Lcj;Lalz;)V func_176311_e + f ()Ljava/lang/String; func_149732_F +ajs net/minecraft/block/BlockStainedGlass + a field_176547_a + I ()Z func_149700_E + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Ljava/util/Random;)I func_149745_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + b (Ladm;Lcj;Lalz;)V func_180663_b + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + g (Lalz;)Larn; func_180659_g + m ()Ladf; func_180664_k +ajt net/minecraft/block/BlockStainedGlassPane + a field_176245_a + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + b (Ladm;Lcj;Lalz;)V func_180663_b + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + g (Lalz;)Larn; func_180659_g + m ()Ladf; func_180664_k +aju net/minecraft/block/BlockStairs + N field_176310_M + O field_150150_a + P field_150149_b + Q field_150151_M + R field_150152_N + S field_150153_O + a field_176309_a + b field_176308_b + A ()Z func_149703_v + a (I)Lalz; func_176203_a + a (Ladm;)I func_149738_a + a (Ladm;Lcj;Ladi;)V func_180652_a + a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V func_180638_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Laui;Laui;)Lauh; func_180636_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladm;Lcj;Lpk;)V func_176199_a + a (Ladm;Lcj;Lpk;Laui;)Laui; func_176197_a + a (Ladm;Lcj;Lwn;)V func_180649_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lalz;)Z func_176302_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Z)Z func_176209_a + a (Lpk;)F func_149638_a + b (Ladm;Lcj;)Laug; func_180646_a + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c ()Z func_149662_c + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + c (Ladq;Lcj;)I func_176207_c + c (Lafh;)Z func_150148_a + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + d (Ladm;Lcj;Lalz;)V func_176206_d + e ()Lama; func_180661_e + e (Ladq;Lcj;)V func_176303_e + f (Ladq;Lcj;)I func_176307_f + g (Ladq;Lcj;)I func_176305_g + g (Lalz;)Larn; func_180659_g + h (Ladq;Lcj;)Z func_176306_h + i (Ladq;Lcj;)Z func_176304_i + m ()Ladf; func_180664_k +aju$a net/minecraft/block/BlockStairs$EnumHalf + a TOP + b BOTTOM + c field_176709_c + d $VALUES + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Laju$a; values +aju$b net/minecraft/block/BlockStairs$EnumShape + a STRAIGHT + b INNER_LEFT + c INNER_RIGHT + d OUTER_LEFT + e OUTER_RIGHT + f field_176699_f + g $VALUES + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Laju$b; values +ajv net/minecraft/block/BlockStandingSign + a field_176413_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e +ajw net/minecraft/block/BlockStaticLiquid + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + f (Ladm;Lcj;)Z func_176369_e + f (Ladm;Lcj;Lalz;)V func_176370_f + m (Ladm;Lcj;)Z func_176368_m +ajx net/minecraft/block/BlockStem + N field_149877_a + a field_176484_a + b field_176483_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Ladm;Lcj;Lalz;Z)Z func_176473_a + a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z func_180670_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;I)I func_180662_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladm;Ljava/util/Random;Lcj;Lalz;)V func_176474_b + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lafh;)Z func_149854_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + g (Ladm;Lcj;Lalz;)V func_176482_g + h (Lalz;)I func_180644_h + j ()V func_149683_g + l ()Lzw; func_176481_j +ajx$1 net/minecraft/block/BlockStem$1 + a (Lcq;)Z apply + apply (Ljava/lang/Object;)Z apply +ajy net/minecraft/block/BlockStone + a field_176247_a + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + f ()Ljava/lang/String; func_149732_F + g (Lalz;)Larn; func_180659_g +ajy$a net/minecraft/block/BlockStone$EnumType + a STONE + b GRANITE + c GRANITE_SMOOTH + d DIORITE + e DIORITE_SMOOTH + f ANDESITE + g ANDESITE_SMOOTH + h field_176655_h + i field_176656_i + j field_176653_j + k field_176654_k + l field_181073_l + m $VALUES + a ()I func_176642_a + a (I)Lajy$a; func_176643_a + c ()Larn; func_181072_c + d ()Ljava/lang/String; func_176644_c + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lajy$a; values +ajz net/minecraft/block/BlockStoneBrick + N field_176250_M + O field_176251_N + P field_176252_O + a field_176249_a + b field_176248_b + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e +ajz$a net/minecraft/block/BlockStoneBrick$EnumType + a DEFAULT + b MOSSY + c CRACKED + d CHISELED + e field_176618_e + f field_176615_f + g field_176616_g + h field_176622_h + i $VALUES + a ()I func_176612_a + a (I)Lajz$a; func_176613_a + c ()Ljava/lang/String; func_176614_c + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lajz$a; values +ak net/minecraft/command/CommandHelp + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ()Ljava/util/List; func_71514_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + d ()Ljava/util/Map; func_71535_c + d (Lm;)Ljava/util/List; func_71534_d +aka net/minecraft/block/BlockButtonStone +akb net/minecraft/block/BlockStoneSlab + N field_176556_M + b field_176555_b + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + a (Lzx;)Ljava/lang/Object; func_176553_a + b (I)Ljava/lang/String; func_150002_b + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + g (Lalz;)Larn; func_180659_g + n ()Lamo; func_176551_l +akb$a net/minecraft/block/BlockStoneSlab$EnumType + a STONE + b SAND + c WOOD + d COBBLESTONE + e BRICK + f SMOOTHBRICK + g NETHERBRICK + h QUARTZ + i field_176640_i + j field_176637_j + k field_181075_k + l field_176638_k + m field_176635_l + n $VALUES + a ()I func_176624_a + a (I)Lakb$a; func_176625_a + c ()Larn; func_181074_c + d ()Ljava/lang/String; func_176627_c + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lakb$a; values +akc net/minecraft/block/BlockTallGrass + a field_176497_a + H ()I func_149635_D + R ()Lafh$a; func_176218_Q + a (I)Lalz; func_176203_a + a (ILjava/util/Random;)I func_149679_a + a (Ladm;Lcj;)Z func_176200_f + a (Ladm;Lcj;Lalz;Z)Z func_176473_a + a (Ladm;Ljava/util/Random;Lcj;Lalz;)Z func_180670_a + a (Ladm;Lwn;Lcj;Lalz;Lakw;)V func_180657_a + a (Ladq;Lcj;I)I func_180662_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + b (Ladm;Ljava/util/Random;Lcj;Lalz;)V func_176474_b + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + f (Ladm;Lcj;Lalz;)Z func_180671_f + h (Lalz;)I func_180644_h + j (Ladm;Lcj;)I func_176222_j +akc$a net/minecraft/block/BlockTallGrass$EnumType + a DEAD_BUSH + b GRASS + c FERN + d field_177048_d + e field_177049_e + f field_177046_f + g $VALUES + a ()I func_177044_a + a (I)Lakc$a; func_177045_a + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lakc$a; values +akd net/minecraft/block/BlockPane + N field_176242_M + O field_176243_N + P field_176244_O + a field_150099_b + b field_176241_b + I ()Z func_149700_E + a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V func_180638_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + c ()Z func_149662_c + c (Lafh;)Z func_150098_a + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + j ()V func_149683_g + m ()Ladf; func_180664_k +ake net/minecraft/block/BlockTNT + a field_176246_a + a (I)Lalz; func_176203_a + a (Ladi;)Z func_149659_a + a (Ladm;Lcj;Ladi;)V func_180652_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lpk;)V func_180634_a + a (Ladm;Lcj;Lalz;Lpr;)V func_180692_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Lalz;)I func_176201_c + d (Ladm;Lcj;Lalz;)V func_176206_d + e ()Lama; func_180661_e +akf net/minecraft/block/BlockTorch + a field_176596_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Laui;Laui;)Lauh; func_180636_a + a (Ladm;Lcj;Lcq;)Z func_176595_b + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + c ()Z func_149662_c + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180655_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + e (Ladm;Lcj;)Z func_176594_d + e (Ladm;Lcj;Lalz;)Z func_176592_e + f (Ladm;Lcj;Lalz;)Z func_176593_f + m ()Ladf; func_180664_k +akf$1 net/minecraft/block/BlockTorch$1 + a (Lcq;)Z apply + apply (Ljava/lang/Object;)Z apply +akf$2 net/minecraft/block/BlockTorch$2 + a field_176609_a +akg net/minecraft/block/BlockLeavesBase + R field_150121_P + a (Ladq;Lcj;Lcq;)Z func_176225_a + c ()Z func_149662_c +akh net/minecraft/block/BlockTrapDoor + N field_176285_M + a field_176284_a + b field_176283_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Laui;Laui;)Lauh; func_180636_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladq;Lcj;)V func_180654_a + a (Lcq;)I func_176282_a + b (I)Lcq; func_176281_b + b (Ladm;Lcj;)Laug; func_180646_a + b (Ladm;Lcj;Lcq;)Z func_176198_a + b (Ladq;Lcj;)Z func_176205_b + c ()Z func_149662_c + c (Lafh;)Z func_150119_a + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Lalz;)V func_180693_d + e ()Lama; func_180661_e + j ()V func_149683_g + m ()Ladf; func_180664_k +akh$1 net/minecraft/block/BlockTrapDoor$1 + a field_177058_a +akh$a net/minecraft/block/BlockTrapDoor$DoorHalf + a TOP + b BOTTOM + c field_176671_c + d $VALUES + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lakh$a; values +aki net/minecraft/block/BlockTripWire + N field_176294_M + O field_176295_N + P field_176296_O + Q field_176291_P + R field_176289_Q + S field_176292_R + a field_176293_a + b field_176290_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180645_a + a (Ladm;Lcj;Lalz;Lpk;)V func_180634_a + a (Ladm;Lcj;Lalz;Lwn;)V func_176208_a + a (Ladq;Lcj;)V func_180654_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Ladq;Lcj;Lalz;Lcq;)Z func_176287_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + e (Ladm;Lcj;)V func_176288_d + e (Ladm;Lcj;Lalz;)V func_176286_e + m ()Ladf; func_180664_k +akj net/minecraft/block/BlockTripWireHook + N field_176265_M + O field_176266_N + a field_176264_a + b field_176263_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180645_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lalz;ZZILalz;)V func_176260_a + a (Ladm;Lcj;Lcq;)V func_176262_b + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladm;Lcj;ZZZZ)V func_180694_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lalz;Lcq;)I func_180656_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladm;Lcj;Lcq;)Z func_176198_a + b (Ladq;Lcj;Lalz;Lcq;)I func_176211_b + c ()Z func_149662_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)Z func_176261_e + i ()Z func_149744_f + m ()Ladf; func_180664_k +akj$1 net/minecraft/block/BlockTripWireHook$1 + a field_177056_a +akk net/minecraft/block/BlockVine + N field_176278_M + O field_176279_N + P field_176280_O + Q field_176274_P + a field_176277_a + b field_176273_b + H ()I func_149635_D + a (I)Lalz; func_176203_a + a (Ladm;Lcj;)Z func_176200_f + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladm;Lwn;Lcj;Lalz;Lakw;)V func_180657_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;I)I func_180662_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Lcq;)Lamk; func_176267_a + a (Ljava/util/Random;)I func_149745_a + b (Ladm;Lcj;Lalz;Ljava/util/Random;)V func_180650_b + b (Ladm;Lcj;Lcq;)Z func_176198_a + c ()Z func_149662_c + c (Lafh;)Z func_150093_a + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Lalz;)I func_176268_d + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)Z func_176269_e + h (Lalz;)I func_180644_h + j ()V func_149683_g + m ()Ladf; func_180664_k +akk$1 net/minecraft/block/BlockVine$1 + a field_177057_a +akl net/minecraft/block/BlockWall + N field_176257_M + O field_176258_N + P field_176259_O + Q field_176255_P + a field_176256_a + b field_176254_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Lalz;)I func_180651_a + a (Lalz;Ladq;Lcj;)Lalz; func_176221_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + b (Ladq;Lcj;)Z func_176205_b + c ()Z func_149662_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + e (Ladq;Lcj;)Z func_176253_e + f ()Ljava/lang/String; func_149732_F +akl$a net/minecraft/block/BlockWall$EnumType + a NORMAL + b MOSSY + c field_176666_c + d field_176663_d + e field_176664_e + f field_176661_f + g $VALUES + a ()I func_176657_a + a (I)Lakl$a; func_176660_a + c ()Ljava/lang/String; func_176659_c + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lakl$a; values +akm net/minecraft/block/BlockWallSign + a field_176412_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladq;Lcj;)V func_180654_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e +akm$1 net/minecraft/block/BlockWallSign$1 + a field_177331_a +akn net/minecraft/block/BlockLilyPad + H ()I func_149635_D + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V func_180638_a + a (Ladq;Lcj;I)I func_180662_a + c (Lafh;)Z func_149854_a + c (Lalz;)I func_176201_c + f (Ladm;Lcj;Lalz;)Z func_180671_f + h (Lalz;)I func_180644_h +ako net/minecraft/block/BlockWeb + I ()Z func_149700_E + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;Lpk;)V func_180634_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + c ()Z func_149662_c + d ()Z func_149686_d + m ()Ladf; func_180664_k +akp net/minecraft/block/BlockPressurePlateWeighted + a field_176579_a + b field_150068_a + a (I)Lalz; func_176203_a + a (Ladm;)I func_149738_a + a (Lalz;I)Lalz; func_176575_a + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + e (Lalz;)I func_176576_e + f (Ladm;Lcj;)I func_180669_e +akq net/minecraft/block/BlockButtonWood +akr net/minecraft/block/BlockWoodSlab + b field_176557_b + a (I)Lalz; func_176203_a + a (Lalz;)I func_180651_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + a (Lzx;)Ljava/lang/Object; func_176553_a + b (I)Ljava/lang/String; func_150002_b + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + e ()Lama; func_180661_e + g (Lalz;)Larn; func_180659_g + n ()Lamo; func_176551_l +aks net/minecraft/block/BlockCarpet + a field_176330_a + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Lalz;)I func_180651_a + a (Lzw;Lyz;Ljava/util/List;)V func_149666_a + b (I)V func_150089_b + c ()Z func_149662_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + e ()Lama; func_180661_e + e (Ladm;Lcj;)Z func_176329_d + e (Ladm;Lcj;Lalz;)Z func_176328_e + g (Lalz;)Larn; func_180659_g + j ()V func_149683_g +akt net/minecraft/block/BlockYellowFlower + l ()Lagw$b; func_176495_j +aku net/minecraft/tileentity/TileEntityBanner + a field_175120_a + f field_175118_f + g field_175119_g + h field_175122_h + i field_175123_i + j field_175121_j + a (Ldn;)V func_145839_a + a (Ldn;ILdu;)V func_181020_a + a (Lzx;)V func_175112_a + b ()I func_175115_b + b (Ldn;)V func_145841_b + b (Lzx;)I func_175111_b + c ()Ljava/util/List; func_175114_c + c (Lzx;)I func_175113_c + d ()Ldu; func_181021_d + e ()Ljava/util/List; func_175110_d + e (Lzx;)V func_175117_e + g ()Ljava/lang/String; func_175116_e + h ()V func_175109_g + y_ ()Lff; func_145844_m +aku$a net/minecraft/tileentity/TileEntityBanner$EnumBannerPattern + A HALF_VERTICAL + B HALF_HORIZONTAL + C HALF_VERTICAL_MIRROR + D HALF_HORIZONTAL_MIRROR + E BORDER + F CURLY_BORDER + G CREEPER + H GRADIENT + I GRADIENT_UP + J BRICKS + K SKULL + L FLOWER + M MOJANG + N field_177284_N + O field_177285_O + P field_177291_P + Q field_177290_Q + R $VALUES + a BASE + b SQUARE_BOTTOM_LEFT + c SQUARE_BOTTOM_RIGHT + d SQUARE_TOP_LEFT + e SQUARE_TOP_RIGHT + f STRIPE_BOTTOM + g STRIPE_TOP + h STRIPE_LEFT + i STRIPE_RIGHT + j STRIPE_CENTER + k STRIPE_MIDDLE + l STRIPE_DOWNRIGHT + m STRIPE_DOWNLEFT + n STRIPE_SMALL + o CROSS + p STRAIGHT_CROSS + q TRIANGLE_BOTTOM + r TRIANGLE_TOP + s TRIANGLES_BOTTOM + t TRIANGLES_TOP + u DIAGONAL_LEFT + v DIAGONAL_RIGHT + w DIAGONAL_LEFT_MIRROR + x DIAGONAL_RIGHT_MIRROR + y CIRCLE_MIDDLE + z RHOMBUS_MIDDLE + a ()Ljava/lang/String; func_177271_a + a (Ljava/lang/String;)Laku$a; func_177268_a + b ()Ljava/lang/String; func_177273_b + c ()[Ljava/lang/String; func_177267_c + d ()Z func_177270_d + e ()Z func_177269_e + f ()Lzx; func_177272_f + values ()[Laku$a; values +akv net/minecraft/tileentity/TileEntityBeacon + a field_146009_a + f field_174909_f + g field_146016_i + h field_146014_j + i field_146015_k + j field_146012_l + k field_146013_m + l field_146010_n + m field_146011_o + n field_146008_p + A ()V func_146000_x + B ()V func_146003_y + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (Ldn;)V func_145839_a + a (Ljava/lang/String;)V func_145999_a + a (Lwm;Lwn;)Lxi; func_174876_a + a (Lwn;)Z func_70300_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (Ldn;)V func_145841_b + b (Lwn;)V func_174889_b + c ()V func_73660_a + c (II)Z func_145842_c + c (Lwn;)V func_174886_c + e_ ()Ljava/lang/String; func_70005_c_ + g ()I func_174890_g + h (I)I func_183001_h + k ()Ljava/lang/String; func_174875_k + l ()V func_174888_l + l_ ()Z func_145818_k_ + m ()V func_174908_m + n ()Ljava/util/List; func_174907_n + o ()F func_146002_i + o_ ()I func_70302_i_ + q_ ()I func_70297_j_ + s ()D func_145833_n + y_ ()Lff; func_145844_m +akv$a net/minecraft/tileentity/TileEntityBeacon$BeamSegment + a field_177266_a + b field_177265_b + a ()V func_177262_a + b ()[F func_177263_b + c ()I func_177264_c +akw net/minecraft/tileentity/TileEntity + a field_145852_a + b field_145850_b + c field_174879_c + d field_145846_f + e field_145854_h + f field_145855_i + g field_145853_j + h field_145847_g + D ()V func_145829_t + E ()V func_145836_u + F ()Z func_183000_F + G ()Ljava/util/Map; access$000 + a (DDD)D func_145835_a + a (Ladm;)V func_145834_a + a (Lc;)V func_145828_a + a (Lcj;)V func_174878_a + a (Ldn;)V func_145839_a + a (Ljava/lang/Class;Ljava/lang/String;)V func_145826_a + b (Ldn;)V func_145841_b + c (II)Z func_145842_c + c (Ldn;)Lakw; func_145827_c + p_ ()V func_70296_d + s ()D func_145833_n + t ()Z func_145830_o + u ()I func_145832_p + v ()Lcj; func_174877_v + w ()Lafh; func_145838_q + x ()Z func_145837_r + y ()V func_145843_s + y_ ()Lff; func_145844_m + z ()Ladm; func_145831_w +akw$1 net/minecraft/tileentity/TileEntity$1 + a field_150830_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +akw$2 net/minecraft/tileentity/TileEntity$2 + a field_150832_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +akw$3 net/minecraft/tileentity/TileEntity$3 + a field_150834_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +akx net/minecraft/tileentity/TileEntityBrewingStand + a field_145941_a + f field_145947_i + g field_145945_j + h field_145946_k + i field_145943_l + j field_145944_m + k field_145942_n + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (ILzx;Lcq;)Z func_180462_a + a (Lcq;)[I func_180463_a + a (Ldn;)V func_145839_a + a (Ljava/lang/String;)V func_145937_a + a (Lwm;Lwn;)Lxi; func_174876_a + a (Lwn;)Z func_70300_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (ILzx;Lcq;)Z func_180461_b + b (Ldn;)V func_145841_b + b (Lwn;)V func_174889_b + c ()V func_73660_a + c (ILzx;)I func_145936_c + c (Lwn;)V func_174886_c + e_ ()Ljava/lang/String; func_70005_c_ + g ()I func_174890_g + k ()Ljava/lang/String; func_174875_k + l ()V func_174888_l + l_ ()Z func_145818_k_ + m ()[Z func_174902_m + n ()Z func_145934_k + o ()V func_145940_l + o_ ()I func_70302_i_ + q_ ()I func_70297_j_ +aky net/minecraft/tileentity/TileEntityChest + a field_145984_a + f field_145992_i + g field_145990_j + h field_145991_k + i field_145988_l + j field_145989_m + k field_145986_n + l field_145987_o + m field_145985_p + n field_145983_q + o field_145982_r + p field_145981_s + E ()V func_145836_u + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (Laky;Lcq;)V func_174910_a + a (Lcq;)Laky; func_174911_a + a (Ldn;)V func_145839_a + a (Ljava/lang/String;)V func_145976_a + a (Lwm;Lwn;)Lxi; func_174876_a + a (Lwn;)Z func_70300_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (Lcj;)Z func_174912_b + b (Ldn;)V func_145841_b + b (Lwn;)V func_174889_b + c ()V func_73660_a + c (II)Z func_145842_c + c (Lwn;)V func_174886_c + e_ ()Ljava/lang/String; func_70005_c_ + g ()I func_174890_g + k ()Ljava/lang/String; func_174875_k + l ()V func_174888_l + l_ ()Z func_145818_k_ + m ()V func_145979_i + n ()I func_145980_j + o_ ()I func_70302_i_ + q_ ()I func_70297_j_ + y ()V func_145843_s +aky$1 net/minecraft/tileentity/TileEntityChest$1 + a field_177366_a +akz net/minecraft/tileentity/TileEntityCommandBlock + a field_145994_a + F ()Z func_183000_F + a (Ldn;)V func_145839_a + b ()Ladc; func_145993_a + b (Ldn;)V func_145841_b + c ()Ln; func_175124_c + y_ ()Lff; func_145844_m +akz$1 net/minecraft/tileentity/TileEntityCommandBlock$1 + a field_145767_a + a (Lio/netty/buffer/ByteBuf;)V func_145757_a + a (Ljava/lang/String;)V func_145752_a + c ()Lcj; func_180425_c + d ()Laui; func_174791_d + e ()Ladm; func_130014_f_ + f ()Lpk; func_174793_f + h ()V func_145756_e + i ()I func_145751_f +al net/minecraft/command/CommandServerKick + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +ala net/minecraft/tileentity/TileEntityComparator + a field_145997_a + a (I)V func_145995_a + a (Ldn;)V func_145839_a + b ()I func_145996_a + b (Ldn;)V func_145841_b +alb net/minecraft/tileentity/TileEntityDaylightDetector + c ()V func_73660_a +alc net/minecraft/tileentity/TileEntityDispenser + a field_146020_a + f field_174913_f + g field_146022_i + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (Ldn;)V func_145839_a + a (Ljava/lang/String;)V func_146018_a + a (Lwm;Lwn;)Lxi; func_174876_a + a (Lwn;)Z func_70300_a + a (Lzx;)I func_146019_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (Ldn;)V func_145841_b + b (Lwn;)V func_174889_b + c (Lwn;)V func_174886_c + e_ ()Ljava/lang/String; func_70005_c_ + g ()I func_174890_g + k ()Ljava/lang/String; func_174875_k + l ()V func_174888_l + l_ ()Z func_145818_k_ + m ()I func_146017_i + o_ ()I func_70302_i_ + q_ ()I func_70297_j_ +ald net/minecraft/tileentity/TileEntityDropper + e_ ()Ljava/lang/String; func_70005_c_ + k ()Ljava/lang/String; func_174875_k +ale net/minecraft/tileentity/TileEntityEnchantmentTable + a field_145926_a + f field_145933_i + g field_145931_j + h field_145932_k + i field_145929_l + j field_145930_m + k field_145927_n + l field_145928_o + m field_145925_p + n field_145924_q + o field_145923_r + p field_145922_s + a (Ldn;)V func_145839_a + a (Ljava/lang/String;)V func_145920_a + a (Lwm;Lwn;)Lxi; func_174876_a + b (Ldn;)V func_145841_b + c ()V func_73660_a + e_ ()Ljava/lang/String; func_70005_c_ + f_ ()Leu; func_145748_c_ + k ()Ljava/lang/String; func_174875_k + l_ ()Z func_145818_k_ +alf net/minecraft/tileentity/TileEntityEnderChest + a field_145972_a + f field_145975_i + g field_145973_j + h field_145974_k + a (Lwn;)Z func_145971_a + b ()V func_145969_a + c ()V func_73660_a + c (II)Z func_145842_c + d ()V func_145970_b + y ()V func_145843_s +alg net/minecraft/tileentity/TileEntityFlowerPot + a field_145967_a + f field_145968_i + a (Ldn;)V func_145839_a + a (Lzw;I)V func_145964_a + b ()Lzw; func_145965_a + b (Ldn;)V func_145841_b + c ()I func_145966_b + y_ ()Lff; func_145844_m +alh net/minecraft/tileentity/TileEntityFurnace + a field_145962_k + f field_145959_l + g field_145960_m + h field_145957_n + i field_145956_a + j field_145963_i + k field_174906_k + l field_174905_l + m field_145958_o + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (ILzx;Lcq;)Z func_180462_a + a (Lcq;)[I func_180463_a + a (Ldn;)V func_145839_a + a (Ljava/lang/String;)V func_145951_a + a (Log;)Z func_174903_a + a (Lwm;Lwn;)Lxi; func_174876_a + a (Lwn;)Z func_70300_a + a (Lzx;)I func_174904_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (ILzx;Lcq;)Z func_180461_b + b (Ldn;)V func_145841_b + b (Lwn;)V func_174889_b + b (Lzx;)I func_145952_a + c ()V func_73660_a + c (Lwn;)V func_174886_c + c (Lzx;)Z func_145954_b + e_ ()Ljava/lang/String; func_70005_c_ + g ()I func_174890_g + k ()Ljava/lang/String; func_174875_k + l ()V func_174888_l + l_ ()Z func_145818_k_ + m ()Z func_145950_i + n ()V func_145949_j + o ()Z func_145948_k + o_ ()I func_70302_i_ + q_ ()I func_70297_j_ +ali net/minecraft/tileentity/IHopper + A ()D func_96107_aA + B ()D func_96109_aB + C ()D func_96108_aC + z ()Ladm; func_145831_w +alj net/minecraft/tileentity/TileEntityHopper + a field_145900_a + f field_145902_i + g field_145901_j + A ()D func_96107_aA + B ()D func_96109_aB + C ()D func_96108_aC + H ()Log; func_145895_l + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (Ladm;DDD)Ljava/util/List; func_181556_a + a (Lali;)Z func_145891_a + a (Lali;Log;ILcq;)Z func_174915_a + a (Ldn;)V func_145839_a + a (Ljava/lang/String;)V func_145886_a + a (Log;Lcq;)Z func_174919_a + a (Log;Luz;)Z func_145898_a + a (Log;Lzx;ILcq;)Z func_174920_a + a (Log;Lzx;Lcq;)Lzx; func_174918_a + a (Lwm;Lwn;)Lxi; func_174876_a + a (Lwn;)Z func_70300_a + a (Lzx;Lzx;)Z func_145894_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (Ladm;DDD)Log; func_145893_b + b (Lali;)Log; func_145884_b + b (Ldn;)V func_145841_b + b (Log;Lcq;)Z func_174917_b + b (Log;Lzx;ILcq;)Z func_174921_b + b (Lwn;)V func_174889_b + c ()V func_73660_a + c (Log;Lzx;ILcq;)Lzx; func_174916_c + c (Lwn;)V func_174886_c + d (I)V func_145896_c + e_ ()Ljava/lang/String; func_70005_c_ + g ()I func_174890_g + k ()Ljava/lang/String; func_174875_k + l ()V func_174888_l + l_ ()Z func_145818_k_ + m ()Z func_145887_i + n ()Z func_145888_j + o ()Z func_174914_o + o_ ()I func_70302_i_ + p ()Z func_152104_k + p_ ()V func_70296_d + q ()Z func_152105_l + q_ ()I func_70297_j_ + r ()Z func_145883_k +alk net/minecraft/tileentity/TileEntityLockable + a field_174901_a + a (Ldn;)V func_145839_a + a (Lon;)V func_174892_a + b (Ldn;)V func_145841_b + f_ ()Leu; func_145748_c_ + i ()Lon; func_174891_i + r_ ()Z func_174893_q_ +all net/minecraft/tileentity/TileEntityMobSpawner + a field_145882_a + F ()Z func_183000_F + a (Ldn;)V func_145839_a + b ()Ladd; func_145881_a + b (Ldn;)V func_145841_b + c ()V func_73660_a + c (II)Z func_145842_c + y_ ()Lff; func_145844_m +all$1 net/minecraft/tileentity/TileEntityMobSpawner$1 + a field_150825_a + a ()Ladm; func_98271_a + a (I)V func_98267_a + a (Ladd$a;)V func_98277_a + b ()Lcj; func_177221_b +alm net/minecraft/tileentity/TileEntityNote + a field_145879_a + f field_145880_i + a (Ladm;Lcj;)V func_175108_a + a (Ldn;)V func_145839_a + b ()V func_145877_a + b (Ldn;)V func_145841_b +aln net/minecraft/tileentity/TileEntitySign + a field_145915_a + f field_145918_i + g field_145916_j + h field_145917_k + i field_174883_i + F ()Z func_183000_F + a (Laln;)Ln; access$000 + a (Ldn;)V func_145839_a + a (Lwn;)V func_145912_a + a (Z)V func_145913_a + b ()Z func_145914_a + b (Ldn;)V func_145841_b + b (Lwn;)Z func_174882_b + c ()Lwn; func_145911_b + d ()Ln; func_174880_d + y_ ()Lff; func_145844_m +aln$1 net/minecraft/tileentity/TileEntitySign$1 + a field_174795_a + a (ILjava/lang/String;)Z func_70003_b + a (Leu;)V func_145747_a + a (Ln$a;I)V func_174794_a + c ()Lcj; func_180425_c + d ()Laui; func_174791_d + e ()Ladm; func_130014_f_ + e_ ()Ljava/lang/String; func_70005_c_ + f ()Lpk; func_174793_f + f_ ()Leu; func_145748_c_ + u_ ()Z func_174792_t_ +aln$2 net/minecraft/tileentity/TileEntitySign$2 + a field_174797_a + b field_174796_b + a (ILjava/lang/String;)Z func_70003_b + a (Leu;)V func_145747_a + a (Ln$a;I)V func_174794_a + c ()Lcj; func_180425_c + d ()Laui; func_174791_d + e ()Ladm; func_130014_f_ + e_ ()Ljava/lang/String; func_70005_c_ + f ()Lpk; func_174793_f + f_ ()Leu; func_145748_c_ + u_ ()Z func_174792_t_ +alo net/minecraft/tileentity/TileEntitySkull + a field_145908_a + f field_145910_i + g field_152110_j + a (I)V func_152107_a + a (Lcom/mojang/authlib/GameProfile;)V func_152106_a + a (Ldn;)V func_145839_a + b ()Lcom/mojang/authlib/GameProfile; func_152108_a + b (I)V func_145903_a + b (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/authlib/GameProfile; func_174884_b + b (Ldn;)V func_145841_b + c ()I func_145904_a + d ()I func_145906_b + e ()V func_152109_d + y_ ()Lff; func_145844_m +alp net/minecraft/tileentity/TileEntityEndPortal +als net/minecraft/block/BlockPistonBase + N field_150082_a + a field_176321_a + b field_176320_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;II)Z func_180648_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V func_180638_a + a (Ladm;Lcj;Lalz;Lpr;Lzx;)V func_180633_a + a (Ladm;Lcj;Lcq;)Z func_176318_b + a (Ladm;Lcj;Lcq;FFFILpr;)Lalz; func_180642_a + a (Ladm;Lcj;Lcq;Z)Z func_176319_a + a (Ladm;Lcj;Lpr;)Lcq; func_180695_a + a (Ladq;Lcj;)V func_180654_a + a (Lafh;Ladm;Lcj;Lcq;Z)Z func_180696_a + b (I)Lcq; func_176317_b + b (Lalz;)Lalz; func_176217_b + c ()Z func_149662_c + c (Ladm;Lcj;Lalz;)V func_176213_c + c (Lalz;)I func_176201_c + d ()Z func_149686_d + e ()Lama; func_180661_e + e (Ladm;Lcj;Lalz;)V func_176316_e + j ()V func_149683_g +als$1 net/minecraft/block/BlockPistonBase$1 + a field_177243_a +alt net/minecraft/block/BlockPistonExtension + N field_176327_M + a field_176326_a + b field_176325_b + a (I)Lalz; func_176203_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Laug;Ljava/util/List;Lpk;)V func_180638_a + a (Ladm;Lcj;Lalz;Lwn;)V func_176208_a + a (Ladq;Lcj;)V func_180654_a + a (Ladq;Lcj;Lcq;)Z func_176225_a + a (Ljava/util/Random;)I func_149745_a + b (I)Lcq; func_176322_b + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lcq;)Z func_176198_a + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + d (Lalz;)V func_176324_d + e ()Lama; func_180661_e + e (Lalz;)V func_176323_e +alt$1 net/minecraft/block/BlockPistonExtension$1 + a field_177247_a +alt$a net/minecraft/block/BlockPistonExtension$EnumPistonType + a DEFAULT + b STICKY + c field_176714_c + d $VALUES + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lalt$a; values +alu net/minecraft/tileentity/TileEntityPiston + a field_174932_a + f field_174931_f + g field_145875_k + h field_145872_l + i field_145873_m + j field_145870_n + k field_174933_k + a (F)F func_145860_a + a (FF)V func_145863_a + a (Ldn;)V func_145839_a + b ()Lalz; func_174927_b + b (F)F func_174929_b + b (Ldn;)V func_145841_b + c ()V func_73660_a + c (F)F func_174928_c + d ()Z func_145868_b + d (F)F func_174926_d + e ()Lcq; func_174930_e + g ()Z func_145867_d + h ()V func_145866_f + u ()I func_145832_p +alu$1 net/minecraft/tileentity/TileEntityPiston$1 + a field_177248_a +alv net/minecraft/block/BlockPistonMoving + a field_176426_a + b field_176425_b + a (I)Lalz; func_176203_a + a (Ladm;I)Lakw; func_149915_a + a (Ladm;Lcj;Lalz;)Laug; func_180640_a + a (Ladm;Lcj;Lalz;FI)V func_180653_a + a (Ladm;Lcj;Lalz;FLcq;)Laug; func_176424_a + a (Ladm;Lcj;Lalz;Lafh;)V func_176204_a + a (Ladm;Lcj;Lalz;Lwn;Lcq;FFF)Z func_180639_a + a (Ladm;Lcj;Laui;Laui;)Lauh; func_180636_a + a (Ladq;Lcj;)V func_180654_a + a (Lalz;Lcq;ZZ)Lakw; func_176423_a + a (Lalz;Ljava/util/Random;I)Lzw; func_180660_a + b (Ladm;Lcj;Lalz;)V func_180663_b + b (Ladm;Lcj;Lcq;)Z func_176198_a + c ()Z func_149662_c + c (Ladm;Lcj;)Lzw; func_180665_b + c (Lalz;)I func_176201_c + d ()Z func_149686_d + d (Ladm;Lcj;)Z func_176196_c + d (Ladm;Lcj;Lalz;)V func_176206_d + e ()Lama; func_180661_e + e (Ladq;Lcj;)Lalu; func_176422_e +alw net/minecraft/block/state/BlockPistonStructureHelper + a field_177261_a + b field_177259_b + c field_177260_c + d field_177257_d + e field_177258_e + f field_177256_f + a ()Z func_177253_a + a (II)V func_177255_a + a (Lcj;)Z func_177251_a + b (Lcj;)Z func_177250_b + c ()Ljava/util/List; func_177254_c + d ()Ljava/util/List; func_177252_d +aly net/minecraft/block/state/BlockStateBase + a field_177234_a + b field_177233_b + a (Lamo;)Lalz; func_177231_a + a (Ljava/util/Collection;Ljava/lang/Object;)Ljava/lang/Object; func_177232_a + toString ()Ljava/lang/String; toString +aly$1 net/minecraft/block/state/BlockStateBase$1 + a (Ljava/util/Map$Entry;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +alz net/minecraft/block/state/IBlockState + a ()Ljava/util/Collection; func_177227_a + a (Lamo;)Lalz; func_177231_a + a (Lamo;Ljava/lang/Comparable;)Lalz; func_177226_a + b ()Lcom/google/common/collect/ImmutableMap; func_177228_b + b (Lamo;)Ljava/lang/Comparable; func_177229_b + c ()Lafh; func_177230_c +am net/minecraft/command/CommandKill + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +ama net/minecraft/block/state/BlockState + a field_177628_a + b field_177626_b + c field_177627_c + d field_177624_d + e field_177625_e + a ()Lcom/google/common/collect/ImmutableList; func_177619_a + b ()Lalz; func_177621_b + c ()Lafh; func_177622_c + d ()Ljava/util/Collection; func_177623_d + e ()Ljava/util/List; func_177620_e + toString ()Ljava/lang/String; toString +ama$1 net/minecraft/block/state/BlockState$1 + a (Lamo;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +ama$2 net/minecraft/block/state/BlockState$2 + a field_177549_a + a (Lamo;Lamo;)I compare + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare +ama$a net/minecraft/block/state/BlockState$StateImplementation + a field_177239_a + b field_177237_b + c field_177238_c + a ()Ljava/util/Collection; func_177227_a + a (Lamo;Ljava/lang/Comparable;)Lalz; func_177226_a + a (Ljava/util/Map;)V func_177235_a + b ()Lcom/google/common/collect/ImmutableMap; func_177228_b + b (Lamo;)Ljava/lang/Comparable; func_177229_b + b (Lamo;Ljava/lang/Comparable;)Ljava/util/Map; func_177236_b + c ()Lafh; func_177230_c + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode +amc net/minecraft/block/state/BlockWorldState + a field_177515_a + b field_177513_b + c field_181628_c + d field_177514_c + e field_177511_d + f field_177512_e + a ()Lalz; func_177509_a + a (Lcom/google/common/base/Predicate;)Lcom/google/common/base/Predicate; func_177510_a + b ()Lakw; func_177507_b + d ()Lcj; func_177508_d +amc$1 net/minecraft/block/state/BlockWorldState$1 + a field_177504_a + a (Lamc;)Z apply + apply (Ljava/lang/Object;)Z apply +amd net/minecraft/block/state/pattern/BlockPattern + a field_177689_a + b field_177687_b + c field_177688_c + d field_177686_d + a (Ladm;Lcj;)Lamd$b; func_177681_a + a (Ladm;Z)Lcom/google/common/cache/LoadingCache; func_181627_a + a (Lcj;Lcq;Lcq;III)Lcj; func_177683_a + a (Lcj;Lcq;Lcq;Lcom/google/common/cache/LoadingCache;)Lamd$b; func_177682_a + b ()I func_177685_b + c ()I func_177684_c +amd$a net/minecraft/block/state/pattern/BlockPattern$CacheLoader + a field_177680_a + b field_181626_b + a (Lcj;)Lamc; load + load (Ljava/lang/Object;)Ljava/lang/Object; load +amd$b net/minecraft/block/state/pattern/BlockPattern$PatternHelper + a field_177674_a + b field_177672_b + c field_177673_c + d field_177671_d + e field_181120_e + f field_181121_f + g field_181122_g + a ()Lcj; func_181117_a + a (III)Lamc; func_177670_a + b ()Lcq; func_177669_b + c ()Lcq; func_177668_c + d ()I func_181118_d + e ()I func_181119_e + toString ()Ljava/lang/String; toString +ame net/minecraft/block/state/pattern/FactoryBlockPattern + a field_177667_a + b field_177665_b + c field_177666_c + d field_177663_d + e field_177664_e + a ()Lame; func_177660_a + a (CLcom/google/common/base/Predicate;)Lame; func_177662_a + a ([Ljava/lang/String;)Lame; func_177659_a + b ()Lamd; func_177661_b + c ()[[[Lcom/google/common/base/Predicate; func_177658_c + d ()V func_177657_d +amg net/minecraft/block/state/pattern/BlockHelper + a field_177644_a + a (Lafh;)Lamg; func_177642_a + a (Lalz;)Z apply + apply (Ljava/lang/Object;)Z apply +amh net/minecraft/block/state/pattern/BlockStateHelper + a field_177641_a + b field_177640_b + a (Lafh;)Lamh; func_177638_a + a (Lalz;)Z apply + a (Lamo;Lcom/google/common/base/Predicate;)Lamh; func_177637_a + apply (Ljava/lang/Object;)Z apply +amj net/minecraft/block/properties/PropertyHelper + a field_177704_a + b field_177703_b + a ()Ljava/lang/String; func_177701_a + b ()Ljava/lang/Class; func_177699_b + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +amk net/minecraft/block/properties/PropertyBool + a field_177717_a + a (Ljava/lang/Boolean;)Ljava/lang/String; func_177702_a + a (Ljava/lang/Comparable;)Ljava/lang/String; func_177702_a + a (Ljava/lang/String;)Lamk; func_177716_a + c ()Ljava/util/Collection; func_177700_c +aml net/minecraft/block/properties/PropertyDirection + a (Ljava/lang/String;)Laml; func_177714_a + a (Ljava/lang/String;Lcom/google/common/base/Predicate;)Laml; func_177712_a + a (Ljava/lang/String;Ljava/util/Collection;)Laml; func_177713_a +amm net/minecraft/block/properties/PropertyEnum + a field_177711_a + b field_177710_b + a (Ljava/lang/Comparable;)Ljava/lang/String; func_177702_a + a (Ljava/lang/Enum;)Ljava/lang/String; func_177702_a + a (Ljava/lang/String;Ljava/lang/Class;)Lamm; func_177709_a + a (Ljava/lang/String;Ljava/lang/Class;Lcom/google/common/base/Predicate;)Lamm; func_177708_a + a (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)Lamm; func_177707_a + a (Ljava/lang/String;Ljava/lang/Class;[Ljava/lang/Enum;)Lamm; func_177706_a + c ()Ljava/util/Collection; func_177700_c +amn net/minecraft/block/properties/PropertyInteger + a field_177720_a + a (Ljava/lang/Comparable;)Ljava/lang/String; func_177702_a + a (Ljava/lang/Integer;)Ljava/lang/String; func_177702_a + a (Ljava/lang/String;II)Lamn; func_177719_a + c ()Ljava/util/Collection; func_177700_c + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode +amo net/minecraft/block/properties/IProperty + a ()Ljava/lang/String; func_177701_a + a (Ljava/lang/Comparable;)Ljava/lang/String; func_177702_a + b ()Ljava/lang/Class; func_177699_b + c ()Ljava/util/Collection; func_177700_c +amq net/minecraft/world/border/IBorderListener + a (Lams;D)V func_177694_a + a (Lams;DD)V func_177693_a + a (Lams;DDJ)V func_177692_a + a (Lams;I)V func_177691_a + b (Lams;D)V func_177696_b + b (Lams;I)V func_177690_b + c (Lams;D)V func_177695_c +amr net/minecraft/world/border/EnumBorderStatus + a GROWING + b SHRINKING + c STATIONARY + d field_177767_d + e $VALUES + a ()I func_177766_a + values ()[Lamr; values +ams net/minecraft/world/border/WorldBorder + a field_177758_a + b field_177756_b + c field_177757_c + d field_177754_d + e field_177755_e + f field_177752_f + g field_177753_g + h field_177762_h + i field_177763_i + j field_177760_j + k field_177761_k + l field_177759_l + a ()Lamr; func_177734_a + a (D)V func_177750_a + a (DDJ)V func_177738_a + a (I)V func_177725_a + a (Ladg;)Z func_177730_a + a (Lamq;)V func_177737_a + a (Laug;)Z func_177743_a + a (Lcj;)Z func_177746_a + a (Lpk;)D func_177745_a + b ()D func_177726_b + b (D)V func_177724_b + b (DD)D func_177729_b + b (I)V func_177723_b + c ()D func_177736_c + c (D)V func_177744_c + c (DD)V func_177739_c + c (I)V func_177747_c + d ()D func_177728_d + e ()D func_177733_e + f ()D func_177731_f + g ()D func_177721_g + h ()D func_177741_h + i ()J func_177732_i + j ()D func_177751_j + k ()Ljava/util/List; func_177735_k + l ()I func_177722_l + m ()D func_177742_m + n ()D func_177727_n + o ()D func_177749_o + p ()I func_177740_p + q ()I func_177748_q +amv net/minecraft/world/chunk/IChunkProvider + a (II)Z func_73149_a + a (Ladm;Ljava/lang/String;Lcj;)Lcj; func_180513_a + a (Lamv;II)V func_73153_a + a (Lamv;Lamy;II)Z func_177460_a + a (Lamy;II)V func_180514_a + a (Lcj;)Lamy; func_177459_a + a (Lpt;Lcj;)Ljava/util/List; func_177458_a + a (ZLnu;)Z func_73151_a + c ()V func_104112_b + d ()Z func_73156_b + d (II)Lamy; func_73154_d + e ()Z func_73157_c + f ()Ljava/lang/String; func_73148_d + g ()I func_73152_e +amw net/minecraft/world/chunk/NibbleArray + a field_76585_a + a ()[B func_177481_a + a (I)I func_177480_a + a (II)V func_177482_a + a (III)I func_76582_a + a (IIII)V func_76581_a + b (I)Z func_177479_b + b (III)I func_177483_b + c (I)I func_177478_c +amx net/minecraft/world/chunk/EmptyChunk + a ()V func_76590_a + a (II)Z func_76600_a + a (J)Ljava/util/Random; func_76617_a + a (Lads;Lcj;)I func_177413_a + a (Lads;Lcj;I)V func_177431_a + a (Lakw;)V func_150813_a + a (Lcj;)Lafh; func_177428_a + a (Lcj;I)I func_177443_a + a (Lcj;Lakw;)V func_177426_a + a (Lcj;Lamy$a;)Lakw; func_177424_a + a (Ljava/lang/Class;Laug;Ljava/util/List;Lcom/google/common/base/Predicate;)V func_177430_a + a (Lpk;)V func_76612_a + a (Lpk;I)V func_76608_a + a (Lpk;Laug;Ljava/util/List;Lcom/google/common/base/Predicate;)V func_177414_a + a (Z)Z func_76601_a + b ()V func_76603_b + b (II)I func_76611_b + b (Lcj;)I func_177437_b + b (Lpk;)V func_76622_b + c ()V func_76631_c + c (II)Z func_76606_c + c (Lcj;)I func_177418_c + d ()V func_76623_d + d (Lcj;)Z func_177444_d + e ()V func_76630_e + e (Lcj;)V func_177425_e + f ()Z func_76621_g +amy net/minecraft/world/chunk/Chunk + a field_76635_g + b field_76647_h + c field_150817_t + d field_76652_q + e field_76651_r + f field_76638_b + g field_76639_c + h field_76636_d + i field_76637_e + j field_76634_f + k field_76650_s + l field_150816_i + m field_76645_j + n field_76646_k + o field_150814_l + p field_150815_m + q field_76643_l + r field_76644_m + s field_76641_n + t field_82912_p + u field_111204_q + v field_76649_t + w field_177447_w + a ()V func_76590_a + a (II)Z func_76600_a + a (III)Lafh; func_177438_a + a (IIII)V func_76609_d + a (J)Ljava/util/Random; func_76617_a + a (Lads;Lcj;)I func_177413_a + a (Lads;Lcj;I)V func_177431_a + a (Lakw;)V func_150813_a + a (Lamv;Lamv;II)V func_76624_a + a (Lcj;)Lafh; func_177428_a + a (Lcj;I)I func_177443_a + a (Lcj;Laec;)Lady; func_177411_a + a (Lcj;Lakw;)V func_177426_a + a (Lcj;Lalz;)Lalz; func_177436_a + a (Lcj;Lamy$a;)Lakw; func_177424_a + a (Lcq;)V func_180700_a + a (Ljava/lang/Class;Laug;Ljava/util/List;Lcom/google/common/base/Predicate;)V func_177430_a + a (Lpk;)V func_76612_a + a (Lpk;I)V func_76608_a + a (Lpk;Laug;Ljava/util/List;Lcom/google/common/base/Predicate;)V func_177414_a + a (Z)Z func_76601_a + a ([B)V func_76616_a + a ([BIZ)V func_177439_a + a ([I)V func_177420_a + a ([Lamz;)V func_76602_a + b ()V func_76603_b + b (II)I func_76611_b + b (J)V func_177432_b + b (Lcj;)I func_177437_b + b (Lpk;)V func_76622_b + b (Z)V func_150804_b + c ()V func_76631_c + c (II)Z func_76606_c + c (III)V func_76599_g + c (J)V func_177415_c + c (Lcj;)I func_177418_c + c (Z)V func_177417_c + d ()V func_76623_d + d (II)V func_76595_e + d (III)V func_76615_h + d (Lcj;)Z func_177444_d + d (Z)V func_177446_d + e ()V func_76630_e + e (II)Z func_150811_f + e (III)I func_150808_b + e (Lcj;)V func_177425_e + e (Z)V func_177421_e + f ()Z func_76621_g + f (III)Lafh; func_150810_a + f (Lcj;)I func_177433_f + f (Z)V func_177427_f + g ()I func_76625_h + g (III)I func_76628_c + g (Lcj;)Lalz; func_177435_g + g (Z)V func_177409_g + h ()[Lamz; func_76587_i + h (Lcj;)Lcj; func_177440_h + h (Z)V func_150803_c + i ()Z func_150802_k + i (Lcj;)Lakw; func_177422_i + j ()Ladg; func_76632_l + k ()[B func_76605_m + l ()V func_76613_n + m ()V func_76594_o + n ()V func_150809_p + o ()Z func_177410_o + p ()Ladm; func_177412_p + q ()[I func_177445_q + r ()Ljava/util/Map; func_177434_r + s ()[Lne; func_177429_s + t ()Z func_177419_t + u ()Z func_177423_u + v ()I func_177442_v + w ()J func_177416_w + y ()V func_177441_y +amy$1 net/minecraft/world/chunk/Chunk$1 + a field_150824_a + b field_150822_b + c field_150823_c + d field_150821_d + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +amy$2 net/minecraft/world/chunk/Chunk$2 + a field_177457_a + b field_177456_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +amy$3 net/minecraft/world/chunk/Chunk$3 + a field_177450_a + b field_177449_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +amy$a net/minecraft/world/chunk/Chunk$EnumCreateEntityType + a IMMEDIATE + b QUEUED + c CHECK + d $VALUES + values ()[Lamy$a; values +amz net/minecraft/world/chunk/storage/ExtendedBlockStorage + a field_76684_a + b field_76682_b + c field_76683_c + d field_177488_d + e field_76679_g + f field_76685_h + a ()Z func_76663_a + a (III)Lalz; func_177485_a + a (IIII)V func_76657_c + a (IIILalz;)V func_177484_a + a (Lamw;)V func_76659_c + a ([C)V func_177486_a + b ()Z func_76675_b + b (III)Lafh; func_150819_a + b (IIII)V func_76677_d + b (Lamw;)V func_76666_d + c (III)I func_76665_b + d ()I func_76662_d + d (III)I func_76670_c + e ()V func_76672_e + e (III)I func_76674_d + g ()[C func_177487_g + h ()Lamw; func_76661_k + i ()Lamw; func_76671_l +an net/minecraft/command/server/CommandListBans + a ()I func_82362_a + a (Lm;)Z func_71519_b + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +ana net/minecraft/world/chunk/storage/NibbleArrayReader + a field_76689_a + b field_76687_b + c field_76688_c + a (III)I func_76686_a +and net/minecraft/world/chunk/storage/IChunkLoader + a ()V func_75817_a + a (Ladm;II)Lamy; func_75815_a + a (Ladm;Lamy;)V func_75816_a + b ()V func_75818_b + b (Ladm;Lamy;)V func_75819_b +ang net/minecraft/world/chunk/storage/ChunkLoader + a (Lang$a;Ldn;Laec;)V func_76690_a + a (Ldn;)Lang$a; func_76691_a +ang$a net/minecraft/world/chunk/storage/ChunkLoader$AnvilConverterData + a field_76698_a + b field_76696_b + c field_76697_c + d field_76694_d + e field_76695_e + f field_76692_f + g field_76693_g + h field_76702_h + i field_151564_i + j field_151563_j + k field_76701_k + l field_76699_l +anh net/minecraft/world/chunk/storage/RegionFile + a field_76720_a + b field_76718_b + c field_76719_c + d field_76716_d + e field_76717_e + f field_76714_f + g field_76715_g + h field_76721_h + a (II)Ljava/io/DataInputStream; func_76704_a + a (III)V func_76711_a + a (II[BI)V func_76706_a + a (I[BI)V func_76712_a + b (II)Ljava/io/DataOutputStream; func_76710_b + b (III)V func_76713_b + c ()V func_76708_c + c (II)Z func_76709_c + d (II)Z func_76705_d + e (II)I func_76707_e +anh$a net/minecraft/world/chunk/storage/RegionFile$ChunkBuffer + a field_76724_a + b field_76722_b + c field_76723_c + close ()V close +ani net/minecraft/world/chunk/storage/RegionFileCache + a field_76553_a + a ()V func_76551_a + a (Ljava/io/File;II)Lanh; func_76550_a + c (Ljava/io/File;II)Ljava/io/DataInputStream; func_76549_c + d (Ljava/io/File;II)Ljava/io/DataOutputStream; func_76552_d +anj net/minecraft/world/chunk/storage/AnvilChunkLoader + a field_151505_a + b field_75828_a + c field_75826_b + d field_75825_d + e field_183014_e + a ()V func_75817_a + a (Ladg;Ldn;)V func_75824_a + a (Ladm;II)Lamy; func_75815_a + a (Ladm;IILdn;)Lamy; func_75822_a + a (Ladm;Lamy;)V func_75816_a + a (Ladm;Ldn;)Lamy; func_75823_a + a (Lamy;Ladm;Ldn;)V func_75820_a + b ()V func_75818_b + b (Ladg;Ldn;)V func_183013_b + b (Ladm;Lamy;)V func_75819_b + c ()Z func_75814_c +anm net/minecraft/world/WorldProvider + a field_111203_a + b field_76579_a + c field_76578_c + d field_76575_d + e field_76576_e + f field_76573_f + g field_76574_g + h field_76577_b + i field_82913_c + j field_76580_h + a ()V func_76556_a + a (FF)[F func_76560_a + a (I)Lanm; func_76570_a + a (II)Z func_76566_a + a (J)I func_76559_b + a (JF)F func_76563_a + a (Ladm;)V func_76558_a + b ()V func_76572_b + b (FF)Laui; func_76562_b + b (II)Z func_76568_b + c ()Lamv; func_76555_c + d ()Z func_76569_d + e ()Z func_76567_e + f ()F func_76571_f + g ()Z func_76561_g + h ()Lcj; func_177496_h + i ()I func_76557_i + j ()D func_76565_k + k ()Ljava/lang/String; func_80007_l + l ()Ljava/lang/String; func_177498_l + m ()Laec; func_177499_m + n ()Z func_177500_n + o ()Z func_177495_o + p ()[F func_177497_p + q ()I func_177502_q + r ()Lams; func_177501_r +ann net/minecraft/world/WorldProviderHell + a ()V func_76556_a + a (II)Z func_76566_a + a (JF)F func_76563_a + b ()V func_76572_b + b (FF)Laui; func_76562_b + b (II)Z func_76568_b + c ()Lamv; func_76555_c + d ()Z func_76569_d + e ()Z func_76567_e + k ()Ljava/lang/String; func_80007_l + l ()Ljava/lang/String; func_177498_l + r ()Lams; func_177501_r +ann$1 net/minecraft/world/WorldProviderHell$1 + a field_177764_a + f ()D func_177731_f + g ()D func_177721_g +ano net/minecraft/world/WorldProviderSurface + k ()Ljava/lang/String; func_80007_l + l ()Ljava/lang/String; func_177498_l +anp net/minecraft/world/WorldProviderEnd + a (FF)[F func_76560_a + a (II)Z func_76566_a + a (JF)F func_76563_a + b ()V func_76572_b + b (FF)Laui; func_76562_b + b (II)Z func_76568_b + c ()Lamv; func_76555_c + d ()Z func_76569_d + e ()Z func_76567_e + f ()F func_76571_f + g ()Z func_76561_g + h ()Lcj; func_177496_h + i ()I func_76557_i + k ()Ljava/lang/String; func_80007_l + l ()Ljava/lang/String; func_177498_l +anr net/minecraft/world/gen/MapGenRavine + d field_75046_d + a (JIILans;DDDFFFIID)V func_180707_a + a (Ladm;IIIILans;)V func_180701_a +ans net/minecraft/world/chunk/ChunkPrimer + a field_177860_a + b field_177859_b + a (I)Lalz; func_177858_a + a (III)Lalz; func_177856_a + a (IIILalz;)V func_177855_a + a (ILalz;)V func_177857_a +ant net/minecraft/world/gen/ChunkProviderSettings + A field_177781_A + B field_177782_B + C field_177783_C + D field_177777_D + E field_177778_E + F field_177779_F + G field_177780_G + H field_177788_H + I field_177789_I + J field_177790_J + K field_177791_K + L field_177784_L + M field_177785_M + N field_177786_N + O field_177787_O + P field_177797_P + Q field_177796_Q + R field_177799_R + S field_177798_S + T field_177793_T + U field_177792_U + V field_177795_V + W field_177794_W + X field_177801_X + Y field_177800_Y + Z field_177802_Z + a field_177811_a + aa field_177846_aa + ab field_177847_ab + ac field_177844_ac + ad field_177845_ad + ae field_177851_ae + af field_177853_af + ag field_177848_ag + ah field_177849_ah + ai field_177832_ai + aj field_177834_aj + ak field_177828_ak + al field_177830_al + am field_177840_am + an field_177842_an + ao field_177836_ao + ap field_177838_ap + aq field_177818_aq + ar field_177816_ar + as field_177814_as + at field_177812_at + au field_177826_au + av field_177824_av + aw field_177822_aw + ax field_177820_ax + ay field_177807_ay + az field_177805_az + b field_177809_b + c field_177810_c + d field_177806_d + e field_177808_e + f field_177803_f + g field_177804_g + h field_177825_h + i field_177827_i + j field_177821_j + k field_177823_k + l field_177817_l + m field_177819_m + n field_177813_n + o field_177815_o + p field_177843_p + q field_177841_q + r field_177839_r + s field_177837_s + t field_177835_t + u field_177833_u + v field_177831_v + w field_177829_w + x field_177854_x + y field_177852_y + z field_177850_z +ant$1 net/minecraft/world/gen/ChunkProviderSettings$1 +ant$a net/minecraft/world/gen/ChunkProviderSettings$Factory + A field_177870_A + B field_177871_B + C field_177872_C + D field_177866_D + E field_177867_E + F field_177868_F + G field_177869_G + H field_177877_H + I field_177878_I + J field_177879_J + K field_177880_K + L field_177873_L + M field_177874_M + N field_177875_N + O field_177876_O + P field_177886_P + Q field_177885_Q + R field_177888_R + S field_177887_S + T field_177882_T + U field_177881_U + V field_177884_V + W field_177883_W + X field_177891_X + Y field_177890_Y + Z field_177892_Z + a field_177901_a + aA field_177889_aA + aa field_177936_aa + ab field_177937_ab + ac field_177934_ac + ad field_177935_ad + ae field_177941_ae + af field_177943_af + ag field_177938_ag + ah field_177939_ah + ai field_177922_ai + aj field_177924_aj + ak field_177918_ak + al field_177920_al + am field_177930_am + an field_177932_an + ao field_177926_ao + ap field_177928_ap + aq field_177908_aq + ar field_177906_ar + as field_177904_as + at field_177902_at + au field_177916_au + av field_177914_av + aw field_177912_aw + ax field_177910_ax + ay field_177897_ay + az field_177895_az + b field_177899_b + c field_177900_c + d field_177896_d + e field_177898_e + f field_177893_f + g field_177894_g + h field_177915_h + i field_177917_i + j field_177911_j + k field_177913_k + l field_177907_l + m field_177909_m + n field_177903_n + o field_177905_o + p field_177933_p + q field_177931_q + r field_177929_r + s field_177927_s + t field_177925_t + u field_177923_u + v field_177921_v + w field_177919_w + x field_177944_x + y field_177942_y + z field_177940_z + a ()V func_177863_a + a (Ljava/lang/String;)Lant$a; func_177865_a + b ()Lant; func_177864_b + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ant$b net/minecraft/world/gen/ChunkProviderSettings$Serializer + a (Lant$a;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lant$a; deserialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize +anu net/minecraft/world/gen/ChunkProviderDebug + a field_177464_a + b field_177462_b + c field_181039_c + d field_177463_c + a (II)Z func_73149_a + a (Ladm;Ljava/lang/String;Lcj;)Lcj; func_180513_a + a (Lamv;II)V func_73153_a + a (Lamv;Lamy;II)Z func_177460_a + a (Lamy;II)V func_180514_a + a (Lcj;)Lamy; func_177459_a + a (Lpt;Lcj;)Ljava/util/List; func_177458_a + a (ZLnu;)Z func_73151_a + b (II)Lalz; func_177461_b + c ()V func_104112_b + d ()Z func_73156_b + d (II)Lamy; func_73154_d + e ()Z func_73157_c + f ()Ljava/lang/String; func_73148_d + g ()I func_73152_e +anv net/minecraft/world/gen/ChunkProviderFlat + a field_73163_a + b field_73161_b + c field_82700_c + d field_82699_e + e field_82696_f + f field_82697_g + g field_82702_h + h field_82703_i + i field_82701_j + a (II)Z func_73149_a + a (Ladm;Ljava/lang/String;Lcj;)Lcj; func_180513_a + a (Lamv;II)V func_73153_a + a (Lamv;Lamy;II)Z func_177460_a + a (Lamy;II)V func_180514_a + a (Lcj;)Lamy; func_177459_a + a (Lpt;Lcj;)Ljava/util/List; func_177458_a + a (ZLnu;)Z func_73151_a + c ()V func_104112_b + d ()Z func_73156_b + d (II)Lamy; func_73154_d + e ()Z func_73157_c + f ()Ljava/lang/String; func_73148_d + g ()I func_73152_e +anw net/minecraft/world/gen/ChunkProviderHell + A field_177465_A + B field_73172_c + C field_73182_t + a field_73173_a + b field_73171_b + c field_73169_d + d field_73170_e + e field_73167_f + f field_73168_g + g field_73180_h + h field_73175_o + i field_177466_i + j field_73181_i + k field_73185_q + l field_73184_r + m field_73183_s + n field_73186_p + o field_73178_j + p field_73179_k + q field_73176_l + r field_73177_m + s field_73174_n + t field_177470_t + u field_177469_u + v field_177468_v + w field_177467_w + x field_177473_x + y field_177472_y + z field_177471_z + a (II)Z func_73149_a + a (IILans;)V func_180515_a + a (Ladm;Ljava/lang/String;Lcj;)Lcj; func_180513_a + a (Lamv;II)V func_73153_a + a (Lamv;Lamy;II)Z func_177460_a + a (Lamy;II)V func_180514_a + a (Lcj;)Lamy; func_177459_a + a (Lpt;Lcj;)Ljava/util/List; func_177458_a + a (ZLnu;)Z func_73151_a + a ([DIIIIII)[D func_73164_a + b (IILans;)V func_180516_b + c ()V func_104112_b + d ()Z func_73156_b + d (II)Lamy; func_73154_d + e ()Z func_73157_c + f ()Ljava/lang/String; func_73148_d + g ()I func_73152_e +anx net/minecraft/world/gen/MapGenCaves + a (JIILans;DDD)V func_180703_a + a (JIILans;DDDFFFIID)V func_180702_a + a (Ladm;IIIILans;)V func_180701_a + a (Lalz;Lalz;)Z func_175793_a +any net/minecraft/world/gen/MapGenBase + a field_75040_a + b field_75038_b + c field_75039_c + a (Ladm;IIIILans;)V func_180701_a + a (Lamv;Ladm;IILans;)V func_175792_a +anz net/minecraft/world/gen/MapGenCavesHell + a (JIILans;DDD)V func_180705_a + a (JIILans;DDDFFFIID)V func_180704_a + a (Ladm;IIIILans;)V func_180701_a +ao net/minecraft/command/server/CommandListPlayers + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +aoa net/minecraft/world/gen/ChunkProviderGenerate + A field_177474_A + B field_73231_z + a field_73214_a + b field_73212_b + c field_73213_c + d field_147427_d + e field_147428_e + f field_147425_f + g field_147426_g + h field_73220_k + i field_147431_j + j field_147432_k + k field_147429_l + l field_147430_m + m field_73230_p + n field_73229_q + o field_177475_o + p field_147434_q + q field_147433_r + r field_177477_r + s field_177476_s + t field_73227_s + u field_73226_t + v field_73225_u + w field_73224_v + x field_73223_w + y field_73233_x + z field_73232_y + a (II)Z func_73149_a + a (III)V func_147423_a + a (IILans;)V func_180518_a + a (IILans;[Lady;)V func_180517_a + a (Ladm;Ljava/lang/String;Lcj;)Lcj; func_180513_a + a (Lamv;II)V func_73153_a + a (Lamv;Lamy;II)Z func_177460_a + a (Lamy;II)V func_180514_a + a (Lcj;)Lamy; func_177459_a + a (Lpt;Lcj;)Ljava/util/List; func_177458_a + a (ZLnu;)Z func_73151_a + c ()V func_104112_b + d ()Z func_73156_b + d (II)Lamy; func_73154_d + e ()Z func_73157_c + f ()Ljava/lang/String; func_73148_d + g ()I func_73152_e +aob net/minecraft/world/gen/ChunkProviderEnd + a field_73196_a + b field_73194_b + c field_73195_c + d field_73192_d + e field_73193_e + f field_73190_f + g field_73191_g + h field_73204_i + i field_73201_j + j field_73202_k + k field_73199_l + l field_73200_m + m field_73197_n + n field_73198_o + a (II)Z func_73149_a + a (IILans;)V func_180520_a + a (Ladm;Ljava/lang/String;Lcj;)Lcj; func_180513_a + a (Lamv;II)V func_73153_a + a (Lamv;Lamy;II)Z func_177460_a + a (Lamy;II)V func_180514_a + a (Lans;)V func_180519_a + a (Lcj;)Lamy; func_177459_a + a (Lpt;Lcj;)Ljava/util/List; func_177458_a + a (ZLnu;)Z func_73151_a + a ([DIIIIII)[D func_73187_a + c ()V func_104112_b + d ()Z func_73156_b + d (II)Lamy; func_73154_d + e ()Z func_73157_c + f ()Ljava/lang/String; func_73148_d + g ()I func_73152_e +aoh net/minecraft/world/gen/feature/WorldGenAbstractTree + a (Ladm;Lcj;)V func_175921_a + a (Ladm;Ljava/util/Random;Lcj;)V func_180711_a + a (Lafh;)Z func_150523_a +aoi net/minecraft/world/gen/feature/WorldGenBigTree + a field_76504_e + b field_76501_f + c field_76502_g + d field_175944_d + e field_175945_e + f field_76513_k + g field_175943_g + h field_175950_h + i field_76508_n + j field_175948_j + k field_175949_k + l field_175946_l + m field_175947_m + a ()V func_76489_a + a (I)F func_76490_a + a (Lcj;)V func_175940_a + a (Lcj;FLalz;)V func_181631_a + a (Lcj;Lcj;)I func_175936_a + a (Lcj;Lcj;Lafh;)V func_175937_a + b ()V func_175941_b + b (I)F func_76495_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b + b (Lcj;)I func_175935_b + b (Lcj;Lcj;)Lahw$a; func_175938_b + c ()V func_175942_c + c (I)Z func_76493_c + d ()V func_175939_d + e ()V func_175904_e + f ()Z func_76497_e +aoi$a net/minecraft/world/gen/feature/WorldGenBigTree$FoliageCoordinates + c field_178000_b + q ()I func_177999_q +aoj net/minecraft/world/gen/feature/WorldGenForest + a field_181629_a + b field_181630_b + c field_150531_a + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aok net/minecraft/world/gen/feature/WorldGenBlockBlob + a field_150545_a + b field_150544_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aol net/minecraft/world/gen/feature/WorldGeneratorBonusChest + a field_175909_a + b field_76545_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aom net/minecraft/world/gen/GeneratorBushFeature + a field_175908_a + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aon net/minecraft/world/gen/feature/WorldGenCactus + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aop net/minecraft/world/gen/feature/WorldGenClay + a field_150546_a + b field_76517_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aoq net/minecraft/world/gen/feature/WorldGenDeadBush + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aor net/minecraft/world/gen/feature/WorldGenDesertWells + a field_175913_a + b field_175911_b + c field_175912_c + d field_175910_d + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aos net/minecraft/world/gen/feature/WorldGenDoublePlant + a field_150549_a + a (Lagi$b;)V func_180710_a + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aot net/minecraft/world/gen/feature/WorldGenerator + a field_76488_a + a (Ladm;Lcj;Lalz;)V func_175903_a + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b + e ()V func_175904_e +aou net/minecraft/world/gen/feature/WorldGenFlowers + a field_150552_a + b field_175915_b + a (Lagw;Lagw$a;)V func_175914_a + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aov net/minecraft/world/gen/feature/WorldGenShrub + a field_150528_a + b field_150527_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aow net/minecraft/world/gen/feature/WorldGenFire + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aox net/minecraft/world/gen/feature/WorldGenGlowStone2 + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aoy net/minecraft/world/gen/feature/WorldGenHellLava + a field_150553_a + b field_94524_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aoz net/minecraft/world/gen/feature/WorldGenBigMushroom + a field_76523_a + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +ap net/minecraft/command/server/CommandMessage + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ()Ljava/util/List; func_71514_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +apa net/minecraft/world/gen/feature/WorldGenIcePath + a field_150555_a + b field_150554_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apb net/minecraft/world/gen/feature/WorldGenIceSpike + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apc net/minecraft/world/gen/feature/WorldGenLakes + a field_150556_a + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apd net/minecraft/world/gen/feature/WorldGenGlowStone1 + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +ape net/minecraft/world/gen/feature/WorldGenMegaJungle + a (Ladm;Ljava/util/Random;Lcj;Lamk;)V func_181632_a + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b + c (Ladm;Lcj;I)V func_175930_c +apf net/minecraft/world/gen/feature/WorldGenMegaPineTree + e field_181633_e + f field_181634_f + g field_181635_g + h field_150542_e + a (Ladm;IIIILjava/util/Random;)V func_150541_c + a (Ladm;Ljava/util/Random;Lcj;)V func_180711_a + b (Ladm;Lcj;)V func_175933_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b + c (Ladm;Lcj;)V func_175934_c +apg net/minecraft/world/gen/feature/WorldGenHugeTrees + a field_76522_a + b field_76520_b + c field_76521_c + d field_150538_d + a (Ladm;Lcj;I)V func_175925_a + a (Ladm;Ljava/util/Random;Lcj;I)Z func_175929_a + a (Lcj;Ladm;)Z func_175927_a + a (Ljava/util/Random;)I func_150533_a + b (Ladm;Lcj;I)V func_175928_b + c (Ladm;Lcj;I)Z func_175926_c +aph net/minecraft/world/gen/feature/WorldGenMelon + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +api net/minecraft/world/gen/feature/WorldGenDungeons + a field_175918_a + b field_175916_b + c field_175917_c + a (Ljava/util/Random;)Ljava/lang/String; func_76543_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apj net/minecraft/world/gen/feature/WorldGenMinable + a field_175920_a + b field_76541_b + c field_175919_c + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apk net/minecraft/world/gen/feature/WorldGenTaiga1 + a field_181636_a + b field_181637_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apl net/minecraft/world/gen/feature/WorldGenPumpkin + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apm net/minecraft/world/gen/feature/WorldGenReed + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apn net/minecraft/world/gen/feature/WorldGenCanopyTree + a field_181640_a + b field_181641_b + a (Ladm;III)V func_150526_a + a (Ladm;Lcj;I)Z func_181638_a + b (Ladm;Lcj;)V func_181639_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apo net/minecraft/world/gen/feature/WorldGenSand + a field_150517_a + b field_76539_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +app net/minecraft/world/gen/feature/WorldGenSavannaTree + a field_181643_a + b field_181644_b + b (Ladm;Lcj;)V func_181642_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b + c (Ladm;Lcj;)V func_175924_b +apq net/minecraft/world/gen/feature/WorldGenSpikes + a field_150520_a + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apr net/minecraft/world/gen/feature/WorldGenLiquids + a field_150521_a + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +aps net/minecraft/world/gen/feature/WorldGenTaiga2 + a field_181645_a + b field_181646_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apt net/minecraft/world/gen/feature/WorldGenSwamp + a field_181648_a + b field_181649_b + a (Ladm;Lcj;Lamk;)V func_181647_a + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apu net/minecraft/world/gen/feature/WorldGenTallGrass + a field_175907_a + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apv net/minecraft/world/gen/feature/WorldGenTrees + a field_181653_a + b field_181654_b + c field_76533_a + d field_76531_b + e field_76532_c + f field_76530_d + a (Ladm;ILcj;Lcq;)V func_181652_a + a (Ladm;Lcj;Lamk;)V func_181651_a + b (Ladm;Lcj;Lamk;)V func_181650_b + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apw net/minecraft/world/gen/feature/WorldGenVines + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apx net/minecraft/world/gen/feature/WorldGenWaterlily + b (Ladm;Ljava/util/Random;Lcj;)Z func_180709_b +apz net/minecraft/world/gen/FlatGeneratorInfo + a field_82655_a + b field_82653_b + c field_82654_c + a ()I func_82648_a + a (I)V func_82647_a + a (ILjava/lang/String;)Ljava/util/List; func_180716_a + a (ILjava/lang/String;I)Laqa; func_180715_a + a (Ljava/lang/String;)Lapz; func_82651_a + b ()Ljava/util/Map; func_82644_b + c ()Ljava/util/List; func_82650_c + d ()V func_82645_d + e ()Lapz; func_82649_e + toString ()Ljava/lang/String; toString +aq net/minecraft/command/server/CommandMessageRaw + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +aqa net/minecraft/world/gen/FlatLayerInfo + a field_175902_a + b field_175901_b + c field_82664_a + d field_82661_d + b ()I func_82657_a + b (I)V func_82660_d + c ()Lalz; func_175900_c + d ()I func_82656_d + e ()Lafh; func_151536_b + f ()I func_82658_c + toString ()Ljava/lang/String; toString +aqe net/minecraft/world/gen/structure/StructureBoundingBox + a field_78897_a + b field_78895_b + c field_78896_c + d field_78893_d + e field_78894_e + f field_78892_f + a ()Laqe; func_78887_a + a (III)V func_78886_a + a (IIII)Z func_78885_a + a (IIIIII)Laqe; func_175899_a + a (IIIIIIIIILcq;)Laqe; func_175897_a + a (Laqe;)Z func_78884_a + b ()Ldf; func_175896_b + b (Laqe;)V func_78888_b + b (Ldf;)Z func_175898_b + c ()I func_78883_b + d ()I func_78882_c + e ()I func_78880_d + f ()Ldf; func_180717_f + g ()Lds; func_151535_h + toString ()Ljava/lang/String; toString +aqe$1 net/minecraft/world/gen/structure/StructureBoundingBox$1 + a field_175895_a +aqf net/minecraft/world/gen/structure/MapGenMineshaft + d field_82673_e + a ()Ljava/lang/String; func_143025_a + a (II)Z func_75047_a + b (II)Laqu; func_75049_b +aqg net/minecraft/world/gen/structure/StructureMineshaftPieces + a field_175893_a + a ()V func_143048_a + a (Laqt;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt; access$000 + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt; func_175892_a + b ()Ljava/util/List; access$100 + b (Laqt;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt; func_175890_b +aqg$1 net/minecraft/world/gen/structure/StructureMineshaftPieces$1 + a field_175894_a +aqg$a net/minecraft/world/gen/structure/StructureMineshaftPieces$Corridor + a field_74958_a + b field_74956_b + c field_74957_c + d field_74955_d + a (Ladm;Laqe;Ljava/util/Random;IIILjava/util/List;I)Z func_180778_a + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;)Laqe; func_175814_a + b (Ldn;)V func_143011_b +aqg$b net/minecraft/world/gen/structure/StructureMineshaftPieces$Cross + a field_74953_a + b field_74952_b + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;)Laqe; func_175813_a + b (Ldn;)V func_143011_b +aqg$c net/minecraft/world/gen/structure/StructureMineshaftPieces$Room + a field_74949_a + a (III)V func_181138_a + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ldn;)V func_143012_a + b (Ldn;)V func_143011_b +aqg$d net/minecraft/world/gen/structure/StructureMineshaftPieces$Stairs + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;)Laqe; func_175812_a + b (Ldn;)V func_143011_b +aqh net/minecraft/world/gen/structure/StructureMineshaftStart +aqi net/minecraft/world/gen/structure/MapGenNetherBridge + d field_75060_e + a ()Ljava/lang/String; func_143025_a + a (II)Z func_75047_a + b ()Ljava/util/List; func_75059_a + b (II)Laqu; func_75049_b +aqi$a net/minecraft/world/gen/structure/MapGenNetherBridge$Start +aqj net/minecraft/world/gen/structure/StructureNetherBridgePieces + a field_78742_a + b field_78741_b + a ()V func_143049_a + a (Laqj$n;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$m; access$000 + b ()[Laqj$n; access$100 + b (Laqj$n;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$m; func_175887_b + c ()[Laqj$n; access$200 +aqj$1 net/minecraft/world/gen/structure/StructureNetherBridgePieces$1 + a field_175888_a +aqj$a net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing3 + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$a; func_175885_a +aqj$b net/minecraft/world/gen/structure/StructureNetherBridgePieces$End + b field_74972_a + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$b; func_175884_a + b (Ldn;)V func_143011_b +aqj$c net/minecraft/world/gen/structure/StructureNetherBridgePieces$Straight + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$c; func_175882_a +aqj$d net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor3 + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$d; func_175883_a +aqj$e net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor4 + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$e; func_175880_a +aqj$f net/minecraft/world/gen/structure/StructureNetherBridgePieces$Entrance + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$f; func_175881_a +aqj$g net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing2 + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$g; func_175878_a +aqj$h net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor + b field_111021_b + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$h; func_175879_a + b (Ldn;)V func_143011_b +aqj$i net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor5 + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$i; func_175877_a +aqj$j net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor2 + b field_111020_b + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$j; func_175876_a + b (Ldn;)V func_143011_b +aqj$k net/minecraft/world/gen/structure/StructureNetherBridgePieces$NetherStalkRoom + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$k; func_175875_a +aqj$l net/minecraft/world/gen/structure/StructureNetherBridgePieces$Throne + b field_74976_a + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIIILcq;)Laqj$l; func_175874_a + b (Ldn;)V func_143011_b +aqj$m net/minecraft/world/gen/structure/StructureNetherBridgePieces$Piece + a field_111019_a + a (Laqe;)Z func_74964_a + a (Laqj$q;Ljava/util/List;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$m; func_175871_a + a (Laqj$q;Ljava/util/List;Ljava/util/Random;IIILcq;IZ)Laqt; func_175870_a + a (Laqj$q;Ljava/util/List;Ljava/util/Random;IIZ)Laqt; func_74963_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;)I func_74960_a + b (Laqj$q;Ljava/util/List;Ljava/util/Random;IIZ)Laqt; func_74961_b + b (Ldn;)V func_143011_b + c (Laqj$q;Ljava/util/List;Ljava/util/Random;IIZ)Laqt; func_74965_c +aqj$n net/minecraft/world/gen/structure/StructureNetherBridgePieces$PieceWeight + a field_78828_a + b field_78826_b + c field_78827_c + d field_78824_d + e field_78825_e + a ()Z func_78823_a + a (I)Z func_78822_a +aqj$o net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqj$o; func_175873_a +aqj$p net/minecraft/world/gen/structure/StructureNetherBridgePieces$Stairs + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ljava/util/List;Ljava/util/Random;IIIILcq;)Laqj$p; func_175872_a +aqj$q net/minecraft/world/gen/structure/StructureNetherBridgePieces$Start + b field_74970_a + c field_74968_b + d field_74969_c + e field_74967_d + a (Ldn;)V func_143012_a + b (Ldn;)V func_143011_b +aqk net/minecraft/world/gen/structure/StructureOceanMonument + d field_175802_d + f field_175800_f + g field_175801_g + h field_175803_h + a ()Ljava/lang/String; func_143025_a + a (II)Z func_75047_a + b ()Ljava/util/List; func_175799_b + b (II)Laqu; func_75049_b +aqk$a net/minecraft/world/gen/structure/StructureOceanMonument$StartMonument + c field_175791_c + d field_175790_d + a (Ladg;)Z func_175788_a + a (Ladm;Ljava/util/Random;Laqe;)V func_75068_a + a (Ldn;)V func_143022_a + b (Ladg;)V func_175787_b + b (Ladm;Ljava/util/Random;II)V func_175789_b + b (Ldn;)V func_143017_b +aql net/minecraft/world/gen/structure/StructureOceanMonumentPieces + a ()V func_175970_a +aql$1 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$1 + a field_175971_a +aql$a net/minecraft/world/gen/structure/StructureOceanMonumentPieces$XDoubleRoomFitHelper + a (Laql$v;)Z func_175969_a + a (Lcq;Laql$v;Ljava/util/Random;)Laql$r; func_175968_a +aql$b net/minecraft/world/gen/structure/StructureOceanMonumentPieces$XYDoubleRoomFitHelper + a (Laql$v;)Z func_175969_a + a (Lcq;Laql$v;Ljava/util/Random;)Laql$r; func_175968_a +aql$c net/minecraft/world/gen/structure/StructureOceanMonumentPieces$YDoubleRoomFitHelper + a (Laql$v;)Z func_175969_a + a (Lcq;Laql$v;Ljava/util/Random;)Laql$r; func_175968_a +aql$d net/minecraft/world/gen/structure/StructureOceanMonumentPieces$YZDoubleRoomFitHelper + a (Laql$v;)Z func_175969_a + a (Lcq;Laql$v;Ljava/util/Random;)Laql$r; func_175968_a +aql$e net/minecraft/world/gen/structure/StructureOceanMonumentPieces$ZDoubleRoomFitHelper + a (Laql$v;)Z func_175969_a + a (Lcq;Laql$v;Ljava/util/Random;)Laql$r; func_175968_a +aql$f net/minecraft/world/gen/structure/StructureOceanMonumentPieces$FitSimpleRoomHelper + a (Laql$v;)Z func_175969_a + a (Lcq;Laql$v;Ljava/util/Random;)Laql$r; func_175968_a +aql$g net/minecraft/world/gen/structure/StructureOceanMonumentPieces$FitSimpleRoomTopHelper + a (Laql$v;)Z func_175969_a + a (Lcq;Laql$v;Ljava/util/Random;)Laql$r; func_175968_a +aql$h net/minecraft/world/gen/structure/StructureOceanMonumentPieces$MonumentBuilding + o field_175845_o + p field_175844_p + q field_175843_q + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Ljava/util/Random;)Ljava/util/List; func_175836_a + a (ZILadm;Ljava/util/Random;Laqe;)V func_175840_a + b (Ladm;Ljava/util/Random;Laqe;)V func_175839_b + c (Ladm;Ljava/util/Random;Laqe;)V func_175837_c + d (Ladm;Ljava/util/Random;Laqe;)V func_175841_d + e (Ladm;Ljava/util/Random;Laqe;)V func_175835_e + f (Ladm;Ljava/util/Random;Laqe;)V func_175842_f + g (Ladm;Ljava/util/Random;Laqe;)V func_175838_g +aql$i net/minecraft/world/gen/structure/StructureOceanMonumentPieces$MonumentRoomFitHelper + a (Laql$v;)Z func_175969_a + a (Lcq;Laql$v;Ljava/util/Random;)Laql$r; func_175968_a +aql$j net/minecraft/world/gen/structure/StructureOceanMonumentPieces$MonumentCoreRoom + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a +aql$k net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleXRoom + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a +aql$l net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleXYRoom + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a +aql$m net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleYRoom + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a +aql$n net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleYZRoom + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a +aql$o net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleZRoom + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a +aql$p net/minecraft/world/gen/structure/StructureOceanMonumentPieces$EntryRoom + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a +aql$q net/minecraft/world/gen/structure/StructureOceanMonumentPieces$Penthouse + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a +aql$r net/minecraft/world/gen/structure/StructureOceanMonumentPieces$Piece + a field_175828_a + b field_175826_b + c field_175827_c + d field_175824_d + e field_175825_e + f field_175822_f + g field_175823_g + h field_175831_h + i field_175832_i + j field_175829_j + k field_175830_k + a (Ladm;Laqe;III)Z func_175817_a + a (Ladm;Laqe;IIIIIILalz;)V func_175819_a + a (Ladm;Laqe;IIIIIIZ)V func_181655_a + a (Ladm;Laqe;IIZ)V func_175821_a + a (Laqe;IIII)Z func_175818_a + a (Ldn;)V func_143012_a + b (III)I func_175820_a + b (Ldn;)V func_143011_b +aql$s net/minecraft/world/gen/structure/StructureOceanMonumentPieces$SimpleRoom + o field_175833_o + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a +aql$t net/minecraft/world/gen/structure/StructureOceanMonumentPieces$SimpleTopRoom + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a +aql$u net/minecraft/world/gen/structure/StructureOceanMonumentPieces$WingRoom + o field_175834_o + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a +aql$v net/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition + a field_175967_a + b field_175965_b + c field_175966_c + d field_175963_d + e field_175964_e + f field_175962_f + a ()V func_175958_a + a (I)Z func_175959_a + a (Lcq;Laql$v;)V func_175957_a + b ()Z func_175961_b + c ()I func_175960_c +aqm net/minecraft/world/gen/structure/MapGenScatteredFeature + d field_75061_e + f field_82668_f + g field_82669_g + h field_82670_h + a ()Ljava/lang/String; func_143025_a + a (II)Z func_75047_a + a (Lcj;)Z func_175798_a + b ()Ljava/util/List; func_82667_a + b (II)Laqu; func_75049_b +aqm$a net/minecraft/world/gen/structure/MapGenScatteredFeature$Start +aqn net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces + a ()V func_143045_a +aqn$1 net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$1 + a field_175956_a +aqn$a net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$DesertPyramid + e field_74940_h + f field_74941_i + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Ldn;)V func_143012_a + b (Ldn;)V func_143011_b +aqn$b net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$JunglePyramid + e field_74947_h + f field_74948_i + g field_74945_j + h field_74946_k + i field_175816_i + j field_175815_j + k field_74942_n + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Ldn;)V func_143012_a + b (Ldn;)V func_143011_b +aqn$b$a net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$JunglePyramid$Stones + a (Ljava/util/Random;IIIZ)V func_75062_a +aqn$c net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$Feature + a field_74939_a + b field_74937_b + c field_74938_c + d field_74936_d + a (Ladm;Laqe;I)Z func_74935_a + a (Ldn;)V func_143012_a + b (Ldn;)V func_143011_b +aqn$d net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$SwampHut + e field_82682_h + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Ldn;)V func_143012_a + b (Ldn;)V func_143011_b +aqo net/minecraft/world/gen/structure/MapGenStronghold + d field_151546_e + f field_75056_f + g field_75057_g + h field_82671_h + i field_82672_i + a ()Ljava/lang/String; func_143025_a + a (II)Z func_75047_a + b (II)Laqu; func_75049_b + z_ ()Ljava/util/List; func_75052_o_ +aqo$a net/minecraft/world/gen/structure/MapGenStronghold$Start +aqp net/minecraft/world/gen/structure/StructureStrongholdPieces + a field_75207_a + b field_75205_b + c field_75206_c + d field_75203_d + e field_75204_e + a ()V func_143046_a + a (Laqp$m;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt; access$000 + a (Ljava/lang/Class;)Ljava/lang/Class; access$102 + a (Ljava/lang/Class;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$p; func_175954_a + b ()V func_75198_a + b (Laqp$m;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$p; func_175955_b + c ()Laqp$k; access$200 + c (Laqp$m;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt; func_175953_c + d ()Z func_75202_c +aqp$1 net/minecraft/world/gen/structure/StructureStrongholdPieces$1 + a (I)Z func_75189_a +aqp$2 net/minecraft/world/gen/structure/StructureStrongholdPieces$2 + a (I)Z func_75189_a +aqp$3 net/minecraft/world/gen/structure/StructureStrongholdPieces$3 + a field_75245_a + b field_175951_b +aqp$a net/minecraft/world/gen/structure/StructureStrongholdPieces$ChestCorridor + a field_75003_a + b field_75002_c + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$a; func_175868_a + b (Ldn;)V func_143011_b +aqp$b net/minecraft/world/gen/structure/StructureStrongholdPieces$Corridor + a field_74993_a + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;)Laqe; func_175869_a + b (Ldn;)V func_143011_b +aqp$c net/minecraft/world/gen/structure/StructureStrongholdPieces$Crossing + a field_74996_b + b field_74997_c + c field_74995_d + e field_74999_h + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$c; func_175866_a + b (Ldn;)V func_143011_b +aqp$d net/minecraft/world/gen/structure/StructureStrongholdPieces$LeftTurn + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$d; func_175867_a +aqp$e net/minecraft/world/gen/structure/StructureStrongholdPieces$Library + a field_75007_b + b field_75008_c + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$e; func_175864_a + b (Ldn;)V func_143011_b +aqp$f net/minecraft/world/gen/structure/StructureStrongholdPieces$PieceWeight + a field_75194_a + b field_75192_b + c field_75193_c + d field_75191_d + a ()Z func_75190_a + a (I)Z func_75189_a +aqp$g net/minecraft/world/gen/structure/StructureStrongholdPieces$PortalRoom + a field_75005_a + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$g; func_175865_a + b (Ldn;)V func_143011_b +aqp$h net/minecraft/world/gen/structure/StructureStrongholdPieces$Prison + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$h; func_175860_a +aqp$i net/minecraft/world/gen/structure/StructureStrongholdPieces$RightTurn + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a +aqp$j net/minecraft/world/gen/structure/StructureStrongholdPieces$RoomCrossing + a field_75013_b + b field_75014_c + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$j; func_175859_a + b (Ldn;)V func_143011_b +aqp$k net/minecraft/world/gen/structure/StructureStrongholdPieces$Stones + a (Ljava/util/Random;IIIZ)V func_75062_a +aqp$l net/minecraft/world/gen/structure/StructureStrongholdPieces$Stairs + a field_75024_a + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$l; func_175863_a + b (Ldn;)V func_143011_b +aqp$m net/minecraft/world/gen/structure/StructureStrongholdPieces$Stairs2 + a field_75027_a + b field_75025_b + c field_75026_c + a ()Lcj; func_180776_a +aqp$n net/minecraft/world/gen/structure/StructureStrongholdPieces$Straight + a field_75019_b + b field_75020_c + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$n; func_175862_a + b (Ldn;)V func_143011_b +aqp$o net/minecraft/world/gen/structure/StructureStrongholdPieces$StairsStraight + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqp$o; func_175861_a +aqp$p net/minecraft/world/gen/structure/StructureStrongholdPieces$Stronghold + d field_143013_d + a (Ladm;Ljava/util/Random;Laqe;Laqp$p$a;III)V func_74990_a + a (Laqe;)Z func_74991_a + a (Laqp$m;Ljava/util/List;Ljava/util/Random;II)Laqt; func_74986_a + a (Ldn;)V func_143012_a + a (Ljava/util/Random;)Laqp$p$a; func_74988_a + b (Laqp$m;Ljava/util/List;Ljava/util/Random;II)Laqt; func_74989_b + b (Ldn;)V func_143011_b + c (Laqp$m;Ljava/util/List;Ljava/util/Random;II)Laqt; func_74987_c +aqp$p$a net/minecraft/world/gen/structure/StructureStrongholdPieces$Stronghold$Door + a OPENING + b WOOD_DOOR + c GRATES + d IRON_DOOR + e $VALUES + valueOf (Ljava/lang/String;)Laqp$p$a; valueOf + values ()[Laqp$p$a; values +aqq net/minecraft/world/gen/structure/MapGenStructure + d field_143029_e + e field_75053_d + a ()Ljava/lang/String; func_143025_a + a (II)Z func_75047_a + a (IILaqu;)V func_143026_a + a (Ladm;)V func_143027_a + a (Ladm;IIIILans;)V func_180701_a + a (Ladm;Lcj;)Z func_175796_a + a (Ladm;Ljava/util/Random;Ladg;)Z func_175794_a + b (II)Laqu; func_75049_b + b (Ladm;Lcj;)Lcj; func_180706_b + b (Lcj;)Z func_175795_b + c (Lcj;)Laqu; func_175797_c + z_ ()Ljava/util/List; func_75052_o_ +aqq$1 net/minecraft/world/gen/structure/MapGenStructure$1 + a field_85169_a + b field_85167_b + c field_85168_c + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +aqq$2 net/minecraft/world/gen/structure/MapGenStructure$2 + a field_85165_a + b field_85163_b + c field_85164_c + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +aqq$3 net/minecraft/world/gen/structure/MapGenStructure$3 + a field_85161_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +aqr net/minecraft/world/gen/structure/MapGenStructureIO + a field_151687_a + b field_143040_a + c field_143038_b + d field_143039_c + e field_143037_d + a (Laqt;)Ljava/lang/String; func_143036_a + a (Laqu;)Ljava/lang/String; func_143033_a + a (Ldn;Ladm;)Laqu; func_143035_a + a (Ljava/lang/Class;Ljava/lang/String;)V func_143031_a + b (Ldn;Ladm;)Laqt; func_143032_b + b (Ljava/lang/Class;Ljava/lang/String;)V func_143034_b +aqs net/minecraft/world/gen/structure/MapGenStructureData + b field_143044_a + a ()Ldn; func_143041_a + a (Ldn;)V func_76184_a + a (Ldn;II)V func_143043_a + b (II)Ljava/lang/String; func_143042_b + b (Ldn;)V func_76187_b +aqt net/minecraft/world/gen/structure/StructureComponent + l field_74887_e + m field_74885_f + n field_74886_g + a ()Lcj; func_180776_a + a (II)I func_74865_a + a (III)V func_181138_a + a (Ladm;IIILaqe;)Lalz; func_175807_a + a (Ladm;Lalz;IIILaqe;)V func_175811_a + a (Ladm;Laqe;)Z func_74860_a + a (Ladm;Laqe;IIIIII)V func_74878_a + a (Ladm;Laqe;IIIIIILalz;Lalz;Z)V func_175804_a + a (Ladm;Laqe;IIIIIILalz;Z)V func_180777_a + a (Ladm;Laqe;IIIIIIZLjava/util/Random;Laqt$a;)V func_74882_a + a (Ladm;Laqe;Ljava/util/Random;FIIIIIILalz;Lalz;Z)V func_175805_a + a (Ladm;Laqe;Ljava/util/Random;FIIILalz;)V func_175809_a + a (Ladm;Laqe;Ljava/util/Random;IIIILjava/util/List;I)Z func_175806_a + a (Ladm;Laqe;Ljava/util/Random;IIILcq;)V func_175810_a + a (Ladm;Laqe;Ljava/util/Random;IIILjava/util/List;I)Z func_180778_a + a (Ladm;Ldn;)V func_143009_a + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Lafh;I)I func_151555_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Ldn;)V func_143012_a + a (Ljava/util/List;Laqe;)Laqt; func_74883_a + b ()Ldn; func_143010_b + b (II)I func_74873_b + b (Ladm;IIILaqe;)V func_74871_b + b (Ladm;Lalz;IIILaqe;)V func_175808_b + b (Ldn;)V func_143011_b + c ()Laqe; func_74874_b + d ()I func_74877_c + d (I)I func_74862_a +aqt$1 net/minecraft/world/gen/structure/StructureComponent$1 + a field_176100_a +aqt$a net/minecraft/world/gen/structure/StructureComponent$BlockSelector + a field_151562_a + a ()Lalz; func_180780_a + a (Ljava/util/Random;IIIZ)V func_75062_a +aqu net/minecraft/world/gen/structure/StructureStart + a field_75075_a + b field_75074_b + c field_143024_c + d field_143023_d + a ()Laqe; func_75071_a + a (II)Ldn; func_143021_a + a (Ladg;)Z func_175788_a + a (Ladm;Ldn;)V func_143020_a + a (Ladm;Ljava/util/Random;I)V func_75067_a + a (Ladm;Ljava/util/Random;II)V func_75070_a + a (Ladm;Ljava/util/Random;Laqe;)V func_75068_a + a (Ldn;)V func_143022_a + b ()Ljava/util/LinkedList; func_75073_b + b (Ladg;)V func_175787_b + b (Ldn;)V func_143017_b + c ()V func_75072_c + d ()Z func_75069_d + e ()I func_143019_e + f ()I func_143018_f +aqv net/minecraft/world/gen/structure/MapGenVillage + d field_75055_e + f field_75054_f + g field_82665_g + h field_82666_h + a ()Ljava/lang/String; func_143025_a + a (II)Z func_75047_a + b (II)Laqu; func_75049_b +aqv$a net/minecraft/world/gen/structure/MapGenVillage$Start + c field_75076_c + a (Ldn;)V func_143022_a + b (Ldn;)V func_143017_b + d ()Z func_75069_d +aqw net/minecraft/world/gen/structure/StructureVillagePieces + a ()V func_143016_a + a (Laqw$k;Laqw$e;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$n; func_176065_a + a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt; access$000 + a (Ljava/util/List;)I func_75079_a + a (Ljava/util/Random;I)Ljava/util/List; func_75084_a + b (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt; access$100 + c (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$n; func_176067_c + d (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt; func_176066_d + e (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqt; func_176069_e +aqw$1 net/minecraft/world/gen/structure/StructureVillagePieces$1 + a field_176064_a +aqw$a net/minecraft/world/gen/structure/StructureVillagePieces$House1 + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$a; func_175850_a + c (II)I func_180779_c +aqw$b net/minecraft/world/gen/structure/StructureVillagePieces$Field1 + a field_82679_b + b field_82680_c + c field_82678_d + d field_82681_h + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$b; func_175851_a + a (Ldn;)V func_143012_a + a (Ljava/util/Random;)Lafh; func_151559_a + b (Ldn;)V func_143011_b +aqw$c net/minecraft/world/gen/structure/StructureVillagePieces$Field2 + a field_82675_b + b field_82676_c + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$c; func_175852_a + a (Ldn;)V func_143012_a + a (Ljava/util/Random;)Lafh; func_151560_a + b (Ldn;)V func_143011_b +aqw$d net/minecraft/world/gen/structure/StructureVillagePieces$Torch + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;)Laqe; func_175856_a +aqw$e net/minecraft/world/gen/structure/StructureVillagePieces$PieceWeight + a field_75090_a + b field_75088_b + c field_75089_c + d field_75087_d + a ()Z func_75086_a + a (I)Z func_75085_a +aqw$f net/minecraft/world/gen/structure/StructureVillagePieces$Hall + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$f; func_175857_a + c (II)I func_180779_c +aqw$g net/minecraft/world/gen/structure/StructureVillagePieces$House4Garden + a field_74913_b + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$g; func_175858_a + a (Ldn;)V func_143012_a + b (Ldn;)V func_143011_b +aqw$h net/minecraft/world/gen/structure/StructureVillagePieces$WoodHut + a field_74909_b + b field_74910_c + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$h; func_175853_a + a (Ldn;)V func_143012_a + b (Ldn;)V func_143011_b +aqw$i net/minecraft/world/gen/structure/StructureVillagePieces$Church + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$i; func_175854_a + c (II)I func_180779_c +aqw$j net/minecraft/world/gen/structure/StructureVillagePieces$House2 + a field_74918_a + b field_74917_c + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$j; func_175855_a + a (Ldn;)V func_143012_a + b (Ldn;)V func_143011_b + c (II)I func_180779_c +aqw$k net/minecraft/world/gen/structure/StructureVillagePieces$Start + a field_74929_a + b field_74927_b + c field_74928_c + d field_74926_d + e field_74931_h + f field_74932_i + g field_74930_j + e ()Laec; func_74925_d +aqw$l net/minecraft/world/gen/structure/StructureVillagePieces$Path + a field_74934_a + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a + a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;)Laqe; func_175848_a + a (Ldn;)V func_143012_a + b (Ldn;)V func_143011_b +aqw$m net/minecraft/world/gen/structure/StructureVillagePieces$House3 + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqw$k;Ljava/util/List;Ljava/util/Random;IIILcq;I)Laqw$m; func_175849_a +aqw$n net/minecraft/world/gen/structure/StructureVillagePieces$Village + a field_74896_a + b field_143014_b + h field_143015_k + a (Ladm;Lalz;IIILaqe;)V func_175811_a + a (Ladm;Laqe;IIII)V func_74893_a + a (Ladm;Laqe;IIIIIILalz;Lalz;Z)V func_175804_a + a (Lalz;)Lalz; func_175847_a + a (Laqe;)Z func_74895_a + a (Laqw$k;Ljava/util/List;Ljava/util/Random;II)Laqt; func_74891_a + a (Ldn;)V func_143012_a + a (Z)V func_175846_a + b (Ladm;Lalz;IIILaqe;)V func_175808_b + b (Ladm;Laqe;)I func_74889_b + b (Laqw$k;Ljava/util/List;Ljava/util/Random;II)Laqt; func_74894_b + b (Ldn;)V func_143011_b + c (II)I func_180779_c +aqw$o net/minecraft/world/gen/structure/StructureVillagePieces$Road +aqw$p net/minecraft/world/gen/structure/StructureVillagePieces$Well + a (Ladm;Ljava/util/Random;Laqe;)Z func_74875_a + a (Laqt;Ljava/util/List;Ljava/util/Random;)V func_74861_a +ar net/minecraft/command/server/CommandOp + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +arb net/minecraft/world/gen/NoiseGeneratorImproved + a field_76315_a + b field_76313_b + c field_76314_c + d field_76312_d + e field_152381_e + f field_152382_f + g field_152383_g + h field_152384_h + i field_152385_i + a (IDD)D func_76309_a + a (IDDD)D func_76310_a + a ([DDDDIIIDDDD)V func_76308_a + b (DDD)D func_76311_b +arc net/minecraft/world/gen/NoiseGeneratorOctaves + a field_76307_a + b field_76306_b + a ([DIIIIDDD)[D func_76305_a + a ([DIIIIIIDDD)[D func_76304_a +ard net/minecraft/world/gen/NoiseGeneratorPerlin + a field_151603_a + b field_151602_b + a (DD)D func_151601_a + a ([DDDIIDDD)[D func_151599_a + a ([DDDIIDDDD)[D func_151600_a +arg net/minecraft/world/gen/NoiseGeneratorSimplex + a field_151614_a + b field_151612_b + c field_151613_c + d field_151610_d + e field_151611_e + f field_151608_f + g field_151609_g + h field_151615_h + a (D)I func_151607_a + a (DD)D func_151605_a + a ([DDDIIDDD)V func_151606_a + a ([IDD)D func_151604_a +arh net/minecraft/world/gen/NoiseGenerator +arj net/minecraft/block/material/MaterialLogic + a ()Z func_76220_a + b ()Z func_76228_b + c ()Z func_76230_c +ark net/minecraft/block/material/MaterialTransparent + a ()Z func_76220_a + b ()Z func_76228_b + c ()Z func_76230_c +arl net/minecraft/block/material/MaterialLiquid + a ()Z func_76220_a + c ()Z func_76230_c + d ()Z func_76224_d +arm net/minecraft/block/material/Material + A field_151570_A + B field_151571_B + C field_151572_C + D field_151566_D + E field_151567_E + F field_151568_F + G field_151569_G + H field_76233_E + I field_175972_I + J field_76235_G + K field_76239_H + L field_76240_I + M field_76234_F + N field_76241_J + O field_76242_K + P field_85159_M + a field_151579_a + b field_151577_b + c field_151578_c + d field_151575_d + e field_151576_e + f field_151573_f + g field_151574_g + h field_151586_h + i field_151587_i + j field_151584_j + k field_151585_k + l field_151582_l + m field_151583_m + n field_151580_n + o field_151581_o + p field_151595_p + q field_151594_q + r field_151593_r + s field_151592_s + t field_151591_t + u field_151590_u + v field_151589_v + w field_151588_w + x field_151598_x + y field_151597_y + z field_151596_z + a ()Z func_76220_a + b ()Z func_76228_b + c ()Z func_76230_c + d ()Z func_76224_d + f ()Larm; func_76221_f + g ()Larm; func_76226_g + h ()Z func_76217_h + i ()Larm; func_76231_i + j ()Z func_76222_j + k ()Z func_76218_k + l ()Z func_76229_l + m ()I func_76227_m + n ()Larm; func_76219_n + o ()Larm; func_76225_o + p ()Larm; func_85158_p + r ()Larn; func_151565_r + s ()Larm; func_76223_p +arm$1 net/minecraft/block/material/Material$1 + c ()Z func_76230_c +arn net/minecraft/block/material/MapColor + A field_151649_A + B field_151650_B + C field_151651_C + D field_151645_D + E field_151646_E + F field_151647_F + G field_151648_G + H field_151652_H + I field_151653_I + J field_151654_J + K field_151655_K + L field_76291_p + M field_76290_q + a field_76281_a + b field_151660_b + c field_151661_c + d field_151658_d + e field_151659_e + f field_151656_f + g field_151657_g + h field_151668_h + i field_151669_i + j field_151666_j + k field_151667_k + l field_151664_l + m field_151665_m + n field_151662_n + o field_151663_o + p field_151677_p + q field_151676_q + r field_151675_r + s field_151674_s + t field_151673_t + u field_151672_u + v field_151671_v + w field_151670_w + x field_151680_x + y field_151679_y + z field_151678_z + a (I)I func_151643_b +aro net/minecraft/block/material/MaterialPortal + a ()Z func_76220_a + b ()Z func_76228_b + c ()Z func_76230_c +arq net/minecraft/world/gen/layer/GenLayerDeepOcean + a (IIII)[I func_75904_a +arr net/minecraft/world/gen/layer/GenLayerEdge + c field_151627_c + a (IIII)[I func_75904_a + c (IIII)[I func_151626_c + d (IIII)[I func_151624_d + e (IIII)[I func_151625_e +arr$1 net/minecraft/world/gen/layer/GenLayerEdge$1 + a field_151642_a +arr$a net/minecraft/world/gen/layer/GenLayerEdge$Mode + a COOL_WARM + b HEAT_ICE + c SPECIAL + d $VALUES + values ()[Larr$a; values +ars net/minecraft/world/gen/layer/GenLayerAddIsland + a (IIII)[I func_75904_a +art net/minecraft/world/gen/layer/GenLayerAddMushroomIsland + a (IIII)[I func_75904_a +aru net/minecraft/world/gen/layer/GenLayerAddSnow + a (IIII)[I func_75904_a +arv net/minecraft/world/gen/layer/GenLayerBiomeEdge + a (IIII)[I func_75904_a + a ([I[IIIIIII)Z func_151636_a + b (II)Z func_151634_b + b ([I[IIIIIII)Z func_151635_b +arw net/minecraft/world/gen/layer/GenLayerBiome + c field_151623_c + d field_151621_d + e field_151622_e + f field_151620_f + g field_175973_g + a (IIII)[I func_75904_a +as net/minecraft/command/server/CommandPardonIp + a ()I func_82362_a + a (Lm;)Z func_71519_b + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +asa net/minecraft/world/gen/layer/GenLayerFuzzyZoom + b (IIII)I func_151617_b +asc net/minecraft/world/gen/layer/IntCache + a field_76451_a + b field_76449_b + c field_76450_c + d field_76447_d + e field_76448_e + a ()V func_76446_a + a (I)[I func_76445_a + b ()Ljava/lang/String; func_85144_b +asd net/minecraft/world/gen/layer/GenLayerIsland + a (IIII)[I func_75904_a +ase net/minecraft/world/gen/layer/GenLayer + a field_75909_a + b field_75906_d + c field_75907_b + d field_75908_c + a (I)I func_75902_a + a (II)Z func_151616_a + a (IIII)[I func_75904_a + a (J)V func_75905_a + a (JJ)V func_75903_a + a (JLadr;Ljava/lang/String;)[Lase; func_180781_a + a ([I)I func_151619_a + b (I)Z func_151618_b + b (IIII)I func_151617_b +ase$1 net/minecraft/world/gen/layer/GenLayer$1 + a field_176191_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ase$2 net/minecraft/world/gen/layer/GenLayer$2 + a field_176192_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +asf net/minecraft/world/gen/layer/GenLayerRareBiome + a (IIII)[I func_75904_a +asg net/minecraft/world/gen/layer/GenLayerHills + c field_151629_c + d field_151628_d + a (IIII)[I func_75904_a +ash net/minecraft/world/gen/layer/GenLayerRemoveTooMuchOcean + a (IIII)[I func_75904_a +asi net/minecraft/world/gen/layer/GenLayerRiverInit + a (IIII)[I func_75904_a +asj net/minecraft/world/gen/layer/GenLayerRiver + a (IIII)[I func_75904_a + c (I)I func_151630_c +ask net/minecraft/world/gen/layer/GenLayerRiverMix + c field_75910_b + d field_75911_c + a (IIII)[I func_75904_a + a (J)V func_75905_a +asl net/minecraft/world/gen/layer/GenLayerShore + a (IIII)[I func_75904_a + a ([I[IIIIII)V func_151632_a + c (I)Z func_151631_c + d (I)Z func_151633_d +asm net/minecraft/world/gen/layer/GenLayerSmooth + a (IIII)[I func_75904_a +asq net/minecraft/world/gen/layer/GenLayerVoronoiZoom + a (IIII)[I func_75904_a +asr net/minecraft/world/gen/layer/GenLayerZoom + a (IIII)[I func_75904_a + b (JLase;I)Lase; func_75915_a +asu net/minecraft/pathfinding/Path + a field_75852_a + b field_75851_b + a ()V func_75848_a + a (I)V func_75847_a + a (Lasv;)Lasv; func_75849_a + a (Lasv;F)V func_75850_a + b (I)V func_75846_b + c ()Lasv; func_75844_c + e ()Z func_75845_e +asv net/minecraft/pathfinding/PathPoint + a field_75839_a + b field_75837_b + c field_75838_c + d field_75835_d + e field_75836_e + f field_75833_f + g field_75834_g + h field_75841_h + i field_75842_i + j field_75840_j + a ()Z func_75831_a + a (III)I func_75830_a + a (Lasv;)F func_75829_a + b (Lasv;)F func_75832_b + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +asw net/minecraft/world/pathfinder/NodeProcessor + a field_176169_a + b field_176167_b + c field_176168_c + d field_176165_d + e field_176166_e + a ()V func_176163_a + a (III)Lasv; func_176159_a + a (Ladq;Lpk;)V func_176162_a + a (Lpk;)Lasv; func_176161_a + a (Lpk;DDD)Lasv; func_176160_a + a ([Lasv;Lpk;Lasv;Lasv;F)I func_176164_a +asx net/minecraft/pathfinding/PathEntity + a field_75884_a + b field_75882_b + c field_75883_c + a ()V func_75875_a + a (I)Lasv; func_75877_a + a (Lasx;)Z func_75876_a + a (Lpk;)Laui; func_75878_a + a (Lpk;I)Laui; func_75881_a + b ()Z func_75879_b + b (I)V func_75871_b + b (Laui;)Z func_75880_b + c ()Lasv; func_75870_c + c (I)V func_75872_c + d ()I func_75874_d + e ()I func_75873_e +asy net/minecraft/pathfinding/PathFinder + a field_75866_b + b field_75864_d + c field_176190_c + a (Ladq;Lpk;DDDF)Lasx; func_176189_a + a (Ladq;Lpk;Lcj;F)Lasx; func_180782_a + a (Ladq;Lpk;Lpk;F)Lasx; func_176188_a + a (Lasv;Lasv;)Lasx; func_75853_a + a (Lpk;Lasv;Lasv;F)Lasx; func_176187_a +asz net/minecraft/world/pathfinder/SwimNodeProcessor + a ()V func_176163_a + a (Ladq;Lpk;)V func_176162_a + a (Lpk;)Lasv; func_176161_a + a (Lpk;DDD)Lasv; func_176160_a + a (Lpk;III)Lasv; func_176185_a + a ([Lasv;Lpk;Lasv;Lasv;F)I func_176164_a + b (Lpk;III)I func_176186_b +at net/minecraft/command/server/CommandPardonPlayer + a ()I func_82362_a + a (Lm;)Z func_71519_b + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +ata net/minecraft/world/pathfinder/WalkNodeProcessor + f field_176180_f + g field_176181_g + h field_176183_h + i field_176184_i + j field_176182_j + a ()V func_176163_a + a (Ladq;Lpk;)V func_176162_a + a (Ladq;Lpk;IIIIIIZZZ)I func_176170_a + a (Lpk;)Lasv; func_176161_a + a (Lpk;DDD)Lasv; func_176160_a + a (Lpk;III)I func_176177_a + a (Lpk;IIII)Lasv; func_176171_a + a (Z)V func_176175_a + a ([Lasv;Lpk;Lasv;Lasv;F)I func_176164_a + b ()Z func_176179_b + b (Z)V func_176172_b + c (Z)V func_176176_c + d ()Z func_176174_d + d (Z)V func_176178_d + e ()Z func_176173_e +ate net/minecraft/world/WorldSavedData + a field_76190_i + b field_76189_a + a (Ldn;)V func_76184_a + a (Z)V func_76186_a + b (Ldn;)V func_76187_b + c ()V func_76185_a + d ()Z func_76188_b +atf net/minecraft/util/Vec4b + a field_176117_a + b field_176115_b + c field_176116_c + d field_176114_d + a ()B func_176110_a + b ()B func_176112_b + c ()B func_176113_c + d ()B func_176111_d + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode +atg net/minecraft/world/storage/MapData + b field_76201_a + c field_76199_b + d field_76200_c + e field_76197_d + f field_76198_e + g field_76196_g + h field_76203_h + i field_76202_j + a (DDI)V func_176054_a + a (II)V func_176053_a + a (ILadm;Ljava/lang/String;DDD)V func_82567_a + a (Ldn;)V func_76184_a + a (Lwn;)Latg$a; func_82568_a + a (Lwn;Lzx;)V func_76191_a + a (Lzx;Ladm;Lwn;)Lff; func_176052_a + b (Ldn;)V func_76187_b +atg$a net/minecraft/world/storage/MapData$MapInfo + a field_76211_a + b field_82569_d + c field_176107_c + d field_176105_d + e field_176106_e + f field_176103_f + g field_176104_g + h field_176108_h + i field_176109_i + a (II)V func_176102_a + a (Lzx;)Lff; func_176101_a +atj net/minecraft/world/chunk/storage/AnvilSaveHandler + a ()V func_75759_a + a (Lanm;)Land; func_75763_a + a (Lato;Ldn;)V func_75755_a +atk net/minecraft/world/chunk/storage/AnvilSaveConverter + b field_151480_b + a ()Ljava/lang/String; func_154333_a + a (Ljava/io/File;Ljava/io/File;Laec;IILnu;)V func_75811_a + a (Ljava/io/File;Ljava/lang/Iterable;Laec;IILnu;)V func_75813_a + a (Ljava/io/File;Ljava/util/Collection;)V func_75810_a + a (Ljava/lang/String;)Z func_154334_a + a (Ljava/lang/String;Lnu;)Z func_75805_a + a (Ljava/lang/String;Z)Latp; func_75804_a + b ()Ljava/util/List; func_75799_b + b (Ljava/lang/String;)Z func_75801_b + c ()I func_75812_c + d ()V func_75800_d + g (Ljava/lang/String;)V func_75809_f +atk$1 net/minecraft/world/chunk/storage/AnvilSaveConverter$1 + a field_76172_a + accept (Ljava/io/File;Ljava/lang/String;)Z accept +atl net/minecraft/world/storage/DerivedWorldInfo + b field_76115_a + a ()Ldn; func_76066_a + a (I)V func_76058_a + a (Ladr;)V func_76085_a + a (Lcj;)V func_176143_a + a (Ldn;)Ldn; func_76082_a + a (Ljava/lang/String;)V func_76062_a + a (Loj;)V func_176144_a + a (Z)V func_76069_a + b ()J func_76063_b + b (I)V func_76056_b + b (J)V func_82572_b + b (Z)V func_76084_b + c ()I func_76079_c + c (I)V func_76087_c + c (J)V func_76068_b + c (Z)V func_176121_c + d ()I func_76075_d + d (Z)V func_76091_d + e ()I func_76074_e + e (I)V func_76078_e + e (Z)V func_180783_e + f ()J func_82573_f + f (I)V func_76090_f + g ()J func_76073_f + g (I)V func_76080_g + h ()J func_76092_g + i ()Ldn; func_76072_h + k ()Ljava/lang/String; func_76065_j + l ()I func_76088_k + m ()J func_76057_l + n ()Z func_76061_m + o ()I func_76071_n + p ()Z func_76059_o + q ()I func_76083_p + r ()Ladp$a; func_76077_q + s ()Z func_76089_r + t ()Z func_76093_s + u ()Ladr; func_76067_t + v ()Z func_76086_u + w ()Z func_76070_v + x ()Ladk; func_82574_x + y ()Loj; func_176130_y + z ()Z func_176123_z +atm net/minecraft/world/storage/SaveHandler + a field_151478_a + b field_75770_b + c field_75771_c + d field_75768_d + e field_75769_e + f field_75767_f + a ()V func_75759_a + a (Lanm;)Land; func_75763_a + a (Lato;)V func_75761_a + a (Lato;Ldn;)V func_75755_a + a (Ljava/lang/String;)Ljava/io/File; func_75758_b + a (Lwn;)V func_75753_a + b ()Ljava/io/File; func_75765_b + b (Lwn;)Ldn; func_75752_b + c ()V func_75762_c + d ()Lato; func_75757_d + e ()Laty; func_75756_e + f ()[Ljava/lang/String; func_75754_f + g ()Ljava/lang/String; func_75760_g + h ()V func_75766_h +atn net/minecraft/world/storage/SaveFormatOld + a field_75808_a + b field_151479_b + a ()Ljava/lang/String; func_154333_a + a (Ljava/lang/String;)Z func_154334_a + a (Ljava/lang/String;Ljava/lang/String;)V func_75806_a + a (Ljava/lang/String;Lnu;)Z func_75805_a + a (Ljava/lang/String;Z)Latp; func_75804_a + a ([Ljava/io/File;)Z func_75807_a + b ()Ljava/util/List; func_75799_b + b (Ljava/lang/String;)Z func_75801_b + c (Ljava/lang/String;)Lato; func_75803_c + d ()V func_75800_d + d (Ljava/lang/String;)Z func_154335_d + e (Ljava/lang/String;)Z func_75802_e + f (Ljava/lang/String;)Z func_90033_f +ato net/minecraft/world/storage/WorldInfo + A field_176150_A + B field_176151_B + C field_176152_C + D field_176146_D + E field_176147_E + F field_176148_F + G field_176149_G + H field_176153_H + I field_176154_I + J field_176155_J + K field_82577_x + a field_176156_a + b field_76100_a + c field_76098_b + d field_82576_c + e field_76099_c + f field_76096_d + g field_76097_e + h field_82575_g + i field_76094_f + j field_76095_g + k field_76107_h + l field_76108_i + m field_76105_j + n field_76106_k + o field_76103_l + p field_176157_p + q field_76104_m + r field_76101_n + s field_76102_o + t field_76114_p + u field_76113_q + v field_76112_r + w field_76111_s + x field_76110_t + y field_76109_u + z field_176158_z + A ()I func_176133_A + B ()Ljava/lang/String; func_82571_y + C ()D func_176120_C + D ()D func_176126_D + E ()D func_176137_E + F ()J func_176134_F + G ()D func_176132_G + H ()D func_176138_H + I ()D func_176140_I + J ()I func_176131_J + K ()I func_176139_K + a ()Ldn; func_76066_a + a (D)V func_176145_a + a (I)V func_76058_a + a (Ladp$a;)V func_76060_a + a (Ladp;)V func_176127_a + a (Ladr;)V func_76085_a + a (Lato;)Ladr; access$000 + a (Lc;)V func_85118_a + a (Lcj;)V func_176143_a + a (Ldn;)Ldn; func_76082_a + a (Ldn;Ldn;)V func_76064_a + a (Ljava/lang/String;)V func_76062_a + a (Loj;)V func_176144_a + a (Z)V func_76069_a + b ()J func_76063_b + b (D)V func_176118_b + b (I)V func_76056_b + b (J)V func_82572_b + b (Lato;)Z access$100 + b (Z)V func_76084_b + c ()I func_76079_c + c (D)V func_176141_c + c (I)V func_76087_c + c (J)V func_76068_b + c (Lato;)Ljava/lang/String; access$200 + c (Z)V func_176121_c + d ()I func_76075_d + d (D)V func_176124_d + d (Lato;)I access$300 + d (Z)V func_76091_d + e ()I func_76074_e + e (D)V func_176129_e + e (I)V func_76078_e + e (J)V func_176135_e + e (Lato;)I access$400 + e (Z)V func_180783_e + f ()J func_82573_f + f (D)V func_176125_f + f (I)V func_76090_f + f (Lato;)I access$500 + f (Z)V func_176128_f + g ()J func_76073_f + g (I)V func_76080_g + g (Lato;)J access$600 + g (Z)V func_176119_g + h ()J func_76092_g + h (Lato;)J access$700 + i ()Ldn; func_76072_h + i (I)V func_176142_i + i (Lato;)I access$800 + j (I)V func_176122_j + j (Lato;)I access$900 + k ()Ljava/lang/String; func_76065_j + k (I)V func_176136_k + k (Lato;)I access$1000 + l ()I func_76088_k + l (Lato;)Z access$1100 + m ()J func_76057_l + m (Lato;)I access$1200 + n ()Z func_76061_m + n (Lato;)Z access$1300 + o ()I func_76071_n + o (Lato;)Ladp$a; access$1400 + p ()Z func_76059_o + p (Lato;)Z access$1500 + q ()I func_76083_p + q (Lato;)Z access$1600 + r ()Ladp$a; func_76077_q + s ()Z func_76089_r + t ()Z func_76093_s + u ()Ladr; func_76067_t + v ()Z func_76086_u + w ()Z func_76070_v + x ()Ladk; func_82574_x + y ()Loj; func_176130_y + z ()Z func_176123_z +ato$1 net/minecraft/world/storage/WorldInfo$1 + a field_85143_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ato$2 net/minecraft/world/storage/WorldInfo$2 + a field_85139_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ato$3 net/minecraft/world/storage/WorldInfo$3 + a field_85141_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ato$4 net/minecraft/world/storage/WorldInfo$4 + a field_85135_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ato$5 net/minecraft/world/storage/WorldInfo$5 + a field_85137_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ato$6 net/minecraft/world/storage/WorldInfo$6 + a field_85115_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ato$7 net/minecraft/world/storage/WorldInfo$7 + a field_85113_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ato$8 net/minecraft/world/storage/WorldInfo$8 + a field_85111_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ato$9 net/minecraft/world/storage/WorldInfo$9 + a field_85109_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +atp net/minecraft/world/storage/ISaveHandler + a ()V func_75759_a + a (Lanm;)Land; func_75763_a + a (Lato;)V func_75761_a + a (Lato;Ldn;)V func_75755_a + a (Ljava/lang/String;)Ljava/io/File; func_75758_b + b ()Ljava/io/File; func_75765_b + c ()V func_75762_c + d ()Lato; func_75757_d + e ()Laty; func_75756_e + g ()Ljava/lang/String; func_75760_g +atq net/minecraft/client/AnvilConverterException +atr net/minecraft/world/storage/ISaveFormat + a ()Ljava/lang/String; func_154333_a + a (Ljava/lang/String;)Z func_154334_a + a (Ljava/lang/String;Ljava/lang/String;)V func_75806_a + a (Ljava/lang/String;Lnu;)Z func_75805_a + a (Ljava/lang/String;Z)Latp; func_75804_a + b ()Ljava/util/List; func_75799_b + b (Ljava/lang/String;)Z func_75801_b + c (Ljava/lang/String;)Lato; func_75803_c + d ()V func_75800_d + d (Ljava/lang/String;)Z func_154335_d + e (Ljava/lang/String;)Z func_75802_e + f (Ljava/lang/String;)Z func_90033_f +ats net/minecraft/world/storage/SaveFormatComparator + a field_75797_a + b field_75795_b + c field_75796_c + d field_75793_d + e field_75794_e + f field_75791_f + g field_75792_g + h field_75798_h + a ()Ljava/lang/String; func_75786_a + a (Lats;)I compareTo + b ()Ljava/lang/String; func_75788_b + c ()J func_154336_c + compareTo (Ljava/lang/Object;)I compareTo + d ()Z func_75785_d + e ()J func_75784_e + f ()Ladp$a; func_75790_f + g ()Z func_75789_g + h ()Z func_75783_h +atx net/minecraft/world/storage/SaveHandlerMP + a ()V func_75759_a + a (Lanm;)Land; func_75763_a + a (Lato;)V func_75761_a + a (Lato;Ldn;)V func_75755_a + a (Ljava/lang/String;)Ljava/io/File; func_75758_b + b ()Ljava/io/File; func_75765_b + c ()V func_75762_c + d ()Lato; func_75757_d + e ()Laty; func_75756_e + g ()Ljava/lang/String; func_75760_g +aty net/minecraft/world/storage/IPlayerFileData + a (Lwn;)V func_75753_a + b (Lwn;)Ldn; func_75752_b + f ()[Ljava/lang/String; func_75754_f +atz net/minecraft/world/storage/SaveDataMemoryStorage + a ()V func_75744_a + a (Ljava/lang/Class;Ljava/lang/String;)Late; func_75742_a + a (Ljava/lang/String;)I func_75743_a + a (Ljava/lang/String;Late;)V func_75745_a +au net/minecraft/command/CommandParticle + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +aua net/minecraft/world/storage/MapStorage + a field_75749_b + b field_75751_a + c field_75750_c + d field_75748_d + a ()V func_75744_a + a (Late;)V func_75747_a + a (Ljava/lang/Class;Ljava/lang/String;)Late; func_75742_a + a (Ljava/lang/String;)I func_75743_a + a (Ljava/lang/String;Late;)V func_75745_a + b ()V func_75746_b +auc net/minecraft/world/storage/ThreadedFileIOBase + a field_75741_a + b field_75739_b + c field_75740_c + d field_75737_d + e field_75738_e + a ()Lauc; func_178779_a + a (Laud;)V func_75735_a + b ()V func_75734_a + c ()V func_75736_b + run ()V run +aud net/minecraft/world/storage/IThreadedFileIO + c ()Z func_75814_c +aug net/minecraft/util/AxisAlignedBB + a field_72340_a + b field_72338_b + c field_72339_c + d field_72336_d + e field_72337_e + f field_72334_f + a ()D func_72320_b + a (DDD)Laug; func_72321_a + a (DDDDDD)Laug; func_178781_a + a (Laug;)Laug; func_111270_a + a (Laug;D)D func_72316_a + a (Laui;)Z func_72318_a + a (Laui;Laui;)Lauh; func_72327_a + b ()Z func_181656_b + b (DDD)Laug; func_72314_b + b (Laug;)Z func_72326_a + b (Laug;D)D func_72323_b + b (Laui;)Z func_72333_b + c (DDD)Laug; func_72317_d + c (Laug;D)D func_72322_c + c (Laui;)Z func_72315_c + d (DDD)Laug; func_72331_e + d (Laui;)Z func_72319_d + toString ()Ljava/lang/String; toString +auh net/minecraft/util/MovingObjectPosition + a field_72313_a + b field_178784_b + c field_72307_f + d field_72308_g + e field_178783_e + a ()Lcj; func_178782_a + toString ()Ljava/lang/String; toString +auh$a net/minecraft/util/MovingObjectPosition$MovingObjectType + a MISS + b BLOCK + c ENTITY + d $VALUES + valueOf (Ljava/lang/String;)Lauh$a; valueOf + values ()[Lauh$a; values +aui net/minecraft/util/Vec3 + a field_72450_a + b field_72448_b + c field_72449_c + a ()Laui; func_72432_b + a (DDD)Laui; func_178786_a + a (F)Laui; func_178789_a + a (Laui;)Laui; func_72444_a + a (Laui;D)Laui; func_72429_b + b ()D func_72433_c + b (DDD)Laui; func_72441_c + b (F)Laui; func_178785_b + b (Laui;)D func_72430_b + b (Laui;D)Laui; func_72435_c + c (Laui;)Laui; func_72431_c + c (Laui;D)Laui; func_72434_d + d (Laui;)Laui; func_178788_d + e (Laui;)Laui; func_178787_e + f (Laui;)D func_72438_d + g (Laui;)D func_72436_e + toString ()Ljava/lang/String; toString +auk net/minecraft/scoreboard/ScoreObjective + a field_96686_a + b field_96684_b + c field_96685_c + d field_178768_d + e field_96683_d + a ()Lauo; func_96682_a + a (Lauu$a;)V func_178767_a + a (Ljava/lang/String;)V func_96681_a + b ()Ljava/lang/String; func_96679_b + c ()Lauu; func_96680_c + d ()Ljava/lang/String; func_96678_d + e ()Lauu$a; func_178766_e +aul net/minecraft/scoreboard/ScorePlayerTeam + a field_96677_a + b field_96675_b + c field_96676_c + d field_96673_d + e field_96674_e + f field_96671_f + g field_96672_g + h field_98301_h + i field_178778_i + j field_178776_j + k field_178777_k + a (I)V func_98298_a + a (La;)V func_178774_a + a (Lauq$a;)V func_178772_a + a (Lauq;Ljava/lang/String;)Ljava/lang/String; func_96667_a + a (Ljava/lang/String;)V func_96664_a + a (Z)V func_96660_a + b ()Ljava/lang/String; func_96661_b + b (Lauq$a;)V func_178773_b + b (Ljava/lang/String;)V func_96666_b + b (Z)V func_98300_b + c ()Ljava/lang/String; func_96669_c + c (Ljava/lang/String;)V func_96662_c + d ()Ljava/util/Collection; func_96670_d + d (Ljava/lang/String;)Ljava/lang/String; func_142053_d + e ()Ljava/lang/String; func_96668_e + f ()Ljava/lang/String; func_96663_f + g ()Z func_96665_g + h ()Z func_98297_h + i ()Lauq$a; func_178770_i + j ()Lauq$a; func_178771_j + k ()I func_98299_i + l ()La; func_178775_l +aum net/minecraft/scoreboard/Score + a field_96658_a + b field_96656_b + c field_96657_c + d field_96654_d + e field_96655_e + f field_178817_f + g field_178818_g + a ()V func_96648_a + a (I)V func_96649_a + a (Ljava/util/List;)V func_96651_a + a (Z)V func_178815_a + b (I)V func_96646_b + c ()I func_96652_c + c (I)V func_96647_c + d ()Lauk; func_96645_d + e ()Ljava/lang/String; func_96653_e + f ()Lauo; func_96650_f + g ()Z func_178816_g +aum$1 net/minecraft/scoreboard/Score$1 + a (Laum;Laum;)I compare + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare +auo net/minecraft/scoreboard/Scoreboard + a field_96545_a + b field_96543_b + c field_96544_c + d field_96541_d + e field_96542_e + f field_96540_f + g field_178823_g + a (I)Lauk; func_96539_a + a (ILauk;)V func_96530_a + a (Lauk;)V func_96522_a + a (Laul;)V func_96523_a + a (Laum;)V func_96536_a + a (Lauu;)Ljava/util/Collection; func_96520_a + a (Ljava/lang/String;)V func_96516_a + a (Ljava/lang/String;Lauk;)V func_178820_a + a (Ljava/lang/String;Laul;)V func_96512_b + a (Ljava/lang/String;Lauu;)Lauk; func_96535_a + a (Ljava/lang/String;Ljava/lang/String;)Z func_151392_a + a (Lpk;)V func_181140_a + b (I)Ljava/lang/String; func_96517_b + b (Lauk;)V func_96532_b + b (Laul;)V func_96538_b + b (Ljava/lang/String;)Lauk; func_96518_b + b (Ljava/lang/String;Lauk;)Z func_178819_b + c ()Ljava/util/Collection; func_96514_c + c (Lauk;)V func_96533_c + c (Laul;)V func_96513_c + c (Ljava/lang/String;)Ljava/util/Map; func_96510_d + c (Ljava/lang/String;Lauk;)Laum; func_96529_a + d ()Ljava/util/Collection; func_96526_d + d (Laul;)V func_96511_d + d (Ljava/lang/String;)Laul; func_96508_e + d (Ljava/lang/String;Lauk;)V func_178822_d + e ()Ljava/util/Collection; func_96528_e + e (Ljava/lang/String;)Laul; func_96527_f + f ()Ljava/util/Collection; func_96531_f + f (Ljava/lang/String;)Z func_96524_g + g ()Ljava/util/Collection; func_96525_g + h ()[Ljava/lang/String; func_178821_h + h (Ljava/lang/String;)Laul; func_96509_i + i (Lauk;)Ljava/util/Collection; func_96534_i + i (Ljava/lang/String;)I func_96537_j + k (Lauk;)V func_96519_k +aup net/minecraft/scoreboard/ScoreboardSaveData + b field_151481_a + c field_96507_a + d field_96506_b + a ()Ldu; func_96496_a + a (Laul;Ldu;)V func_96502_a + a (Lauo;)V func_96499_a + a (Ldn;)V func_76184_a + a (Ldu;)V func_96498_a + b ()Ldu; func_96505_b + b (Ldn;)V func_76187_b + b (Ldu;)V func_96501_b + c (Ldn;)V func_96504_c + c (Ldu;)V func_96500_c + d (Ldn;)V func_96497_d + e ()Ldu; func_96503_e +auq net/minecraft/scoreboard/Team + a (Lauq;)Z func_142054_a + b ()Ljava/lang/String; func_96661_b + d ()Ljava/util/Collection; func_96670_d + d (Ljava/lang/String;)Ljava/lang/String; func_142053_d + g ()Z func_96665_g + h ()Z func_98297_h + i ()Lauq$a; func_178770_i + j ()Lauq$a; func_178771_j +auq$a net/minecraft/scoreboard/Team$EnumVisible + a ALWAYS + b NEVER + c HIDE_FOR_OTHER_TEAMS + d HIDE_FOR_OWN_TEAM + e field_178830_e + f field_178827_f + g field_178828_g + h $VALUES + a ()[Ljava/lang/String; func_178825_a + a (Ljava/lang/String;)Lauq$a; func_178824_a + values ()[Lauq$a; values +aur net/minecraft/scoreboard/GoalColor + j field_178794_j + a ()Ljava/lang/String; func_96636_a + a (Ljava/util/List;)I func_96635_a + b ()Z func_96637_b + c ()Lauu$a; func_178790_c +aus net/minecraft/scoreboard/ScoreDummyCriteria + j field_96644_g + a ()Ljava/lang/String; func_96636_a + a (Ljava/util/List;)I func_96635_a + b ()Z func_96637_b + c ()Lauu$a; func_178790_c +aut net/minecraft/scoreboard/ScoreHealthCriteria + a (Ljava/util/List;)I func_96635_a + b ()Z func_96637_b + c ()Lauu$a; func_178790_c +auu net/minecraft/scoreboard/IScoreObjectiveCriteria + a field_96643_a + b field_96641_b + c field_178791_c + d field_96642_c + e field_96639_d + f field_96640_e + g field_96638_f + h field_178792_h + i field_178793_i + a ()Ljava/lang/String; func_96636_a + a (Ljava/util/List;)I func_96635_a + b ()Z func_96637_b + c ()Lauu$a; func_178790_c +auu$a net/minecraft/scoreboard/IScoreObjectiveCriteria$EnumRenderType + a INTEGER + b HEARTS + c field_178801_c + d field_178798_d + e $VALUES + a ()Ljava/lang/String; func_178796_a + a (Ljava/lang/String;)Lauu$a; func_178795_a + values ()[Lauu$a; values +auv net/minecraft/stats/ObjectiveStat + j field_151459_g +auz net/minecraft/client/renderer/ActiveRenderInfo + a field_178814_a + b field_178812_b + c field_178813_c + d field_178810_d + e field_178811_e + f field_74588_d + g field_74589_e + h field_74586_f + i field_74587_g + j field_74596_h + a ()Laui; func_178804_a + a (Ladm;Lpk;F)Lafh; func_180786_a + a (Lpk;D)Laui; func_178806_a + a (Lwn;Z)V func_74583_a + b ()F func_178808_b + c ()F func_178809_c + d ()F func_178803_d + e ()F func_178805_e + f ()F func_178807_f +av net/minecraft/command/CommandPlaySound + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +ava net/minecraft/client/gui/ChatLine + a field_74543_a + b field_74541_b + c field_74542_c + a ()Leu; func_151461_a + b ()I func_74540_b + c ()I func_74539_c +avb net/minecraft/client/settings/KeyBinding + a field_74516_a + b field_74514_b + c field_151473_c + d field_74515_c + e field_151472_e + f field_151471_f + g field_74512_d + h field_74513_e + i field_151474_i + a ()V func_74506_a + a (I)V func_74507_a + a (IZ)V func_74510_a + a (Lavb;)I compareTo + b ()V func_74508_b + b (I)V func_151462_b + c ()Ljava/util/Set; func_151467_c + compareTo (Ljava/lang/Object;)I compareTo + d ()Z func_151470_d + e ()Ljava/lang/String; func_151466_e + f ()Z func_151468_f + g ()Ljava/lang/String; func_151464_g + h ()I func_151469_h + i ()I func_151463_i + j ()V func_74505_d +avc net/minecraft/client/renderer/RenderHelper + a field_74522_a + b field_82884_b + c field_82885_c + a ()V func_74518_a + a (DDDD)Ljava/nio/FloatBuffer; func_74517_a + a (FFFF)Ljava/nio/FloatBuffer; func_74521_a + b ()V func_74519_b + c ()V func_74520_c +avd net/minecraft/client/renderer/GLAllocation + a (I)I func_74526_a + a (II)V func_178874_a + b (I)V func_74523_b + c (I)Ljava/nio/ByteBuffer; func_74524_c + f (I)Ljava/nio/IntBuffer; func_74527_f + h (I)Ljava/nio/FloatBuffer; func_74529_h +ave net/minecraft/client/Minecraft + A field_71424_I + B field_71425_J + C field_71426_K + D field_175613_B + E field_175614_C + F field_175611_D + G field_175612_E + H field_71419_L + I field_71420_M + J field_71421_N + K field_147123_G + L field_110444_H + M field_110445_I + N field_130070_K + O field_152356_J + P field_181038_N + Q field_71422_O + R field_71446_o + S field_71432_P + T field_71431_Q + U field_175619_R + V field_71434_R + W field_71433_S + X field_181541_X + Y field_71428_T + Z field_71427_U + a field_142025_a + aA field_110449_ao + aB field_110450_ap + aC field_110448_aq + aD field_135017_as + aE field_152353_at + aF field_147124_at + aG field_147128_au + aH field_147127_av + aI field_147126_aw + aJ field_152354_ay + aK field_152355_az + aL field_152350_aA + aM field_152351_aB + aN field_175615_aJ + aO field_152352_aC + aP field_175617_aL + aQ field_175618_aM + aR field_71465_an + aa field_175616_W + ab field_175621_X + ac field_175620_Y + ad field_175622_Z + ae field_71449_j + af field_71445_n + ag field_71429_W + ah field_71436_X + ai field_71435_Y + aj field_71437_Z + ak field_110446_Y + al field_110447_Z + am field_110453_aa + an field_71469_aa + ao field_71470_ab + ap field_71467_ac + aq field_71475_ae + ar field_71477_af + as field_71457_ai + at field_147129_ai + au field_71459_aj + av field_71453_ak + aw field_71455_al + ax field_83002_am + ay field_110451_am + az field_110452_an + b field_71444_a + c field_71442_b + d field_71443_c + e field_71440_d + f field_71441_e + g field_71438_f + h field_71439_g + i field_147125_j + j field_71452_i + k field_71466_p + l field_71464_q + m field_71462_r + n field_71461_s + o field_71460_t + p field_71458_u + q field_71456_v + r field_71454_w + s field_71476_x + t field_71474_y + u field_71417_B + v field_71412_D + w field_71415_G + x field_71423_H + y field_181542_y + z field_181543_z + A ()Lave; func_71410_x + B ()Lcom/google/common/util/concurrent/ListenableFuture; func_175603_A + C ()I func_71369_N + D ()Lbde; func_147104_D + E ()Z func_71387_A + F ()Z func_71356_B + G ()Lbpo; func_71401_C + H ()V func_71363_D + I ()Lor; func_71378_E + J ()J func_71386_F + K ()Z func_71372_G + L ()Lavm; func_110432_I + M ()Lcom/mojang/authlib/properties/PropertyMap; func_180509_L + N ()Lcom/mojang/authlib/properties/PropertyMap; func_181037_M + O ()Ljava/net/Proxy; func_110437_J + P ()Lbmj; func_110434_K + Q ()Lbni; func_110442_L + R ()Lbnm; func_110438_M + S ()Lbns; func_135016_M + T ()Lbmh; func_147117_R + U ()Z func_147111_S + V ()Z func_147113_T + W ()Lbpz; func_147118_V + X ()Lbpv$a; func_147109_W + Y ()Lbqm; func_152346_Z + Z ()V func_152348_aa + a ()V func_99999_d + a (I)V func_71354_a + a (II)V func_71370_a + a (IIIIIIIIII)V func_181536_a + a (J)V func_71366_a + a (Lave;)Ljava/lang/String; access$000 + a (Laxu;)V func_147108_a + a (Lb;)V func_71404_a + a (Lbdb;)V func_71403_a + a (Lbdb;Ljava/lang/String;)V func_71353_a + a (Lbde;)V func_71351_a + a (Lbmj;)V func_180510_a + a (Ljava/io/InputStream;)Ljava/nio/ByteBuffer; func_152340_a + a (Ljava/lang/Runnable;)Lcom/google/common/util/concurrent/ListenableFuture; func_152344_a + a (Ljava/lang/String;Ljava/lang/String;Ladp;)V func_71371_a + a (Ljava/util/concurrent/Callable;)Lcom/google/common/util/concurrent/ListenableFuture; func_152343_a + a (Lor;)V func_70000_a + a (Lpk;)V func_175607_a + a (Lzw;ILakw;)Lzx; func_181036_a + a (Z)V func_181537_a + aA ()Ljava/lang/String; func_181538_aA + aJ ()Z func_152345_ab + aa ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; func_152347_ac + ab ()Lbnp; func_152342_ad + ac ()Lpk; func_175606_aa + ad ()Z func_70002_Q + ae ()Lbgd; func_175602_ab + af ()Lbiu; func_175598_ae + ag ()Lbjh; func_175599_af + ah ()Lbfn; func_175597_ag + ai ()I func_175610_ah + aj ()Lnh; func_181539_aj + ak ()Ljava/util/Map; func_175596_ai + al ()Z func_181540_al + am ()V func_71384_a + an ()V func_175608_ak + ao ()V func_175595_al + ap ()V func_175609_am + aq ()V func_175605_an + ar ()V func_175594_ao + as ()Z func_147122_X + at ()V func_71389_H + au ()V func_110441_Q + av ()V func_71411_J + aw ()V func_147116_af + ax ()V func_147121_ag + ay ()V func_147119_ah + az ()V func_147112_ai + b ()Lbfw; func_147110_a + b (I)V func_71383_b + b (Lave;)Lbns; access$100 + b (Lb;)Lb; func_71396_d + b (Ljava/lang/String;)V func_71361_d + b (Lor;)V func_70001_b + b (Z)V func_147115_a + c ()Ljava/lang/String; func_175600_c + c (Lb;)V func_71377_b + d ()Z func_152349_b + e ()V func_110436_a + f ()Latr; func_71359_d + g ()V func_71405_e + h ()V func_175601_h + i ()V func_175604_i + j ()I func_90020_K + k ()Z func_147107_h + l ()V func_71398_f + m ()V func_71400_g + n ()V func_71381_h + o ()V func_71364_i + p ()V func_71385_j + q ()V func_71352_k + r ()Lbpv; func_181535_r + s ()V func_71407_l + t ()Z func_71355_q + u ()Lbcy; func_147114_u + v ()Z func_71382_s + w ()Z func_71375_t + x ()Z func_71379_u +ave$1 net/minecraft/client/Minecraft$1 + a field_74532_a + a (Ljava/lang/String;)Ljava/lang/String; func_74535_a +ave$10 net/minecraft/client/Minecraft$10 + a field_183016_a + b field_183017_b +ave$11 net/minecraft/client/Minecraft$11 + a field_74536_a + run ()V run +ave$12 net/minecraft/client/Minecraft$12 + a field_90055_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ave$13 net/minecraft/client/Minecraft$13 + a field_90053_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ave$14 net/minecraft/client/Minecraft$14 + a field_74421_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ave$15 net/minecraft/client/Minecraft$15 + a field_74503_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ave$16 net/minecraft/client/Minecraft$16 + a field_79002_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ave$17 net/minecraft/client/Minecraft$17 + a field_74500_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ave$18 net/minecraft/client/Minecraft$18 + a field_82887_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ave$2 net/minecraft/client/Minecraft$2 + a field_90051_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ave$3 net/minecraft/client/Minecraft$3 + a field_90046_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ave$4 net/minecraft/client/Minecraft$4 + a field_90048_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ave$5 net/minecraft/client/Minecraft$5 + a field_142056_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ave$6 net/minecraft/client/Minecraft$6 + a field_151425_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ave$7 net/minecraft/client/Minecraft$7 + a field_152389_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ave$8 net/minecraft/client/Minecraft$8 + a field_152128_a + run ()V run +ave$9 net/minecraft/client/Minecraft$9 + a field_183003_a + a (ZI)V func_73878_a +avf net/minecraft/util/MouseHelper + a field_74377_a + b field_74375_b + a ()V func_74372_a + b ()V func_74373_b + c ()V func_74374_c +avh net/minecraft/client/settings/GameSettings + A field_85185_A + B field_92118_B + C field_92119_C + D field_92117_D + E field_96691_E + F field_96692_F + G field_96693_G + H field_96694_H + I field_151441_H + J field_151442_I + K field_152400_J + L field_152401_K + M field_152402_L + N field_152403_M + O field_152404_N + P field_152405_O + Q field_152406_P + R field_152407_Q + S field_152408_R + T field_152409_S + U field_152410_T + V field_181150_U + W field_181151_V + X field_74351_w + Y field_74370_x + Z field_74368_y + a field_74341_c + aA field_74320_O + aB field_74330_P + aC field_74329_Q + aD field_181657_aC + aE field_74332_R + aF field_74326_T + aG field_74325_U + aH field_74334_X + aI field_74333_Y + aJ field_151452_as + aK field_74335_Z + aL field_74362_aa + aM field_74363_ab + aN field_151455_aw + aO field_151454_ax + aP field_151450_ay + aQ field_151449_az + aR field_74367_ae + aS field_74364_ag + aT field_98303_au + aU field_152391_aS + aV field_152392_aT + aW field_152393_aU + aX field_152394_aV + aY field_181149_aW + aZ field_178882_aU + aa field_74366_z + ab field_74314_A + ac field_74311_E + ad field_151444_V + ae field_151445_Q + af field_74313_G + ag field_74316_C + ah field_74312_F + ai field_74322_I + aj field_74310_D + ak field_74321_H + al field_74323_J + am field_151447_Z + an field_151457_aa + ao field_151458_ab + ap field_152395_am + aq field_178883_an + ar field_152396_an + as field_152397_ao + at field_152398_ap + au field_152399_aq + av field_151456_ac + aw field_74324_K + ax field_74317_L + ay field_74318_M + az field_74319_N + b field_74338_d + ba field_151446_aD + bb field_74354_ai + c field_151451_c + d field_74336_f + e field_74337_g + f field_151448_g + g field_74350_i + h field_74345_l + i field_74347_j + j field_74348_k + k field_151453_l + l field_183018_l + m field_74343_n + n field_74344_o + o field_74359_p + p field_74358_q + q field_74357_r + r field_74355_t + s field_74353_u + t field_74352_v + u field_178881_t + v field_178880_u + w field_178879_v + x field_80005_w + y field_82882_x + z field_82881_y + a ()V func_74300_a + a (Lavb;)Z func_100015_a + a (Lavb;I)V func_151440_a + a (Lavh$a;)F func_74296_a + a (Lavh$a;F)V func_74304_a + a (Lavh$a;I)V func_74306_a + a (Lbpg;)F func_151438_a + a (Lbpg;F)V func_151439_a + a (Ljava/lang/String;)F func_74305_a + a (Lwo;)V func_178877_a + a (Lwo;Z)V func_178878_a + a ([Ljava/lang/String;I)Ljava/lang/String; func_74299_a + b ()V func_74303_b + b (Lavh$a;)Z func_74308_b + c ()V func_82879_c + c (I)Ljava/lang/String; func_74298_c + c (Lavh$a;)Ljava/lang/String; func_74297_c + d ()Ljava/util/Set; func_178876_d + e ()I func_181147_e + f ()Z func_181148_f +avh$1 net/minecraft/client/settings/GameSettings$1 + getActualTypeArguments ()[Ljava/lang/reflect/Type; getActualTypeArguments + getOwnerType ()Ljava/lang/reflect/Type; getOwnerType + getRawType ()Ljava/lang/reflect/Type; getRawType +avh$2 net/minecraft/client/settings/GameSettings$2 + a field_151477_a +avh$a net/minecraft/client/settings/GameSettings$Options + A CHAT_WIDTH + B CHAT_HEIGHT_FOCUSED + C CHAT_HEIGHT_UNFOCUSED + D MIPMAP_LEVELS + E FORCE_UNICODE_FONT + F STREAM_BYTES_PER_PIXEL + G STREAM_VOLUME_MIC + H STREAM_VOLUME_SYSTEM + I STREAM_KBPS + J STREAM_FPS + K STREAM_COMPRESSION + L STREAM_SEND_METADATA + M STREAM_CHAT_ENABLED + N STREAM_CHAT_USER_FILTER + O STREAM_MIC_TOGGLE_BEHAVIOR + P BLOCK_ALTERNATIVES + Q REDUCED_DEBUG_INFO + R ENTITY_SHADOWS + S field_74385_A + T field_74386_B + U field_74387_C + V field_148270_M + W field_148271_N + X field_148272_O + Y $VALUES + a INVERT_MOUSE + b SENSITIVITY + c FOV + d GAMMA + e SATURATION + f RENDER_DISTANCE + g VIEW_BOBBING + h ANAGLYPH + i FRAMERATE_LIMIT + j FBO_ENABLE + k RENDER_CLOUDS + l GRAPHICS + m AMBIENT_OCCLUSION + n GUI_SCALE + o PARTICLES + p CHAT_VISIBILITY + q CHAT_COLOR + r CHAT_LINKS + s CHAT_OPACITY + t CHAT_LINKS_PROMPT + u SNOOPER_ENABLED + v USE_FULLSCREEN + w ENABLE_VSYNC + x USE_VBO + y TOUCHSCREEN + z CHAT_SCALE + a ()Z func_74380_a + a (F)V func_148263_a + a (I)Lavh$a; func_74379_a + a (Lavh$a;)F access$000 + b ()Z func_74382_b + b (Lavh$a;)F access$100 + c ()I func_74381_c + c (F)F func_148266_c + d ()Ljava/lang/String; func_74378_d + d (F)F func_148262_d + e (F)F func_148268_e + f ()F func_148267_f + f (F)F func_148264_f + valueOf (Ljava/lang/String;)Lavh$a; valueOf + values ()[Lavh$a; values +avi net/minecraft/client/LoadingScreenRenderer + a field_73727_a + b field_73725_b + c field_73726_c + d field_73723_d + e field_73724_e + f field_146587_f + g field_146588_g + a ()V func_146586_a + a (I)V func_73718_a + a (Ljava/lang/String;)V func_73720_a + b (Ljava/lang/String;)V func_73721_b + c (Ljava/lang/String;)V func_73719_c + d (Ljava/lang/String;)V func_73722_d +avj net/minecraft/util/ScreenShotHelper + a field_148261_a + b field_74295_a + c field_74293_b + d field_74294_c + a (Ljava/io/File;)Ljava/io/File; func_74290_a + a (Ljava/io/File;IILbfw;)Leu; func_148260_a + a (Ljava/io/File;Ljava/lang/String;IILbfw;)Leu; func_148259_a +avk net/minecraft/util/MinecraftError +avl net/minecraft/util/Timer + a field_74282_a + b field_74280_b + c field_74281_c + d field_74278_d + e field_74279_e + f field_74276_f + g field_74277_g + h field_74284_h + i field_74285_i + j field_74283_j + a ()V func_74275_a +avm net/minecraft/util/Session + a field_74286_b + b field_148257_b + c field_148258_c + d field_152429_d + a ()Ljava/lang/String; func_111286_b + b ()Ljava/lang/String; func_148255_b + c ()Ljava/lang/String; func_111285_a + d ()Ljava/lang/String; func_148254_d + e ()Lcom/mojang/authlib/GameProfile; func_148256_e + f ()Lavm$a; func_152428_f +avm$a net/minecraft/util/Session$Type + a LEGACY + b MOJANG + c field_152425_c + d field_152426_d + e $VALUES + a (Ljava/lang/String;)Lavm$a; func_152421_a + values ()[Lavm$a; values +avn net/minecraft/client/gui/FontRenderer + a field_78288_b + b field_78289_c + c field_111274_c + d field_78286_d + e field_78287_e + f field_78285_g + g field_111273_g + h field_78298_i + i field_78295_j + j field_78296_k + k field_78293_l + l field_78294_m + m field_78291_n + n field_78292_o + o field_78306_p + p field_78305_q + q field_78304_r + r field_78303_s + s field_78302_t + t field_78301_u + u field_78300_v + v field_78299_w + a ()Z func_82883_a + a (C)I func_78263_a + a (CZ)F func_181559_a + a (I)Ljy; func_111271_a + a (IZ)F func_78266_a + a (Lbni;)V func_110549_a + a (Ljava/lang/String;)I func_78256_a + a (Ljava/lang/String;FFI)I func_175063_a + a (Ljava/lang/String;FFIZ)I func_175065_a + a (Ljava/lang/String;I)Ljava/lang/String; func_78269_a + a (Ljava/lang/String;III)I func_78276_b + a (Ljava/lang/String;IIII)V func_78279_b + a (Ljava/lang/String;IIIIZ)I func_78274_b + a (Ljava/lang/String;IIIZ)V func_78268_b + a (Ljava/lang/String;IZ)Ljava/lang/String; func_78262_a + a (Ljava/lang/String;Z)V func_78255_a + a (Z)V func_78264_a + b ()Z func_78260_a + b (C)I func_175064_b + b (CZ)F func_78277_a + b (I)V func_78257_a + b (Ljava/lang/String;)Ljava/lang/String; func_78282_e + b (Ljava/lang/String;FFIZ)I func_180455_b + b (Ljava/lang/String;I)I func_78267_b + b (Z)V func_78275_b + c ()V func_111272_d + c (C)Z func_78272_b + c (Ljava/lang/String;)Ljava/lang/String; func_147647_b + c (Ljava/lang/String;I)Ljava/util/List; func_78271_c + d ()V func_98306_d + d (C)Z func_78270_c + d (Ljava/lang/String;)Ljava/lang/String; func_78273_d + d (Ljava/lang/String;I)Ljava/lang/String; func_78280_d + e ()V func_78265_b + e (Ljava/lang/String;I)I func_78259_e +avo net/minecraft/client/gui/GuiIngame + A field_175192_A + B field_175193_B + C field_175194_C + D field_175189_D + E field_175190_E + F field_175191_F + a field_73843_a + f field_110329_b + g field_110330_c + h field_110328_d + i field_73842_c + j field_73839_d + k field_73841_b + l field_73840_e + m field_152127_m + n field_73837_f + o field_73838_g + p field_73845_h + q field_73844_j + r field_92017_k + s field_92016_l + t field_175198_t + u field_175197_u + v field_175196_v + w field_175195_w + x field_175201_x + y field_175200_y + z field_175199_z + a ()V func_175177_a + a (F)V func_175180_a + a (FLavr;)V func_180480_a + a (IIIFLwn;)V func_175184_a + a (Lauk;Lavr;)V func_180475_a + a (Lavr;)V func_181551_a + a (Lavr;F)V func_180479_a + a (Lavr;I)V func_175186_a + a (Leu;Z)V func_175188_a + a (Ljava/lang/String;)V func_73833_a + a (Ljava/lang/String;Ljava/lang/String;III)V func_175178_a + a (Ljava/lang/String;Z)V func_110326_a + b ()Z func_175183_b + b (FLavr;)V func_180474_b + b (Lavr;)V func_175185_b + b (Lavr;I)V func_175176_b + c ()V func_73831_a + c (Lavr;)V func_180478_c + d ()Lavt; func_146158_b + d (Lavr;)V func_180477_d + e ()I func_73834_c + e (Lavr;)V func_180476_e + f ()Lavn; func_175179_f + g ()Lawm; func_175187_g + h ()Lawh; func_175181_h + i ()V func_181029_i + j ()V func_73828_d +avo$1 net/minecraft/client/gui/GuiIngame$1 + a field_178904_a + a (Laum;)Z apply + apply (Ljava/lang/Object;)Z apply +avp net/minecraft/client/gui/Gui + b field_110325_k + c field_110323_l + d field_110324_m + e field_73735_i + a (FFIIII)V func_175174_a + a (IIFFIIFF)V func_146110_a + a (IIFFIIIIFF)V func_152125_a + a (IIII)V func_73730_a + a (IIIII)V func_73734_a + a (IIIIII)V func_73733_a + a (IILbmi;II)V func_175175_a + a (Lavn;Ljava/lang/String;III)V func_73732_a + b (IIII)V func_73728_b + b (IIIIII)V func_73729_b + c (Lavn;Ljava/lang/String;III)V func_73731_b +avq net/minecraft/client/gui/MapItemRenderer + a field_148253_a + b field_148251_b + c field_148252_c + a ()V func_148249_a + a (Latg;)V func_148246_a + a (Latg;Z)V func_148250_a + a (Lavq;)Lbmj; access$400 + b ()Ljy; access$500 + b (Latg;)Lavq$a; func_148248_b +avq$1 net/minecraft/client/gui/MapItemRenderer$1 +avq$a net/minecraft/client/gui/MapItemRenderer$Instance + a field_148244_a + b field_148242_b + c field_148243_c + d field_148240_d + e field_148241_e + a ()V func_148236_a + a (Lavq$a;)V access$000 + a (Lavq$a;Z)V access$100 + a (Z)V func_148237_a + b (Lavq$a;)Ljy; access$300 +avr net/minecraft/client/gui/ScaledResolution + a field_78332_c + b field_78329_d + c field_78333_a + d field_78331_b + e field_78330_e + a ()I func_78326_a + b ()I func_78328_b + c ()D func_78327_c + d ()D func_78324_d + e ()I func_78325_e +avs net/minecraft/client/gui/GuiButton + a field_146122_a + f field_146120_f + g field_146121_g + h field_146128_h + i field_146129_i + j field_146126_j + k field_146127_k + l field_146124_l + m field_146125_m + n field_146123_n + a ()Z func_146115_a + a (I)V func_175211_a + a (II)V func_146118_a + a (Lave;II)V func_146112_a + a (Lbpz;)V func_146113_a + a (Z)I func_146114_a + b ()I func_146117_b + b (II)V func_146111_b + b (Lave;II)V func_146119_b + c (Lave;II)Z func_146116_c +avt net/minecraft/client/gui/GuiNewChat + a field_146249_a + f field_146247_f + g field_146248_g + h field_146252_h + i field_146253_i + j field_146250_j + k field_146251_k + a ()V func_146231_a + a (F)I func_146233_a + a (I)V func_146230_a + a (II)Leu; func_146236_a + a (Leu;)V func_146227_a + a (Leu;I)V func_146234_a + a (Leu;IIZ)V func_146237_a + a (Ljava/lang/String;)V func_146239_a + b ()V func_146245_b + b (F)I func_146243_b + b (I)V func_146229_b + c ()Ljava/util/List; func_146238_c + c (I)V func_146242_c + d ()V func_146240_d + e ()Z func_146241_e + f ()I func_146228_f + g ()I func_146246_g + h ()F func_146244_h + i ()I func_146232_i +avu net/minecraft/client/gui/GuiUtilRenderComponents + a (Leu;ILavn;ZZ)Ljava/util/List; func_178908_a + a (Ljava/lang/String;Z)Ljava/lang/String; func_178909_a +avv net/minecraft/client/gui/GuiOverlayDebug + a field_175242_a + f field_175241_f + a ()V func_180798_a + a (IIF)I func_181553_a + a (J)J func_175240_a + a (Lavr;)V func_175237_a + b ()Ljava/util/List; call + b (Lavr;)V func_175239_b + c ()Ljava/util/List; func_175238_c + c (IIII)I func_181552_c + d ()Z func_175236_d + e ()V func_181554_e +avv$1 net/minecraft/client/gui/GuiOverlayDebug$1 + a field_178907_a +avw net/minecraft/client/gui/GuiTextField + a field_146209_f + f field_146210_g + g field_175208_g + h field_146211_a + i field_146218_h + j field_146219_i + k field_146216_j + l field_146217_k + m field_146214_l + n field_146215_m + o field_146212_n + p field_146213_o + q field_146226_p + r field_146225_q + s field_146224_r + t field_146223_s + u field_146222_t + v field_146221_u + w field_146220_v + x field_175210_x + y field_175209_y + a ()V func_146178_a + a (CI)Z func_146201_a + a (I)V func_146177_a + a (II)I func_146183_a + a (III)V func_146192_a + a (IIZ)I func_146197_a + a (Lawg$b;)V func_175207_a + a (Lcom/google/common/base/Predicate;)V func_175205_a + a (Ljava/lang/String;)V func_146180_a + a (Z)V func_146185_a + b ()Ljava/lang/String; func_146179_b + b (I)V func_146175_b + b (Ljava/lang/String;)V func_146191_b + b (Z)V func_146195_b + c ()Ljava/lang/String; func_146207_c + c (I)I func_146187_c + c (IIII)V func_146188_c + c (Z)V func_146184_c + d ()I func_175206_d + d (I)V func_146182_d + d (Z)V func_146205_d + e ()V func_146196_d + e (I)V func_146190_e + e (Z)V func_146189_e + f ()V func_146202_e + f (I)V func_146203_f + g ()V func_146194_f + g (I)V func_146193_g + h ()I func_146208_g + h (I)V func_146204_h + i ()I func_146198_h + i (I)V func_146199_i + j ()Z func_146181_i + m ()Z func_146206_l + o ()I func_146186_n + p ()I func_146200_o + r ()Z func_146176_q +avx net/minecraft/client/gui/GuiSlider + o field_175228_o + p field_175227_p + q field_175226_q + r field_175225_r + s field_175224_s + t field_175223_t + u field_175222_u + a (F)V func_175219_a + a (FZ)V func_175218_a + a (II)V func_146118_a + a (Z)I func_146114_a + b (Lave;II)V func_146119_b + c ()F func_175220_c + c (Lave;II)Z func_146116_c + d ()F func_175217_d + e ()Ljava/lang/String; func_175221_e +avx$a net/minecraft/client/gui/GuiSlider$FormatHelper + a (ILjava/lang/String;F)Ljava/lang/String; func_175318_a +avy net/minecraft/client/gui/GuiLabel + a field_146167_a + f field_146161_f + g field_146162_g + h field_146174_h + i field_175204_i + j field_146172_j + k field_146173_k + l field_146170_l + m field_146171_m + n field_146168_n + o field_146169_o + p field_146166_p + q field_146165_q + r field_146164_r + s field_146163_s + a ()Lavy; func_175203_a + a (Lave;II)V func_146159_a + a (Ljava/lang/String;)V func_175202_a + b (Lave;II)V func_146160_b +avz net/minecraft/client/gui/GuiButtonLanguage + a (Lave;II)V func_146112_a +aw net/minecraft/command/server/CommandPublishLocalServer + a (Lm;[Ljava/lang/String;)V func_71515_b + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +awb net/minecraft/client/gui/GuiListButton + o field_175216_o + p field_175215_p + q field_175214_q + b (Z)V func_175212_b + c ()Ljava/lang/String; func_175213_c + c (Lave;II)Z func_146116_c +awc net/minecraft/client/gui/GuiLockIconButton + o field_175231_o + a (Lave;II)V func_146112_a + b (Z)V func_175229_b + c ()Z func_175230_c +awc$a net/minecraft/client/gui/GuiLockIconButton$Icon + a LOCKED + b LOCKED_HOVER + c LOCKED_DISABLED + d UNLOCKED + e UNLOCKED_HOVER + f UNLOCKED_DISABLED + g field_178914_g + h field_178920_h + i $VALUES + a ()I func_178910_a + b ()I func_178912_b + values ()[Lawc$a; values +awd net/minecraft/client/gui/GuiListExtended + a ()V func_148123_a + a (I)Z func_148131_a + a (III)V func_178040_a + a (IIIIII)V func_180791_a + a (IZII)V func_148144_a + b (I)Lawd$a; func_148180_b + b (III)Z func_148179_a + c (III)Z func_148181_b +awd$a net/minecraft/client/gui/GuiListExtended$IGuiListEntry + a (III)V func_178011_a + a (IIIIII)Z func_148278_a + a (IIIIIIIZ)V func_180790_a + b (IIIIII)V func_148277_b +awe net/minecraft/client/gui/GuiOptionButton + o field_146137_o + c ()Lavh$a; func_146136_c +awf net/minecraft/client/gui/GuiOptionsRowList + u field_148184_k + a (Lave;IILavh$a;)Lavs; func_148182_a + b ()I func_148127_b + b (I)Lawd$a; func_148180_b + c ()I func_148139_c + c (I)Lawf$a; func_148180_b + d ()I func_148137_d +awf$a net/minecraft/client/gui/GuiOptionsRowList$Row + a field_148325_a + b field_148323_b + c field_148324_c + a (III)V func_178011_a + a (IIIIII)Z func_148278_a + a (IIIIIIIZ)V func_180790_a + b (IIIIII)V func_148277_b +awg net/minecraft/client/gui/GuiPageButtonList + A field_178075_A + u field_178074_u + v field_178073_v + w field_178072_w + x field_178078_x + y field_178077_y + z field_178076_z + a (CI)V func_178062_a + a (IILawg$a;)Lawb; func_178065_a + a (IILawg$c;)Lavw; func_178068_a + a (IILawg$e;Z)Lavy; func_178063_a + a (IILawg$g;)Lavx; func_178067_a + a (Lavp;Z)V func_178066_a + a (Lawg$f;IZ)Lavp; func_178058_a + a (Z)V func_181155_a + b ()I func_148127_b + b (I)Lawd$a; func_148180_b + b (III)Z func_148179_a + c ()I func_148139_c + c (I)V func_181156_c + d ()I func_148137_d + d (I)Lavp; func_178061_c + e ()I func_178059_e + e (I)Lawg$d; func_148180_b + e (II)V func_178060_e + f ()I func_178057_f + g ()Lavp; func_178056_g + h ()V func_178071_h + i ()V func_178064_i + s ()V func_178069_s + t ()V func_178055_t +awg$a net/minecraft/client/gui/GuiPageButtonList$GuiButtonEntry + a field_178941_a + a ()Z func_178940_a +awg$b net/minecraft/client/gui/GuiPageButtonList$GuiResponder + a (IF)V func_175320_a + a (ILjava/lang/String;)V func_175319_a + a (IZ)V func_175321_a +awg$c net/minecraft/client/gui/GuiPageButtonList$EditBoxEntry + a field_178951_a + a ()Lcom/google/common/base/Predicate; func_178950_a +awg$d net/minecraft/client/gui/GuiPageButtonList$GuiEntry + a field_178031_a + b field_178029_b + c field_178030_c + d field_178028_d + a ()Lavp; func_178022_a + a (III)V func_178011_a + a (IIIIII)Z func_148278_a + a (IIIIIIIZ)V func_180790_a + a (Lavp;III)Z func_178026_a + a (Lavp;IIIZ)V func_178017_a + a (Lavs;III)Z func_178023_a + a (Lavs;IIIZ)V func_178024_a + a (Lavw;III)V func_178018_a + a (Lavw;IZ)V func_178027_a + a (Lavy;IIIZ)V func_178025_a + a (Lawg$d;)Lavp; access$000 + b ()Lavp; func_178021_b + b (IIIIII)V func_148277_b + b (Lavp;III)V func_178016_b + b (Lavs;III)V func_178019_b + b (Lawg$d;)Lavp; access$100 + c (Lawg$d;)Lavp; access$200 +awg$e net/minecraft/client/gui/GuiPageButtonList$GuiLabelEntry +awg$f net/minecraft/client/gui/GuiPageButtonList$GuiListEntry + a field_178939_a + b field_178937_b + c field_178938_c + b ()I func_178935_b + c ()Ljava/lang/String; func_178936_c + d ()Z func_178934_d +awg$g net/minecraft/client/gui/GuiPageButtonList$GuiSlideEntry + a field_178949_a + b field_178947_b + c field_178948_c + d field_178946_d + a ()Lavx$a; func_178945_a + e ()F func_178943_e + f ()F func_178944_f + g ()F func_178942_g +awh net/minecraft/client/gui/GuiPlayerTabOverlay + a field_175252_a + f field_175250_f + g field_175251_g + h field_175255_h + i field_175256_i + j field_175253_j + k field_175254_k + a ()V func_181030_a + a (IIILbdc;)V func_175245_a + a (ILauo;Lauk;)V func_175249_a + a (Lauk;ILjava/lang/String;IILbdc;)V func_175247_a + a (Lbdc;)Ljava/lang/String; func_175243_a + a (Leu;)V func_175248_a + a (Z)V func_175246_a + b (Leu;)V func_175244_b +awh$1 net/minecraft/client/gui/GuiPlayerTabOverlay$1 +awh$a net/minecraft/client/gui/GuiPlayerTabOverlay$PlayerComparator + a (Lbdc;Lbdc;)I compare + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare +awi net/minecraft/client/gui/GuiSlot + a field_148161_k + b field_148155_a + c field_148158_l + d field_148153_b + e field_148154_c + f field_148151_d + g field_148152_e + h field_148149_f + i field_148150_g + j field_148162_h + k field_148163_i + l field_148157_o + m field_148170_p + n field_148169_q + o field_148168_r + p field_148167_s + q field_178041_q + r field_148166_t + s field_148165_u + t field_148160_j + u field_148159_m + v field_148156_n + w field_148164_v + a ()V func_148123_a + a (I)Z func_148131_a + a (II)V func_148132_a + a (IIF)V func_148128_a + a (III)V func_178040_a + a (IIII)V func_148122_a + a (IIIIII)V func_180791_a + a (IILbfx;)V func_148129_a + a (IZII)V func_148144_a + a (Lavs;)V func_148147_a + a (ZI)V func_148133_a + b ()I func_148127_b + b (II)V func_148142_b + b (IIII)V func_148120_b + b (Z)V func_148130_a + c ()I func_148139_c + c (II)I func_148124_c + c (IIII)V func_148136_c + d ()I func_148137_d + d (II)V func_148134_d + d (Z)V func_148143_b + g (I)Z func_148141_e + h (I)V func_148145_f + i (I)V func_148140_g + k ()I func_148138_e + l ()V func_148121_k + m ()I func_148135_f + n ()I func_148148_g + p ()V func_178039_p + q ()Z func_148125_i + r ()I func_148146_j +awj net/minecraft/client/gui/GuiOptionSlider + o field_146135_o + p field_146134_p + q field_146133_q + r field_146132_r + s field_146131_s + a (II)V func_146118_a + a (Z)I func_146114_a + b (Lave;II)V func_146119_b + c (Lave;II)Z func_146116_c +awk net/minecraft/client/gui/GuiStreamIndicator + a field_152441_a + b field_152442_b + c field_152443_c + d field_152444_d + a ()V func_152439_a + a (II)V func_152437_a + a (IIII)V func_152436_a + b ()I func_152440_b + c ()I func_152438_c +awm net/minecraft/client/gui/GuiSpectator + a field_175269_a + f field_175267_f + g field_175268_g + h field_175270_h + i field_175271_i + a ()Z func_175262_a + a (I)V func_175260_a + a (IIFFLbah;)V func_175266_a + a (Lavr;)V func_175263_a + a (Lavr;F)V func_175264_a + a (Lavr;FIFLbaj;)V func_175258_a + a (Lbaf;)V func_175257_a + b ()V func_175261_b + b (I)V func_175259_b + c ()F func_175265_c +awp net/minecraft/client/gui/GuiButtonRealmsProxy + o field_154318_o + a (II)V func_146118_a + a (Ljava/lang/String;)V func_154311_a + a (Z)I func_146114_a + b ()I func_146117_b + b (Lave;II)V func_146119_b + b (Z)V func_154313_b + c ()I func_154314_d + c (Lave;II)Z func_146116_c + c (Z)I func_154312_c + d ()Z func_154315_e + e ()I func_154316_f + f ()Lnet/minecraft/realms/RealmsButton; func_154317_g + g ()I func_175232_g +awq net/minecraft/client/gui/GuiClickableScrolledSelectionListProxy + u field_178046_u + a ()V func_148123_a + a (I)Z func_148131_a + a (IIIIII)V func_180791_a + a (IIILnet/minecraft/realms/Tezzelator;)V func_178043_a + a (IZII)V func_148144_a + b ()I func_148127_b + b (IIII)V func_148120_b + d ()I func_148137_d + e ()I func_178044_e + f ()I func_178042_f + g ()I func_178045_g + k ()I func_148138_e + p ()V func_178039_p +awr net/minecraft/client/gui/GuiScreenRealmsProxy + a field_154330_a + a ()Lnet/minecraft/realms/RealmsScreen; func_154321_a + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (IIIIII)V func_73733_a + a (IIIJ)V func_146273_a + a (Lavs;)V func_146284_a + a (Ljava/lang/String;I)Ljava/util/List; func_154323_a + a (Ljava/lang/String;II)V func_146279_a + a (Ljava/lang/String;III)V func_154325_a + a (Ljava/util/List;II)V func_146283_a + a (Lnet/minecraft/realms/RealmsButton;)V func_154327_a + a (Lzx;II)V func_146285_a + a (ZI)V func_73878_a + b ()V func_73866_w_ + b (III)V func_146286_b + b (IIIIII)V func_73729_b + b (Ljava/lang/String;III)V func_154322_b + b (Lnet/minecraft/realms/RealmsButton;)V func_154328_b + b_ (I)V func_146270_b + c ()V func_146276_q_ + c (Ljava/lang/String;)I func_154326_c + c (Ljava/lang/String;III)V func_154319_c + d ()Z func_73868_f + e ()V func_73876_c + h ()I func_154329_h + i ()V func_154324_i + j ()Ljava/util/List; func_154320_j + k ()V func_146274_d + l ()V func_146282_l + m ()V func_146281_b +aws net/minecraft/client/gui/GuiSlotRealmsProxy + u field_154340_k + a ()V func_148123_a + a (I)Z func_148131_a + a (IIIIII)V func_180791_a + a (IZII)V func_148144_a + b ()I func_148127_b + d ()I func_148137_d + e ()I func_154338_k + f ()I func_154339_l + g ()I func_154337_m + k ()I func_148138_e + p ()V func_178039_p +awt net/minecraft/client/gui/GuiSimpleScrolledSelectionListProxy + u field_178050_u + a ()V func_148123_a + a (I)Z func_148131_a + a (IIF)V func_148128_a + a (IIIIII)V func_180791_a + a (IZII)V func_148144_a + b ()I func_148127_b + d ()I func_148137_d + e ()I func_178048_e + f ()I func_178047_f + g ()I func_178049_g + k ()I func_148138_e + p ()V func_178039_p +awu net/minecraft/client/gui/ScreenChatOptions + a field_146399_a + f field_146396_g + g field_146400_h + h field_146401_i + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ +awv net/minecraft/client/gui/GuiChat + a field_146415_a + f field_146408_f + g field_146410_g + h field_146416_h + i field_146417_i + r field_146414_r + s field_146413_s + t field_146412_t + u field_146409_v + a ()V func_146404_p_ + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Ljava/lang/String;Ljava/lang/String;)V func_146405_a + a (Ljava/lang/String;Z)V func_175274_a + a ([Ljava/lang/String;)V func_146406_a + b ()V func_73866_w_ + b (I)V func_146402_a + d ()Z func_73868_f + e ()V func_73876_c + k ()V func_146274_d + m ()V func_146281_b +aww net/minecraft/client/gui/GuiConfirmOpenLink + r field_146363_r + s field_146362_s + t field_146361_t + u field_146360_u + a ()V func_146359_e + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + f ()V func_146358_g +awx net/minecraft/client/gui/GuiYesNoCallback + a (ZI)V func_73878_a +awy net/minecraft/client/gui/GuiYesNo + a field_146355_a + f field_146351_f + g field_146352_g + h field_146356_h + i field_146357_i + r field_146354_r + s field_175298_s + t field_146353_s + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + b (I)V func_146350_a + e ()V func_73876_c +awz net/minecraft/client/multiplayer/GuiConnecting + a field_146372_a + f field_146370_f + g field_146371_g + h field_146373_h + i field_146374_i + a ()Lorg/apache/logging/log4j/Logger; access$300 + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + a (Lawz;)Z access$000 + a (Lawz;Lek;)Lek; access$102 + a (Ljava/lang/String;I)V func_146367_a + b ()V func_73866_w_ + b (Lawz;)Lek; access$100 + c (Lawz;)Laxu; access$200 + e ()V func_73876_c +awz$1 net/minecraft/client/multiplayer/GuiConnecting$1 + a field_148231_a + b field_148229_b + c field_148230_c + run ()V run +ax net/minecraft/command/CommandReplaceItem + a field_175785_a + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + d ()[Ljava/lang/String; func_175784_d + e (Ljava/lang/String;)I func_175783_e +axa net/minecraft/client/gui/GuiCreateFlatWorld + a field_146385_f + f field_146387_g + g field_146393_h + h field_146394_i + i field_146391_r + r field_146390_s + s field_146389_t + t field_146388_u + u field_146386_v + a ()Ljava/lang/String; func_146384_e + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + a (Laxa;)F access$000 + a (Ljava/lang/String;)V func_146383_a + b ()V func_73866_w_ + b (Laxa;)F access$100 + c (Laxa;)F access$200 + d (Laxa;)F access$300 + e (Laxa;)Lapz; access$400 + f ()V func_146375_g + g ()Z func_146382_i + k ()V func_146274_d +axa$a net/minecraft/client/gui/GuiCreateFlatWorld$Details + u field_148228_k + v field_148227_l + a ()V func_148123_a + a (I)Z func_148131_a + a (IIIIII)V func_180791_a + a (IILzx;)V func_148225_a + a (IZII)V func_148144_a + b ()I func_148127_b + d ()I func_148137_d + d (IIII)V func_148224_c + e (II)V func_148226_e +axb net/minecraft/client/gui/GuiCreateWorld + A field_146343_z + B field_146324_A + C field_146325_B + D field_146326_C + E field_146320_D + F field_146321_E + G field_146322_F + H field_146323_G + I field_146328_H + J field_146329_I + K field_146330_J + L field_146331_K + M field_146327_L + a field_146334_a + f field_146332_f + g field_146333_g + h field_146335_h + i field_146336_i + r field_146342_r + s field_175300_s + t field_146341_s + u field_146340_t + v field_146339_u + w field_146338_v + x field_146337_w + y field_146345_x + z field_146344_y + a ()V func_146314_g + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lato;)V func_146318_a + a (Latr;Ljava/lang/String;)Ljava/lang/String; func_146317_a + a (Lavs;)V func_146284_a + a (Z)V func_146316_a + b ()V func_73866_w_ + e ()V func_73876_c + f ()V func_146319_h + g ()Z func_175299_g + h ()V func_146315_i + m ()V func_146281_b +axc net/minecraft/client/gui/GuiScreenCustomizePresets + a field_175315_a + f field_175310_f + g field_175311_g + h field_175316_h + i field_175317_i + r field_175314_r + s field_175313_s + t field_175312_t + a ()V func_175304_a + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lavs;)V func_146284_a + a (Laxc;)Laxc$b; access$100 + a (Laxc;IIII)V access$300 + b ()V func_73866_w_ + b (Laxc;)Lavw; access$200 + b (Laxc;IIII)V access$400 + c (Laxc;IIII)V access$500 + d (Laxc;IIII)V access$600 + e ()V func_73876_c + f ()Ljava/util/List; access$000 + g ()Z func_175305_g + k ()V func_146274_d + m ()V func_146281_b +axc$a net/minecraft/client/gui/GuiScreenCustomizePresets$Info + a field_178955_a + b field_178953_b + c field_178954_c +axc$b net/minecraft/client/gui/GuiScreenCustomizePresets$ListPreset + u field_178053_u + v field_178052_v + a ()V func_148123_a + a (I)Z func_148131_a + a (IIIIII)V func_180791_a + a (IILjy;)V func_178051_a + a (IZII)V func_148144_a + b ()I func_148127_b +axd net/minecraft/client/gui/GuiCustomizeWorldScreen + A field_175338_A + B field_175339_B + C field_175340_C + D field_175332_D + E field_175334_E + F field_175336_F + G field_175337_G + a field_175341_a + f field_175333_f + g field_175335_g + h field_175342_h + i field_175343_i + r field_175349_r + s field_175348_s + t field_175347_t + u field_175346_u + v field_175345_v + w field_175344_w + x field_175352_x + y field_175351_y + z field_175350_z + a ()Ljava/lang/String; func_175323_a + a (CI)V func_73869_a + a (F)V func_175327_a + a (IF)V func_175320_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (ILjava/lang/String;)V func_175319_a + a (ILjava/lang/String;F)Ljava/lang/String; func_175318_a + a (IZ)V func_175321_a + a (Lavs;)V func_146284_a + a (Ljava/lang/String;)V func_175324_a + a (Z)V func_181031_a + b ()V func_73866_w_ + b (I)V func_175322_b + b (IF)Ljava/lang/String; func_175330_b + b (III)V func_146286_b + b (Z)V func_175329_a + f ()V func_175325_f + g ()V func_175326_g + h ()V func_175331_h + i ()V func_175328_i + k ()V func_146274_d +axd$1 net/minecraft/client/gui/GuiCustomizeWorldScreen$1 + a field_178957_a + a (Ljava/lang/String;)Z apply + apply (Ljava/lang/Object;)Z apply +axe net/minecraft/client/gui/GuiGameOver + a field_146347_a + f field_146346_f + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + a (ZI)V func_73878_a + b ()V func_73866_w_ + d ()Z func_73868_f + e ()V func_73876_c +axf net/minecraft/client/gui/GuiScreenDemo + a field_146349_a + f field_146348_f + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + c ()V func_146276_q_ + e ()V func_73876_c +axg net/minecraft/client/gui/GuiScreenServerList + a field_146303_a + f field_146301_f + g field_146302_g + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + e ()V func_73876_c + m ()V func_146281_b +axh net/minecraft/client/gui/GuiDisconnected + a field_146306_a + f field_146304_f + g field_146305_g + h field_146307_h + i field_175353_i + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ +axi net/minecraft/client/gui/GuiScreenAddServer + a field_146310_a + f field_146311_h + g field_146308_f + h field_146309_g + i field_152176_i + r field_181032_r + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + e ()V func_73876_c + m ()V func_146281_b +axi$1 net/minecraft/client/gui/GuiScreenAddServer$1 + a field_181167_a + a (Ljava/lang/String;)Z apply + apply (Ljava/lang/Object;)Z apply +axj net/minecraft/client/gui/GuiErrorScreen + a field_146313_a + f field_146312_f + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ +axk net/minecraft/client/gui/GuiSleepMP + a (CI)V func_73869_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + f ()V func_146418_g +axl net/minecraft/client/gui/GuiLanguage + a field_146453_a + f field_146450_f + g field_146451_g + h field_146454_h + i field_146455_i + r field_146452_r + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + a (Laxl;)Lbns; access$000 + b ()V func_73866_w_ + b (Laxl;)Lavh; access$100 + c (Laxl;)Lawe; access$200 + d (Laxl;)Lawe; access$300 + k ()V func_146274_d +axl$a net/minecraft/client/gui/GuiLanguage$List + u field_148178_k + v field_148176_l + w field_148177_m + a ()V func_148123_a + a (I)Z func_148131_a + a (IIIIII)V func_180791_a + a (IZII)V func_148144_a + b ()I func_148127_b + k ()I func_148138_e +axn net/minecraft/client/gui/GuiOptions + a field_146442_a + f field_146440_f + g field_146441_g + h field_146443_h + i field_175357_i + r field_175356_r + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + a (Loj;)Ljava/lang/String; func_175355_a + a (ZI)V func_73878_a + b ()V func_73866_w_ +axn$1 net/minecraft/client/gui/GuiOptions$1 + o field_146130_o + a (Lbpz;)V func_146113_a +axo net/minecraft/client/gui/GuiMemoryErrorScreen + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ +axp net/minecraft/client/gui/GuiIngameMenu + a field_146445_a + f field_146444_f + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + e ()V func_73876_c +axq net/minecraft/client/gui/GuiFlatPresets + a field_146431_f + f field_146432_g + g field_146438_h + h field_146439_i + i field_146436_r + r field_146435_s + s field_146434_t + t field_146433_u + a ()V func_146426_g + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lavs;)V func_146284_a + a (Laxq;)F access$000 + a (Ljava/lang/String;Lzw;ILady;Ljava/util/List;[Laqa;)V func_175354_a + a (Ljava/lang/String;Lzw;Lady;Ljava/util/List;[Laqa;)V func_146421_a + a (Ljava/lang/String;Lzw;Lady;[Laqa;)V func_146425_a + b ()V func_73866_w_ + b (Laxq;)F access$100 + c (Laxq;)F access$200 + d (Laxq;)F access$300 + e ()V func_73876_c + e (Laxq;)Laxq$b; access$500 + f ()Ljava/util/List; access$400 + f (Laxq;)Lavw; access$600 + g ()Z func_146430_p + k ()V func_146274_d + m ()V func_146281_b +axq$a net/minecraft/client/gui/GuiFlatPresets$LayerItem + a field_148234_a + b field_179037_b + c field_148232_b + d field_148233_c +axq$b net/minecraft/client/gui/GuiFlatPresets$ListSlot + u field_148175_k + v field_148174_l + a ()V func_148123_a + a (I)Z func_148131_a + a (IIIIII)V func_180791_a + a (IILzw;I)V func_178054_a + a (IZII)V func_148144_a + b ()I func_148127_b + d (IIII)V func_148171_c + e (II)V func_148173_e +axr net/minecraft/client/gui/GuiScreenWorking + a field_146591_a + f field_146589_f + g field_146590_g + h field_146592_h + a ()V func_146586_a + a (I)V func_73718_a + a (IIF)V func_73863_a + a (Ljava/lang/String;)V func_73720_a + b (Ljava/lang/String;)V func_73721_b + c (Ljava/lang/String;)V func_73719_c +axs net/minecraft/client/gui/GuiDownloadTerrain + a field_146594_a + f field_146593_f + a (CI)V func_73869_a + a (IIF)V func_73863_a + b ()V func_73866_w_ + d ()Z func_73868_f + e ()V func_73876_c +axt net/minecraft/client/gui/GuiRenameWorld + a field_146585_a + f field_146583_f + g field_146584_g + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + e ()V func_73876_c + m ()V func_146281_b +axu net/minecraft/client/gui/GuiScreen + a field_175287_a + f field_175284_f + g field_175285_g + h field_146290_a + i field_146287_f + j field_146297_k + k field_146296_j + l field_146294_l + m field_146295_m + n field_146292_n + o field_146293_o + p field_146291_p + q field_146289_q + r field_146288_g + s field_146298_h + t field_175286_t + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (IIIJ)V func_146273_a + a (Lave;II)V func_146280_a + a (Lavs;)V func_146284_a + a (Leu;)Z func_175276_a + a (Leu;II)V func_175272_a + a (Ljava/lang/String;II)V func_146279_a + a (Ljava/lang/String;Z)V func_175274_a + a (Ljava/net/URI;)V func_175282_a + a (Ljava/util/List;II)V func_146283_a + a (Lzx;II)V func_146285_a + a (ZI)V func_73878_a + b ()V func_73866_w_ + b (III)V func_146286_b + b (Lave;II)V func_175273_b + b (Ljava/lang/String;Z)V func_175281_b + b_ (I)V func_146270_b + c ()V func_146276_q_ + c (I)V func_146278_c + d ()Z func_73868_f + d (I)Z func_175277_d + e ()V func_73876_c + e (I)Z func_175279_e + e (Ljava/lang/String;)V func_146275_d + f (I)Z func_175280_f + f (Ljava/lang/String;)V func_175275_f + g (I)Z func_175278_g + k ()V func_146274_d + l ()V func_146282_l + m ()V func_146281_b + o ()Ljava/lang/String; func_146277_j + p ()V func_146269_k + q ()Z func_146271_m + r ()Z func_146272_n + s ()Z func_175283_s +axv net/minecraft/client/gui/GuiSelectWorld + A field_146630_A + B field_146631_B + a field_146632_a + f field_146628_f + g field_146629_g + h field_146633_h + i field_146634_i + r field_146640_r + s field_146639_s + t field_146638_t + u field_146637_u + v field_146636_v + w field_146635_w + x field_146643_x + y field_146642_y + z field_146641_z + a ()V func_146618_g + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + a (Lawx;Ljava/lang/String;I)Lawy; func_152129_a + a (Laxv;)Ljava/util/List; access$000 + a (Laxv;I)I access$102 + a (ZI)V func_73878_a + b ()V func_73866_w_ + b (I)Ljava/lang/String; func_146621_a + b (Laxv;)I access$100 + c (Laxv;)Lavs; access$200 + d (Laxv;)Lavs; access$300 + e (Laxv;)Lavs; access$400 + f ()V func_146627_h + f (Laxv;)Lavs; access$500 + g (Laxv;)Ljava/lang/String; access$600 + h (I)Ljava/lang/String; func_146614_d + h (Laxv;)Ljava/text/DateFormat; access$700 + i (I)V func_146615_e + i (Laxv;)Ljava/lang/String; access$800 + j (Laxv;)[Ljava/lang/String; access$900 + k ()V func_146274_d +axv$a net/minecraft/client/gui/GuiSelectWorld$List + u field_148207_k + a ()V func_148123_a + a (I)Z func_148131_a + a (IIIIII)V func_180791_a + a (IZII)V func_148144_a + b ()I func_148127_b + k ()I func_148138_e +axw net/minecraft/client/gui/GuiShareToLan + a field_146598_a + f field_146596_f + g field_146597_g + h field_146599_h + i field_146600_i + a ()V func_146595_g + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ +axx net/minecraft/client/gui/GuiCustomizeSkin + a field_175361_a + f field_175360_f + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + a (Laxx;Lwo;)Ljava/lang/String; access$200 + a (Lwo;)Ljava/lang/String; func_175358_a + b ()V func_73866_w_ +axx$1 net/minecraft/client/gui/GuiCustomizeSkin$1 +axx$a net/minecraft/client/gui/GuiCustomizeSkin$ButtonPart + o field_175235_o + p field_175234_p + a (Laxx$a;)Lwo; access$100 +axy net/minecraft/client/gui/GuiSnooper + a field_146608_a + f field_146603_f + g field_146604_g + h field_146609_h + i field_146610_i + r field_146607_r + s field_146606_s + t field_146605_t + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + a (Laxy;)Ljava/util/List; access$000 + b ()V func_73866_w_ + b (Laxy;)Ljava/util/List; access$100 + k ()V func_146274_d +axy$a net/minecraft/client/gui/GuiSnooper$List + u field_148206_k + a ()V func_148123_a + a (I)Z func_148131_a + a (IIIIII)V func_180791_a + a (IZII)V func_148144_a + b ()I func_148127_b + d ()I func_148137_d +axz net/minecraft/client/gui/GuiScreenOptionsSounds + a field_146507_a + f field_146505_f + g field_146506_g + h field_146508_h + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + a (Laxz;)Lavh; access$000 + a (Lbpg;)Ljava/lang/String; func_146504_a + b ()V func_73866_w_ +axz$a net/minecraft/client/gui/GuiScreenOptionsSounds$Button + o field_146156_o + p field_146155_p + q field_146154_q + r field_146153_r + s field_146152_s + a (II)V func_146118_a + a (Lbpz;)V func_146113_a + a (Z)I func_146114_a + b (Lave;II)V func_146119_b + c (Lave;II)Z func_146116_c +ay net/minecraft/command/server/CommandSaveAll + a (Lm;[Ljava/lang/String;)V func_71515_b + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +aya net/minecraft/client/gui/GuiMainMenu + A field_110353_x + B field_110352_y + C field_73978_o + D field_92024_r + E field_92023_s + F field_92022_t + G field_92021_u + H field_92020_v + I field_92019_w + J field_110351_G + K field_175372_K + a field_96138_a + f field_175373_f + g field_146974_g + h field_175374_h + i field_73974_b + r field_73975_c + s field_73973_d + t field_73979_m + u field_73977_n + v field_175375_v + w field_104025_t + x field_92025_p + y field_146972_A + z field_104024_v + a ()V func_140005_i + a (CI)V func_73869_a + a (F)V func_73968_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lavs;)V func_146284_a + a (ZI)V func_73878_a + b ()V func_73866_w_ + b (II)V func_73969_a + b (IIF)V func_73970_b + c (II)V func_73972_b + c (IIF)V func_73971_c + d ()Z func_73868_f + e ()V func_73876_c +ayb net/minecraft/client/gui/GuiVideoSettings + a field_146500_a + f field_146498_f + g field_146499_g + h field_146501_h + i field_146502_i + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + b (III)V func_146286_b + k ()V func_146274_d +ayc net/minecraft/client/gui/GuiWinGame + a field_146580_a + f field_146576_f + g field_146577_g + h field_146581_h + i field_146582_i + r field_146579_r + s field_146578_s + a ()V func_146574_g + a (CI)V func_73869_a + a (IIF)V func_73863_a + b ()V func_73866_w_ + b (IIF)V func_146575_b + d ()Z func_73868_f + e ()V func_73876_c +ayd net/minecraft/client/gui/achievement/GuiAchievement + a field_146261_a + f field_146259_f + g field_146260_g + h field_146267_h + i field_146268_i + j field_146265_j + k field_146266_k + l field_146263_l + m field_146264_m + n field_146262_n + a ()V func_146254_a + a (Lmq;)V func_146256_a + b ()V func_146257_b + b (Lmq;)V func_146255_b + c ()V func_146258_c +aye net/minecraft/client/gui/achievement/GuiAchievements + A field_146559_A + B field_146560_B + C field_146561_C + D field_146554_D + E field_146556_E + F field_146558_F + a field_146562_a + f field_146555_f + g field_146557_g + h field_146563_h + i field_146564_i + r field_146570_r + s field_146569_s + t field_146568_t + u field_146567_u + v field_146566_v + w field_146565_w + x field_146573_x + y field_146572_y + z field_146571_z + a ()V func_146509_g + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (Lafh;)Lbmi; func_175371_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + b (IIF)V func_146552_b + d ()Z func_73868_f + e ()V func_73876_c + f ()V func_146553_h +ayf net/minecraft/client/gui/achievement/GuiStats + a field_146549_a + f field_146542_f + g field_146550_h + h field_146551_i + i field_146548_r + r field_146547_s + s field_146546_t + t field_146545_u + u field_146543_v + a ()V func_146509_g + a (IIF)V func_73863_a + a (IILzw;)V func_146521_a + a (Lavs;)V func_146284_a + a (Layf;)Lavn; access$000 + a (Layf;IIII)V access$400 + a (Layf;IIIIII)V access$1000 + a (Layf;IILzw;)V access$1500 + b ()V func_73866_w_ + b (II)V func_146531_b + b (Layf;)Lnb; access$100 + b (Layf;IIIIII)V access$1300 + c (IIII)V func_146527_c + c (Layf;)Lavn; access$200 + d ()Z func_73868_f + d (Layf;)Lavn; access$300 + e (Layf;)Lavn; access$500 + f ()V func_175366_f + f (Layf;)Lavn; access$600 + g ()V func_146541_h + g (Layf;)Lavn; access$700 + h (Layf;)Lavn; access$800 + i (Layf;)Lavn; access$900 + j (Layf;)Lavn; access$1100 + k ()V func_146274_d + k (Layf;)Lavn; access$1200 + l (Layf;)Lavn; access$1400 + m (Layf;)Lavn; access$1600 + n (Layf;)Lavn; access$1700 + o (Layf;)Lavn; access$1800 + p (Layf;)Lavn; access$1900 + q (Layf;)Lavn; access$2000 + r (Layf;)Lavn; access$2100 + s (Layf;)Lavn; access$2200 +ayf$a net/minecraft/client/gui/achievement/GuiStats$StatsBlock + u field_148221_k + a (IIIIII)V func_180791_a + a (IILbfx;)V func_148129_a + b (I)Ljava/lang/String; func_148210_b +ayf$a$1 net/minecraft/client/gui/achievement/GuiStats$StatsBlock$1 + a field_148341_a + b field_148340_b + a (Lmu;Lmu;)I compare + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare +ayf$b net/minecraft/client/gui/achievement/GuiStats$StatsGeneral + u field_148208_k + a ()V func_148123_a + a (I)Z func_148131_a + a (IIIIII)V func_180791_a + a (IZII)V func_148144_a + b ()I func_148127_b + k ()I func_148138_e +ayf$c net/minecraft/client/gui/achievement/GuiStats$StatsItem + u field_148220_k + a (IIIIII)V func_180791_a + a (IILbfx;)V func_148129_a + b (I)Ljava/lang/String; func_148210_b +ayf$c$1 net/minecraft/client/gui/achievement/GuiStats$StatsItem$1 + a field_148344_a + b field_148343_b + a (Lmu;Lmu;)I compare + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare +ayf$d net/minecraft/client/gui/achievement/GuiStats$StatsMobsList + u field_148223_k + v field_148222_l + a ()V func_148123_a + a (I)Z func_148131_a + a (IIIIII)V func_180791_a + a (IZII)V func_148144_a + b ()I func_148127_b + k ()I func_148138_e +ayf$e net/minecraft/client/gui/achievement/GuiStats$Stats + A field_148214_q + v field_148218_l + w field_148219_m + x field_148216_n + y field_148217_o + z field_148215_p + a ()V func_148123_a + a (I)Z func_148131_a + a (II)V func_148132_a + a (IILbfx;)V func_148129_a + a (IZII)V func_148144_a + a (Lmu;II)V func_148213_a + a (Lmw;IIZ)V func_148209_a + b ()I func_148127_b + b (I)Ljava/lang/String; func_148210_b + b (II)V func_148142_b + c (I)Lmu; func_148211_c + d (I)V func_148212_h +ayg net/minecraft/client/gui/IProgressMeter + c_ field_146510_b_ + a ()V func_146509_g +ayi net/minecraft/client/gui/GuiKeyBindingList + u field_148191_k + v field_148189_l + w field_148190_m + x field_148188_n + a (Layi;)Lave; access$100 + b ()I func_148127_b + b (I)Lawd$a; func_148180_b + b (Layi;)Layj; access$200 + c ()I func_148139_c + c (Layi;)I access$300 + d ()I func_148137_d +ayi$1 net/minecraft/client/gui/GuiKeyBindingList$1 +ayi$a net/minecraft/client/gui/GuiKeyBindingList$CategoryEntry + a field_148287_a + b field_148285_b + c field_148286_c + a (III)V func_178011_a + a (IIIIII)Z func_148278_a + a (IIIIIIIZ)V func_180790_a + b (IIIIII)V func_148277_b +ayi$b net/minecraft/client/gui/GuiKeyBindingList$KeyEntry + a field_148284_a + b field_148282_b + c field_148283_c + d field_148280_d + e field_148281_e + a (III)V func_178011_a + a (IIIIII)Z func_148278_a + a (IIIIIIIZ)V func_180790_a + b (IIIIII)V func_148277_b +ayj net/minecraft/client/gui/GuiControls + a field_146495_a + f field_146491_f + g field_152177_g + h field_146492_g + i field_146496_h + r field_146497_i + s field_146494_r + t field_146493_s + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + b (III)V func_146286_b + k ()V func_146274_d +ayl net/minecraft/client/gui/inventory/GuiContainer + A field_146989_A + B field_146990_B + C field_146991_C + D field_146985_D + E field_146986_E + F field_146987_F + G field_146988_G + H field_146995_H + I field_146996_I + J field_146997_J + K field_146998_K + L field_146992_L + M field_146993_M + N field_146994_N + a field_147001_a + f field_146999_f + g field_147000_g + h field_147002_h + i field_147003_i + r field_147009_r + s field_147008_s + t field_147007_t + u field_147006_u + v field_147005_v + w field_147004_w + x field_147012_x + y field_147011_y + z field_147010_z + a ()V func_146980_g + a (CI)V func_73869_a + a (FII)V func_146976_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (IIIJ)V func_146273_a + a (Lyg;)V func_146977_a + a (Lyg;II)Z func_146981_a + a (Lyg;III)V func_146984_a + a (Lzx;IILjava/lang/String;)V func_146982_a + b ()V func_73866_w_ + b (I)Z func_146983_a + b (II)V func_146979_b + b (III)V func_146286_b + c (II)Lyg; func_146975_c + c (IIIIII)Z func_146978_c + d ()Z func_73868_f + e ()V func_73876_c + m ()V func_146281_b +aym net/minecraft/client/gui/GuiRepair + u field_147093_u + v field_147092_v + w field_147091_w + x field_147094_x + a ()V func_147090_g + a (CI)V func_73869_a + a (FII)V func_146976_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lxi;II)V func_71112_a + a (Lxi;ILzx;)V func_71111_a + a (Lxi;Ljava/util/List;)V func_71110_a + a (Lxi;Log;)V func_175173_a + b ()V func_73866_w_ + b (II)V func_146979_b + m ()V func_146281_b +ayn net/minecraft/client/gui/inventory/GuiBeacon + u field_147026_u + v field_147025_v + w field_147024_w + x field_147028_x + y field_147027_y + a ()Ljy; access$000 + a (FII)V func_146976_a + a (Lavs;)V func_146284_a + a (Layn;Ljava/lang/String;II)V access$100 + b ()V func_73866_w_ + b (II)V func_146979_b + b (Layn;Ljava/lang/String;II)V access$200 + c (Layn;Ljava/lang/String;II)V access$300 + e ()V func_73876_c +ayn$a net/minecraft/client/gui/inventory/GuiBeacon$CancelButton + o field_146146_o + b (II)V func_146111_b +ayn$b net/minecraft/client/gui/inventory/GuiBeacon$ConfirmButton + o field_146147_o + b (II)V func_146111_b +ayn$c net/minecraft/client/gui/inventory/GuiBeacon$PowerButton + o field_146150_o + p field_146149_p + q field_146148_q + b (II)V func_146111_b +ayn$d net/minecraft/client/gui/inventory/GuiBeacon$Button + o field_146145_o + p field_146144_p + q field_146143_q + r field_146142_r + a (Lave;II)V func_146112_a + b (Z)V func_146140_b + c ()Z func_146141_c +ayo net/minecraft/client/gui/GuiScreenBook + A field_175386_A + B field_175387_B + C field_146470_A + D field_146471_B + E field_146472_C + F field_146465_D + G field_146467_E + H field_146469_F + a field_146473_a + f field_146466_f + g field_146468_g + h field_146474_h + i field_146475_i + r field_146481_r + s field_146480_s + t field_146479_t + u field_146478_u + v field_146477_v + w field_146476_w + x field_146484_x + y field_146483_y + z field_146482_z + a ()Ljy; access$000 + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lavs;)V func_146284_a + a (Leu;)Z func_175276_a + a (Ljava/lang/String;)V func_146457_a + a (Z)V func_146462_a + b ()V func_73866_w_ + b (CI)V func_146463_b + b (II)Leu; func_175385_b + b (Ljava/lang/String;)V func_146459_b + c (CI)V func_146460_c + e ()V func_73876_c + f ()V func_146464_h + g ()V func_146461_i + h ()Ljava/lang/String; func_146456_p + m ()V func_146281_b +ayo$a net/minecraft/client/gui/GuiScreenBook$NextPageButton + o field_146151_o + a (Lave;II)V func_146112_a +ayp net/minecraft/client/gui/inventory/GuiBrewingStand + u field_147014_u + v field_175384_v + w field_147013_v + a (FII)V func_146976_a + b (II)V func_146979_b +ayq net/minecraft/client/gui/GuiCommandBlock + a field_146488_a + f field_146485_f + g field_146486_g + h field_146489_h + i field_146490_i + r field_146487_r + s field_175390_s + t field_175389_t + a ()V func_175388_a + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + e ()V func_73876_c + m ()V func_146281_b +ayr net/minecraft/client/gui/inventory/GuiChest + u field_147017_u + v field_147016_v + w field_147015_w + x field_147018_x + a (FII)V func_146976_a + b (II)V func_146979_b +ays net/minecraft/client/gui/inventory/GuiCrafting + u field_147019_u + a (FII)V func_146976_a + b (II)V func_146979_b +ayt net/minecraft/client/gui/inventory/CreativeCrafting + a field_146109_a + a (Lxi;II)V func_71112_a + a (Lxi;ILzx;)V func_71111_a + a (Lxi;Ljava/util/List;)V func_71110_a + a (Lxi;Log;)V func_175173_a +ayu net/minecraft/client/gui/inventory/GuiContainerCreative + A field_147062_A + B field_147063_B + C field_147064_C + D field_147057_D + E field_147059_E + u field_147061_u + v field_147060_v + w field_147058_w + x field_147067_x + y field_147066_y + z field_147065_z + a ()V func_175378_g + a (CI)V func_73869_a + a (FII)V func_146976_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lavs;)V func_146284_a + a (Lyg;III)V func_146984_a + a (Lyz;)V func_147051_a + a (Lyz;II)Z func_147049_a + a (Lzx;II)V func_146285_a + b ()V func_73866_w_ + b (II)V func_146979_b + b (III)V func_146286_b + b (Lyz;)V func_147050_b + b (Lyz;II)Z func_147052_b + e ()V func_73876_c + f ()I func_147056_g + g ()Loq; access$000 + h ()V func_147053_i + i ()Z func_147055_p + k ()V func_146274_d + m ()V func_146281_b +ayu$a net/minecraft/client/gui/inventory/GuiContainerCreative$ContainerCreative + a field_148330_a + a (F)V func_148329_a + a (IIZLwn;)V func_75133_b + a (Lwn;)Z func_75145_c + a (Lzx;Lyg;)Z func_94530_a + b (Lwn;I)Lzx; func_82846_b + b (Lyg;)Z func_94531_b + e ()Z func_148328_e +ayu$b net/minecraft/client/gui/inventory/GuiContainerCreative$CreativeSlot + a field_148333_a + b field_148332_b + a ()I func_75219_a + a (I)Lzx; func_75209_a + a (Layu$b;)Lyg; access$100 + a (Log;I)Z func_75217_a + a (Lwn;Lzx;)V func_82870_a + a (Lzx;)Z func_75214_a + b (Lzx;)I func_178170_b + c ()Ljava/lang/String; func_178171_c + d ()Lzx; func_75211_c + d (Lzx;)V func_75215_d + e ()Z func_75216_d + f ()V func_75218_e +ayv net/minecraft/client/gui/inventory/GuiDispenser + u field_175377_u + v field_147088_v + w field_175376_w + a (FII)V func_146976_a + b (II)V func_146979_b +ayw net/minecraft/client/renderer/InventoryEffectRenderer + u field_147045_u + a ()V func_175378_g + a (IIF)V func_73863_a + b ()V func_73866_w_ + f ()V func_147044_g +ayx net/minecraft/util/EnchantmentNameParts + a field_148338_a + b field_148336_b + c field_148337_c + a ()Layx; func_178176_a + a (J)V func_148335_a + b ()Ljava/lang/String; func_148334_a +ayy net/minecraft/client/gui/GuiEnchantment + A field_147076_A + B field_147077_B + C field_147078_C + D field_147070_D + E field_147072_E + F field_175379_F + G field_147074_F + H field_147075_G + I field_175380_I + u field_147073_u + v field_147071_v + w field_147069_w + x field_147082_x + y field_147081_y + z field_147080_z + a ()V func_147068_g + a (FII)V func_146976_a + a (IIF)V func_73863_a + a (III)V func_73864_a + b (II)V func_146979_b + e ()V func_73876_c +ayz net/minecraft/client/gui/inventory/GuiFurnace + u field_147087_u + v field_175383_v + w field_147086_v + a (FII)V func_146976_a + b (II)V func_146979_b + h (I)I func_175381_h + i (I)I func_175382_i +az net/minecraft/command/server/CommandSaveOff + a (Lm;[Ljava/lang/String;)V func_71515_b + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +aza net/minecraft/client/gui/GuiHopper + u field_147085_u + v field_147084_v + w field_147083_w + a (FII)V func_146976_a + b (II)V func_146979_b +azb net/minecraft/client/gui/inventory/GuiScreenHorseInventory + u field_147031_u + v field_147030_v + w field_147029_w + x field_147034_x + y field_147033_y + z field_147032_z + a (FII)V func_146976_a + a (IIF)V func_73863_a + b (II)V func_146979_b +azc net/minecraft/client/gui/inventory/GuiInventory + u field_147048_u + v field_147047_v + a (FII)V func_146976_a + a (IIF)V func_73863_a + a (IIIFFLpr;)V func_147046_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + b (II)V func_146979_b + e ()V func_73876_c +azd net/minecraft/client/gui/GuiMerchant + A field_147040_A + u field_147039_u + v field_147038_v + w field_147037_w + x field_147043_x + y field_147042_y + z field_147041_z + a ()Lacy; func_147035_g + a (FII)V func_146976_a + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + b (II)V func_146979_b + e ()V func_73876_c + f ()Ljy; access$000 +azd$a net/minecraft/client/gui/GuiMerchant$MerchantButton + o field_146157_o + a (Lave;II)V func_146112_a +aze net/minecraft/client/gui/inventory/GuiEditSign + a field_146848_f + f field_146849_g + g field_146851_h + h field_146852_i + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ + e ()V func_73876_c + m ()V func_146281_b +azh net/minecraft/client/gui/GuiMultiplayer + A field_146799_A + B field_146800_B + C field_146801_C + a field_146802_a + f field_146797_f + g field_146798_g + h field_146803_h + i field_146804_i + r field_146810_r + s field_146809_s + t field_146808_t + u field_146807_u + v field_146806_v + w field_146805_w + x field_146813_x + y field_146812_y + z field_146811_z + a ()V func_146794_g + a (CI)V func_73869_a + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lavs;)V func_146284_a + a (Lazk;I)Z func_175392_a + a (Lazk;IZ)V func_175391_a + a (Lbde;)V func_146791_a + a (Ljava/lang/String;)V func_146793_a + a (ZI)V func_73878_a + b ()V func_73866_w_ + b (I)V func_146790_a + b (III)V func_146286_b + b (Lazk;I)Z func_175394_b + b (Lazk;IZ)V func_175393_b + e ()V func_73876_c + f ()V func_146796_h + g ()Lbdg; func_146789_i + h ()Lbdf; func_146795_p + i ()V func_146792_q + k ()V func_146274_d + m ()V func_146281_b +azi net/minecraft/client/gui/ServerListEntryLanScan + a field_148288_a + a (III)V func_178011_a + a (IIIIII)Z func_148278_a + a (IIIIIIIZ)V func_180790_a + b (IIIIII)V func_148277_b +azj net/minecraft/client/gui/ServerListEntryLanDetected + a field_148293_a + b field_148291_b + c field_148292_c + d field_148290_d + a ()Lbpq$a; func_148289_a + a (III)V func_178011_a + a (IIIIII)Z func_148278_a + a (IIIIIIIZ)V func_180790_a + b (IIIIII)V func_148277_b +azk net/minecraft/client/gui/ServerListEntryNormal + a field_148304_a + b field_148302_b + c field_178015_c + d field_178014_d + e field_148303_c + f field_148300_d + g field_148301_e + h field_148306_i + i field_148299_g + j field_148305_h + k field_148298_f + a ()Lbde; func_148296_a + a (III)V func_178011_a + a (IIIIII)Z func_148278_a + a (IIIIIIIZ)V func_180790_a + a (IILjy;)V func_178012_a + a (Lazk;)Lbde; access$000 + b ()Z func_178013_b + b (IIIIII)V func_148277_b + b (Lazk;)Lazh; access$100 + c ()V func_148297_b +azk$1 net/minecraft/client/gui/ServerListEntryNormal$1 + a field_148521_a + run ()V run +azl net/minecraft/client/gui/ServerSelectionList + u field_148200_k + v field_148198_l + w field_148199_m + x field_148196_n + y field_148197_o + a (I)Z func_148131_a + a (Lbdf;)V func_148195_a + a (Ljava/util/List;)V func_148194_a + b ()I func_148127_b + b (I)Lawd$a; func_148180_b + c ()I func_148139_c + c (I)V func_148192_c + d ()I func_148137_d + e ()I func_148193_k +azo net/minecraft/client/gui/GuiScreenResourcePacks + a field_146968_a + f field_146965_f + g field_146966_g + h field_146969_h + i field_146970_i + r field_146967_r + s field_175289_s + a ()Ljava/util/List; func_146964_g + a (IIF)V func_73863_a + a (III)V func_73864_a + a (Lavs;)V func_146284_a + a (Lazp;)Z func_146961_a + b ()V func_73866_w_ + b (III)V func_146286_b + b (Lazp;)Ljava/util/List; func_146962_b + f ()Ljava/util/List; func_146963_h + g ()V func_175288_g + k ()V func_146274_d +azp net/minecraft/client/resources/ResourcePackListEntry + a field_148317_a + b field_148315_b + c field_148316_c + d field_183020_d + e field_183021_e + f field_183022_f + a ()I func_183019_a + a (III)V func_178011_a + a (IIIIII)Z func_148278_a + a (IIIIIIIZ)V func_180790_a + b ()Ljava/lang/String; func_148311_a + b (IIIIII)V func_148277_b + c ()Ljava/lang/String; func_148312_b + d ()V func_148313_c + e ()Z func_148310_d + f ()Z func_148309_e + g ()Z func_148308_f + h ()Z func_148314_g + i ()Z func_148307_h +azp$1 net/minecraft/client/resources/ResourcePackListEntry$1 + a field_183004_a + a (ZI)V func_73878_a +azq net/minecraft/client/resources/ResourcePackListEntryDefault + c field_148322_c + d field_148320_d + e field_148321_e + a ()I func_183019_a + b ()Ljava/lang/String; func_148311_a + c ()Ljava/lang/String; func_148312_b + d ()V func_148313_c + e ()Z func_148310_d + f ()Z func_148309_e + g ()Z func_148308_f + h ()Z func_148314_g + i ()Z func_148307_h +azr net/minecraft/client/resources/ResourcePackListEntryFound + c field_148319_c + a ()I func_183019_a + b ()Ljava/lang/String; func_148311_a + c ()Ljava/lang/String; func_148312_b + d ()V func_148313_c + j ()Lbnm$a; func_148318_i +azt net/minecraft/client/gui/GuiResourcePackAvailable + e ()Ljava/lang/String; func_148202_k +azu net/minecraft/client/gui/GuiResourcePackList + u field_148205_k + v field_148204_l + a (IILbfx;)V func_148129_a + b ()I func_148127_b + b (I)Lawd$a; func_148180_b + c ()I func_148139_c + c (I)Lazp; func_148180_b + d ()I func_148137_d + e ()Ljava/lang/String; func_148202_k + f ()Ljava/util/List; func_148201_l +azv net/minecraft/client/gui/GuiResourcePackSelected + e ()Ljava/lang/String; func_148202_k +azy net/minecraft/client/gui/stream/GuiIngestServers + a field_152309_a + f field_152310_f + g field_152311_g + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + a (Lazy;)Lavn; access$000 + b ()V func_73866_w_ + b (Lazy;)Lavn; access$100 + c (Lazy;)Lavn; access$200 + d (Lazy;)Lavn; access$300 + e (Lazy;)Lavn; access$400 + f (Lazy;)Lavn; access$500 + g (Lazy;)Lavn; access$600 + h (Lazy;)Lavn; access$700 + k ()V func_146274_d + m ()V func_146281_b +azy$a net/minecraft/client/gui/stream/GuiIngestServers$ServerList + u field_152435_k + a ()V func_148123_a + a (I)Z func_148131_a + a (IIIIII)V func_180791_a + a (IZII)V func_148144_a + b ()I func_148127_b + d ()I func_148137_d +azz net/minecraft/client/gui/stream/GuiStreamOptions + a field_152312_a + f field_152316_f + g field_152317_g + h field_152318_h + i field_152319_i + r field_152313_r + s field_152314_s + t field_152315_t + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + b ()V func_73866_w_ +b net/minecraft/crash/CrashReport + a field_147150_a + b field_71513_a + c field_71511_b + d field_85061_c + e field_71512_c + f field_71510_d + g field_85059_f + h field_85060_g + a ()Ljava/lang/String; func_71501_a + a (Ljava/io/File;)Z func_147149_a + a (Ljava/lang/String;)Lc; func_85058_a + a (Ljava/lang/String;I)Lc; func_85057_a + a (Ljava/lang/StringBuilder;)V func_71506_a + a (Ljava/lang/Throwable;Ljava/lang/String;)Lb; func_85055_a + b ()Ljava/lang/Throwable; func_71505_b + d ()Ljava/lang/String; func_71498_d + e ()Ljava/lang/String; func_71502_e + f ()Ljava/io/File; func_71497_f + g ()Lc; func_85056_g + h ()V func_71504_g + i ()Ljava/lang/String; func_71503_h +b$1 net/minecraft/crash/CrashReport$1 + a field_71494_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +b$2 net/minecraft/crash/CrashReport$2 + a field_71496_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +b$3 net/minecraft/crash/CrashReport$3 + a field_71490_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +b$4 net/minecraft/crash/CrashReport$4 + a field_71492_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +b$5 net/minecraft/crash/CrashReport$5 + a field_71486_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +b$6 net/minecraft/crash/CrashReport$6 + a field_71488_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +b$7 net/minecraft/crash/CrashReport$7 + a field_83004_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ba net/minecraft/command/server/CommandSaveOn + a (Lm;[Ljava/lang/String;)V func_71515_b + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +baa net/minecraft/client/gui/stream/GuiStreamUnavailable + a field_152322_a + f field_152324_f + g field_152325_g + h field_152326_h + i field_152327_i + r field_152323_r + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + a (Laxu;)V func_152321_a + a (Ljava/lang/String;)V func_152320_a + b ()V func_73866_w_ + m ()V func_146281_b +baa$1 net/minecraft/client/gui/stream/GuiStreamUnavailable$1 + a field_152577_a + b field_152578_b + c field_152579_c +baa$a net/minecraft/client/gui/stream/GuiStreamUnavailable$Reason + a NO_FBO + b LIBRARY_ARCH_MISMATCH + c LIBRARY_FAILURE + d UNSUPPORTED_OS_WINDOWS + e UNSUPPORTED_OS_MAC + f UNSUPPORTED_OS_OTHER + g ACCOUNT_NOT_MIGRATED + h ACCOUNT_NOT_BOUND + i FAILED_TWITCH_AUTH + j FAILED_TWITCH_AUTH_ERROR + k INITIALIZATION_FAILURE + l UNKNOWN + m field_152574_m + n field_152575_n + o $VALUES + a ()Leu; func_152561_a + b ()Leu; func_152559_b + values ()[Lbaa$a; values +bab net/minecraft/client/gui/stream/GuiTwitchUserMode + a field_152331_a + f field_152335_f + g field_152336_g + h field_152337_h + i field_152338_i + r field_152332_r + s field_152333_s + t field_152334_t + a (IIF)V func_73863_a + a (Lavs;)V func_146284_a + a (Ljava/util/Set;Ljava/util/Set;Lbqm;)Ljava/util/List; func_152328_a + a (Ltv/twitch/chat/ChatUserMode;Ljava/lang/String;Z)Leu; func_152329_a + a (Ltv/twitch/chat/ChatUserSubscription;Ljava/lang/String;Z)Leu; func_152330_a + b ()V func_73866_w_ +bad net/minecraft/client/gui/spectator/PlayerMenuObject + a field_178668_a + b field_178667_b + A_ ()Leu; func_178664_z_ + B_ ()Z func_178662_A_ + a (FI)V func_178663_a + a (Lbaf;)V func_178661_a +bae net/minecraft/client/gui/spectator/BaseSpectatorGroup + a field_178671_a + a ()Ljava/util/List; func_178669_a + b ()Leu; func_178670_b +baf net/minecraft/client/gui/spectator/SpectatorMenu + a field_178657_a + b field_178655_b + c field_178656_c + d field_178653_d + e field_178654_e + f field_178651_f + g field_178652_g + h field_178659_h + i field_178660_i + j field_178658_j + a ()Ljava/util/List; func_178642_a + a (I)Lbah; func_178643_a + a (Lbaf;I)I access$112 + a (Lbag;)V func_178647_a + b ()Lbah; func_178645_b + b (I)V func_178644_b + c ()Lbag; func_178650_c + d ()V func_178641_d + e ()I func_178648_e + f ()Lbaj; func_178646_f +baf$1 net/minecraft/client/gui/spectator/SpectatorMenu$1 + A_ ()Leu; func_178664_z_ + B_ ()Z func_178662_A_ + a (FI)V func_178663_a + a (Lbaf;)V func_178661_a +baf$a net/minecraft/client/gui/spectator/SpectatorMenu$EndSpectatorObject + A_ ()Leu; func_178664_z_ + B_ ()Z func_178662_A_ + a (FI)V func_178663_a + a (Lbaf;)V func_178661_a +baf$b net/minecraft/client/gui/spectator/SpectatorMenu$MoveMenuObject + a field_178666_a + b field_178665_b + A_ ()Leu; func_178664_z_ + B_ ()Z func_178662_A_ + a (FI)V func_178663_a + a (Lbaf;)V func_178661_a +bag net/minecraft/client/gui/spectator/ISpectatorMenuView + a ()Ljava/util/List; func_178669_a + b ()Leu; func_178670_b +bah net/minecraft/client/gui/spectator/ISpectatorMenuObject + A_ ()Leu; func_178664_z_ + B_ ()Z func_178662_A_ + a (FI)V func_178663_a + a (Lbaf;)V func_178661_a +bai net/minecraft/client/gui/spectator/ISpectatorMenuRecipient + a (Lbaf;)V func_175257_a +baj net/minecraft/client/gui/spectator/categories/SpectatorDetails + a field_178684_a + b field_178682_b + c field_178683_c + a (I)Lbah; func_178680_a + b ()I func_178681_b +bak net/minecraft/client/gui/spectator/categories/TeleportToPlayer + a field_178674_a + b field_178673_b + A_ ()Leu; func_178664_z_ + B_ ()Z func_178662_A_ + a ()Ljava/util/List; func_178669_a + a (FI)V func_178663_a + a (Lbaf;)V func_178661_a + b ()Leu; func_178670_b +bak$1 net/minecraft/client/gui/spectator/categories/TeleportToPlayer$1 + a (Lbdc;Lbdc;)I compare + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare +bal net/minecraft/client/gui/spectator/categories/TeleportToTeam + a field_178672_a + A_ ()Leu; func_178664_z_ + B_ ()Z func_178662_A_ + a ()Ljava/util/List; func_178669_a + a (FI)V func_178663_a + a (Lbaf;)V func_178661_a + b ()Leu; func_178670_b +bal$a net/minecraft/client/gui/spectator/categories/TeleportToTeam$TeamSelectionObject + a field_178678_a + b field_178676_b + c field_178677_c + d field_178675_d + A_ ()Leu; func_178664_z_ + B_ ()Z func_178662_A_ + a (FI)V func_178663_a + a (Lbaf;)V func_178661_a +bao net/minecraft/client/main/GameConfiguration + a field_178745_a + b field_178743_b + c field_178744_c + d field_178741_d + e field_178742_e +bao$a net/minecraft/client/main/GameConfiguration$DisplayInformation + a field_178764_a + b field_178762_b + c field_178763_c + d field_178761_d +bao$b net/minecraft/client/main/GameConfiguration$FolderInformation + a field_178760_a + b field_178758_b + c field_178759_c + d field_178757_d +bao$c net/minecraft/client/main/GameConfiguration$GameInformation + a field_178756_a + b field_178755_b +bao$d net/minecraft/client/main/GameConfiguration$ServerInformation + a field_178754_a + b field_178753_b +bao$e net/minecraft/client/main/GameConfiguration$UserInformation + a field_178752_a + b field_178750_b + c field_181172_c + d field_178751_c +bas net/minecraft/client/model/ModelArmorStandArmor + a (FFFFFFLpk;)V func_78087_a +bat net/minecraft/client/model/ModelArmorStand + a field_178740_a + b field_178738_b + c field_178739_c + d field_178737_d + a (F)V func_178718_a + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bau net/minecraft/client/model/ModelBanner + a field_178690_a + b field_178688_b + c field_178689_c + a ()V func_178687_a +bav net/minecraft/client/model/ModelBat + a field_82895_a + b field_82893_b + c field_82894_c + d field_82891_d + e field_82892_e + f field_82890_f + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +baw net/minecraft/client/model/ModelBlaze + a field_78106_a + b field_78105_b + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bax net/minecraft/client/model/ModelBoat + a field_78103_a + a (Lpk;FFFFFF)V func_78088_a +bay net/minecraft/client/model/ModelBook + a field_78102_a + b field_78100_b + c field_78101_c + d field_78098_d + e field_78099_e + f field_78096_f + g field_78097_g + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +baz net/minecraft/client/model/ModelChest + a field_78234_a + b field_78232_b + c field_78233_c + a ()V func_78231_a +bb net/minecraft/command/server/CommandBroadcast + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bba net/minecraft/client/model/ModelChicken + a field_78142_a + b field_78140_b + c field_78141_c + d field_78138_d + e field_78139_e + f field_78136_f + g field_78137_g + h field_78143_h + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bbb net/minecraft/client/model/ModelCow +bbc net/minecraft/client/model/ModelCreeper + a field_78135_a + b field_78133_b + c field_78134_c + d field_78131_d + e field_78132_e + f field_78129_f + g field_78130_g + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bbd net/minecraft/client/model/ModelEnderman + a field_78126_a + b field_78125_b + a (FFFFFFLpk;)V func_78087_a +bbe net/minecraft/client/model/ModelEnderMite + a field_178716_a + b field_178714_b + c field_178715_c + d field_178713_d + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bbf net/minecraft/client/model/ModelGhast + a field_78128_a + b field_78127_b + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bbg net/minecraft/client/model/ModelGuardian + a field_178710_a + b field_178708_b + c field_178709_c + d field_178707_d + a ()I func_178706_a + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bbh net/minecraft/client/model/ModelHorse + A field_110688_A + B field_110689_B + C field_110690_C + D field_110684_D + E field_110685_E + F field_110686_F + G field_110687_G + H field_110695_H + I field_110696_I + J field_110697_J + K field_110698_K + L field_110691_L + M field_110692_M + N field_110693_N + O field_110694_O + P field_110700_P + Q field_110699_Q + R field_110702_R + S field_110701_S + a field_110709_a + b field_178711_b + c field_178712_c + d field_110705_d + e field_110706_e + f field_110703_f + g field_110704_g + h field_110716_h + i field_110717_i + j field_110714_j + k field_110715_k + l field_110712_l + m field_110713_m + n field_110710_n + o field_110711_o + v field_110719_v + w field_110718_w + x field_110722_x + y field_110721_y + z field_110720_z + a (FFF)F func_110683_a + a (Lbct;FFF)V func_110682_a + a (Lpk;FFFFFF)V func_78088_a + a (Lpr;FFF)V func_78086_a +bbi net/minecraft/client/model/ModelHumanoidHead + b field_178717_b + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bbj net/minecraft/client/model/ModelBiped + e field_78116_c + f field_178720_f + g field_78115_e + h field_178723_h + i field_178724_i + j field_178721_j + k field_178722_k + l field_78119_l + m field_78120_m + n field_78117_n + o field_78118_o + a (F)V func_178718_a + a (FFFFFFLpk;)V func_78087_a + a (Lbbo;)V func_178686_a + a (Lpk;FFFFFF)V func_78088_a + a (Z)V func_178719_a +bbk net/minecraft/client/model/ModelLargeChest +bbl net/minecraft/client/model/ModelMagmaCube + a field_78109_a + b field_78108_b + a (Lpk;FFFFFF)V func_78088_a + a (Lpr;FFF)V func_78086_a +bbm net/minecraft/client/model/ModelLeashKnot + a field_110723_a + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bbn net/minecraft/client/model/ModelMinecart + a field_78154_a + a (Lpk;FFFFFF)V func_78088_a +bbo net/minecraft/client/model/ModelBase + a field_78094_a + p field_78095_p + q field_78093_q + r field_78091_s + s field_78092_r + t field_78090_t + u field_78089_u + a (FFFFFFLpk;)V func_78087_a + a (Lbbo;)V func_178686_a + a (Lbct;Lbct;)V func_178685_a + a (Ljava/lang/String;)Lbcu; func_78084_a + a (Ljava/lang/String;II)V func_78085_a + a (Ljava/util/Random;)Lbct; func_85181_a + a (Lpk;FFFFFF)V func_78088_a + a (Lpr;FFF)V func_78086_a +bbp net/minecraft/client/model/ModelOcelot + a field_78161_a + b field_78159_b + c field_78160_c + d field_78157_d + e field_78158_e + f field_78155_f + g field_78156_g + h field_78162_h + i field_78163_i + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a + a (Lpr;FFF)V func_78086_a +bbq net/minecraft/client/model/ModelPig +bbr net/minecraft/client/model/ModelPlayer + a field_178734_a + b field_178732_b + c field_178733_c + d field_178731_d + v field_178730_v + w field_178729_w + x field_178736_x + y field_178735_y + a ()V func_178725_a + a (F)V func_178718_a + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a + a (Z)V func_178719_a + b ()V func_178726_b + b (F)V func_178727_b + c (F)V func_178728_c +bbs net/minecraft/client/model/TexturedQuad + a field_78239_a + b field_78237_b + c field_78238_c + a ()V func_78235_a + a (Lbfd;F)V func_178765_a +bbt net/minecraft/client/model/ModelQuadruped + a field_78150_a + b field_78148_b + c field_78149_c + d field_78146_d + e field_78147_e + f field_78144_f + g field_78145_g + h field_78151_h + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bbu net/minecraft/client/model/ModelRabbit + a field_178698_a + b field_178696_b + c field_178697_c + d field_178694_d + e field_178695_e + f field_178692_f + g field_178693_g + h field_178704_h + i field_178705_i + j field_178702_j + k field_178703_k + l field_178700_l + m field_178701_m + n field_178699_n + a (FFFFFFLpk;)V func_78087_a + a (Lbct;FFF)V func_178691_a + a (Lpk;FFFFFF)V func_78088_a + a (Lpr;FFF)V func_78086_a +bbv net/minecraft/client/model/ModelSheep1 + i field_78152_i + a (FFFFFFLpk;)V func_78087_a + a (Lpr;FFF)V func_78086_a +bbw net/minecraft/client/model/ModelSheep2 + i field_78153_i + a (FFFFFFLpk;)V func_78087_a + a (Lpr;FFF)V func_78086_a +bbx net/minecraft/client/model/ModelSign + a field_78166_a + b field_78165_b + a ()V func_78164_a +bby net/minecraft/client/model/ModelSilverfish + a field_78171_a + b field_78169_b + c field_78170_c + d field_78167_d + e field_78168_e + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bbz net/minecraft/client/model/ModelSkeletonHead + a field_82896_a + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bc net/minecraft/command/server/CommandScoreboard + a ()I func_82362_a + a (Ljava/lang/String;Z)Lauk; func_147189_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + a (Z)Ljava/util/List; func_147184_a + b (Lm;[Ljava/lang/String;)Z func_175780_b + b (Lm;[Ljava/lang/String;I)V func_147193_c + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + c (Lm;[Ljava/lang/String;I)V func_147185_d + d ()Lauo; func_147192_d + d (Lm;)V func_147196_d + d (Lm;[Ljava/lang/String;I)V func_147200_e + e ()Ljava/util/List; func_175782_e + e (Ljava/lang/String;)Laul; func_147183_a + e (Lm;[Ljava/lang/String;I)V func_147194_f + f (Lm;[Ljava/lang/String;I)V func_147186_g + g (Lm;[Ljava/lang/String;I)V func_147190_h + h (Lm;Ljava/lang/String;)V func_147191_h + h (Lm;[Ljava/lang/String;I)V func_147199_i + i (Lm;[Ljava/lang/String;I)V func_147188_j + j (Lm;[Ljava/lang/String;I)V func_147198_k + k (Lm;[Ljava/lang/String;I)V func_147195_l + l (Lm;[Ljava/lang/String;I)V func_147197_m + m (Lm;[Ljava/lang/String;I)V func_147187_n + n (Lm;[Ljava/lang/String;I)V func_175779_n + o (Lm;[Ljava/lang/String;I)V func_175781_o + p (Lm;[Ljava/lang/String;I)V func_175778_p +bca net/minecraft/client/model/ModelSkeleton + a (FFFFFFLpk;)V func_78087_a + a (Lpr;FFF)V func_78086_a +bcc net/minecraft/client/model/ModelSlime + a field_78200_a + b field_78198_b + c field_78199_c + d field_78197_d + a (Lpk;FFFFFF)V func_78088_a +bcd net/minecraft/client/model/ModelSnowMan + a field_78196_a + b field_78194_b + c field_78195_c + d field_78192_d + e field_78193_e + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bce net/minecraft/client/model/ModelSpider + a field_78209_a + b field_78207_b + c field_78208_c + d field_78205_d + e field_78206_e + f field_78203_f + g field_78204_g + h field_78212_h + i field_78213_i + j field_78210_j + k field_78211_k + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bcf net/minecraft/client/model/ModelSquid + a field_78202_a + b field_78201_b + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bcg net/minecraft/client/model/PositionTextureVertex + a field_78243_a + b field_78241_b + c field_78242_c + a (FF)Lbcg; func_78240_a +bch net/minecraft/client/model/ModelIronGolem + a field_78178_a + b field_78176_b + c field_78177_c + d field_78174_d + e field_78175_e + f field_78173_f + a (FF)F func_78172_a + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a + a (Lpr;FFF)V func_78086_a +bci net/minecraft/client/model/ModelVillager + a field_78191_a + b field_78189_b + c field_78190_c + d field_78187_d + e field_78188_e + f field_82898_f + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a +bcj net/minecraft/client/model/ModelZombieVillager + a (FFFFFFLpk;)V func_78087_a +bck net/minecraft/client/model/ModelWitch + g field_82900_g + h field_82901_h + i field_82902_i + a (FFFFFFLpk;)V func_78087_a +bcl net/minecraft/client/model/ModelWither + a field_82905_a + b field_82904_b + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a + a (Lpr;FFF)V func_78086_a +bcm net/minecraft/client/model/ModelWolf + a field_78185_a + b field_78183_b + c field_78184_c + d field_78181_d + e field_78182_e + f field_78179_f + g field_78180_g + h field_78186_h + a (FFFFFFLpk;)V func_78087_a + a (Lpk;FFFFFF)V func_78088_a + a (Lpr;FFF)V func_78086_a +bcn net/minecraft/client/model/ModelZombie + a (FFFFFFLpk;)V func_78087_a +bco net/minecraft/client/model/ModelDragon + a field_78221_a + b field_78219_b + c field_78220_c + d field_78217_d + e field_78218_e + f field_78215_f + g field_78216_g + h field_78226_h + i field_78227_i + j field_78224_j + k field_78225_k + l field_78222_l + m field_78223_m + a (D)F func_78214_a + a (Lpk;FFFFFF)V func_78088_a + a (Lpr;FFF)V func_78086_a +bcp net/minecraft/client/model/ModelEnderCrystal + a field_78230_a + b field_78228_b + c field_78229_c + a (Lpk;FFFFFF)V func_78088_a +bcr net/minecraft/client/model/ModelBox + a field_78252_a + b field_78250_b + c field_78251_c + d field_78248_d + e field_78249_e + f field_78246_f + g field_78247_g + h field_78253_h + i field_78254_i + a (Lbfd;F)V func_178780_a + a (Ljava/lang/String;)Lbcr; func_78244_a +bct net/minecraft/client/model/ModelRenderer + a field_78801_a + b field_78799_b + c field_78800_c + d field_78797_d + e field_78798_e + f field_78795_f + g field_78796_g + h field_78808_h + i field_78809_i + j field_78806_j + k field_78807_k + l field_78804_l + m field_78805_m + n field_78802_n + o field_82906_o + p field_82908_p + q field_82907_q + r field_78803_o + s field_78813_p + t field_78812_q + u field_78811_r + v field_78810_s + a (F)V func_78785_a + a (FFF)V func_78793_a + a (FFFIII)Lbct; func_78789_a + a (FFFIIIF)V func_78790_a + a (FFFIIIZ)Lbct; func_178769_a + a (II)Lbct; func_78784_a + a (Lbct;)V func_78792_a + a (Ljava/lang/String;FFFIII)Lbct; func_78786_a + b (F)V func_78791_b + b (II)Lbct; func_78787_b + c (F)V func_78794_c + d (F)V func_78788_d +bcu net/minecraft/client/model/TextureOffset + a field_78783_a + b field_78782_b +bcx net/minecraft/client/network/NetHandlerLoginClient + a field_147396_a + b field_147394_b + c field_147395_c + d field_147393_d + e field_175091_e + a (Lbcx;)Lek; access$000 + a (Leu;)V func_147231_a + a (Ljg;)V func_147390_a + a (Ljh;)V func_147389_a + a (Lji;)V func_180464_a + a (Ljj;)V func_147388_a + b ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; func_147391_c +bcx$1 net/minecraft/client/network/NetHandlerLoginClient$1 + a field_147495_a + b field_147494_b + operationComplete (Lio/netty/util/concurrent/Future;)V operationComplete +bcy net/minecraft/client/network/NetHandlerPlayClient + a field_147304_c + b field_147301_d + c field_147302_e + d field_175107_d + e field_147307_j + f field_147299_f + g field_147300_g + h field_147309_h + i field_147310_i + j field_147308_k + k field_147306_l + a ()Lek; func_147298_b + a (Lbcy;)Lek; access$000 + a (Lbcy;Lave;)Lave; access$102 + a (Leu;)V func_147231_a + a (Lff;)V func_147297_a + a (Lfi;)V func_147258_a + a (Lfk;)V func_147235_a + a (Lfl;)V func_147286_a + a (Lfm;)V func_147292_a + a (Lfn;)V func_147281_a + a (Lfo;)V func_147288_a + a (Lfp;)V func_147237_a + a (Lfq;)V func_147279_a + a (Lfr;)V func_147293_a + a (Lfs;)V func_147294_a + a (Lft;)V func_147273_a + a (Lfu;)V func_147261_a + a (Lfv;)V func_147234_a + a (Lfw;)V func_175101_a + a (Lfx;)V func_147274_a + a (Lfy;)V func_147251_a + a (Lfz;)V func_147287_a + a (Lga;)V func_147239_a + a (Lgb;)V func_147276_a + a (Lgc;)V func_147265_a + a (Lgd;)V func_147241_a + a (Lge;)V func_147245_a + a (Lgf;)V func_147266_a + a (Lgg;)V func_147240_a + a (Lgh;)V func_147253_a + a (Lgi;)V func_147236_a + a (Lgj;)V func_175097_a + a (Lgk;)V func_147283_a + a (Lgl;)V func_175100_a + a (Lgm;)V func_147252_a + a (Lgn;)V func_147272_a + a (Lgo;)V func_147263_a + a (Lgp;)V func_147269_a + a (Lgq;)V func_147277_a + a (Lgr;)V func_147289_a + a (Lgs;)V func_147255_a + a (Lgt;)V func_147282_a + a (Lgu;)V func_147264_a + a (Lgv;)V func_147259_a + a (Lgw;)V func_147268_a + a (Lgx;)V func_147270_a + a (Lgy;)V func_175098_a + a (Lgz;)V func_147256_a + a (Lha;)V func_147278_a + a (Lhb;)V func_147238_a + a (Lhc;)V func_147262_a + a (Lhd;)V func_175095_a + a (Lhe;)V func_147280_a + a (Lhf;)V func_147267_a + a (Lhg;)V func_175093_a + a (Lhh;)V func_175094_a + a (Lhi;)V func_147257_a + a (Lhj;)V func_147254_a + a (Lhk;)V func_147284_a + a (Lhl;)V func_147243_a + a (Lhm;)V func_147244_a + a (Lhn;)V func_147242_a + a (Lho;)V func_147295_a + a (Lhp;)V func_147249_a + a (Lhq;)V func_147291_a + a (Lhr;)V func_147247_a + a (Lhs;)V func_147250_a + a (Lht;)V func_147271_a + a (Lhu;)V func_147285_a + a (Lhv;)V func_175099_a + a (Lhw;)V func_147248_a + a (Lhx;)V func_175096_a + a (Lhy;)V func_147246_a + a (Lhz;)V func_147275_a + a (Lia;)V func_147290_a + a (Lib;)V func_147260_a + a (Ljava/lang/String;)Lbdc; func_175104_a + a (Ljava/util/UUID;)Lbdc; func_175102_a + b ()V func_147296_c + b (Lbcy;)Lave; access$100 + d ()Ljava/util/Collection; func_175106_d + e ()Lcom/mojang/authlib/GameProfile; func_175105_e +bcy$1 net/minecraft/client/network/NetHandlerPlayClient$1 + a field_146300_a + b field_146299_f + onFailure (Ljava/lang/Throwable;)V onFailure + onSuccess (Ljava/lang/Object;)V onSuccess +bcy$2 net/minecraft/client/network/NetHandlerPlayClient$2 + a field_178897_a + b field_178896_b + onFailure (Ljava/lang/Throwable;)V onFailure + onSuccess (Ljava/lang/Object;)V onSuccess +bcy$3 net/minecraft/client/network/NetHandlerPlayClient$3 + a field_178900_a + b field_178898_b + c field_178899_c + run ()V run +bcy$3$1 net/minecraft/client/network/NetHandlerPlayClient$3$1 + a field_175395_a + a (ZI)V func_73878_a +bcy$3$1$1 net/minecraft/client/network/NetHandlerPlayClient$3$1$1 + a field_178886_a + onFailure (Ljava/lang/Throwable;)V onFailure + onSuccess (Ljava/lang/Object;)V onSuccess +bcy$4 net/minecraft/client/network/NetHandlerPlayClient$4 + a field_178885_a + b field_178884_b +bcz net/minecraft/client/multiplayer/ChunkProviderClient + a field_147436_a + b field_73238_a + c field_73236_b + d field_73237_c + e field_73235_d + a (II)Z func_73149_a + a (Ladm;Ljava/lang/String;Lcj;)Lcj; func_180513_a + a (Lamv;II)V func_73153_a + a (Lamv;Lamy;II)Z func_177460_a + a (Lamy;II)V func_180514_a + a (Lcj;)Lamy; func_177459_a + a (Lpt;Lcj;)Ljava/util/List; func_177458_a + a (ZLnu;)Z func_73151_a + b (II)V func_73234_b + c ()V func_104112_b + c (II)Lamy; func_73158_c + d ()Z func_73156_b + d (II)Lamy; func_73154_d + e ()Z func_73157_c + f ()Ljava/lang/String; func_73148_d + g ()I func_73152_e +bd net/minecraft/command/ServerCommandManager + a (Lm;Lk;ILjava/lang/String;[Ljava/lang/Object;)V func_152372_a +bda net/minecraft/client/multiplayer/PlayerControllerMP + a field_78776_a + b field_78774_b + c field_178895_c + d field_85183_f + e field_78770_f + f field_78780_h + g field_78781_i + h field_78778_j + i field_78779_k + j field_78777_l + a ()Z func_78747_a + a (II)V func_78756_a + a (IIIILwn;)Lzx; func_78753_a + a (Ladm;Lnb;)Lbew; func_178892_a + a (Ladp$a;)V func_78746_a + a (Lave;Lbda;Lcj;Lcq;)V func_178891_a + a (Lbew;Lbdb;Lzx;Lcj;Lcq;Laui;)Z func_178890_a + a (Lcj;)Z func_178893_a + a (Lcj;Lcq;)Z func_178888_a + a (Lwn;)V func_78748_a + a (Lwn;Ladm;Lzx;)Z func_78769_a + a (Lwn;Lpk;)V func_78764_a + a (Lwn;Lpk;Lauh;)Z func_178894_a + a (Lzx;)V func_78752_a + a (Lzx;I)V func_78761_a + b ()Z func_78755_b + b (Lcj;Lcq;)Z func_180511_b + b (Lwn;)V func_78745_b + b (Lwn;Lpk;)Z func_78768_b + c ()V func_78767_c + c (Lcj;Lcq;)Z func_180512_c + c (Lwn;)V func_78766_c + d ()F func_78757_d + e ()V func_78765_e + f ()Z func_78763_f + g ()Z func_78762_g + h ()Z func_78758_h + i ()Z func_78749_i + j ()Z func_110738_j + k ()Z func_178887_k + l ()Ladp$a; func_178889_l + m ()Z func_181040_m + n ()V func_78750_j +bdb net/minecraft/client/multiplayer/WorldClient + I field_73037_M + J field_73038_N + a field_73035_a + b field_73033_b + c field_73032_d + d field_73036_L + H ()V func_72882_A + a ()V func_73022_a + a (DDDDDDLdn;)V func_92088_a + a (DDDLjava/lang/String;FFZ)V func_72980_b + a (I)Lpk; func_73045_a + a (IIIIII)V func_73031_a + a (ILpk;)V func_73027_a + a (Lauo;)V func_96443_a + a (Lb;)Lc; func_72914_a + a (Lbdb;)Ljava/util/Set; access$000 + a (Lcj;Ljava/lang/String;FFZ)V func_175731_a + a (Lpk;)V func_72923_a + b (III)V func_73029_E + b (IIZ)V func_73025_a + b (J)V func_72877_b + b (Lbdb;)Ljava/util/Set; access$100 + b (Lcj;Lalz;)Z func_180503_b + b (Lpk;)V func_72847_b + c ()V func_72835_b + c (Lbdb;)Lave; access$200 + d (Lpk;)Z func_72838_d + e (I)Lpk; func_73028_b + e (Lpk;)V func_72900_e + h ()V func_147456_g + k ()Lamv; func_72970_h + p ()V func_72979_l + q ()I func_152379_p +bdb$1 net/minecraft/client/multiplayer/WorldClient$1 + a field_78833_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bdb$2 net/minecraft/client/multiplayer/WorldClient$2 + a field_78835_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bdb$3 net/minecraft/client/multiplayer/WorldClient$3 + a field_142027_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bdb$4 net/minecraft/client/multiplayer/WorldClient$4 + a field_142029_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bdc net/minecraft/client/network/NetworkPlayerInfo + a field_178867_a + b field_178866_b + c field_78829_b + d field_178864_d + e field_178865_e + f field_178862_f + g field_178863_g + h field_178872_h + i field_178873_i + j field_178870_j + k field_178871_k + l field_178868_l + m field_178869_m + a ()Lcom/mojang/authlib/GameProfile; func_178845_a + a (I)V func_178838_a + a (J)V func_178846_a + a (Ladp$a;)V func_178839_a + a (Lbdc;)Ljava/lang/String; access$100 + a (Lbdc;Ljava/lang/String;)Ljava/lang/String; access$102 + a (Lbdc;Ljy;)Ljy; access$002 + a (Leu;)V func_178859_a + b ()Ladp$a; func_178848_b + b (I)V func_178836_b + b (J)V func_178844_b + b (Lbdc;Ljy;)Ljy; access$202 + c ()I func_178853_c + c (I)V func_178857_c + c (J)V func_178843_c + e ()Z func_178856_e + f ()Ljava/lang/String; func_178851_f + g ()Ljy; func_178837_g + h ()Ljy; func_178861_h + i ()Laul; func_178850_i + j ()V func_178841_j + k ()Leu; func_178854_k + l ()I func_178835_l + m ()I func_178860_m + n ()J func_178847_n + o ()J func_178858_o + p ()J func_178855_p +bdc$1 net/minecraft/client/network/NetworkPlayerInfo$1 + a field_177224_a + a (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Ljy;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V func_180521_a +bdc$2 net/minecraft/client/network/NetworkPlayerInfo$2 + a field_178875_a +bdd net/minecraft/client/multiplayer/ServerAddress + a field_78866_a + b field_78865_b + a ()Ljava/lang/String; func_78861_a + a (Ljava/lang/String;)Lbdd; func_78860_a + a (Ljava/lang/String;I)I func_78862_a + b ()I func_78864_b + b (Ljava/lang/String;)[Ljava/lang/String; func_78863_b +bde net/minecraft/client/multiplayer/ServerData + a field_78847_a + b field_78845_b + c field_78846_c + d field_78843_d + e field_78844_e + f field_82821_f + g field_82822_g + h field_78841_f + i field_147412_i + j field_152587_j + k field_147411_m + l field_181042_l + a ()Ldn; func_78836_a + a (Lbde$a;)V func_152584_a + a (Lbde;)V func_152583_a + a (Ldn;)Lbde; func_78837_a + a (Ljava/lang/String;)V func_147407_a + b ()Lbde$a; func_152586_b + c ()Ljava/lang/String; func_147409_e + d ()Z func_181041_d +bde$a net/minecraft/client/multiplayer/ServerData$ServerResourceMode + a ENABLED + b DISABLED + c PROMPT + d field_152594_d + e $VALUES + a ()Leu; func_152589_a + values ()[Lbde$a; values +bdf net/minecraft/client/multiplayer/ServerList + a field_147415_a + b field_78859_a + c field_78858_b + a ()V func_78853_a + a (I)Lbde; func_78850_a + a (II)V func_78857_a + a (ILbde;)V func_147413_a + a (Lbde;)V func_78849_a + b ()V func_78855_b + b (I)V func_78851_b + b (Lbde;)V func_147414_b + c ()I func_78856_c +bdg net/minecraft/client/network/OldServerPinger + a field_147230_a + b field_147228_b + c field_147229_c + a ()V func_147223_a + a (Lbde;)V func_147224_a + a (Lbdg;Lbde;)V access$100 + b ()V func_147226_b + b (Lbde;)V func_147225_b + c ()Lorg/apache/logging/log4j/Logger; access$000 + d ()Lcom/google/common/base/Splitter; access$200 +bdg$1 net/minecraft/client/network/OldServerPinger$1 + a field_147404_b + b field_147406_a + c field_147405_c + d field_147403_d + e field_183009_e + f field_175092_e + a (Leu;)V func_147231_a + a (Ljq;)V func_147398_a + a (Ljr;)V func_147397_a +bdg$2 net/minecraft/client/network/OldServerPinger$2 + a field_147218_a + b field_147216_b + c field_147217_c + initChannel (Lio/netty/channel/Channel;)V initChannel +bdg$2$1 net/minecraft/client/network/OldServerPinger$2$1 + a field_147220_a + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V channelRead0 + channelActive (Lio/netty/channel/ChannelHandlerContext;)V channelActive + channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V channelRead0 + exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V exceptionCaught +bdj net/minecraft/client/particle/Barrier + a ()I func_70537_b + a (Lbfd;Lpk;FFFFFF)V func_180434_a +bdj$a net/minecraft/client/particle/Barrier$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdk net/minecraft/client/particle/EntityBreakingFX + a ()I func_70537_b + a (Lbfd;Lpk;FFFFFF)V func_180434_a +bdk$a net/minecraft/client/particle/EntityBreakingFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdk$b net/minecraft/client/particle/EntityBreakingFX$SlimeFactory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdk$c net/minecraft/client/particle/EntityBreakingFX$SnowballFactory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdl net/minecraft/client/particle/EntityBubbleFX + t_ ()V func_70071_h_ +bdl$a net/minecraft/client/particle/EntityBubbleFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdm net/minecraft/client/particle/EntityCrit2FX + a field_174839_a + a (Lbfd;Lpk;FFFFFF)V func_180434_a + t_ ()V func_70071_h_ +bdm$a net/minecraft/client/particle/EntityCrit2FX$MagicFactory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdm$b net/minecraft/client/particle/EntityCrit2FX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdn net/minecraft/client/particle/EntityDropParticleFX + a field_70563_a + az field_70564_aq + b (F)I func_70070_b + c (F)F func_70013_c + t_ ()V func_70071_h_ +bdn$a net/minecraft/client/particle/EntityDropParticleFX$LavaFactory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdn$b net/minecraft/client/particle/EntityDropParticleFX$WaterFactory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdo net/minecraft/client/particle/EntityEnchantmentTableParticleFX + a field_70565_a + aA field_70567_ar + aB field_70566_as + az field_70568_aq + b (F)I func_70070_b + c (F)F func_70013_c + t_ ()V func_70071_h_ +bdo$a net/minecraft/client/particle/EntityEnchantmentTableParticleFX$EnchantmentTable + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdp net/minecraft/client/particle/EntityExplodeFX + t_ ()V func_70071_h_ +bdp$a net/minecraft/client/particle/EntityExplodeFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdq net/minecraft/client/particle/EntityFirework +bdq$a net/minecraft/client/particle/EntityFirework$OverlayFX + a (Lbfd;Lpk;FFFFFF)V func_180434_a +bdq$b net/minecraft/client/particle/EntityFirework$SparkFX + a field_92049_a + aA field_92048_ay + aB field_92047_az + aC field_92050_aA + aD field_92051_aB + aE field_92052_aC + aF field_92053_aD + az field_92054_ax + S ()Laug; func_70046_E + a (I)V func_92044_a + a (Lbfd;Lpk;FFFFFF)V func_180434_a + a (Z)V func_92045_e + ae ()Z func_70104_M + b (F)I func_70070_b + b (I)V func_92046_g + c (F)F func_70013_c + i (Z)V func_92043_f + t_ ()V func_70071_h_ +bdq$c net/minecraft/client/particle/EntityFirework$StarterFX + a field_92041_a + aA field_92040_ay + aB field_92039_az + az field_92042_ax + a ()I func_70537_b + a (DDDDDD[I[IZZ)V func_92034_a + a (DI[I[IZZ)V func_92035_a + a (D[[D[I[IZZZ)V func_92038_a + a (Lbfd;Lpk;FFFFFF)V func_180434_a + a ([I[IZZ)V func_92036_a + l ()Z func_92037_i + t_ ()V func_70071_h_ +bdq$d net/minecraft/client/particle/EntityFirework$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdr net/minecraft/client/particle/EntityFlameFX + a field_70562_a + a (Lbfd;Lpk;FFFFFF)V func_180434_a + b (F)I func_70070_b + c (F)F func_70013_c + t_ ()V func_70071_h_ +bdr$a net/minecraft/client/particle/EntityFlameFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bds net/minecraft/client/particle/EntityFootStepFX + a field_110126_a + aA field_70578_aq + aB field_70577_ar + az field_70576_a + a ()I func_70537_b + a (Lbfd;Lpk;FFFFFF)V func_180434_a + t_ ()V func_70071_h_ +bds$a net/minecraft/client/particle/EntityFootStepFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdt net/minecraft/client/particle/EntityHeartFX + a field_70575_a + a (Lbfd;Lpk;FFFFFF)V func_180434_a + t_ ()V func_70071_h_ +bdt$a net/minecraft/client/particle/EntityHeartFX$AngryVillagerFactory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdt$b net/minecraft/client/particle/EntityHeartFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdu net/minecraft/client/particle/EntityLargeExplodeFX + a field_110127_a + aA field_70581_a + aB field_70584_aq + aC field_70583_ar + aD field_70582_as + az field_181549_az + a ()I func_70537_b + a (Lbfd;Lpk;FFFFFF)V func_180434_a + b (F)I func_70070_b + t_ ()V func_70071_h_ +bdu$a net/minecraft/client/particle/EntityLargeExplodeFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdv net/minecraft/client/particle/EntityHugeExplodeFX + a field_70579_a + az field_70580_aq + a ()I func_70537_b + a (Lbfd;Lpk;FFFFFF)V func_180434_a + t_ ()V func_70071_h_ +bdv$a net/minecraft/client/particle/EntityHugeExplodeFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdw net/minecraft/client/particle/EntityPickupFX + a field_174840_a + aA field_70594_ar + aB field_70593_as + aC field_174841_aA + aD field_174842_aB + az field_174843_ax + a ()I func_70537_b + a (Lbfd;Lpk;FFFFFF)V func_180434_a + t_ ()V func_70071_h_ +bdx net/minecraft/client/particle/EntityCritFX +bdx$a net/minecraft/client/particle/EntityCritFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdy net/minecraft/client/particle/EntityLavaFX + a field_70586_a + a (Lbfd;Lpk;FFFFFF)V func_180434_a + b (F)I func_70070_b + c (F)F func_70013_c + t_ ()V func_70071_h_ +bdy$a net/minecraft/client/particle/EntityLavaFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bdz net/minecraft/client/particle/MobAppearance + a field_174844_a + a ()I func_70537_b + a (Lbfd;Lpk;FFFFFF)V func_180434_a + t_ ()V func_70071_h_ +bdz$a net/minecraft/client/particle/MobAppearance$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +be net/minecraft/command/server/CommandSetBlock + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bea net/minecraft/client/particle/EntityNoteFX + a field_70585_a + a (Lbfd;Lpk;FFFFFF)V func_180434_a + t_ ()V func_70071_h_ +bea$a net/minecraft/client/particle/EntityNoteFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +beb net/minecraft/client/particle/EntityFX + ar field_70552_h + as field_70553_i + at field_70551_j + au field_82339_as + av field_70550_a + aw field_70556_an + ax field_70554_ao + ay field_70555_ap + b field_94054_b + c field_94055_c + d field_70548_b + e field_70549_c + f field_70546_d + g field_70547_e + h field_70544_f + i field_70545_g + a ()I func_70537_b + a (F)Lbeb; func_70543_e + a (Lbfd;Lpk;FFFFFF)V func_180434_a + a (Lbmi;)V func_180435_a + a (Ldn;)V func_70037_a + aD ()Z func_70075_an + b ()F func_70534_d + b (FFF)V func_70538_b + b (Ldn;)V func_70014_b + g ()F func_70542_f + h ()V func_70088_a + h (F)Lbeb; func_70541_f + i ()F func_70535_g + i (F)V func_82338_g + j ()F func_174838_j + k ()V func_94053_h + k (I)V func_70536_a + s_ ()Z func_70041_e_ + t_ ()V func_70071_h_ + toString ()Ljava/lang/String; toString +bec net/minecraft/client/particle/EffectRenderer + a field_78878_a + b field_110737_b + c field_78876_b + d field_178933_d + e field_78877_c + f field_78875_d + g field_178932_g + a ()V func_78868_a + a (I)V func_178922_a + a (IDDDDDD[I)Lbeb; func_178927_a + a (ILbed;)V func_178929_a + a (Ladm;)V func_78870_a + a (Lbeb;)V func_78873_a + a (Lbeb;II)V func_178924_a + a (Lcj;Lalz;)V func_180533_a + a (Lcj;Lcq;)V func_180532_a + a (Ljava/util/List;)V func_178925_a + a (Lpk;F)V func_78874_a + a (Lpk;Lcy;)V func_178926_a + b ()Ljava/lang/String; func_78869_b + b (Lbeb;)V func_178928_b + b (Lpk;F)V func_78872_b + c ()V func_178930_c + c (Lbeb;)V func_178931_c + d (Lbeb;)V func_178923_d +bec$1 net/minecraft/client/particle/EffectRenderer$1 + a field_147214_a + b field_147213_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bec$2 net/minecraft/client/particle/EffectRenderer$2 + a field_147898_a + b field_147897_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bec$3 net/minecraft/client/particle/EffectRenderer$3 + a field_147901_a + b field_147900_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bec$4 net/minecraft/client/particle/EffectRenderer$4 + a field_147904_a + b field_147903_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bed net/minecraft/client/particle/IParticleFactory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bee net/minecraft/client/particle/EntityCloudFX + a field_70569_a + a (Lbfd;Lpk;FFFFFF)V func_180434_a + t_ ()V func_70071_h_ +bee$a net/minecraft/client/particle/EntityCloudFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bef net/minecraft/client/particle/EntityPortalFX + a field_70571_a + aA field_70573_ar + aB field_70572_as + az field_70574_aq + a (Lbfd;Lpk;FFFFFF)V func_180434_a + b (F)I func_70070_b + c (F)F func_70013_c + t_ ()V func_70071_h_ +bef$a net/minecraft/client/particle/EntityPortalFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +beg net/minecraft/client/particle/EntityReddustFX + a field_70570_a + a (Lbfd;Lpk;FFFFFF)V func_180434_a + t_ ()V func_70071_h_ +beg$a net/minecraft/client/particle/EntityReddustFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +beh net/minecraft/client/particle/EntitySmokeFX + a field_70587_a + a (Lbfd;Lpk;FFFFFF)V func_180434_a + t_ ()V func_70071_h_ +beh$1 net/minecraft/client/particle/EntitySmokeFX$1 +beh$a net/minecraft/client/particle/EntitySmokeFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bei net/minecraft/client/particle/EntitySnowShovelFX + a field_70588_a + a (Lbfd;Lpk;FFFFFF)V func_180434_a + t_ ()V func_70071_h_ +bei$a net/minecraft/client/particle/EntitySnowShovelFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bej net/minecraft/client/particle/EntitySpellParticleFX + a field_174848_a + az field_70590_a + a (I)V func_70589_b + a (Lbfd;Lpk;FFFFFF)V func_180434_a + t_ ()V func_70071_h_ +bej$a net/minecraft/client/particle/EntitySpellParticleFX$AmbientMobFactory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bej$b net/minecraft/client/particle/EntitySpellParticleFX$InstantFactory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bej$c net/minecraft/client/particle/EntitySpellParticleFX$MobFactory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bej$d net/minecraft/client/particle/EntitySpellParticleFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bej$e net/minecraft/client/particle/EntitySpellParticleFX$WitchFactory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bek net/minecraft/client/particle/EntitySplashFX +bek$a net/minecraft/client/particle/EntitySplashFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bel net/minecraft/client/particle/EntitySuspendFX + t_ ()V func_70071_h_ +bel$a net/minecraft/client/particle/EntitySuspendFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bem net/minecraft/client/particle/EntityAuraFX + t_ ()V func_70071_h_ +bem$a net/minecraft/client/particle/EntityAuraFX$HappyVillagerFactory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bem$b net/minecraft/client/particle/EntityAuraFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +ben net/minecraft/client/particle/EntityBlockDustFX +ben$a net/minecraft/client/particle/EntityBlockDustFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +beo net/minecraft/client/particle/EntityDiggingFX + a field_174847_a + az field_181019_az + a ()I func_70537_b + a (Lbfd;Lpk;FFFFFF)V func_180434_a + a (Lcj;)Lbeo; func_174846_a + b (F)I func_70070_b + l ()Lbeo; func_174845_l +beo$a net/minecraft/client/particle/EntityDiggingFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bep net/minecraft/client/particle/EntityParticleEmitter + a field_174851_a + aA field_174850_ay + aB field_174849_az + az field_174852_ax + a ()I func_70537_b + a (Lbfd;Lpk;FFFFFF)V func_180434_a + t_ ()V func_70071_h_ +beq net/minecraft/client/particle/EntityFishWakeFX + t_ ()V func_70071_h_ +beq$a net/minecraft/client/particle/EntityFishWakeFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +ber net/minecraft/client/particle/EntityRainFX + t_ ()V func_70071_h_ +ber$a net/minecraft/client/particle/EntityRainFX$Factory + a (ILadm;DDDDDD[I)Lbeb; func_178902_a +bet net/minecraft/client/entity/AbstractClientPlayer + a field_175157_a + a ()Z func_152122_n + a (Ljy;Ljava/lang/String;)Lbma; func_110304_a + b ()Lbdc; func_175155_b + c (Ljava/lang/String;)Ljy; func_110311_f + g ()Z func_152123_o + i ()Ljy; func_110306_p + k ()Ljy; func_110303_q + l ()Ljava/lang/String; func_175154_l + o ()F func_175156_o + v ()Z func_175149_v +beu net/minecraft/util/MovementInput + a field_78902_a + b field_78900_b + c field_78901_c + d field_78899_d + a ()V func_78898_a +bev net/minecraft/util/MovementInputFromOptions + e field_78903_e + a ()V func_78898_a +bew net/minecraft/client/entity/EntityPlayerSP + a field_71174_a + b field_71158_b + bH field_71086_bY + bI field_71080_cy + bJ field_146108_bO + bK field_175172_bI + bL field_175166_bJ + bM field_175167_bK + bN field_175164_bL + bO field_175165_bM + bP field_175170_bN + bQ field_175171_bO + bR field_175168_bP + bS field_175169_bQ + bT field_142022_ce + bU field_110320_a + bV field_110321_bQ + c field_71159_c + d field_71156_d + e field_71157_e + f field_71154_f + g field_71155_g + h field_71163_h + i field_71164_i + A ()Z func_175160_A + a (FII)V func_71152_a + a (ILjava/lang/String;)Z func_70003_b + a (Lacy;)V func_180472_a + a (Ladc;)V func_146095_a + a (Laln;)V func_175141_a + a (Leu;)V func_145747_a + a (Ljava/lang/String;FF)V func_85030_a + a (Lmw;I)V func_71064_a + a (Log;)V func_71007_a + a (Lol;)V func_180468_a + a (Low;F)Z func_70097_a + a (Lpk;)V func_70078_a + a (Ltp;Log;)V func_110298_a + a (Luz;)V func_71012_a + a (Lzx;)V func_71048_c + a (Z)Luz; func_71040_bB + av ()Z func_70093_af + b (Leu;)V func_146105_b + b (Lpk;)V func_71009_b + bK ()V func_70626_be + bM ()Z func_70613_aW + bw ()V func_71038_i + c ()Lcj; func_180425_c + c (Lpk;)V func_71047_c + cb ()V func_71004_bE + cc ()Z func_175144_cb + d (Low;F)V func_70665_d + d (Z)V func_70031_b + e (Lcj;)Z func_175162_d + e (Ljava/lang/String;)V func_71165_d + f (Ljava/lang/String;)V func_175158_f + h (F)V func_70691_i + j (DDD)Z func_145771_j + m ()V func_70636_d + n ()V func_71053_j + n (F)V func_71150_b + p ()V func_175161_p + q ()V func_175159_q + r ()V func_110318_g + t ()V func_71016_p + t_ ()V func_70071_h_ + u ()V func_175163_u + w ()Ljava/lang/String; func_142021_k + x ()Lnb; func_146107_m + y ()Z func_110317_t + z ()F func_110319_bJ +bex net/minecraft/client/entity/EntityOtherPlayerMP + a field_71186_a + b field_71184_b + c field_71185_c + d field_71182_d + e field_71183_e + f field_71180_f + g field_71181_g + a (DDDFFIZ)V func_180426_a + a (ILjava/lang/String;)Z func_70003_b + a (Leu;)V func_145747_a + a (Low;F)Z func_70097_a + c ()Lcj; func_180425_c + c (ILzx;)V func_70062_b + m ()V func_70636_d + t_ ()V func_70071_h_ +bey net/minecraft/client/player/inventory/LocalBlockIntercommunication + a field_175126_a + b field_175125_b + a (Lwm;Lwn;)Lxi; func_174876_a + e_ ()Ljava/lang/String; func_70005_c_ + f_ ()Leu; func_145748_c_ + k ()Ljava/lang/String; func_174875_k + l_ ()Z func_145818_k_ +bez net/minecraft/client/player/inventory/ContainerLocalMenu + a field_174896_a + b field_174895_b + a (Lon;)V func_174892_a + a (Lwm;Lwn;)Lxi; func_174876_a + a_ (I)I func_174887_a_ + b (II)V func_174885_b + g ()I func_174890_g + i ()Lon; func_174891_i + k ()Ljava/lang/String; func_174875_k + r_ ()Z func_174893_q_ +bf net/minecraft/command/server/CommandSetDefaultSpawnpoint + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bfc net/minecraft/entity/boss/BossStatus + a field_82828_a + b field_82826_b + c field_82827_c + d field_82825_d + a (Luc;Z)V func_82824_a +bfd net/minecraft/client/renderer/WorldRenderer + a field_179001_a + b field_178999_b + c field_181676_c + d field_179000_c + e field_178997_d + f field_181677_f + g field_181678_g + h field_78939_q + i field_179006_k + j field_179004_l + k field_179005_m + l field_179002_n + m field_179011_q + n field_179010_r + a ()Lbfd$a; func_181672_a + a (DD)Lbfd; func_181673_a + a (DDD)V func_178987_a + a (FFF)V func_181674_a + a (FFFF)Lbfd; func_181666_a + a (FFFI)V func_178978_a + a (I)V func_178968_d + a (II)Lbfd; func_181671_a + a (IIII)V func_178962_a + a (IIIII)V func_178972_a + a (ILbmu;)V func_181668_a + a (Lbfd$a;)V func_178993_a + a (Ljava/nio/FloatBuffer;FFFII)F func_181665_a + a ([I)V func_178981_a + b ()V func_178965_a + b (DDD)Lbfd; func_181662_b + b (FFF)V func_178975_e + b (FFFI)V func_178994_b + b (I)V func_181670_b + b (II)V func_178988_b + b (IIII)Lbfd; func_181669_b + c ()V func_78914_f + c (DDD)V func_178969_c + c (FFF)Lbfd; func_181663_c + c (I)I func_78909_a + d ()V func_181675_d + d (FFF)V func_178990_f + e ()V func_178977_d + f ()Ljava/nio/ByteBuffer; func_178966_f + g ()Lbmu; func_178973_g + h ()I func_178989_h + i ()I func_178979_i + j ()I func_181664_j + k ()V func_181667_k +bfd$1 net/minecraft/client/renderer/WorldRenderer$1 + a field_181659_a + b field_181660_b + a (Ljava/lang/Integer;Ljava/lang/Integer;)I compare + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare +bfd$2 net/minecraft/client/renderer/WorldRenderer$2 + a field_181661_a +bfd$a net/minecraft/client/renderer/WorldRenderer$State + a field_179021_a + b field_179019_b + c field_179018_e + a ()[I func_179013_a + b ()I func_179014_c + c ()Lbmu; func_179016_d +bfe net/minecraft/client/renderer/WorldVertexBufferUploader + a (Lbfd;)V func_181679_a +bfe$1 net/minecraft/client/renderer/WorldVertexBufferUploader$1 + a field_178958_a +bff net/minecraft/client/renderer/RegionRenderCache + f field_175632_f + g field_175633_g + h field_175634_h + i field_175635_i + b (Lcj;I)I func_175626_b + c (Lcj;)Lalz; func_175631_c + e (Lcj;)I func_175630_e + p (Lcj;)Lalz; func_180495_p + s (Lcj;)Lakw; func_175625_s +bfg net/minecraft/client/renderer/RegionRenderCacheBuilder + a field_179040_a + a (I)Lbfd; func_179039_a + a (Ladf;)Lbfd; func_179038_a +bfh net/minecraft/client/renderer/ChunkRenderContainer + a field_178009_a + b field_178007_b + c field_178008_c + d field_178005_d + e field_178006_e + a (DDD)V func_178004_a + a (Ladf;)V func_178001_a + a (Lbht;)V func_178003_a + a (Lbht;Ladf;)V func_178002_a +bfi net/minecraft/client/renderer/tileentity/TileEntityItemStackRenderer + a field_147719_a + b field_147717_b + c field_147718_c + d field_147716_d + e field_179024_e + f field_179023_f + a (Lzx;)V func_179022_a +bfj net/minecraft/client/renderer/EnumFaceDirection + a DOWN + b UP + c NORTH + d SOUTH + e WEST + f EAST + g field_179029_g + h field_179035_h + i $VALUES + a (I)Lbfj$b; func_179025_a + a (Lcq;)Lbfj; func_179027_a + values ()[Lbfj; values +bfj$1 net/minecraft/client/renderer/EnumFaceDirection$1 +bfj$a net/minecraft/client/renderer/EnumFaceDirection$Constants + a field_179181_a + b field_179179_b + c field_179180_c + d field_179177_d + e field_179178_e + f field_179176_f +bfj$b net/minecraft/client/renderer/EnumFaceDirection$VertexInformation + a field_179184_a + b field_179182_b + c field_179183_c +bfk net/minecraft/client/renderer/EntityRenderer + A field_82832_V + B field_78500_U + C field_175074_C + D field_175073_D + E field_78508_Y + F field_78510_Z + G field_78513_d + H field_78504_Q + I field_110922_T + J field_78536_aa + K field_78514_e + L field_175075_L + M field_78534_ac + N field_175076_N + O field_175077_O + P field_78521_m + Q field_175080_Q + R field_175082_R + S field_175081_S + T field_78535_ad + U field_78539_ae + V field_175079_V + W field_175078_W + X field_78503_V + Y field_78502_W + Z field_78509_X + a field_78517_a + aa field_147707_d + ab field_147712_ad + ac field_147713_ae + ad field_175083_ad + ae field_175084_ae + b field_78515_b + c field_78516_c + d field_147708_e + e field_147710_q + f field_110924_q + g field_110923_r + h field_78531_r + i field_147711_ac + j field_78537_ab + k field_78530_s + l field_147709_v + m field_78529_t + n field_78528_u + o field_78527_v + p field_78526_w + q field_78490_B + r field_78491_C + s field_78496_H + t field_78497_I + u field_78498_J + v field_78499_K + w field_78492_L + x field_78507_R + y field_78506_S + z field_82831_U + a ()Z func_147702_a + a (F)V func_78473_a + a (FFFF)Ljava/nio/FloatBuffer; func_78469_a + a (FI)V func_78479_a + a (FJ)V func_181560_a + a (FZ)F func_78481_a + a (IF)V func_78468_a + a (IFJ)V func_175068_a + a (II)V func_147704_a + a (Lbfk;)Lave; access$000 + a (Lbfr;FI)V func_180437_a + a (Lbni;)V func_110549_a + a (Ljy;)V func_175069_a + a (Lpk;)V func_175066_a + a (Lpr;F)F func_180438_a + b ()V func_181022_b + b (F)V func_152430_c + b (FI)V func_78476_b + b (FJ)V func_78471_a + c ()V func_175071_c + c (F)V func_78474_d + d ()V func_147705_c + d (F)V func_78482_e + e ()V func_78464_a + e (F)V func_78475_f + f ()Lblr; func_147706_e + f (F)V func_78467_g + g (F)V func_78472_g + h ()V func_175072_h + h (F)V func_175067_i + i ()V func_180436_i + i (F)V func_78466_h + j ()V func_78478_c + k ()Lavq; func_147701_i + l ()V func_78477_e + m ()V func_78470_f + n ()Z func_175070_n + o ()V func_78484_h +bfk$1 net/minecraft/client/renderer/EntityRenderer$1 + a field_90032_a + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +bfk$2 net/minecraft/client/renderer/EntityRenderer$2 + a field_90025_c + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bfk$3 net/minecraft/client/renderer/EntityRenderer$3 + a field_181048_a + b field_181049_b + c field_90028_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bfk$4 net/minecraft/client/renderer/EntityRenderer$4 + a field_181046_a + b field_181047_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bfl net/minecraft/client/renderer/GlStateManager + a field_179160_a + b field_179158_b + c field_179159_c + d field_179156_d + e field_179157_e + f field_179154_f + g field_179155_g + h field_179167_h + i field_179168_i + j field_179165_j + k field_179166_k + l field_179163_l + m field_179164_m + n field_179161_n + o field_179162_o + p field_179174_p + q field_179173_q + r field_179172_r + s field_179171_s + t field_179170_t + A ()V func_179133_A + B ()V func_179091_B + C ()V func_179101_C + D ()V func_179096_D + E ()V func_179094_E + F ()V func_179121_F + G ()V func_179117_G + a ()V func_179123_a + a (D)V func_179151_a + a (DDD)V func_179139_a + a (DDDDDD)V func_179130_a + a (F)V func_179095_a + a (FF)V func_179136_a + a (FFF)V func_179152_a + a (FFFF)V func_179082_a + a (I)V func_179085_a + a (IF)V func_179092_a + a (II)V func_179104_a + a (IIII)V func_179120_a + a (ILjava/nio/FloatBuffer;)V func_179111_a + a (Lbfl$o;)V func_179087_a + a (Lbfl$o;I)V func_179149_a + a (Lbfl$o;ILjava/nio/FloatBuffer;)V func_179105_a + a (Ljava/nio/FloatBuffer;)V func_179110_a + a (Z)V func_179132_a + a (ZZZZ)V func_179135_a + b ()V func_179099_b + b (DDD)V func_179137_b + b (F)V func_179102_b + b (FFF)V func_179109_b + b (FFFF)V func_179114_b + b (I)V func_179122_b + b (II)V func_179112_b + b (IIII)V func_179083_b + b (Lbfl$o;)V func_179100_b + c ()V func_179118_c + c (F)V func_179153_c + c (FFF)V func_179124_c + c (FFFF)V func_179131_c + c (I)V func_179143_c + c (Lbfl$o;)Lbfl$p; func_179125_c + d ()V func_179141_d + d (I)V func_179093_d + e ()V func_179145_e + e (I)V func_179107_e + f ()V func_179140_f + f (I)V func_179116_f + g ()V func_179142_g + g (I)V func_179138_g + h ()V func_179119_h + h (I)V func_179150_h + i ()V func_179097_i + i (I)V func_179144_i + j ()V func_179126_j + j (I)V func_179103_j + k ()V func_179084_k + l ()V func_179147_l + m ()V func_179127_m + m (I)V func_179086_m + n ()V func_179106_n + n (I)V func_179128_n + o ()V func_179089_o + o (I)V func_179148_o + p ()V func_179129_p + q ()V func_179088_q + r ()V func_179113_r + u ()V func_179115_u + v ()V func_179134_v + w ()V func_179098_w + x ()V func_179090_x + y ()I func_179146_y + z ()V func_179108_z +bfl$1 net/minecraft/client/renderer/GlStateManager$1 + a field_179175_a +bfl$a net/minecraft/client/renderer/GlStateManager$AlphaState + a field_179208_a + b field_179206_b + c field_179207_c +bfl$b net/minecraft/client/renderer/GlStateManager$BlendState + a field_179213_a + b field_179211_b + c field_179212_c + d field_179209_d + e field_179210_e +bfl$c net/minecraft/client/renderer/GlStateManager$BooleanState + a field_179202_a + b field_179201_b + a ()V func_179198_a + a (Z)V func_179199_a + b ()V func_179200_b +bfl$d net/minecraft/client/renderer/GlStateManager$ClearState + a field_179205_a + b field_179203_b + c field_179204_c +bfl$e net/minecraft/client/renderer/GlStateManager$Color + a field_179195_a + b field_179193_b + c field_179194_c + d field_179192_d +bfl$f net/minecraft/client/renderer/GlStateManager$ColorLogicState + a field_179197_a + b field_179196_b +bfl$g net/minecraft/client/renderer/GlStateManager$ColorMask + a field_179188_a + b field_179186_b + c field_179187_c + d field_179185_d +bfl$h net/minecraft/client/renderer/GlStateManager$ColorMaterialState + a field_179191_a + b field_179189_b + c field_179190_c +bfl$i net/minecraft/client/renderer/GlStateManager$CullState + a field_179054_a + b field_179053_b +bfl$j net/minecraft/client/renderer/GlStateManager$DepthState + a field_179052_a + b field_179050_b + c field_179051_c +bfl$k net/minecraft/client/renderer/GlStateManager$FogState + a field_179049_a + b field_179047_b + c field_179048_c + d field_179045_d + e field_179046_e +bfl$l net/minecraft/client/renderer/GlStateManager$PolygonOffsetState + a field_179044_a + b field_179042_b + c field_179043_c + d field_179041_d +bfl$m net/minecraft/client/renderer/GlStateManager$StencilFunc + a field_179081_a + b field_179079_b + c field_179080_c +bfl$n net/minecraft/client/renderer/GlStateManager$StencilState + a field_179078_a + b field_179076_b + c field_179077_c + d field_179074_d + e field_179075_e +bfl$o net/minecraft/client/renderer/GlStateManager$TexGen + a S + b T + c R + d Q + e $VALUES + values ()[Lbfl$o; values +bfl$p net/minecraft/client/renderer/GlStateManager$TexGenCoord + a field_179067_a + b field_179065_b + c field_179066_c +bfl$q net/minecraft/client/renderer/GlStateManager$TexGenState + a field_179064_a + b field_179062_b + c field_179063_c + d field_179061_d +bfl$r net/minecraft/client/renderer/GlStateManager$TextureState + a field_179060_a + b field_179059_b +bfm net/minecraft/client/renderer/IImageBuffer + a ()V func_152634_a + a (Ljava/awt/image/BufferedImage;)Ljava/awt/image/BufferedImage; func_78432_a +bfn net/minecraft/client/renderer/ItemRenderer + a field_110931_c + b field_110929_d + c field_78455_a + d field_78453_b + e field_78454_c + f field_78451_d + g field_178111_g + h field_178112_h + i field_78450_g + a ()V func_78441_a + a (F)V func_78440_a + a (FF)V func_178101_a + a (FLbet;)V func_178098_a + a (FLbmi;)V func_178108_a + a (Lafh;)Z func_178107_a + a (Lbet;)V func_178109_a + a (Lbet;F)V func_178104_a + a (Lbet;FF)V func_178095_a + a (Lbet;FFF)V func_178097_a + a (Lbew;F)V func_178110_a + a (Lbln;)V func_180534_a + a (Lpr;Lzx;Lbgr$b;)V func_178099_a + b ()V func_78444_b + b (F)V func_78447_b + b (FF)V func_178096_b + b (Lbet;)V func_178102_b + b (Lbln;)V func_178106_b + c ()V func_78445_c + c (F)F func_178100_c + d ()V func_178103_d + d (F)V func_178105_d + e (F)V func_78448_c + f (F)V func_78442_d +bfn$1 net/minecraft/client/renderer/ItemRenderer$1 + a field_178094_a +bfo net/minecraft/client/renderer/ItemModelMesher + a field_178093_a + b field_178091_b + c field_178092_c + d field_178090_d + a ()Lbou; func_178083_a + a (Lzw;)Lbmi; func_178082_a + a (Lzw;I)Lbmi; func_178087_a + a (Lzw;ILbov;)V func_178086_a + a (Lzw;Lbfp;)V func_178080_a + a (Lzx;)Lboq; func_178089_a + b ()V func_178085_b + b (Lzw;I)Lboq; func_178088_b + b (Lzx;)I func_178084_b + c (Lzw;I)I func_178081_c +bfp net/minecraft/client/renderer/ItemMeshDefinition + a (Lzx;)Lbov; func_178113_a +bfr net/minecraft/client/renderer/RenderGlobal + A field_175015_z + B field_174991_A + C field_174992_B + D field_174993_C + E field_174987_D + F field_174988_E + G field_174989_F + H field_174990_G + I field_174997_H + J field_174998_I + K field_174999_J + L field_175000_K + M field_174994_L + N field_174995_M + O field_174996_N + P field_72739_F + Q field_72740_G + R field_72748_H + S field_72749_I + T field_72750_J + U field_175002_T + V field_175001_U + W field_175004_V + X field_175003_W + Y field_175005_X + Z field_147596_f + a field_175007_a + aa field_147597_g + ab field_147602_h + ac field_147595_R + b field_147599_m + c field_110927_h + d field_110928_i + e field_110925_j + f field_110926_k + g field_175006_g + h field_72777_q + i field_72770_i + j field_175010_j + k field_72769_h + l field_175009_l + m field_72755_R + n field_181024_n + o field_175008_n + p field_72772_v + q field_72771_w + r field_72781_x + s field_175014_r + t field_175013_s + u field_175012_t + v field_175011_u + w field_72773_u + x field_72738_E + y field_147593_P + z field_94141_F + a ()V func_72712_a + a (DDD)V func_174984_a + a (DDDF)Z func_72721_a + a (FI)V func_174976_a + a (II)V func_72720_a + a (IIIIII)V func_147585_a + a (ILcj;I)V func_180440_a + a (IZDDDDDD[I)V func_180442_a + a (J)V func_174967_a + a (Ladf;)V func_174982_a + a (Ladf;DILpk;)I func_174977_a + a (Laug;)V func_181561_a + a (Laug;IIII)V func_181563_a + a (Lbdb;)V func_72732_a + a (Lbfd;)V func_180444_a + a (Lbfd;FZ)V func_174968_a + a (Lbfx;Lbfd;Lpk;F)V func_174981_a + a (Lbni;)V func_110549_a + a (Lcj;)V func_174960_a + a (Lcj;Lbht;)Z func_174983_a + a (Lcj;Lbht;Lcq;)Lbht; func_181562_a + a (Lcy;DDDDDD[I)V func_174972_a + a (Ljava/lang/String;DDDFF)V func_72704_a + a (Ljava/lang/String;Lcj;)V func_174961_a + a (Ljava/util/Collection;Ljava/util/Collection;)V func_181023_a + a (Ljava/util/Iterator;)V func_174965_a + a (Lpk;)V func_72703_a + a (Lpk;D)Lorg/lwjgl/util/vector/Vector3f; func_174962_a + a (Lpk;DLbia;IZ)V func_174970_a + a (Lpk;F)V func_180449_a + a (Lpk;Lbia;F)V func_180446_a + a (Lwn;ILcj;I)V func_180439_a + a (Lwn;Lauh;IF)V func_72731_b + a (Lwn;Ljava/lang/String;DDDFF)V func_85102_a + b ()V func_174966_b + b (FI)V func_180447_b + b (IIIIII)V func_72725_b + b (ILcj;I)V func_180441_b + b (IZDDDDDD[I)Lbeb; func_174974_b + b (Lcj;)V func_174959_b + b (Lpk;)V func_72709_b + c ()V func_174975_c + c (FI)V func_180445_c + c (Lcj;)Ljava/util/Set; func_174978_c + d ()Z func_174985_d + e ()V func_174986_e + f ()Ljava/lang/String; func_72735_c + g ()Ljava/lang/String; func_72723_d + j ()V func_72734_e + k ()V func_72728_f + m ()V func_174979_m + n ()V func_174971_n + o ()V func_174964_o + p ()V func_174980_p + q ()V func_174963_q + r ()V func_180448_r + s ()V func_180443_s + t ()V func_174969_t +bfr$1 net/minecraft/client/renderer/RenderGlobal$1 + a field_85101_a + b field_85099_b + c field_85100_c + d field_85098_d + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bfr$2 net/minecraft/client/renderer/RenderGlobal$2 + a field_178037_a +bfr$a net/minecraft/client/renderer/RenderGlobal$ContainerLocalRenderInformation + a field_178036_a + b field_178034_b + c field_178035_c + d field_178032_d + e field_178033_e +bfs net/minecraft/client/renderer/ImageBufferDownload + a field_78438_a + b field_78436_b + c field_78437_c + a ()V func_152634_a + a (IIII)V func_78434_a + a (Ljava/awt/image/BufferedImage;)Ljava/awt/image/BufferedImage; func_78432_a + b (IIII)V func_78433_b + c (IIII)Z func_78435_c +bft net/minecraft/client/renderer/RenderList + a (Ladf;)V func_178001_a +bfw net/minecraft/client/shader/Framebuffer + a field_147622_a + b field_147620_b + c field_147621_c + d field_147618_d + e field_147619_e + f field_147616_f + g field_147617_g + h field_147624_h + i field_147625_i + j field_147623_j + a ()V func_147608_a + a (FFFF)V func_147604_a + a (I)V func_147607_a + a (II)V func_147613_a + a (IIZ)V func_178038_a + a (Z)V func_147610_a + b ()V func_147611_b + b (II)V func_147605_b + c ()V func_147612_c + c (II)V func_147615_c + d ()V func_147606_d + e ()V func_147609_e + f ()V func_147614_f +bfx net/minecraft/client/renderer/Tessellator + a field_178183_a + b field_178182_b + c field_78398_a + a ()Lbfx; func_178181_a + b ()V func_78381_a + c ()Lbfd; func_178180_c +bfy net/minecraft/client/renderer/VboRenderList + a ()V func_178010_a + a (Ladf;)V func_178001_a +bfz net/minecraft/client/renderer/VertexBufferUploader + a field_178179_a + a (Lbfd;)V func_181679_a + a (Lbmt;)V func_178178_a +bg net/minecraft/command/CommandSetPlayerTimeout + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bga net/minecraft/client/renderer/ViewFrustum + a field_178169_a + b field_178167_b + c field_178168_c + d field_178165_d + e field_178166_e + f field_178164_f + a ()V func_178160_a + a (DD)V func_178163_a + a (I)V func_178159_a + a (III)I func_178157_a + a (IIIIII)V func_178162_a + a (Lbhu;)V func_178158_a + a (Lcj;)Lbht; func_178161_a +bgb net/minecraft/client/renderer/ChestRenderer + a (Lafh;F)V func_178175_a +bgc net/minecraft/client/renderer/BlockModelShapes + a field_178129_a + b field_178127_b + c field_178128_c + a ()Lbgv; func_178120_a + a (Lafh;Lbgy;)V func_178121_a + a (Lalz;)Lbmi; func_178122_a + a ([Lafh;)V func_178123_a + b ()Lbou; func_178126_b + b (Lalz;)Lboq; func_178125_b + c ()V func_178124_c + d ()V func_178119_d +bgc$1 net/minecraft/client/renderer/BlockModelShapes$1 + a field_178143_a + a (Lalz;)Lbov; func_178132_a +bgc$2 net/minecraft/client/renderer/BlockModelShapes$2 + a field_178136_a + a (Lalz;)Lbov; func_178132_a +bgc$3 net/minecraft/client/renderer/BlockModelShapes$3 + a field_178137_a + a (Lalz;)Lbov; func_178132_a +bgc$4 net/minecraft/client/renderer/BlockModelShapes$4 + a field_178134_a + a (Lalz;)Lbov; func_178132_a +bgc$5 net/minecraft/client/renderer/BlockModelShapes$5 + a field_178135_a + a (Lalz;)Lbov; func_178132_a +bgc$6 net/minecraft/client/renderer/BlockModelShapes$6 + a field_178139_a + a (Lalz;)Lbov; func_178132_a +bgc$7 net/minecraft/client/renderer/BlockModelShapes$7 + a field_178138_a + a (Lalz;)Lbov; func_178132_a +bgc$8 net/minecraft/client/renderer/BlockModelShapes$8 + a field_178257_a +bgd net/minecraft/client/renderer/BlockRendererDispatcher + a field_175028_a + b field_175026_b + c field_175027_c + d field_175024_d + e field_175025_e + a ()Lbgc; func_175023_a + a (Lafh;I)Z func_175021_a + a (Lalz;F)V func_175016_a + a (Lalz;Ladq;Lcj;)Lboq; func_175022_a + a (Lalz;Lcj;)Lboq; func_175017_a + a (Lalz;Lcj;Ladq;Lbfd;)Z func_175018_a + a (Lalz;Lcj;Lbmi;Ladq;)V func_175020_a + a (Lbni;)V func_110549_a + b ()Lbgf; func_175019_b +bge net/minecraft/client/renderer/BlockFluidRenderer + a field_178272_a + b field_178271_b + a ()V func_178268_a + a (Ladq;Lalz;Lcj;Lbfd;)Z func_178270_a + a (Ladq;Lcj;Larm;)F func_178269_a +bgf net/minecraft/client/renderer/BlockModelRenderer + a (FFFFLjava/util/List;)V func_178264_a + a (Ladq;Lafh;Lcj;Lbfd;Ljava/util/List;[FLjava/util/BitSet;Lbgf$b;)V func_178263_a + a (Ladq;Lafh;Lcj;Lcq;IZLbfd;Ljava/util/List;Ljava/util/BitSet;)V func_178260_a + a (Ladq;Lboq;Lafh;Lcj;Lbfd;Z)Z func_178265_a + a (Ladq;Lboq;Lalz;Lcj;Lbfd;)Z func_178259_a + a (Ladq;Lboq;Lalz;Lcj;Lbfd;Z)Z func_178267_a + a (Lafh;[ILcq;[FLjava/util/BitSet;)V func_178261_a + a (Lboq;FFFF)V func_178262_a + a (Lboq;Lalz;FZ)V func_178266_a + b (Ladq;Lboq;Lafh;Lcj;Lbfd;Z)Z func_178258_b +bgf$1 net/minecraft/client/renderer/BlockModelRenderer$1 + a field_178290_a +bgf$a net/minecraft/client/renderer/BlockModelRenderer$EnumNeighborInfo + a DOWN + b UP + c NORTH + d SOUTH + e WEST + f EAST + g field_178276_g + h field_178288_h + i field_178289_i + j field_178286_j + k field_178287_k + l field_178284_l + m field_178285_m + n field_178282_n + o $VALUES + a (Lcq;)Lbgf$a; func_178273_a + values ()[Lbgf$a; values +bgf$b net/minecraft/client/renderer/BlockModelRenderer$AmbientOcclusionFace + a field_178208_a + b field_178206_b + c field_178207_c + a (IIII)I func_147778_a + a (IIIIFFFF)I func_178203_a + a (Ladq;Lafh;Lcj;Lcq;[FLjava/util/BitSet;)V func_178204_a + a (Lbgf$b;)[I access$000 + b (Lbgf$b;)[F access$100 +bgf$c net/minecraft/client/renderer/BlockModelRenderer$VertexTranslations + a DOWN + b UP + c NORTH + d SOUTH + e WEST + f EAST + g field_178191_g + h field_178200_h + i field_178201_i + j field_178198_j + k field_178199_k + l $VALUES + a (Lbgf$c;)I access$200 + a (Lcq;)Lbgf$c; func_178184_a + b (Lbgf$c;)I access$300 + c (Lbgf$c;)I access$400 + d (Lbgf$c;)I access$500 + values ()[Lbgf$c; values +bgf$d net/minecraft/client/renderer/BlockModelRenderer$Orientation + a DOWN + b UP + c NORTH + d SOUTH + e WEST + f EAST + g FLIP_DOWN + h FLIP_UP + i FLIP_NORTH + j FLIP_SOUTH + k FLIP_WEST + l FLIP_EAST + m field_178229_m + n $VALUES + values ()[Lbgf$d; values +bgg net/minecraft/client/renderer/block/model/BakedQuad + a field_178215_a + b field_178213_b + c field_178214_c + a ()[I func_178209_a + b ()Z func_178212_b + c ()I func_178211_c + d ()Lcq; func_178210_d +bgh net/minecraft/client/renderer/block/model/BlockPart + a field_178241_a + b field_178239_b + c field_178240_c + d field_178237_d + e field_178238_e + a ()V func_178235_a + a (Lcq;)[F func_178236_a +bgh$1 net/minecraft/client/renderer/block/model/BlockPart$1 + a field_178234_a +bgh$a net/minecraft/client/renderer/block/model/BlockPart$Deserializer + a (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; func_178250_a + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgh; deserialize + a (Lcom/google/gson/JsonObject;)Lbgj; func_178256_a + a (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lorg/lwjgl/util/vector/Vector3f; func_178251_a + a (Ljava/lang/String;)Lcq; func_178248_a + b (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; func_178253_b + b (Lcom/google/gson/JsonObject;)F func_178255_b + c (Lcom/google/gson/JsonObject;)Lcq$a; func_178252_c + d (Lcom/google/gson/JsonObject;)Lorg/lwjgl/util/vector/Vector3f; func_178247_d + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + e (Lcom/google/gson/JsonObject;)Lorg/lwjgl/util/vector/Vector3f; func_178249_e +bgi net/minecraft/client/renderer/block/model/BlockPartFace + a field_178246_a + b field_178244_b + c field_178245_c + d field_178242_d + e field_178243_e +bgi$a net/minecraft/client/renderer/block/model/BlockPartFace$Deserializer + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgi; deserialize + a (Lcom/google/gson/JsonObject;)I func_178337_a + b (Lcom/google/gson/JsonObject;)Ljava/lang/String; func_178340_b + c (Lcom/google/gson/JsonObject;)Lcq; func_178339_c + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize +bgj net/minecraft/client/renderer/block/model/BlockPartRotation + a field_178344_a + b field_178342_b + c field_178343_c + d field_178341_d +bgk net/minecraft/client/renderer/block/model/BlockFaceUV + a field_178351_a + b field_178350_b + a (I)F func_178348_a + a ([F)V func_178349_a + b (I)F func_178346_b + c (I)I func_178345_c + d (I)I func_178347_d +bgk$a net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgk; deserialize + a (Lcom/google/gson/JsonObject;)I func_178291_a + b (Lcom/google/gson/JsonObject;)[F func_178292_b + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize +bgl net/minecraft/client/renderer/block/model/ModelBlock + a field_178319_a + b field_178317_b + c field_178318_c + d field_178315_d + e field_178316_e + f field_178313_f + g field_178314_g + h field_178321_h + i field_178322_i + j field_178320_j + a ()Ljava/util/List; func_178298_a + a (Lbgr$b;)Lbgq; func_181681_a + a (Ljava/io/Reader;)Lbgl; func_178307_a + a (Ljava/lang/String;)Lbgl; func_178294_a + a (Ljava/lang/String;Lbgl$a;)Ljava/lang/String; func_178302_a + a (Ljava/util/Map;)V func_178299_a + b ()Z func_178309_b + b (Ljava/lang/String;)Z func_178300_b + b (Ljava/util/Map;)V func_178312_b + c ()Z func_178311_c + c (Ljava/lang/String;)Ljava/lang/String; func_178308_c + d ()Z func_178303_d + d (Ljava/lang/String;)Z func_178304_d + e ()Ljy; func_178305_e + f ()Lbgl; func_178310_f + g ()Lbgr; func_181682_g + h ()Z func_178295_k +bgl$1 net/minecraft/client/renderer/block/model/ModelBlock$1 +bgl$a net/minecraft/client/renderer/block/model/ModelBlock$Bookkeep + a field_178324_a + b field_178323_b +bgl$b net/minecraft/client/renderer/block/model/ModelBlock$Deserializer + a (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List; func_178325_a + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgl; deserialize + a (Lcom/google/gson/JsonObject;)Z func_178328_a + b (Lcom/google/gson/JsonObject;)Ljava/util/Map; func_178329_b + c (Lcom/google/gson/JsonObject;)Ljava/lang/String; func_178326_c + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize +bgl$c net/minecraft/client/renderer/block/model/ModelBlock$LoopException +bgm net/minecraft/client/renderer/block/model/ModelBlockDefinition + a field_178333_a + b field_178332_b + a (Ljava/io/Reader;)Lbgm; func_178331_a + b (Ljava/lang/String;)Lbgm$d; func_178330_b + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode +bgm$a net/minecraft/client/renderer/block/model/ModelBlockDefinition$Deserializer + a (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List; func_178334_a + a (Lcom/google/gson/JsonDeserializationContext;Ljava/util/Map$Entry;)Lbgm$d; func_178335_a + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgm; deserialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize +bgm$b net/minecraft/client/renderer/block/model/ModelBlockDefinition$MissingVariantException + a field_178438_a +bgm$c net/minecraft/client/renderer/block/model/ModelBlockDefinition$Variant + a field_178437_a + b field_178435_b + c field_178436_c + d field_178434_d + a ()Ljy; func_178431_a + b ()Lbor; func_178432_b + c ()Z func_178433_c + d ()I func_178430_d + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode +bgm$c$a net/minecraft/client/renderer/block/model/ModelBlockDefinition$Variant$Deserializer + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgm$c; deserialize + a (Lcom/google/gson/JsonObject;)Lbor; func_178428_a + a (Ljava/lang/String;)Ljy; func_178426_a + b (Lcom/google/gson/JsonObject;)Ljava/lang/String; func_178424_b + c (Lcom/google/gson/JsonObject;)I func_178427_c + d (Lcom/google/gson/JsonObject;)Z func_178429_d + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize +bgm$d net/minecraft/client/renderer/block/model/ModelBlockDefinition$Variants + a field_178423_a + b field_178422_b + a (Lbgm$d;)Ljava/lang/String; access$000 + b ()Ljava/util/List; func_178420_b + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode +bgn net/minecraft/client/renderer/block/model/BreakingFour + d field_178218_d + a (I)V func_178216_a + e ()V func_178217_e +bgn$1 net/minecraft/client/renderer/block/model/BreakingFour$1 + a field_178419_a +bgo net/minecraft/client/renderer/block/model/FaceBakery + a field_178418_a + b field_178417_b + a ()Lorg/lwjgl/util/vector/Matrix4f; func_178411_a + a (I[ILcq;Lbgk;Lbmi;)V func_178401_a + a (Lbgi;Lbmi;Lcq;[FLbor;Lbgj;ZZ)[I func_178405_a + a (Lcq;)I func_178413_a + a (Lorg/lwjgl/util/vector/Vector3f;Lbgj;)V func_178407_a + a (Lorg/lwjgl/util/vector/Vector3f;Lcq;ILbor;Z)I func_178415_a + a (Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;)[F func_178403_a + a (Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;Lbgi;Lbmi;Lcq;Lbor;Lbgj;ZZ)Lbgg; func_178414_a + a (Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Matrix4f;Lorg/lwjgl/util/vector/Vector3f;)V func_178406_a + a ([I)Lcq; func_178410_a + a ([IIILorg/lwjgl/util/vector/Vector3f;ILbmi;Lbgk;)V func_178404_a + a ([IILcq;Lbgi;[FLbmi;Lbor;Lbgj;ZZ)V func_178402_a + a ([ILcq;)V func_178408_a + a ([ILcq;Lbgk;Lbmi;)V func_178409_a + b (Lcq;)F func_178412_b +bgo$1 net/minecraft/client/renderer/block/model/FaceBakery$1 + a field_178400_a + b field_178399_b +bgp net/minecraft/client/renderer/block/model/ItemModelGenerator + a field_178398_a + a (ILjava/lang/String;Lbmi;)Ljava/util/List; func_178394_a + a (Lbgp$b;Ljava/util/List;[IIIIIZ)V func_178396_a + a (Lbmh;Lbgl;)Lbgl; func_178392_a + a (Lbmi;)Ljava/util/List; func_178393_a + a (Lbmi;Ljava/lang/String;I)Ljava/util/List; func_178397_a + a (Ljava/util/List;Lbgp$b;II)V func_178395_a + a ([IIIII)Z func_178391_a +bgp$1 net/minecraft/client/renderer/block/model/ItemModelGenerator$1 + a field_178390_a +bgp$a net/minecraft/client/renderer/block/model/ItemModelGenerator$Span + a field_178389_a + b field_178387_b + c field_178388_c + d field_178386_d + a ()Lbgp$b; func_178383_a + a (I)V func_178382_a + b ()I func_178385_b + c ()I func_178384_c + d ()I func_178381_d +bgp$b net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing + a UP + b DOWN + c LEFT + d RIGHT + e field_178376_e + f field_178373_f + g field_178374_g + h $VALUES + a ()Lcq; func_178367_a + a (Lbgp$b;)Z access$000 + b ()I func_178372_b + c ()I func_178371_c + d ()Z func_178369_d + values ()[Lbgp$b; values +bgq net/minecraft/client/renderer/block/model/ItemTransformVec3f + a field_178366_a + b field_178364_b + c field_178365_c + d field_178363_d + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode +bgq$a net/minecraft/client/renderer/block/model/ItemTransformVec3f$Deserializer + a field_178362_a + b field_178360_b + c field_178361_c + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgq; deserialize + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Lorg/lwjgl/util/vector/Vector3f;)Lorg/lwjgl/util/vector/Vector3f; func_178358_a + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize +bgr net/minecraft/client/renderer/block/model/ItemCameraTransforms + a field_178357_a + b field_181690_b + c field_181691_c + d field_181692_d + e field_181693_e + f field_181694_f + g field_181695_g + h field_181696_h + i field_181697_i + j field_181698_j + k field_178355_b + l field_178356_c + m field_178353_d + n field_178354_e + o field_181699_o + p field_181700_p + a (Lbgr$b;)V func_181689_a + b (Lbgr$b;)Lbgq; func_181688_b + c (Lbgr$b;)Z func_181687_c +bgr$1 net/minecraft/client/renderer/block/model/ItemCameraTransforms$1 + a field_181684_a +bgr$a net/minecraft/client/renderer/block/model/ItemCameraTransforms$Deserializer + a (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;Ljava/lang/String;)Lbgq; func_181683_a + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbgr; deserialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize +bgr$b net/minecraft/client/renderer/block/model/ItemCameraTransforms$TransformType + a NONE + b THIRD_PERSON + c FIRST_PERSON + d HEAD + e GUI + f GROUND + g FIXED + h $VALUES + values ()[Lbgr$b; values +bgu net/minecraft/client/renderer/block/statemap/StateMapperBase + b field_178133_b + a (Lafh;)Ljava/util/Map; func_178130_a + a (Lalz;)Lbov; func_178132_a + a (Ljava/util/Map;)Ljava/lang/String; func_178131_a +bgv net/minecraft/client/renderer/block/statemap/BlockStateMapper + a field_178450_a + b field_178449_b + a ()Ljava/util/Map; func_178446_a + a (Lafh;Lbgy;)V func_178447_a + a ([Lafh;)V func_178448_a +bgw net/minecraft/client/renderer/block/statemap/DefaultStateMapper + a (Lalz;)Lbov; func_178132_a +bgx net/minecraft/client/renderer/block/statemap/StateMap + a field_178142_a + c field_178141_c + d field_178140_d + a (Lalz;)Lbov; func_178132_a +bgx$1 net/minecraft/client/renderer/block/statemap/StateMap$1 +bgx$a net/minecraft/client/renderer/block/statemap/StateMap$Builder + a field_178445_a + b field_178443_b + c field_178444_c + a ()Lbgx; func_178441_a + a (Lamo;)Lbgx$a; func_178440_a + a (Ljava/lang/String;)Lbgx$a; func_178439_a + a ([Lamo;)Lbgx$a; func_178442_a +bgy net/minecraft/client/renderer/block/statemap/IStateMapper + a (Lafh;)Ljava/util/Map; func_178130_a +bh net/minecraft/command/CommandSetSpawnpoint + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bha net/minecraft/client/renderer/tileentity/TileEntityBannerRenderer + c field_178466_c + d field_178464_d + e field_178465_e + a (Laku;)Ljy; func_178463_a + a (Laku;DDDFI)V func_180535_a + a (Lakw;DDDFI)V func_180535_a +bha$1 net/minecraft/client/renderer/tileentity/TileEntityBannerRenderer$1 +bha$a net/minecraft/client/renderer/tileentity/TileEntityBannerRenderer$TimedBannerTexture + a field_178472_a + b field_178471_b +bhb net/minecraft/client/renderer/tileentity/TileEntityBeaconRenderer + c field_147523_b + a ()Z func_181055_a + a (Lakv;DDDFI)V func_180535_a + a (Lakw;DDDFI)V func_180535_a +bhc net/minecraft/client/renderer/tileentity/TileEntityRendererDispatcher + a field_147556_a + b field_147554_b + c field_147555_c + d field_147552_d + e field_147553_e + f field_147550_f + g field_147551_g + h field_147562_h + i field_147563_i + j field_147560_j + k field_147561_k + l field_147558_l + m field_147559_m + n field_147557_n + a ()Lavn; func_147548_a + a (Ladm;)V func_147543_a + a (Ladm;Lbmj;Lavn;Lpk;F)V func_178470_a + a (Lakw;DDDF)V func_147549_a + a (Lakw;DDDFI)V func_178469_a + a (Lakw;FI)V func_180546_a + a (Ljava/lang/Class;)Lbhd; func_147546_a + b (Lakw;)Lbhd; func_147547_b +bhd net/minecraft/client/renderer/tileentity/TileEntitySpecialRenderer + a field_178460_a + b field_147501_a + a ()Z func_181055_a + a (Lakw;DDDFI)V func_180535_a + a (Lbhc;)V func_147497_a + a (Ljy;)V func_147499_a + b ()Ladm; func_178459_a + c ()Lavn; func_147498_b +bhe net/minecraft/client/renderer/tileentity/TileEntityChestRenderer + c field_147507_b + d field_147508_c + e field_147505_d + f field_147506_e + g field_147503_f + h field_147504_g + i field_147510_h + j field_147511_i + k field_147509_j + a (Lakw;DDDFI)V func_180535_a + a (Laky;DDDFI)V func_180535_a +bhf net/minecraft/client/renderer/tileentity/TileEntityEnchantmentTableRenderer + c field_147540_b + d field_147541_c + a (Lakw;DDDFI)V func_180535_a + a (Lale;DDDFI)V func_180535_a +bhg net/minecraft/client/renderer/tileentity/TileEntityEnderChestRenderer + c field_147520_b + d field_147521_c + a (Lakw;DDDFI)V func_180535_a + a (Lalf;DDDFI)V func_180535_a +bhh net/minecraft/client/renderer/tileentity/TileEntityMobSpawnerRenderer + a (Ladd;DDDF)V func_147517_a + a (Lakw;DDDFI)V func_180535_a + a (Lall;DDDFI)V func_180535_a +bhi net/minecraft/client/renderer/tileentity/TileEntityPistonRenderer + c field_178462_c + a (Lakw;DDDFI)V func_180535_a + a (Lalu;DDDFI)V func_180535_a +bhj net/minecraft/client/renderer/tileentity/TileEntitySignRenderer + c field_147513_b + d field_147514_c + a (Lakw;DDDFI)V func_180535_a + a (Laln;DDDFI)V func_180535_a +bhk net/minecraft/client/renderer/tileentity/TileEntitySkullRenderer + c field_147536_b + d field_147537_c + e field_147534_d + f field_147535_e + g field_147532_f + h field_178467_h + i field_178468_i + a (FFFLcq;FILcom/mojang/authlib/GameProfile;I)V func_180543_a + a (Lakw;DDDFI)V func_180535_a + a (Lalo;DDDFI)V func_180535_a + a (Lbhc;)V func_147497_a +bhk$1 net/minecraft/client/renderer/tileentity/TileEntitySkullRenderer$1 + a field_178458_a +bhl net/minecraft/client/renderer/tileentity/TileEntityEndPortalRenderer + c field_147528_b + d field_147529_c + e field_147526_d + f field_147527_e + a (FFFF)Ljava/nio/FloatBuffer; func_147525_a + a (Lakw;DDDFI)V func_180535_a + a (Lalp;DDDFI)V func_180535_a +bhn net/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator + a field_178553_a + b field_178551_b + c field_178552_c + d field_178549_d + e field_178550_e + f field_178547_f + g field_178548_g + h field_178554_h + a ()Lbhn$a; func_178546_a + a (Lbfg;)V func_178541_a + a (Lbhn$a;)V func_178535_a + a (Lbhq;)V func_178543_a + a (Ljava/lang/Runnable;)V func_178539_a + b ()Lbht; func_178536_b + c ()Lbhq; func_178544_c + d ()Lbfg; func_178545_d + e ()V func_178542_e + f ()Ljava/util/concurrent/locks/ReentrantLock; func_178540_f + g ()Lbhn$b; func_178538_g + h ()Z func_178537_h +bhn$a net/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator$Status + a PENDING + b COMPILING + c UPLOADING + d DONE + e $VALUES + values ()[Lbhn$a; values +bhn$b net/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator$Type + a REBUILD_CHUNK + b RESORT_TRANSPARENCY + c $VALUES + values ()[Lbhn$b; values +bho net/minecraft/client/renderer/chunk/ChunkRenderDispatcher + a field_178523_a + b field_178521_b + c field_178522_c + d field_178519_d + e field_178520_e + f field_178517_f + g field_178518_g + h field_178524_h + i field_178525_i + a ()Ljava/lang/String; func_178504_a + a (J)Z func_178516_a + a (Ladf;Lbfd;Lbht;Lbhq;)Lcom/google/common/util/concurrent/ListenableFuture; func_178503_a + a (Lbfd;ILbht;)V func_178510_a + a (Lbfd;Lbmt;)V func_178506_a + a (Lbfg;)V func_178512_a + a (Lbho;)Ljava/util/concurrent/BlockingQueue; access$000 + a (Lbht;)Z func_178507_a + b ()V func_178514_b + b (Lbht;)Z func_178505_b + c ()Lbfg; func_178515_c + c (Lbht;)Z func_178509_c + d ()Lbhn; func_178511_d + e ()V func_178513_e +bho$1 net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$1 + a field_178527_a + b field_178526_b + run ()V run +bho$2 net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$2 + a field_178529_a + b field_178528_b + run ()V run +bho$3 net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$3 + a field_178534_a + b field_178532_b + c field_178533_c + d field_178530_d + e field_178531_e + run ()V run +bhp net/minecraft/client/renderer/chunk/ChunkRenderWorker + a field_152478_a + b field_178477_b + c field_178478_c + a ()Lorg/apache/logging/log4j/Logger; access$100 + a (Lbhn;)V func_178474_a + a (Lbhp;Lbhn;)V access$000 + b ()Lbfg; func_178475_b + b (Lbhn;)V func_178473_b + run ()V run +bhp$1 net/minecraft/client/renderer/chunk/ChunkRenderWorker$1 + a field_178480_a + b field_178479_b + run ()V run +bhp$2 net/minecraft/client/renderer/chunk/ChunkRenderWorker$2 + a field_178484_a + b field_178482_b + c field_178483_c + a (Ljava/util/List;)V onSuccess + onFailure (Ljava/lang/Throwable;)V onFailure + onSuccess (Ljava/lang/Object;)V onSuccess +bhq net/minecraft/client/renderer/chunk/CompiledChunk + a field_178502_a + b field_178500_b + c field_178501_c + d field_178498_d + e field_178499_e + f field_178496_f + g field_178497_g + a ()Z func_178489_a + a (Ladf;)V func_178486_a + a (Lakw;)V func_178490_a + a (Lbfd$a;)V func_178494_a + a (Lbhx;)V func_178488_a + a (Lcq;Lcq;)Z func_178495_a + b ()Ljava/util/List; func_178485_b + b (Ladf;)Z func_178491_b + c ()Lbfd$a; func_178487_c + c (Ladf;)V func_178493_c + d (Ladf;)Z func_178492_d +bhq$1 net/minecraft/client/renderer/chunk/CompiledChunk$1 + a (Ladf;)V func_178486_a + a (Lcq;Lcq;)Z func_178495_a + c (Ladf;)V func_178493_c +bhr net/minecraft/client/renderer/chunk/ListChunkFactory + a (Ladm;Lbfr;Lcj;I)Lbht; func_178602_a +bhs net/minecraft/client/renderer/chunk/ListedRenderChunk + d field_178601_d + a ()V func_178566_a + a (Ladf;Lbhq;)I func_178600_a +bht net/minecraft/client/renderer/chunk/RenderChunk + a field_178592_a + b field_178590_b + c field_178591_c + d field_178588_d + e field_178589_e + f field_178586_f + g field_178587_g + h field_178598_h + i field_178599_i + j field_181056_j + k field_178596_j + l field_178597_k + m field_178594_l + n field_178595_m + o field_178593_n + p field_181702_p + a ()V func_178566_a + a (FFFLbhn;)V func_178570_a + a (I)Z func_178577_a + a (Ladf;FFFLbfd;Lbhq;)V func_178584_a + a (Lbfd;Lcj;)V func_178573_a + a (Lbhq;)V func_178580_a + a (Lcj;)V func_178576_a + a (Lcq;)Lcj; func_181701_a + a (Z)V func_178575_a + b ()V func_178578_b + b (FFFLbhn;)V func_178581_b + b (I)Lbmt; func_178565_b + c ()Ljava/util/concurrent/locks/ReentrantLock; func_178579_c + d ()Lbhn; func_178574_d + e ()Lbhn; func_178582_e + f ()V func_178572_f + g ()Lbhq; func_178571_g + h ()V func_178585_h + j ()Lcj; func_178568_j + l ()Z func_178569_m + m ()V func_178567_n +bhu net/minecraft/client/renderer/chunk/IRenderChunkFactory + a (Ladm;Lbfr;Lcj;I)Lbht; func_178602_a +bhv net/minecraft/client/renderer/chunk/VboChunkFactory + a (Ladm;Lbfr;Lcj;I)Lbht; func_178602_a +bhw net/minecraft/client/renderer/chunk/VisGraph + a field_178616_a + b field_178614_b + c field_178615_c + d field_178612_d + e field_178613_e + f field_178611_f + a ()Lbhx; func_178607_a + a (I)Ljava/util/Set; func_178604_a + a (III)I func_178605_a + a (ILcq;)I func_178603_a + a (ILjava/util/Set;)V func_178610_a + a (Lcj;)V func_178606_a + b (Lcj;)Ljava/util/Set; func_178609_b + c (Lcj;)I func_178608_c +bhw$1 net/minecraft/client/renderer/chunk/VisGraph$1 + a field_178617_a +bhx net/minecraft/client/renderer/chunk/SetVisibility + a field_178623_a + b field_178622_b + a (Lcq;Lcq;)Z func_178621_a + a (Lcq;Lcq;Z)V func_178619_a + a (Ljava/util/Set;)V func_178620_a + a (Z)V func_178618_a + toString ()Ljava/lang/String; toString +bi net/minecraft/command/CommandShowSeed + a ()I func_82362_a + a (Lm;)Z func_71519_b + a (Lm;[Ljava/lang/String;)V func_71515_b + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bia net/minecraft/client/renderer/culling/ICamera + a (DDD)V func_78547_a + a (Laug;)Z func_78546_a +bib net/minecraft/client/renderer/culling/ClippingHelperImpl + e field_78563_e + f field_78561_f + g field_78562_g + h field_78564_h + a ()Lbid; func_78558_a + a ([F)V func_180547_a + b ()V func_78560_b +bic net/minecraft/client/renderer/culling/Frustum + a field_78552_a + b field_78550_b + c field_78551_c + d field_78549_d + a (DDD)V func_78547_a + a (Laug;)Z func_78546_a + b (DDDDDD)Z func_78548_b +bid net/minecraft/client/renderer/culling/ClippingHelper + a field_78557_a + b field_178625_b + c field_178626_c + d field_78554_d + a ([FDDD)D func_178624_a + b (DDDDDD)Z func_78553_b +big net/minecraft/client/renderer/entity/ArmorStandRenderer + a field_177103_a + a ()Lbat; func_177087_b + a (Lpk;)Ljy; func_110775_a + a (Lpr;)Z func_177070_b + a (Lpr;FFF)V func_77043_a + a (Lum;)Ljy; func_110775_a + a (Lum;FFF)V func_77043_a + b ()Lbbo; func_177087_b + b (Lpk;)Z func_177070_b + b (Lum;)Z func_177070_b +big$1 net/minecraft/client/renderer/entity/ArmorStandRenderer$1 + a field_177196_a + a ()V func_177177_a +bih net/minecraft/client/renderer/entity/RenderArrow + a field_110780_a + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lwq;)Ljy; func_110775_a + a (Lwq;DDDFF)V func_76986_a +bii net/minecraft/client/renderer/entity/RenderBat + a field_110835_a + a (Lpk;)Ljy; func_110775_a + a (Lpr;F)V func_77041_b + a (Lpr;FFF)V func_77043_a + a (Ltk;)Ljy; func_110775_a + a (Ltk;F)V func_77041_b + a (Ltk;FFF)V func_77043_a +bij net/minecraft/client/renderer/entity/RenderBlaze + a field_110837_a + a (Lpk;)Ljy; func_110775_a + a (Lvl;)Ljy; func_110775_a +bik net/minecraft/client/renderer/entity/RenderBoat + a field_76998_a + e field_110782_f + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lux;)Ljy; func_110775_a + a (Lux;DDDFF)V func_76986_a +bil net/minecraft/client/renderer/entity/RenderCaveSpider + a field_110893_a + a (Lpk;)Ljy; func_110775_a + a (Lpr;F)V func_77041_b + a (Lvm;)Ljy; func_110775_a + a (Lvm;F)V func_77041_b + a (Lwc;)Ljy; func_110775_a +bim net/minecraft/client/renderer/entity/RenderChicken + a field_110920_a + a (Lpk;)Ljy; func_110775_a + a (Ltn;)Ljy; func_110775_a + a (Ltn;F)F func_77044_a + b (Lpr;F)F func_77044_a +bin net/minecraft/client/renderer/entity/RenderCow + a field_110833_a + a (Lpk;)Ljy; func_110775_a + a (Lto;)Ljy; func_110775_a +bio net/minecraft/client/renderer/entity/RenderCreeper + a field_110830_f + a (Lpk;)Ljy; func_110775_a + a (Lpr;F)V func_77041_b + a (Lpr;FF)I func_77030_a + a (Lvn;)Ljy; func_110775_a + a (Lvn;F)V func_77041_b + a (Lvn;FF)I func_77030_a +bip net/minecraft/client/renderer/entity/RenderEntity + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a +biq net/minecraft/client/renderer/tileentity/RenderEnderCrystal + a field_110787_a + e field_76995_b + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Luf;)Ljy; func_110775_a + a (Luf;DDDFF)V func_76986_a +bir net/minecraft/client/renderer/entity/RenderDragon + a field_77084_b + e field_110843_g + j field_110842_f + k field_110844_k + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lpr;DDDFF)V func_76986_a + a (Lpr;FFF)V func_77043_a + a (Lpr;FFFFFF)V func_77036_a + a (Lps;DDDFF)V func_76986_a + a (Lug;)Ljy; func_110775_a + a (Lug;DDDF)V func_180574_a + a (Lug;DDDFF)V func_76986_a + a (Lug;FFF)V func_77043_a + a (Lug;FFFFFF)V func_77036_a +bis net/minecraft/client/renderer/entity/RenderEnderman + a field_110839_f + e field_77078_a + j field_77077_b + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lpr;DDDFF)V func_76986_a + a (Lps;DDDFF)V func_76986_a + a (Lvo;)Ljy; func_110775_a + a (Lvo;DDDFF)V func_76986_a +bit net/minecraft/client/renderer/entity/RenderEndermite + a field_177108_a + a (Lpk;)Ljy; func_110775_a + a (Lvp;)F func_77037_a + b (Lpr;)F func_77037_a + b (Lvp;)Ljy; func_110775_a +biu net/minecraft/client/renderer/entity/RenderManager + a field_78724_e + b field_78722_g + c field_78734_h + d field_147941_i + e field_78735_i + f field_78732_j + g field_78733_k + h field_78730_l + i field_78731_m + j field_78728_n + k field_78729_o + l field_178636_l + m field_178637_m + n field_78736_p + o field_78725_b + p field_78726_c + q field_78723_d + r field_178639_r + s field_178638_s + t field_85095_o + a ()Z func_178627_a + a (DDD)V func_178628_a + a (F)V func_178631_a + a (Ladm;)V func_78717_a + a (Ladm;Lavn;Lpk;Lpk;Lavh;F)V func_180597_a + a (Ljava/lang/Class;)Lbiv; func_78715_a + a (Lpk;)Lbiv; func_78713_a + a (Lpk;DDDFF)Z func_147940_a + a (Lpk;DDDFFZ)Z func_147939_a + a (Lpk;F)Z func_147937_a + a (Lpk;FZ)Z func_147936_a + a (Lpk;Lbia;DDD)Z func_178635_a + a (Z)V func_178633_a + b ()Z func_178634_b + b (DDD)D func_78714_a + b (Lpk;DDDFF)V func_85094_b + b (Lpk;F)V func_178630_b + b (Z)V func_178629_b + c ()Lavn; func_78716_a + c (Z)V func_178632_c +biv net/minecraft/client/renderer/entity/Render + a field_110778_a + b field_76990_c + c field_76989_e + d field_76987_f + a ()Ladm; func_76982_b + a (Lafh;DDDLcj;FFDDD)V func_180549_a + a (Laug;DDD)V func_76978_a + a (Ljy;)V func_110776_a + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDD)V func_177067_a + a (Lpk;DDDF)V func_76977_a + a (Lpk;DDDFF)V func_76986_a + a (Lpk;DDDLjava/lang/String;FD)V func_177069_a + a (Lpk;Lbia;DDD)Z func_177071_a + a (Lpk;Ljava/lang/String;DDDI)V func_147906_a + b (Lpk;)Z func_177070_b + b (Lpk;DDDFF)V func_76979_b + c ()Lavn; func_76983_a + c (Lpk;)Z func_180548_c + c (Lpk;DDDFF)V func_76975_c + d ()Lbiu; func_177068_d +biw net/minecraft/client/renderer/entity/RenderXPOrb + a field_110785_a + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lpp;)Ljy; func_110775_a + a (Lpp;DDDFF)V func_76986_a +bix net/minecraft/client/renderer/entity/RenderFallingBlock + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Luy;)Ljy; func_110775_a + a (Luy;DDDFF)V func_76986_a +biy net/minecraft/client/renderer/entity/RenderFireball + a field_77002_a + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lws;)Ljy; func_110775_a + a (Lws;DDDFF)V func_76986_a +biz net/minecraft/client/renderer/entity/RenderFish + a field_110792_a + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lur;)Ljy; func_110775_a + a (Lur;DDDFF)V func_76986_a +bj net/minecraft/command/CommandSpreadPlayers + a ()I func_82362_a + a (Lbj$a;DLadm;Ljava/util/Random;DDDD[Lbj$a;Z)I func_110668_a + a (Ljava/util/List;Ladm;[Lbj$a;Z)D func_110671_a + a (Ljava/util/Random;IDDDD)[Lbj$a; func_110670_a + a (Lm;Ljava/util/List;Lbj$a;DDLadm;Z)V func_110669_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b (Ljava/util/List;)I func_110667_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bj$a net/minecraft/command/CommandSpreadPlayers$Position + a field_111101_a + b field_111100_b + a ()V func_111095_a + a (DDDD)Z func_111093_a + a (Ladm;)I func_111092_a + a (Lbj$a;)D func_111099_a + a (Ljava/util/Random;DDDD)V func_111097_a + b ()F func_111096_b + b (Ladm;)Z func_111098_b + b (Lbj$a;)V func_111094_b +bja net/minecraft/client/renderer/entity/RenderGhast + a field_110869_a + e field_110868_f + a (Lpk;)Ljy; func_110775_a + a (Lpr;F)V func_77041_b + a (Lvr;)Ljy; func_110775_a + a (Lvr;F)V func_77041_b +bjb net/minecraft/client/renderer/entity/RenderGiantZombie + a field_110871_a + e field_77073_a + C_ ()V func_82422_c + a (Lpk;)Ljy; func_110775_a + a (Lpr;F)V func_77041_b + a (Lvs;)Ljy; func_110775_a + a (Lvs;F)V func_77041_b +bjb$1 net/minecraft/client/renderer/entity/RenderGiantZombie$1 + a field_177197_a + a ()V func_177177_a +bjc net/minecraft/client/renderer/entity/RenderGuardian + a field_177115_a + e field_177114_e + j field_177116_j + k field_177117_k + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lpk;Lbia;DDD)Z func_177071_a + a (Lpr;DDDFF)V func_76986_a + a (Lpr;DF)Laui; func_177110_a + a (Lpr;F)V func_77041_b + a (Lps;DDDFF)V func_76986_a + a (Lps;Lbia;DDD)Z func_177071_a + a (Lvt;)Ljy; func_110775_a + a (Lvt;DDDFF)V func_76986_a + a (Lvt;F)V func_77041_b + a (Lvt;Lbia;DDD)Z func_177071_a +bjd net/minecraft/client/renderer/entity/RenderHorse + a field_110852_a + e field_110850_f + j field_110851_g + k field_110855_h + l field_110854_k + m field_110853_l + a (Lpk;)Ljy; func_110775_a + a (Lpr;F)V func_77041_b + a (Ltp;)Ljy; func_110775_a + a (Ltp;F)V func_77041_b + b (Ltp;)Ljy; func_110848_b +bje net/minecraft/client/renderer/entity/RenderBiped + a field_77071_a + e field_77070_b + j field_177118_j + C_ ()V func_82422_c + a (Lpk;)Ljy; func_110775_a + a (Lps;)Ljy; func_110775_a +bjf net/minecraft/client/renderer/entity/RenderEntityItem + a field_177080_a + e field_177079_e + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Luz;)Ljy; func_110775_a + a (Luz;DDDFF)V func_76986_a + a (Luz;DDDFLboq;)I func_177077_a + a (Lzx;)I func_177078_a +bjg net/minecraft/client/renderer/tileentity/RenderItemFrame + a field_110789_a + e field_147917_g + f field_177072_f + g field_177073_g + h field_177074_h + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDD)V func_177067_a + a (Lpk;DDDFF)V func_76986_a + a (Luo;)Ljy; func_110775_a + a (Luo;DDD)V func_177067_a + a (Luo;DDDFF)V func_76986_a + b (Luo;)V func_82402_b +bjh net/minecraft/client/renderer/entity/RenderItem + a field_77023_b + b field_110798_h + c field_175058_l + d field_175059_m + e field_175057_n + a ()Lbfo; func_175037_a + a (IIZ)V func_180452_a + a (Lafh;ILjava/lang/String;)V func_175029_a + a (Lafh;Ljava/lang/String;)V func_175031_a + a (Lavn;Lzx;II)V func_175030_a + a (Lavn;Lzx;IILjava/lang/String;)V func_180453_a + a (Lbfd;IIIIIIII)V func_181565_a + a (Lbfd;Lbgg;)V func_175038_a + a (Lbfd;Lbgg;I)V func_175033_a + a (Lbfd;Ljava/util/List;ILzx;)V func_175032_a + a (Lbgq;)Z func_183005_a + a (Lbni;)V func_110549_a + a (Lboq;)V func_180451_a + a (Lboq;I)V func_175035_a + a (Lboq;ILzx;)V func_175045_a + a (Lboq;Lzx;)V func_175036_a + a (Lzw;ILjava/lang/String;)V func_175048_a + a (Lzw;Ljava/lang/String;)V func_175047_a + a (Lzx;)Z func_175050_a + a (Lzx;II)V func_175042_a + a (Lzx;Lbgr$b;)V func_181564_a + a (Lzx;Lboq;)V func_180454_a + a (Lzx;Lboq;Lbgr$b;)V func_175040_a + a (Lzx;Lpr;Lbgr$b;)V func_175049_a + a (Z)V func_175039_a + b ()V func_175041_b + b (Lzx;)V func_175046_c + b (Lzx;II)V func_180450_b +bjh$1 net/minecraft/client/renderer/entity/RenderItem$1 + a field_147929_a + b field_147928_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bjh$2 net/minecraft/client/renderer/entity/RenderItem$2 + a field_147926_a + b field_147925_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bjh$3 net/minecraft/client/renderer/entity/RenderItem$3 + a field_147935_a + b field_147934_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bjh$4 net/minecraft/client/renderer/entity/RenderItem$4 + a field_147932_a + b field_147931_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bjh$5 net/minecraft/client/renderer/entity/RenderItem$5 + a field_178117_a + a (Lzx;)Lbov; func_178113_a +bjh$6 net/minecraft/client/renderer/entity/RenderItem$6 + a field_178118_a + a (Lzx;)Lbov; func_178113_a +bjh$7 net/minecraft/client/renderer/entity/RenderItem$7 + a field_178115_a + a (Lzx;)Lbov; func_178113_a +bjh$8 net/minecraft/client/renderer/entity/RenderItem$8 + a field_178116_a + a (Lzx;)Lbov; func_178113_a +bjh$9 net/minecraft/client/renderer/entity/RenderItem$9 + a field_178114_a + a (Lzx;)Lbov; func_178113_a +bji net/minecraft/client/renderer/entity/RenderMagmaCube + a field_110873_a + a (Lpk;)Ljy; func_110775_a + a (Lpr;F)V func_77041_b + a (Lvu;)Ljy; func_110775_a + a (Lvu;F)V func_77041_b +bjj net/minecraft/client/renderer/entity/RenderLeashKnot + a field_110802_a + e field_110801_f + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lup;)Ljy; func_110775_a + a (Lup;DDDFF)V func_76986_a +bjk net/minecraft/client/renderer/entity/RenderLightningBolt + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Luv;)Ljy; func_110775_a + a (Luv;DDDFF)V func_76986_a +bjl net/minecraft/client/renderer/entity/RendererLivingEntity + a field_147923_a + e field_177096_e + f field_77045_g + g field_177095_g + h field_177097_h + i field_177098_i + C_ ()V func_82422_c + a (FFF)F func_77034_a + a (Lblb;)Z func_177094_a + a (Lpk;DDD)V func_177067_a + a (Lpk;DDDFF)V func_76986_a + a (Lpr;)Z func_177070_b + a (Lpr;DDD)V func_77039_a + a (Lpr;DDDFF)V func_76986_a + a (Lpr;F)V func_77041_b + a (Lpr;FF)I func_77030_a + a (Lpr;FFF)V func_77043_a + a (Lpr;FFFFFF)V func_77036_a + a (Lpr;FFFFFFF)V func_177093_a + a (Lpr;FZ)Z func_177092_a + a (Z)V func_177086_a + b ()Lbbo; func_177087_b + b (Lblb;)Z func_177089_b + b (Lpk;)Z func_177070_b + b (Lpr;)F func_77037_a + b (Lpr;DDD)V func_177067_a + b (Lpr;F)F func_77044_a + c (Lpr;)Z func_177088_c + c (Lpr;F)Z func_177090_c + d (Lpr;F)F func_77040_d + e ()V func_180565_e + f ()V func_177091_f +bjl$1 net/minecraft/client/renderer/entity/RendererLivingEntity$1 + a field_178679_a +bjm net/minecraft/client/renderer/entity/RenderMinecart + a field_77013_a + e field_110804_g + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lva;)Ljy; func_110775_a + a (Lva;DDDFF)V func_76986_a + a (Lva;FLalz;)V func_180560_a +bjn net/minecraft/client/renderer/entity/RenderMinecartMobSpawner + a (Lva;FLalz;)V func_180560_a + a (Lvh;FLalz;)V func_180560_a +bjo net/minecraft/client/renderer/entity/RenderLiving + a (DDD)D func_110828_a + a (Lpk;DDDFF)V func_76986_a + a (Lpk;Lbia;DDD)Z func_177071_a + a (Lpr;)Z func_177070_b + a (Lpr;DDDFF)V func_76986_a + a (Lps;DDDFF)V func_76986_a + a (Lps;F)V func_177105_a + a (Lps;Lbia;DDD)Z func_177071_a + b (Lpk;)Z func_177070_b + b (Lps;)Z func_177070_b + b (Lps;DDDFF)V func_110827_b +bjp net/minecraft/client/renderer/entity/RenderMooshroom + a field_110880_a + a (Lpk;)Ljy; func_110775_a + a (Ltr;)Ljy; func_110775_a +bjq net/minecraft/client/renderer/entity/RenderOcelot + a field_110877_a + e field_110875_f + j field_110876_g + k field_110878_h + a (Lpk;)Ljy; func_110775_a + a (Lpr;F)V func_77041_b + a (Lts;)Ljy; func_110775_a + a (Lts;F)V func_77041_b +bjr net/minecraft/client/renderer/entity/RenderPainting + a field_110807_a + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Luq;)Ljy; func_110775_a + a (Luq;DDDFF)V func_76986_a + a (Luq;FF)V func_77008_a + a (Luq;IIII)V func_77010_a +bjs net/minecraft/client/renderer/entity/RenderPig + a field_110887_f + a (Lpk;)Ljy; func_110775_a + a (Ltt;)Ljy; func_110775_a +bjt net/minecraft/client/renderer/entity/RenderPigZombie + j field_177120_j + a (Lpk;)Ljy; func_110775_a + a (Lps;)Ljy; func_110775_a + a (Lvw;)Ljy; func_110775_a +bjt$1 net/minecraft/client/renderer/entity/RenderPigZombie$1 + a field_177198_a + a ()V func_177177_a +bju net/minecraft/client/renderer/entity/RenderRabbit + a field_177127_a + e field_177126_e + j field_177132_j + k field_177133_k + l field_177130_l + m field_177131_m + n field_177128_n + o field_177129_o + a (Lpk;)Ljy; func_110775_a + a (Ltu;)Ljy; func_110775_a +bjv net/minecraft/client/renderer/entity/RenderSheep + a field_110884_f + a (Lpk;)Ljy; func_110775_a + a (Ltv;)Ljy; func_110775_a +bjw net/minecraft/client/renderer/entity/RenderSilverfish + a field_110882_a + a (Lpk;)Ljy; func_110775_a + a (Lvz;)F func_77037_a + b (Lpr;)F func_77037_a + b (Lvz;)Ljy; func_110775_a +bjx net/minecraft/client/renderer/entity/RenderSkeleton + j field_110862_k + k field_110861_l + C_ ()V func_82422_c + a (Lpk;)Ljy; func_110775_a + a (Lpr;F)V func_77041_b + a (Lps;)Ljy; func_110775_a + a (Lwa;)Ljy; func_110775_a + a (Lwa;F)V func_77041_b +bjx$1 net/minecraft/client/renderer/entity/RenderSkeleton$1 + a field_177199_a + a ()V func_177177_a +bjy net/minecraft/client/renderer/entity/RenderSlime + a field_110897_a + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lpr;DDDFF)V func_76986_a + a (Lpr;F)V func_77041_b + a (Lps;DDDFF)V func_76986_a + a (Lwb;)Ljy; func_110775_a + a (Lwb;DDDFF)V func_76986_a + a (Lwb;F)V func_77041_b +bjz net/minecraft/client/renderer/entity/RenderSnowMan + a field_110895_a + a (Lpk;)Ljy; func_110775_a + a (Ltw;)Ljy; func_110775_a + b ()Lbbo; func_177087_b + g ()Lbcd; func_177087_b +bk net/minecraft/command/CommandStats + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + d ()[Ljava/lang/String; func_175776_d + e ()Ljava/util/List; func_175777_e +bka net/minecraft/client/renderer/entity/RenderSpider + a field_110890_f + a (Lpk;)Ljy; func_110775_a + a (Lwc;)Ljy; func_110775_a + b (Lpr;)F func_77037_a + b (Lwc;)F func_77037_a +bkb net/minecraft/client/renderer/entity/RenderSquid + a field_110901_a + a (Lpk;)Ljy; func_110775_a + a (Lpr;FFF)V func_77043_a + a (Ltx;)Ljy; func_110775_a + a (Ltx;F)F func_77044_a + a (Ltx;FFF)V func_77043_a + b (Lpr;F)F func_77044_a +bkc net/minecraft/client/renderer/entity/RenderSnowball + a field_177084_a + e field_177083_e + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + d (Lpk;)Lzx; func_177082_d +bkd net/minecraft/client/renderer/entity/RenderPotion + a (Lxc;)Lzx; func_177082_d + d (Lpk;)Lzx; func_177082_d +bke net/minecraft/client/renderer/entity/RenderTntMinecart + a (Lva;FLalz;)V func_180560_a + a (Lvi;FLalz;)V func_180560_a +bkf net/minecraft/client/renderer/entity/RenderTNTPrimed + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lvj;)Ljy; func_110775_a + a (Lvj;DDDFF)V func_76986_a +bkg net/minecraft/client/renderer/entity/RenderIronGolem + a field_110899_a + a (Lpk;)Ljy; func_110775_a + a (Lpr;FFF)V func_77043_a + a (Lty;)Ljy; func_110775_a + a (Lty;FFF)V func_77043_a +bkh net/minecraft/client/renderer/entity/RenderVillager + a field_110903_f + e field_110904_g + j field_110908_h + k field_110907_k + l field_110905_l + m field_110906_m + a (Lpk;)Ljy; func_110775_a + a (Lpr;F)V func_77041_b + a (Lwi;)Ljy; func_110775_a + a (Lwi;F)V func_77041_b + b ()Lbbo; func_177087_b + g ()Lbci; func_177087_b +bki net/minecraft/client/renderer/entity/RenderWitch + a field_110910_a + C_ ()V func_82422_c + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lpr;DDDFF)V func_76986_a + a (Lpr;F)V func_77041_b + a (Lps;DDDFF)V func_76986_a + a (Lwd;)Ljy; func_110775_a + a (Lwd;DDDFF)V func_76986_a + a (Lwd;F)V func_77041_b +bkj net/minecraft/client/renderer/entity/RenderWither + a field_110913_a + e field_110912_f + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lpr;DDDFF)V func_76986_a + a (Lpr;F)V func_77041_b + a (Lps;DDDFF)V func_76986_a + a (Luk;)Ljy; func_110775_a + a (Luk;DDDFF)V func_76986_a + a (Luk;F)V func_77041_b +bkk net/minecraft/client/renderer/tileentity/RenderWitherSkull + a field_110811_a + e field_110810_f + f field_82401_a + a (FFF)F func_82400_a + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lxd;)Ljy; func_110775_a + a (Lxd;DDDFF)V func_76986_a +bkl net/minecraft/client/renderer/entity/RenderWolf + a field_110917_a + e field_110915_f + j field_110916_g + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lpr;DDDFF)V func_76986_a + a (Lps;DDDFF)V func_76986_a + a (Lua;)Ljy; func_110775_a + a (Lua;DDDFF)V func_76986_a + a (Lua;F)F func_77044_a + b (Lpr;F)F func_77044_a +bkm net/minecraft/client/renderer/entity/RenderZombie + j field_110865_p + k field_110864_q + l field_82434_o + m field_82432_p + n field_177121_n + o field_177122_o + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lpr;DDDFF)V func_76986_a + a (Lpr;FFF)V func_77043_a + a (Lps;)Ljy; func_110775_a + a (Lps;DDDFF)V func_76986_a + a (Lwe;)Ljy; func_110775_a + a (Lwe;DDDFF)V func_76986_a + a (Lwe;FFF)V func_77043_a + b (Lwe;)V func_82427_a +bkm$1 net/minecraft/client/renderer/entity/RenderZombie$1 + a field_177200_a + a ()V func_177177_a +bkn net/minecraft/client/renderer/entity/layers/LayerArmorBase + a field_177190_a + b field_177188_b + c field_177189_c + d field_177186_d + e field_177187_e + f field_177184_f + g field_177185_g + h field_177192_h + i field_177193_i + j field_177191_j + a ()V func_177177_a + a (I)Lbbo; func_177175_a + a (Lbbo;I)V func_177179_a + a (Lpr;FFFFFFF)V func_177141_a + a (Lpr;FFFFFFFI)V func_177182_a + a (Lpr;I)Lzx; func_177176_a + a (Lpr;Lbbo;FFFFFFF)V func_177183_a + a (Lyj;Z)Ljy; func_177181_a + a (Lyj;ZLjava/lang/String;)Ljy; func_177178_a + b ()Z func_177142_b + b (I)Z func_177180_b +bkn$1 net/minecraft/client/renderer/entity/layers/LayerArmorBase$1 + a field_178747_a +bko net/minecraft/client/renderer/entity/layers/LayerArrow + a field_177168_a + a (Lpr;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bkp net/minecraft/client/renderer/entity/layers/LayerCape + a field_177167_a + a (Lbet;FFFFFFF)V func_177141_a + a (Lpr;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bkq net/minecraft/client/renderer/entity/layers/LayerHeldBlock + a field_177174_a + a (Lpr;FFFFFFF)V func_177141_a + a (Lvo;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bkr net/minecraft/client/renderer/entity/layers/LayerCreeperCharge + a field_177172_a + b field_177170_b + c field_177171_c + a (Lpr;FFFFFFF)V func_177141_a + a (Lvn;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bks net/minecraft/client/renderer/entity/layers/LayerCustomHead + a field_177209_a + a (Lpr;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bkt net/minecraft/client/renderer/entity/layers/LayerDeadmau5Head + a field_177208_a + a (Lbet;FFFFFFF)V func_177141_a + a (Lpr;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bku net/minecraft/client/renderer/entity/layers/LayerEnderDragonDeath + a (Lpr;FFFFFFF)V func_177141_a + a (Lug;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bkv net/minecraft/client/renderer/entity/layers/LayerEnderDragonEyes + a field_177212_a + b field_177211_b + a (Lpr;FFFFFFF)V func_177141_a + a (Lug;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bkw net/minecraft/client/renderer/entity/layers/LayerEndermanEyes + a field_177203_a + b field_177202_b + a (Lpr;FFFFFFF)V func_177141_a + a (Lvo;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bkx net/minecraft/client/renderer/entity/layers/LayerBipedArmor + a ()V func_177177_a + a (Lbbj;)V func_177194_a + a (Lbbj;I)V func_177179_a + a (Lbbo;I)V func_177179_a +bky net/minecraft/client/renderer/entity/layers/LayerHeldItem + a field_177206_a + a (Lpr;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bkz net/minecraft/client/renderer/entity/layers/LayerMooshroomMushroom + a field_177205_a + a (Lpr;FFFFFFF)V func_177141_a + a (Ltr;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bl net/minecraft/command/server/CommandStop + a (Lm;[Ljava/lang/String;)V func_71515_b + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bla net/minecraft/client/renderer/entity/layers/LayerSaddle + a field_177158_a + b field_177156_b + c field_177157_c + a (Lpr;FFFFFFF)V func_177141_a + a (Ltt;FFFFFFF)V func_177141_a + b ()Z func_177142_b +blb net/minecraft/client/renderer/entity/layers/LayerRenderer + a (Lpr;FFFFFFF)V func_177141_a + b ()Z func_177142_b +blc net/minecraft/client/renderer/entity/layers/LayerSheepWool + a field_177165_a + b field_177163_b + c field_177164_c + a (Lpr;FFFFFFF)V func_177141_a + a (Ltv;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bld net/minecraft/client/renderer/entity/layers/LayerSlimeGel + a field_177161_a + b field_177160_b + a (Lpr;FFFFFFF)V func_177141_a + a (Lwb;FFFFFFF)V func_177141_a + b ()Z func_177142_b +ble net/minecraft/client/renderer/entity/layers/LayerSnowmanHead + a field_177152_a + a (Lpr;FFFFFFF)V func_177141_a + a (Ltw;FFFFFFF)V func_177141_a + b ()Z func_177142_b +blf net/minecraft/client/renderer/entity/layers/LayerSpiderEyes + a field_177150_a + b field_177149_b + a (Lpr;FFFFFFF)V func_177141_a + a (Lwc;FFFFFFF)V func_177141_a + b ()Z func_177142_b +blg net/minecraft/client/renderer/entity/layers/LayerVillagerArmor + a ()V func_177177_a +blh net/minecraft/client/renderer/entity/layers/LayerIronGolemFlower + a field_177154_a + a (Lpr;FFFFFFF)V func_177141_a + a (Lty;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bli net/minecraft/client/renderer/entity/layers/LayerHeldItemWitch + a field_177144_a + a (Lpr;FFFFFFF)V func_177141_a + a (Lwd;FFFFFFF)V func_177141_a + b ()Z func_177142_b +blj net/minecraft/client/renderer/entity/layers/LayerWitherAura + a field_177217_a + b field_177215_b + c field_177216_c + a (Lpr;FFFFFFF)V func_177141_a + a (Luk;FFFFFFF)V func_177141_a + b ()Z func_177142_b +blk net/minecraft/client/renderer/entity/layers/LayerWolfCollar + a field_177147_a + b field_177146_b + a (Lpr;FFFFFFF)V func_177141_a + a (Lua;FFFFFFF)V func_177141_a + b ()Z func_177142_b +bln net/minecraft/client/renderer/entity/RenderPlayer + a field_177140_a + C_ ()V func_82422_c + a (Lbet;)Ljy; func_110775_a + a (Lbet;DDD)V func_77039_a + a (Lbet;DDDFF)V func_76986_a + a (Lbet;DDDLjava/lang/String;FD)V func_177069_a + a (Lbet;F)V func_77041_b + a (Lbet;FFF)V func_77043_a + a (Lpk;)Ljy; func_110775_a + a (Lpk;DDDFF)V func_76986_a + a (Lpk;DDDLjava/lang/String;FD)V func_177069_a + a (Lpr;DDD)V func_77039_a + a (Lpr;DDDFF)V func_76986_a + a (Lpr;F)V func_77041_b + a (Lpr;FFF)V func_77043_a + b ()Lbbo; func_177087_b + b (Lbet;)V func_177138_b + c (Lbet;)V func_177139_c + d (Lbet;)V func_177137_d + g ()Lbbr; func_177087_b +blo net/minecraft/client/util/JsonBlendingMode + a field_148118_a + b field_148116_b + c field_148117_c + d field_148114_d + e field_148115_e + f field_148112_f + g field_148113_g + h field_148119_h + a ()V func_148109_a + a (Lcom/google/gson/JsonObject;)Lblo; func_148110_a + a (Ljava/lang/String;)I func_148108_a + b ()Z func_148111_b + b (Ljava/lang/String;)I func_148107_b + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode +blp net/minecraft/client/shader/ShaderDefault + a (F)V func_148090_a + a (FF)V func_148087_a + a (FFF)V func_148095_a + a (FFFF)V func_148081_a + a (FFFFFFFFFFFFFFFF)V func_148094_a + a (IIII)V func_148083_a + a (Lorg/lwjgl/util/vector/Matrix4f;)V func_148088_a + a ([F)V func_148097_a + b (FFFF)V func_148092_b +blq net/minecraft/client/shader/ShaderManager + a field_148003_a + b field_148001_b + c field_148002_c + d field_147999_d + e field_148000_e + f field_147997_f + g field_147998_g + h field_148010_h + i field_148011_i + j field_148008_j + k field_148009_k + l field_148006_l + m field_148007_m + n field_148004_n + o field_148005_o + p field_148016_p + q field_148015_q + r field_148014_r + s field_148013_s + t field_148012_t + a ()V func_147988_a + a (Lcom/google/gson/JsonElement;)V func_147996_a + a (Ljava/lang/String;)Lblv; func_147991_a + a (Ljava/lang/String;Ljava/lang/Object;)V func_147992_a + b ()V func_147993_b + b (Lcom/google/gson/JsonElement;)V func_147987_b + b (Ljava/lang/String;)Lblv; func_147984_b + c ()V func_147995_c + d ()V func_147985_d + e ()Lblt; func_147989_e + f ()Lblt; func_147994_f + h ()I func_147986_h + i ()V func_147990_i +blr net/minecraft/client/shader/ShaderGroup + a field_148035_a + b field_148033_b + c field_148034_c + d field_148031_d + e field_148032_e + f field_148029_f + g field_148030_g + h field_148038_h + i field_148039_i + j field_148036_j + k field_148037_k + a ()V func_148021_a + a (F)V func_148018_a + a (II)V func_148026_a + a (Lbmj;Lcom/google/gson/JsonElement;)V func_152764_a + a (Lbmj;Ljy;)V func_152765_a + a (Lcom/google/gson/JsonElement;)V func_148027_a + a (Ljava/lang/String;)Lbfw; func_177066_a + a (Ljava/lang/String;II)V func_148020_a + a (Ljava/lang/String;Lbfw;Lbfw;)Lbls; func_148023_a + b ()Ljava/lang/String; func_148022_b + b (Lcom/google/gson/JsonElement;)V func_148028_c + b (Ljava/lang/String;)Lbfw; func_148017_a + c ()V func_148024_c +bls net/minecraft/client/shader/Shader + a field_148052_a + b field_148050_b + c field_148051_c + d field_148048_d + e field_148049_e + f field_148046_f + g field_148047_g + h field_148053_h + a (F)V func_148042_a + a (Ljava/lang/String;Ljava/lang/Object;II)V func_148041_a + a (Lorg/lwjgl/util/vector/Matrix4f;)V func_148045_a + b ()V func_148044_b + c ()Lblq; func_148043_c + d ()V func_148040_d +blt net/minecraft/client/shader/ShaderLoader + a field_148061_a + b field_148059_b + c field_148060_c + d field_148058_d + a ()Ljava/lang/String; func_148055_a + a (Lblq;)V func_148056_a + a (Lbni;Lblt$a;Ljava/lang/String;)Lblt; func_148057_a + a (Ljava/io/BufferedInputStream;)[B func_177064_a + b (Lblq;)V func_148054_b +blt$a net/minecraft/client/shader/ShaderLoader$ShaderType + a VERTEX + b FRAGMENT + c field_148072_c + d field_148069_d + e field_148070_e + f field_148067_f + g $VALUES + a ()Ljava/lang/String; func_148062_a + b ()Ljava/lang/String; func_148063_b + c ()I func_148065_c + d ()Ljava/util/Map; func_148064_d + values ()[Lblt$a; values +blu net/minecraft/client/shader/ShaderLinkHelper + a field_148080_a + b field_148079_b + a ()V func_148076_a + a (Lblq;)V func_148077_a + b ()Lblu; func_148074_b + b (Lblq;)V func_148075_b + c ()I func_148078_c +blv net/minecraft/client/shader/ShaderUniform + a field_148104_a + b field_148102_b + c field_148103_c + d field_148100_d + e field_148101_e + f field_148098_f + g field_148099_g + h field_148105_h + i field_148106_i + a ()Ljava/lang/String; func_148086_a + a (F)V func_148090_a + a (FF)V func_148087_a + a (FFF)V func_148095_a + a (FFFF)V func_148081_a + a (FFFFFFFFFFFFFFFF)V func_148094_a + a (IIII)V func_148083_a + a (Ljava/lang/String;)I func_148085_a + a (Lorg/lwjgl/util/vector/Matrix4f;)V func_148088_a + a ([F)V func_148097_a + b ()V func_148093_b + b (FFFF)V func_148092_b + b (I)V func_148084_b + h ()V func_148096_h + i ()V func_148091_i + j ()V func_148089_j + k ()V func_148082_k +bly net/minecraft/client/renderer/texture/AbstractTexture + a field_110553_a + b field_174940_b + c field_174941_c + d field_174938_d + e field_174939_e + a ()V func_174935_a + a (ZZ)V func_174937_a + b ()I func_110552_b + b (ZZ)V func_174936_b + c ()V func_147631_c +blz net/minecraft/client/renderer/texture/DynamicTexture + f field_110566_b + g field_94233_j + h field_94234_k + a (Lbni;)V func_110551_a + d ()V func_110564_a + e ()[I func_110565_c +bm net/minecraft/command/server/CommandSummon + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bma net/minecraft/client/renderer/ThreadDownloadImageData + g field_147644_c + h field_147643_d + i field_152434_e + j field_110562_b + k field_110563_c + l field_110560_d + m field_110561_e + n field_110559_g + a (Lbma;)Ljava/lang/String; access$000 + a (Lbni;)V func_110551_a + a (Ljava/awt/image/BufferedImage;)V func_147641_a + b ()I func_110552_b + b (Lbma;)Ljava/io/File; access$100 + c (Lbma;)Lbfm; access$300 + d ()V func_152433_a + f ()Lorg/apache/logging/log4j/Logger; access$200 + g ()V func_147640_e +bma$1 net/minecraft/client/renderer/ThreadDownloadImageData$1 + a field_110932_a + run ()V run +bmb net/minecraft/client/renderer/texture/IIconCreator + a (Lbmh;)V func_177059_a +bmc net/minecraft/client/renderer/texture/LayeredColorMaskTexture + f field_174947_f + g field_174948_g + h field_174949_h + i field_174950_i + a (Lbni;)V func_110551_a +bmd net/minecraft/client/renderer/texture/LayeredTexture + f field_110567_b + g field_147638_c + a (Lbni;)V func_110551_a +bme net/minecraft/client/renderer/texture/SimpleTexture + f field_110568_b + g field_147639_c + a (Lbni;)V func_110551_a +bmf net/minecraft/client/renderer/texture/Stitcher + a field_147971_a + b field_94319_a + c field_94317_b + d field_94318_c + e field_94315_d + f field_94316_e + g field_94313_f + h field_94314_g + i field_94323_h + a ()I func_110935_a + a (II)I access$000 + a (Lbmf$a;)Z func_94310_b + a (Lbmi;)V func_110934_a + b ()I func_110936_b + b (II)I func_147969_b + b (Lbmf$a;)Z func_94311_c + c ()V func_94305_f + d ()Ljava/util/List; func_94309_g +bmf$a net/minecraft/client/renderer/texture/Stitcher$Holder + a field_98151_a + b field_94204_c + c field_94201_d + d field_147968_d + e field_94202_e + f field_94205_a + a ()Lbmi; func_98150_a + a (I)V func_94196_a + a (Lbmf$a;)I compareTo + b ()I func_94197_a + c ()I func_94199_b + compareTo (Ljava/lang/Object;)I compareTo + d ()V func_94194_d + e ()Z func_94195_e + toString ()Ljava/lang/String; toString +bmf$b net/minecraft/client/renderer/texture/Stitcher$Slot + a field_94192_a + b field_94190_b + c field_94191_c + d field_94188_d + e field_94189_e + f field_94187_f + a ()Lbmf$a; func_94183_a + a (Lbmf$a;)Z func_94182_a + a (Ljava/util/List;)V func_94184_a + b ()I func_94186_b + c ()I func_94185_c + toString ()Ljava/lang/String; toString +bmg net/minecraft/client/renderer/StitcherException + a field_98149_a +bmh net/minecraft/client/renderer/texture/TextureMap + f field_174945_f + g field_110575_b + h field_147635_d + i field_94258_i + j field_110574_e + k field_94252_e + l field_94254_c + m field_174946_m + n field_147636_j + o field_94249_f + a (I)V func_147633_a + a (Lbni;)V func_110551_a + a (Lbni;Lbmb;)V func_174943_a + a (Ljava/lang/String;)Lbmi; func_110572_b + a (Ljy;)Lbmi; func_174942_a + a (Ljy;I)Ljy; func_147634_a + b (Lbni;)V func_110571_b + d ()V func_94248_c + e ()V func_110550_d + f ()Lbmi; func_174944_f + g ()V func_110569_e +bmh$1 net/minecraft/client/renderer/texture/TextureMap$1 + a field_147980_a + b field_147979_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bmh$2 net/minecraft/client/renderer/texture/TextureMap$2 + a field_147977_a + b field_147976_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bmh$3 net/minecraft/client/renderer/texture/TextureMap$3 + a field_147974_a + b field_147973_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bmi net/minecraft/client/renderer/texture/TextureAtlasSprite + a field_110976_a + b field_176605_b + c field_130222_e + d field_110975_c + e field_110974_d + f field_130223_c + g field_130224_d + h field_110973_g + i field_110983_h + j field_110984_i + k field_110982_k + l field_110979_l + m field_110980_m + n field_110977_n + o field_110978_o + p field_176607_p + q field_176606_q + a ()I func_130010_a + a (D)F func_94214_a + a (I)[[I func_147965_a + a (IIIIZ)V func_110971_a + a (Lbmi;)V func_94217_a + a (Ljava/lang/String;)V func_176602_a + a (Ljava/util/List;)V func_110968_a + a (Ljy;)Lbmi; func_176604_a + a ([Ljava/awt/image/BufferedImage;Lboa;)V func_180598_a + a ([[IIII)[[I func_147962_a + b ()I func_110967_i + b (D)F func_94207_b + b (I)V func_110966_b + b (Ljava/lang/String;)V func_176603_b + c ()I func_94211_a + c (I)V func_110969_c + d ()I func_94216_b + d (I)V func_147963_d + e ()F func_94209_e + e (I)V func_130099_d + f ()F func_94212_f + g ()F func_94206_g + h ()F func_94210_h + i ()Ljava/lang/String; func_94215_i + j ()V func_94219_l + k ()I func_110970_k + l ()V func_130103_l + m ()Z func_130098_m + n ()V func_180599_n + o ()V func_130102_n + toString ()Ljava/lang/String; toString +bmi$1 net/minecraft/client/renderer/texture/TextureAtlasSprite$1 + a field_147983_a + b field_147982_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bmj net/minecraft/client/renderer/texture/TextureManager + a field_147646_a + b field_110585_a + c field_110583_b + d field_110584_c + e field_110582_d + a (Lbni;)V func_110549_a + a (Ljava/lang/String;Lblz;)Ljy; func_110578_a + a (Ljy;)V func_110577_a + a (Ljy;Lbmk;)Z func_110579_a + a (Ljy;Lbmn;)Z func_110580_a + b (Ljy;)Lbmk; func_110581_b + c (Ljy;)V func_147645_c + e ()V func_110550_d +bmj$1 net/minecraft/client/renderer/texture/TextureManager$1 + a field_135062_a + b field_135061_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bmk net/minecraft/client/renderer/texture/ITextureObject + a ()V func_174935_a + a (Lbni;)V func_110551_a + b ()I func_110552_b + b (ZZ)V func_174936_b +bml net/minecraft/client/renderer/texture/TextureUtil + a field_111001_a + b field_110999_b + c field_147959_c + d field_111000_c + e field_147957_g + a ()I func_110996_a + a (I)V func_147942_a + a (III)V func_110991_a + a (IIII)V func_180600_a + a (IIIII)I func_147944_a + a (IIIIZ)I func_147943_a + a (II[[I)[[I func_147949_a + a (ILjava/awt/image/BufferedImage;)I func_110987_a + a (ILjava/awt/image/BufferedImage;IIZZ)I func_110995_a + a (ILjava/awt/image/BufferedImage;ZZ)I func_110989_a + a (I[III)V func_110988_a + a (I[IIIIIZZZ)V func_147947_a + a (Lbni;Ljy;)[I func_110986_a + a (Ljava/awt/image/BufferedImage;IIZZ)V func_110993_a + a (Ljava/io/InputStream;)Ljava/awt/image/BufferedImage; func_177053_a + a (Z)V func_110997_a + a (ZZ)V func_147954_b + a ([I)[I func_110985_a + a ([II)V func_110990_a + a ([III)V func_147953_a + a ([[IIIIIZZ)V func_147955_a + b (I)V func_94277_a + b (Z)V func_147951_b + b ([III)V func_110994_a + c (I)I func_177054_c +bmm net/minecraft/client/renderer/texture/ITickable + e ()V func_110550_d +bmn net/minecraft/client/renderer/texture/ITickableTextureObject +bmo net/minecraft/client/renderer/texture/TextureClock + j field_94239_h + k field_94240_i + j ()V func_94219_l +bmp net/minecraft/client/renderer/texture/TextureCompass + j field_94244_i + k field_94242_j + l field_176608_l + a (Ladm;DDDZZ)V func_94241_a + j ()V func_94219_l +bms net/minecraft/client/renderer/vertex/DefaultVertexFormats + a field_176600_a + b field_176599_b + c field_181703_c + d field_181704_d + e field_181705_e + f field_181706_f + g field_181707_g + h field_181708_h + i field_181709_i + j field_181710_j + k field_181711_k + l field_181712_l + m field_181713_m + n field_181714_n + o field_181715_o + p field_181716_p + q field_181717_q + r field_181718_r +bmt net/minecraft/client/renderer/vertex/VertexBuffer + a field_177365_a + b field_177363_b + c field_177364_c + a ()V func_177359_a + a (I)V func_177358_a + a (Ljava/nio/ByteBuffer;)V func_181722_a + b ()V func_177361_b + c ()V func_177362_c +bmu net/minecraft/client/renderer/vertex/VertexFormat + a field_177357_a + b field_177355_b + c field_177356_c + d field_177353_d + e field_177354_e + f field_177351_f + g field_177352_g + a ()V func_177339_a + a (I)Z func_177347_a + a (Lbmv;)Lbmu; func_181721_a + b ()Z func_177350_b + b (I)I func_177344_b + c ()I func_177342_c + c (I)Lbmv; func_177348_c + d ()Z func_177346_d + d (I)I func_181720_d + e ()I func_177340_e + equals (Ljava/lang/Object;)Z equals + f ()I func_181719_f + g ()I func_177338_f + h ()Ljava/util/List; func_177343_g + hashCode ()I hashCode + i ()I func_177345_h + j ()Z func_177341_i + toString ()Ljava/lang/String; toString +bmu$1 net/minecraft/client/renderer/vertex/VertexFormat$1 + a field_177382_a +bmv net/minecraft/client/renderer/vertex/VertexFormatElement + a field_177381_a + b field_177379_b + c field_177380_c + d field_177377_d + e field_177378_e + a ()Lbmv$a; func_177367_b + a (ILbmv$b;)Z func_177372_a + b ()Lbmv$b; func_177375_c + c ()I func_177370_d + d ()I func_177369_e + e ()I func_177368_f + equals (Ljava/lang/Object;)Z equals + f ()Z func_177374_g + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bmv$a net/minecraft/client/renderer/vertex/VertexFormatElement$EnumType + a FLOAT + b UBYTE + c BYTE + d USHORT + e SHORT + f UINT + g INT + h field_177407_h + i field_177408_i + j field_177405_j + k $VALUES + a ()I func_177395_a + b ()Ljava/lang/String; func_177396_b + c ()I func_177397_c + values ()[Lbmv$a; values +bmv$b net/minecraft/client/renderer/vertex/VertexFormatElement$EnumUsage + a POSITION + b NORMAL + c COLOR + d UV + e MATRIX + f BLEND_WEIGHT + g PADDING + h field_177392_h + i $VALUES + a ()Ljava/lang/String; func_177384_a + values ()[Lbmv$b; values +bmx net/minecraft/client/resources/AbstractResourcePack + a field_110597_b + b field_110598_a + a ()Ljava/awt/image/BufferedImage; func_110586_a + a (Lbny;Ljava/io/InputStream;Ljava/lang/String;)Lbnw; func_110596_a + a (Lbny;Ljava/lang/String;)Lbnw; func_135058_a + a (Ljava/io/File;Ljava/io/File;)Ljava/lang/String; func_110595_a + a (Ljava/lang/String;)Ljava/io/InputStream; func_110591_a + a (Ljy;)Ljava/io/InputStream; func_110590_a + b ()Ljava/lang/String; func_130077_b + b (Ljava/lang/String;)Z func_110593_b + b (Ljy;)Z func_110589_b + c (Ljava/lang/String;)V func_110594_c + c (Ljy;)Ljava/lang/String; func_110592_c +bmy net/minecraft/client/resources/ResourceIndex + a field_152783_a + b field_152784_b + a ()Ljava/util/Map; func_152782_a +bmz net/minecraft/client/resources/DefaultPlayerSkin + a field_177337_a + b field_177336_b + a ()Ljy; func_177335_a + a (Ljava/util/UUID;)Ljy; func_177334_a + b (Ljava/util/UUID;)Ljava/lang/String; func_177332_b + c (Ljava/util/UUID;)Z func_177333_c +bn net/minecraft/command/server/CommandTeleport + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bna net/minecraft/client/resources/DefaultResourcePack + a field_110608_a + b field_152781_b + a ()Ljava/awt/image/BufferedImage; func_110586_a + a (Lbny;Ljava/lang/String;)Lbnw; func_135058_a + a (Ljy;)Ljava/io/InputStream; func_110590_a + b ()Ljava/lang/String; func_130077_b + b (Ljy;)Z func_110589_b + c ()Ljava/util/Set; func_110587_b + c (Ljy;)Ljava/io/InputStream; func_152780_c + d (Ljy;)Ljava/io/InputStream; func_110605_c +bnb net/minecraft/client/resources/FallbackResourceManager + a field_110540_a + b field_177246_b + c field_110539_b + a ()Ljava/util/Set; func_135055_a + a (Lbnk;)V func_110538_a + a (Ljy;)Lbnh; func_110536_a + a (Ljy;Lbnk;)Ljava/io/InputStream; func_177245_a + b ()Lorg/apache/logging/log4j/Logger; access$000 + b (Ljy;)Ljava/util/List; func_135056_b + c (Ljy;)Ljy; func_110537_b +bnb$a net/minecraft/client/resources/FallbackResourceManager$InputStreamLeakedResourceLogger + a field_177330_a + b field_177328_b + c field_177329_c + close ()V close + finalize ()V finalize + read ()I read +bnc net/minecraft/client/resources/FileResourcePack + b field_110601_c + c field_110600_d + a (Ljava/lang/String;)Ljava/io/InputStream; func_110591_a + b (Ljava/lang/String;)Z func_110593_b + c ()Ljava/util/Set; func_110587_b + close ()V close + d ()Ljava/util/zip/ZipFile; func_110599_c + finalize ()V finalize +bnd net/minecraft/client/resources/FolderResourcePack + a (Ljava/lang/String;)Ljava/io/InputStream; func_110591_a + b (Ljava/lang/String;)Z func_110593_b + c ()Ljava/util/Set; func_110587_b +bne net/minecraft/client/resources/FoliageColorReloadListener + a field_130079_a + a (Lbni;)V func_110549_a +bnf net/minecraft/client/resources/GrassColorReloadListener + a field_130078_a + a (Lbni;)V func_110549_a +bng net/minecraft/client/resources/IReloadableResourceManager + a (Lbnj;)V func_110542_a + a (Ljava/util/List;)V func_110541_a +bnh net/minecraft/client/resources/IResource + a ()Ljy; func_177241_a + a (Ljava/lang/String;)Lbnw; func_110526_a + b ()Ljava/io/InputStream; func_110527_b + c ()Z func_110528_c + d ()Ljava/lang/String; func_177240_d +bni net/minecraft/client/resources/IResourceManager + a ()Ljava/util/Set; func_135055_a + a (Ljy;)Lbnh; func_110536_a + b (Ljy;)Ljava/util/List; func_135056_b +bnj net/minecraft/client/resources/IResourceManagerReloadListener + a (Lbni;)V func_110549_a +bnk net/minecraft/client/resources/IResourcePack + a ()Ljava/awt/image/BufferedImage; func_110586_a + a (Lbny;Ljava/lang/String;)Lbnw; func_135058_a + a (Ljy;)Ljava/io/InputStream; func_110590_a + b ()Ljava/lang/String; func_130077_b + b (Ljy;)Z func_110589_b + c ()Ljava/util/Set; func_110587_b +bnl net/minecraft/client/resources/ResourcePackFileNotFoundException +bnm net/minecraft/client/resources/ResourcePackRepository + a field_110620_b + b field_110621_c + c field_177320_c + d field_110622_a + e field_110618_d + f field_148534_e + g field_148532_f + h field_177321_h + i field_177322_i + j field_110619_e + k field_110617_f + a ()V func_110611_a + a (Ljava/io/File;)Lcom/google/common/util/concurrent/ListenableFuture; func_177319_a + a (Ljava/lang/String;Ljava/lang/String;)Lcom/google/common/util/concurrent/ListenableFuture; func_180601_a + a (Ljava/util/List;)V func_148527_a + b ()Ljava/util/List; func_110609_b + c ()Ljava/util/List; func_110613_c + d ()Ljava/io/File; func_110612_e + e ()Lbnk; func_148530_e + f ()V func_148529_f + g ()V func_110616_f + h ()Ljava/util/List; func_110614_g + i ()V func_183028_i +bnm$1 net/minecraft/client/resources/ResourcePackRepository$1 + accept (Ljava/io/File;)Z accept +bnm$2 net/minecraft/client/resources/ResourcePackRepository$2 + a field_177324_a + b field_177323_b + c field_148523_a + run ()V run +bnm$3 net/minecraft/client/resources/ResourcePackRepository$3 + a field_177327_a + b field_177325_b + c field_177326_c + onFailure (Ljava/lang/Throwable;)V onFailure + onSuccess (Ljava/lang/Object;)V onSuccess +bnm$a net/minecraft/client/resources/ResourcePackRepository$Entry + a field_110525_a + b field_110523_b + c field_110524_c + d field_110521_d + e field_110522_e + f field_110520_f + a ()V func_110516_a + a (Lbmj;)V func_110518_a + b ()V func_110517_b + c ()Lbnk; func_110514_c + d ()Ljava/lang/String; func_110515_d + e ()Ljava/lang/String; func_110519_e + equals (Ljava/lang/Object;)Z equals + f ()I func_183027_f + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bnn net/minecraft/client/resources/SimpleReloadableResourceManager + a field_147967_a + b field_130074_a + c field_110548_a + d field_110546_b + e field_135057_d + f field_110547_c + a ()Ljava/util/Set; func_135055_a + a (Lbnj;)V func_110542_a + a (Lbnk;)V func_110545_a + a (Ljava/util/List;)V func_110541_a + a (Ljy;)Lbnh; func_110536_a + b ()V func_110543_a + b (Ljy;)Ljava/util/List; func_135056_b + c ()V func_110544_b +bnn$1 net/minecraft/client/resources/SimpleReloadableResourceManager$1 + a field_130076_a + a (Lbnk;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +bno net/minecraft/client/resources/SimpleResource + a field_110535_a + b field_177242_b + c field_110533_b + d field_110534_c + e field_110531_d + f field_110532_e + g field_110529_f + h field_110530_g + a ()Ljy; func_177241_a + a (Ljava/lang/String;)Lbnw; func_110526_a + b ()Ljava/io/InputStream; func_110527_b + c ()Z func_110528_c + d ()Ljava/lang/String; func_177240_d + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode +bnp net/minecraft/client/resources/SkinManager + a field_152794_b + b field_152795_c + c field_152796_d + d field_152797_e + e field_152798_f + a (Lbnp;)Lcom/mojang/authlib/minecraft/MinecraftSessionService; access$000 + a (Lcom/mojang/authlib/GameProfile;)Ljava/util/Map; func_152788_a + a (Lcom/mojang/authlib/GameProfile;Lbnp$a;Z)V func_152790_a + a (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;)Ljy; func_152792_a + a (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lbnp$a;)Ljy; func_152789_a +bnp$1 net/minecraft/client/resources/SkinManager$1 + a field_152787_a + a (Lcom/mojang/authlib/GameProfile;)Ljava/util/Map; load + load (Ljava/lang/Object;)Ljava/lang/Object; load +bnp$2 net/minecraft/client/resources/SkinManager$2 + a field_152635_a + b field_152636_b + c field_152637_c + d field_152638_d + e field_177249_e + f field_152639_e + a ()V func_152634_a + a (Ljava/awt/image/BufferedImage;)Ljava/awt/image/BufferedImage; func_78432_a +bnp$3 net/minecraft/client/resources/SkinManager$3 + a field_152799_a + b field_152800_b + c field_152801_c + d field_152802_d + run ()V run +bnp$3$1 net/minecraft/client/resources/SkinManager$3$1 + a field_152803_a + b field_152804_b + run ()V run +bnp$a net/minecraft/client/resources/SkinManager$SkinAvailableCallback + a (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Ljy;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V func_180521_a +bnq net/minecraft/client/resources/I18n + a field_135054_a + a (Lbnt;)V func_135051_a + a (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String; func_135052_a +bnr net/minecraft/client/resources/Language + a field_135039_a + b field_135037_b + c field_135038_c + d field_135036_d + a ()Ljava/lang/String; func_135034_a + a (Lbnr;)I compareTo + b ()Z func_135035_b + compareTo (Ljava/lang/Object;)I compareTo + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bns net/minecraft/client/resources/LanguageManager + a field_135049_a + b field_147648_b + c field_135047_b + d field_135048_c + e field_135046_d + a ()Z func_135042_a + a (Lbni;)V func_110549_a + a (Lbnr;)V func_135045_a + a (Ljava/util/List;)V func_135043_a + b ()Z func_135044_b + c ()Lbnr; func_135041_c + d ()Ljava/util/SortedSet; func_135040_d +bnt net/minecraft/client/resources/Locale + a field_135032_a + b field_135030_b + c field_135031_c + d field_135029_d + a ()Z func_135025_a + a (Lbni;Ljava/util/List;)V func_135022_a + a (Ljava/io/InputStream;)V func_135021_a + a (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String; func_135023_a + a (Ljava/util/List;)V func_135028_a + b ()V func_135024_b + b (Ljava/lang/String;)Ljava/lang/String; func_135026_c +bnv net/minecraft/client/resources/data/BaseMetadataSectionSerializer +bnw net/minecraft/client/resources/data/IMetadataSection +bnx net/minecraft/client/resources/data/IMetadataSectionSerializer + a ()Ljava/lang/String; func_110483_a +bny net/minecraft/client/resources/data/IMetadataSerializer + a field_110508_a + b field_110506_b + c field_110507_c + a ()Lcom/google/gson/Gson; func_110505_a + a (Lbnx;Ljava/lang/Class;)V func_110504_a + a (Ljava/lang/String;Lcom/google/gson/JsonObject;)Lbnw; func_110503_a +bny$1 net/minecraft/client/resources/data/IMetadataSerializer$1 +bny$a net/minecraft/client/resources/data/IMetadataSerializer$Registration + a field_110502_a + b field_110500_b + c field_110501_c +bnz net/minecraft/client/resources/data/AnimationFrame + a field_110499_a + b field_110498_b + a ()Z func_110495_a + b ()I func_110497_b + c ()I func_110496_c +boa net/minecraft/client/resources/data/AnimationMetadataSection + a field_110478_a + b field_110476_b + c field_110477_c + d field_110475_d + e field_177220_e + a ()I func_110471_a + a (I)I func_110472_a + b ()I func_110474_b + b (I)Z func_110470_b + c ()I func_110473_c + c (I)I func_110468_c + d ()I func_110469_d + d (I)Lbnz; func_130072_d + e ()Z func_177219_e + f ()Ljava/util/Set; func_130073_e +bob net/minecraft/client/resources/data/AnimationMetadataSectionSerializer + a ()Ljava/lang/String; func_110483_a + a (ILcom/google/gson/JsonElement;)Lbnz; func_110492_a + a (Lboa;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lboa; deserialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize +bod net/minecraft/client/resources/data/FontMetadataSection + a field_110467_a + b field_110465_b + c field_110466_c +boe net/minecraft/client/resources/data/FontMetadataSectionSerializer + a ()Ljava/lang/String; func_110483_a + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbod; deserialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize +bog net/minecraft/client/resources/data/LanguageMetadataSection + a field_135019_a + a ()Ljava/util/Collection; func_135018_a +boh net/minecraft/client/resources/data/LanguageMetadataSectionSerializer + a ()Ljava/lang/String; func_110483_a + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbog; deserialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize +boj net/minecraft/client/resources/data/PackMetadataSection + a field_110464_a + b field_110463_b + a ()Leu; func_152805_a + b ()I func_110462_b +bok net/minecraft/client/resources/data/PackMetadataSectionSerializer + a ()Ljava/lang/String; func_110483_a + a (Lboj;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lboj; deserialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize +bon net/minecraft/client/resources/data/TextureMetadataSection + a field_110482_a + b field_110481_b + c field_148536_c + a ()Z func_110479_a + b ()Z func_110480_b + c ()Ljava/util/List; func_148535_c +boo net/minecraft/client/resources/data/TextureMetadataSectionSerializer + a ()Ljava/lang/String; func_110483_a + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbon; deserialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize +boq net/minecraft/client/resources/model/IBakedModel + a ()Ljava/util/List; func_177550_a + a (Lcq;)Ljava/util/List; func_177551_a + b ()Z func_177555_b + c ()Z func_177556_c + d ()Z func_177553_d + e ()Lbmi; func_177554_e + f ()Lbgr; func_177552_f +bor net/minecraft/client/resources/model/ModelRotation + a X0_Y0 + b X0_Y90 + c X0_Y180 + d X0_Y270 + e X90_Y0 + f X90_Y90 + g X90_Y180 + h X90_Y270 + i X180_Y0 + j X180_Y90 + k X180_Y180 + l X180_Y270 + m X270_Y0 + n X270_Y90 + o X270_Y180 + p X270_Y270 + q field_177546_q + r field_177545_r + s field_177544_s + t field_177543_t + u field_177542_u + v $VALUES + a ()Lorg/lwjgl/util/vector/Matrix4f; func_177525_a + a (II)Lbor; func_177524_a + a (Lcq;)Lcq; func_177523_a + a (Lcq;I)I func_177520_a + b (II)I func_177521_b + values ()[Lbor; values +bos net/minecraft/client/resources/model/BuiltInModel + a field_177557_a + a ()Ljava/util/List; func_177550_a + a (Lcq;)Ljava/util/List; func_177551_a + b ()Z func_177555_b + c ()Z func_177556_c + d ()Z func_177553_d + e ()Lbmi; func_177554_e + f ()Lbgr; func_177552_f +bot net/minecraft/client/resources/model/ModelBakery + a field_177604_a + b field_177602_b + c field_177603_c + d field_177600_d + e field_177601_e + f field_177598_f + g field_177599_g + h field_177611_h + i field_177612_i + j field_177609_j + k field_177610_k + l field_177607_l + m field_177608_m + n field_177605_n + o field_177606_o + p field_177618_p + q field_177617_q + r field_177616_r + s field_177615_s + t field_177614_t + u field_177613_u + a ()Ldb; func_177570_a + a (Lbgh;Lbgi;Lbmi;Lcq;Lbor;Z)Lbgg; func_177589_a + a (Lbgl;)Ljava/util/Set; func_177585_a + a (Lbgl;Lbor;Z)Lboq; func_177578_a + a (Lbgm;Lbov;)V func_177569_a + a (Lbot;)Ljava/util/Map; access$000 + a (Ljava/lang/String;)Ljy; func_177583_a + a (Ljava/util/Collection;)V func_177591_a + a (Ljy;)Lbgm; func_177586_a + a (Lzw;)Ljava/util/List; func_177596_a + b ()V func_177577_b + b (Lbgl;)Z func_177581_b + b (Ljy;)Ljy; func_177584_b + c ()V func_177595_c + c (Lbgl;)Z func_177587_c + c (Ljy;)Lbgl; func_177594_c + d ()V func_177590_d + d (Lbgl;)Lbgl; func_177582_d + d (Ljy;)Ljy; func_177580_d + e ()V func_177592_e + e (Ljy;)Ljava/util/List; func_177573_e + f ()V func_177588_f + f (Ljy;)Ljy; func_177576_f + g ()Ljava/util/Set; func_177575_g + h ()V func_177597_h + i ()V func_177574_i + j ()V func_177572_j + k ()Ljava/util/Set; func_177571_k + l ()V func_177593_l +bot$1 net/minecraft/client/resources/model/ModelBakery$1 + a field_177506_a + a (Lbov;Lbov;)I compare + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare +bot$2 net/minecraft/client/resources/model/ModelBakery$2 + a field_177061_a + b field_177060_b + a (Lbmh;)V func_177059_a +bou net/minecraft/client/resources/model/ModelManager + a field_174958_a + b field_174956_b + c field_174957_c + d field_174955_d + a ()Lboq; func_174951_a + a (Lbni;)V func_110549_a + a (Lbov;)Lboq; func_174953_a + b ()Lbmh; func_174952_b + c ()Lbgc; func_174954_c +bov net/minecraft/client/resources/model/ModelResourceLocation + c field_177519_c + b (Ljava/lang/String;)[Ljava/lang/String; func_177517_b + c ()Ljava/lang/String; func_177518_c + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bow net/minecraft/client/resources/model/SimpleBakedModel + a field_177563_a + b field_177561_b + c field_177562_c + d field_177559_d + e field_177560_e + f field_177558_f + a ()Ljava/util/List; func_177550_a + a (Lcq;)Ljava/util/List; func_177551_a + b ()Z func_177555_b + c ()Z func_177556_c + d ()Z func_177553_d + e ()Lbmi; func_177554_e + f ()Lbgr; func_177552_f +bow$a net/minecraft/client/resources/model/SimpleBakedModel$Builder + a field_177656_a + b field_177654_b + c field_177655_c + d field_177652_d + e field_177653_e + f field_177651_f + a (Lbgg;)Lbow$a; func_177648_a + a (Lbmi;)Lbow$a; func_177646_a + a (Lboq;Lbmi;)V func_177647_a + a (Lboq;Lbmi;Lcq;)V func_177649_a + a (Lcq;Lbgg;)Lbow$a; func_177650_a + b ()Lboq; func_177645_b +box net/minecraft/client/resources/model/WeightedBakedModel + a field_177567_a + b field_177565_b + c field_177566_c + a ()Ljava/util/List; func_177550_a + a (J)Lboq; func_177564_a + a (Lcq;)Ljava/util/List; func_177551_a + b ()Z func_177555_b + c ()Z func_177556_c + d ()Z func_177553_d + e ()Lbmi; func_177554_e + f ()Lbgr; func_177552_f +box$a net/minecraft/client/resources/model/WeightedBakedModel$Builder + a field_177678_a + a ()Lbox; func_177676_a + a (Lboq;I)Lbox$a; func_177677_a + b ()Lboq; func_177675_b +box$b net/minecraft/client/resources/model/WeightedBakedModel$MyWeighedRandomItem + b field_177636_b + a ()I func_177635_a + a (Lbox$b;)I compareTo + compareTo (Ljava/lang/Object;)I compareTo + toString ()Ljava/lang/String; toString +bp net/minecraft/command/server/CommandTestForBlock + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bpa net/minecraft/client/audio/PositionedSound + a field_147664_a + b field_147662_b + c field_147663_c + d field_147660_d + e field_147661_e + f field_147658_f + g field_147659_g + h field_147665_h + i field_147666_i + a ()Ljy; func_147650_b + b ()Z func_147657_c + d ()I func_147652_d + e ()F func_147653_e + f ()F func_147655_f + g ()F func_147649_g + h ()F func_147654_h + i ()F func_147651_i + j ()Lbpj$a; func_147656_j +bpb net/minecraft/client/audio/MovingSound + j field_147668_j + k ()Z func_147667_k +bpc net/minecraft/client/audio/GuardianSound + k field_174934_k + c ()V func_73660_a +bpd net/minecraft/client/audio/MovingSoundMinecart + k field_147670_k + l field_147669_l + c ()V func_73660_a +bpe net/minecraft/client/audio/MovingSoundMinecartRiding + k field_147672_k + l field_147671_l + c ()V func_73660_a +bpf net/minecraft/client/audio/PositionedSoundRecord + a (Ljy;)Lbpf; func_147673_a + a (Ljy;F)Lbpf; func_147674_a + a (Ljy;FFF)Lbpf; func_147675_a +bpg net/minecraft/client/audio/SoundCategory + a MASTER + b MUSIC + c RECORDS + d WEATHER + e BLOCKS + f MOBS + g ANIMALS + h PLAYERS + i AMBIENT + j field_147168_j + k field_147169_k + l field_147166_l + m field_147167_m + n $VALUES + a ()Ljava/lang/String; func_147155_a + a (Ljava/lang/String;)Lbpg; func_147154_a + b ()I func_147156_b + values ()[Lbpg; values +bph net/minecraft/client/audio/SoundList + a field_148577_a + b field_148575_b + c field_148576_c + a ()Ljava/util/List; func_148570_a + a (Lbpg;)V func_148571_a + a (Z)V func_148572_a + b ()Z func_148574_b + c ()Lbpg; func_148573_c +bph$a net/minecraft/client/audio/SoundList$SoundEntry + a field_148569_a + b field_148567_b + c field_148568_c + d field_148565_d + e field_148566_e + f field_148564_f + a ()Ljava/lang/String; func_148556_a + a (F)V func_148553_a + a (I)V func_148554_a + a (Lbph$a$a;)V func_148562_a + a (Ljava/lang/String;)V func_148561_a + a (Z)V func_148557_a + b ()F func_148558_b + b (F)V func_148559_b + c ()F func_148560_c + d ()I func_148555_d + e ()Lbph$a$a; func_148563_e + f ()Z func_148552_f +bph$a$a net/minecraft/client/audio/SoundList$SoundEntry$Type + a FILE + b SOUND_EVENT + c field_148583_c + d $VALUES + a (Ljava/lang/String;)Lbph$a$a; func_148580_a + values ()[Lbph$a$a; values +bpi net/minecraft/client/audio/SoundListSerializer + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lbph; deserialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize +bpj net/minecraft/client/audio/ISound + a ()Ljy; func_147650_b + b ()Z func_147657_c + d ()I func_147652_d + e ()F func_147653_e + f ()F func_147655_f + g ()F func_147649_g + h ()F func_147654_h + i ()F func_147651_i + j ()Lbpj$a; func_147656_j +bpj$a net/minecraft/client/audio/ISound$AttenuationType + a NONE + b LINEAR + c field_148589_c + d $VALUES + a ()I func_148586_a + values ()[Lbpj$a; values +bpk net/minecraft/client/audio/ITickableSound + k ()Z func_147667_k +bpn net/minecraft/server/integrated/IntegratedPlayerList + f field_72416_e + a (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; func_148542_a + b ()Lbpo; func_72365_p + b (Llf;)V func_72391_b + c ()Lnet/minecraft/server/MinecraftServer; func_72365_p + t ()Ldn; func_72378_q +bpo net/minecraft/server/integrated/IntegratedServer + k field_147148_h + l field_71349_l + m field_71350_m + n field_71348_o + o field_71346_p + p field_71345_q + A ()V func_71217_p + a ()V func_175592_a + a (Ladp$a;)V func_71235_a + a (Ladp$a;Z)Ljava/lang/String; func_71206_a + a (Lb;)V func_71228_a + a (Ljava/lang/String;Ljava/lang/String;JLadr;Ljava/lang/String;)V func_71247_a + a (Loj;)V func_147139_a + a (Lor;)V func_70000_a + ad ()Z func_70002_Q + ae ()Z func_71262_S + ai ()Z func_181035_ah + al ()Z func_82356_Z + b ()Z func_71344_c + b (Lb;)Lb; func_71230_b + h ()Lbd; func_175582_h + i ()Z func_71197_b + l ()Z func_71225_e + m ()Ladp$a; func_71265_f + n ()Loj; func_147135_j + o ()Z func_71199_h + p ()I func_110455_j + q ()Z func_181034_q + r ()Z func_183002_r + t ()V func_71260_j + w ()V func_71263_m + y ()Ljava/io/File; func_71238_n +bpo$1 net/minecraft/server/integrated/IntegratedServer$1 + a field_76974_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bpo$2 net/minecraft/server/integrated/IntegratedServer$2 + a field_76972_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +bpo$3 net/minecraft/server/integrated/IntegratedServer$3 + a field_177494_a + run ()V run +bpp net/minecraft/server/integrated/IntegratedServerCommandManager +bpq net/minecraft/client/network/LanServerDetector + a field_148551_a + b field_148550_b + a ()Ljava/util/concurrent/atomic/AtomicInteger; access$000 + b ()Lorg/apache/logging/log4j/Logger; access$100 +bpq$a net/minecraft/client/network/LanServerDetector$LanServer + a field_77492_a + b field_77490_b + c field_77491_c + a ()Ljava/lang/String; func_77487_a + b ()Ljava/lang/String; func_77488_b + c ()V func_77489_c +bpq$b net/minecraft/client/network/LanServerDetector$ThreadLanServerFind + a field_77500_a + b field_77498_b + c field_77499_c + run ()V run +bpq$c net/minecraft/client/network/LanServerDetector$LanServerList + a field_77556_a + b field_77555_b + a ()Z func_77553_a + a (Ljava/lang/String;Ljava/net/InetAddress;)V func_77551_a + b ()V func_77552_b + c ()Ljava/util/List; func_77554_c +bpr net/minecraft/client/multiplayer/ThreadLanServerPing + a field_148658_a + b field_148657_b + c field_77528_b + d field_77529_c + e field_77526_d + f field_77527_e + a (Ljava/lang/String;)Ljava/lang/String; func_77524_a + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; func_77525_a + b (Ljava/lang/String;)Ljava/lang/String; func_77523_b + interrupt ()V interrupt + run ()V run +bpv net/minecraft/client/audio/MusicTicker + a field_147679_a + b field_147677_b + c field_147678_c + d field_147676_d + a ()V func_181557_a + a (Lbpv$a;)V func_181558_a + c ()V func_73660_a +bpv$a net/minecraft/client/audio/MusicTicker$MusicType + a MENU + b GAME + c CREATIVE + d CREDITS + e NETHER + f END_BOSS + g END + h field_148645_h + i field_148646_i + j field_148643_j + k $VALUES + a ()Ljy; func_148635_a + b ()I func_148634_b + c ()I func_148633_c + values ()[Lbpv$a; values +bpw net/minecraft/client/audio/SoundPoolEntry + a field_148656_a + b field_148654_b + c field_148655_c + d field_148653_d + a ()Ljy; func_148652_a + a (D)V func_148651_a + b ()D func_148650_b + b (D)V func_148647_b + c ()D func_148649_c + d ()Z func_148648_d +bpx net/minecraft/client/audio/SoundManager + a field_148623_a + b field_148621_b + c field_148622_c + d field_148619_d + e field_148620_e + f field_148617_f + g field_148618_g + h field_148629_h + i field_148630_i + j field_148627_j + k field_148628_k + l field_148625_l + m field_148626_m + n field_148624_n + a ()V func_148596_a + a (Lbpg;)F func_148595_a + a (Lbpg;F)V func_148601_a + a (Lbpj;)Z func_148597_a + a (Lbpj;I)V func_148599_a + a (Lbpj;Lbpw;)F func_148606_a + a (Lbpj;Lbpw;Lbpg;)F func_148594_a + a (Lbpx;)Lavh; access$400 + a (Lbpx;Lbpx$a;)Lbpx$a; access$102 + a (Lbpx;Z)Z access$302 + a (Ljy;)Ljava/net/URL; func_148612_a + a (Lwn;F)V func_148615_a + b ()V func_148613_b + b (Lbpj;)V func_148602_b + b (Lbpx;)Lbpx$a; access$100 + c ()V func_148614_c + c (Lbpj;)V func_148611_c + d ()V func_148605_d + e ()V func_148610_e + f ()V func_148604_f + g ()Lorg/apache/logging/log4j/Logger; access$000 + h ()Lorg/apache/logging/log4j/Marker; access$500 + i ()V func_148608_i +bpx$1 net/minecraft/client/audio/SoundManager$1 + a field_148631_a + run ()V run +bpx$1$1 net/minecraft/client/audio/SoundManager$1$1 + a field_177950_a + errorMessage (Ljava/lang/String;Ljava/lang/String;I)V errorMessage + importantMessage (Ljava/lang/String;I)V importantMessage + message (Ljava/lang/String;I)V message +bpx$2 net/minecraft/client/audio/SoundManager$2 + a field_148592_a + openConnection (Ljava/net/URL;)Ljava/net/URLConnection; openConnection +bpx$2$1 net/minecraft/client/audio/SoundManager$2$1 + a field_148593_a + connect ()V connect + getInputStream ()Ljava/io/InputStream; getInputStream +bpx$a net/minecraft/client/audio/SoundManager$SoundSystemStarterThread + a field_148591_a + playing (Ljava/lang/String;)Z playing +bpy net/minecraft/client/audio/SoundEventAccessorComposite + a field_148736_a + b field_148734_b + c field_148735_c + d field_148732_d + e field_148733_e + f field_148731_f + a ()I func_148721_a + a (Lbqb;)V func_148727_a + b ()Lbpw; func_148720_g + c ()Ljy; func_148729_c + d ()Lbpg; func_148728_d + g ()Ljava/lang/Object; func_148720_g +bpz net/minecraft/client/audio/SoundHandler + a field_147700_a + b field_147698_b + c field_147699_c + d field_147696_d + e field_147697_e + f field_147694_f + g field_147695_g + a ()V func_147689_b + a (Lbni;)V func_110549_a + a (Lbpg;F)V func_147684_a + a (Lbpj;)V func_147682_a + a (Lbpj;I)V func_147681_a + a (Lbpz;)Lbqa; access$000 + a (Ljava/io/InputStream;)Ljava/util/Map; func_175085_a + a (Ljy;)Lbpy; func_147680_a + a (Ljy;Lbph;)V func_147693_a + a (Lwn;F)V func_147691_a + a ([Lbpg;)Lbpy; func_147686_a + b ()V func_147690_c + b (Lbpj;)V func_147683_b + c ()V func_73660_a + c (Lbpj;)Z func_147692_c + d ()V func_147685_d + e ()V func_147687_e +bpz$1 net/minecraft/client/audio/SoundHandler$1 + getActualTypeArguments ()[Ljava/lang/reflect/Type; getActualTypeArguments + getOwnerType ()Ljava/lang/reflect/Type; getOwnerType + getRawType ()Ljava/lang/reflect/Type; getRawType +bpz$2 net/minecraft/client/audio/SoundHandler$2 + a field_148726_a + b field_148724_b + c field_148725_c + d field_148723_d + a ()I func_148721_a + b ()Lbpw; func_148720_g + g ()Ljava/lang/Object; func_148720_g +bpz$3 net/minecraft/client/audio/SoundHandler$3 + a field_148765_a +bq net/minecraft/command/server/CommandTestFor + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bqa net/minecraft/client/audio/SoundRegistry + a field_148764_a + a ()V func_148763_c + a (Lbpy;)V func_148762_a + b ()Ljava/util/Map; func_148740_a +bqb net/minecraft/client/audio/ISoundEventAccessor + a ()I func_148721_a + g ()Ljava/lang/Object; func_148720_g +bqc net/minecraft/client/audio/SoundEventAccessor + a field_148739_a + b field_148738_b + a ()I func_148721_a + b ()Lbpw; func_148720_g + g ()Ljava/lang/Object; func_148720_g +bqe net/minecraft/client/stream/MetadataAchievement +bqf net/minecraft/client/stream/MetadataCombat +bqg net/minecraft/client/stream/MetadataPlayerDeath +bqh net/minecraft/client/stream/Metadata + a field_152811_a + b field_152812_b + c field_152813_c + d field_152814_d + a ()Ljava/lang/String; func_152809_a + a (Ljava/lang/String;)V func_152807_a + a (Ljava/lang/String;Ljava/lang/String;)V func_152808_a + b ()Ljava/lang/String; func_152806_b + c ()Ljava/lang/String; func_152810_c + toString ()Ljava/lang/String; toString +bqj net/minecraft/client/stream/BroadcastController + A field_152860_A + B field_177948_B + C field_177949_C + D field_152861_B + E field_152862_C + F field_152863_D + G field_152864_E + a field_152865_a + b field_152866_b + c field_152867_c + d field_152868_d + e field_152869_e + f field_152870_f + g field_152871_g + h field_152872_h + i field_152873_i + j field_152874_j + k field_152875_k + l field_152876_l + m field_152877_m + n field_152878_n + o field_152879_o + p field_152880_p + q field_152881_q + r field_152882_r + s field_152883_s + t field_152884_t + u field_152885_u + v field_152886_v + w field_152887_w + x field_152888_x + y field_152889_y + z field_152890_z + A ()Ltv/twitch/ErrorCode; func_152852_P + B ()Ltv/twitch/broadcast/PixelFormat; func_152826_z + C ()Z func_152817_A + D ()Z func_152851_B + E ()V statCallback + F ()Z func_152845_C + G ()Z func_152830_D + H ()Z func_152819_E + I ()Z func_152847_F + J ()Z func_152854_G + K ()V func_152821_H + L ()V func_152835_I + M ()Lbql; func_152838_J + O ()Z func_152823_L + P ()V func_152831_M + Q ()Ltv/twitch/broadcast/FrameBuffer; func_152822_N + a (F)V func_152829_a + a (IIFF)Ltv/twitch/broadcast/VideoParams; func_152834_a + a (Lbqj$a;)V func_152827_a + a (Lbqj$b;)V func_152841_a + a (Ljava/lang/String;)V func_152842_a + a (Ljava/lang/String;JJLjava/lang/String;Ljava/lang/String;)Z func_177947_a + a (Ljava/lang/String;JLjava/lang/String;Ljava/lang/String;)Z func_152840_a + a (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Z func_152828_a + a (Ljava/lang/String;Ltv/twitch/AuthToken;)Z func_152818_a + a (Ltv/twitch/ErrorCode;)Z func_152853_a + a (Ltv/twitch/broadcast/FrameBuffer;)V func_152846_a + a (Ltv/twitch/broadcast/IngestServer;)V func_152824_a + a (Ltv/twitch/broadcast/VideoParams;)Z func_152836_a + b ()Z func_152858_b + b (F)V func_152837_b + b (Ljava/lang/String;JLjava/lang/String;Ljava/lang/String;)J func_177946_b + b (Ltv/twitch/broadcast/FrameBuffer;)Ltv/twitch/ErrorCode; func_152859_b + d (Ljava/lang/String;)V func_152820_d + e (Ljava/lang/String;)V func_152832_e + j ()Ltv/twitch/broadcast/StreamInfo; func_152816_j + l ()Ltv/twitch/broadcast/ChannelInfo; func_152843_l + m ()Z func_152850_m + n ()Z func_152857_n + o ()Z func_152825_o + p ()Z func_152839_p + q ()Z func_152849_q + s ()Ltv/twitch/broadcast/IngestServer; func_152833_s + t ()Ltv/twitch/broadcast/IngestList; func_152855_t + w ()Lbql; func_152856_w + x ()J func_152844_x + y ()Z func_152848_y +bqj$1 net/minecraft/client/stream/BroadcastController$1 + a field_177945_a + bufferUnlockCallback (J)V bufferUnlockCallback + getArchivingStateCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/ArchivingState;)V getArchivingStateCallback + getGameNameListCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/GameInfoList;)V getGameNameListCallback + getIngestServersCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/IngestList;)V getIngestServersCallback + getStreamInfoCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/StreamInfo;)V getStreamInfoCallback + getUserInfoCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/UserInfo;)V getUserInfoCallback + loginCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/ChannelInfo;)V loginCallback + requestAuthTokenCallback (Ltv/twitch/ErrorCode;Ltv/twitch/AuthToken;)V requestAuthTokenCallback + runCommercialCallback (Ltv/twitch/ErrorCode;)V runCommercialCallback + sendActionMetaDataCallback (Ltv/twitch/ErrorCode;)V sendActionMetaDataCallback + sendEndSpanMetaDataCallback (Ltv/twitch/ErrorCode;)V sendEndSpanMetaDataCallback + sendStartSpanMetaDataCallback (Ltv/twitch/ErrorCode;)V sendStartSpanMetaDataCallback + setStreamInfoCallback (Ltv/twitch/ErrorCode;)V setStreamInfoCallback + startCallback (Ltv/twitch/ErrorCode;)V startCallback + stopCallback (Ltv/twitch/ErrorCode;)V stopCallback +bqj$2 net/minecraft/client/stream/BroadcastController$2 + a field_177772_a + statCallback (Ltv/twitch/broadcast/StatType;J)V statCallback +bqj$3 net/minecraft/client/stream/BroadcastController$3 + a field_177773_a +bqj$a net/minecraft/client/stream/BroadcastController$BroadcastState + a Uninitialized + b Initialized + c Authenticating + d Authenticated + e LoggingIn + f LoggedIn + g FindingIngestServer + h ReceivedIngestServers + i ReadyToBroadcast + j Starting + k Broadcasting + l Stopping + m Paused + n IngestTesting + o $VALUES + values ()[Lbqj$a; values +bqj$b net/minecraft/client/stream/BroadcastController$BroadcastListener + a ()V func_152895_a + a (Lbqj$a;)V func_152891_a + a (Ltv/twitch/ErrorCode;)V func_152897_a + a (Ltv/twitch/ErrorCode;Ltv/twitch/AuthToken;)V func_152900_a + a (Ltv/twitch/ErrorCode;[Ltv/twitch/broadcast/GameInfo;)V func_152898_a + a (Ltv/twitch/broadcast/IngestList;)V func_152896_a + a (Ltv/twitch/broadcast/StreamInfo;)V func_152894_a + b ()V func_152899_b + b (Ltv/twitch/ErrorCode;)V func_152893_b + c ()V func_152901_c + c (Ltv/twitch/ErrorCode;)V func_152892_c +bqk net/minecraft/client/stream/ChatController + a field_153003_a + b field_153004_b + c field_153006_d + d field_153007_e + e field_175992_e + f field_153008_f + g field_153011_i + h field_153012_j + i field_175998_i + j field_153015_m + k field_175997_k + l field_175995_l + m field_175996_m + n field_175993_n + o field_175994_o + p field_175999_p + q field_153018_p + a (Lbqk$c;)V func_175985_a + a (Lbqk$e;)V func_152990_a + a (Ljava/lang/String;)V func_152984_a + a (Ljava/lang/String;Ljava/lang/String;)Z func_175986_a + a (Ljava/lang/String;Z)Z func_175987_a + a (Ltv/twitch/AuthToken;)V func_152994_a + c (Ljava/lang/String;)V func_152998_c + d (Ljava/lang/String;)Z func_175990_d + e (Ljava/lang/String;)Lbqk$a; func_175989_e + h ()Lbqk$c; func_153000_j + j (Ljava/lang/String;)Z func_152986_d + l (Ljava/lang/String;)Z func_175991_l + n ()Z func_175984_n + n (Ljava/lang/String;)V func_152995_h + o ()Z func_152993_m + p ()V func_175988_p + q ()V func_152997_n + r ()V func_153001_r + s ()V func_152988_s + t ()V func_152996_t +bqk$1 net/minecraft/client/stream/ChatController$1 + a field_176000_a + chatEmoticonDataDownloadCallback (Ltv/twitch/ErrorCode;)V chatEmoticonDataDownloadCallback + chatInitializationCallback (Ltv/twitch/ErrorCode;)V chatInitializationCallback + chatShutdownCallback (Ltv/twitch/ErrorCode;)V chatShutdownCallback +bqk$2 net/minecraft/client/stream/ChatController$2 + a field_175976_a + b field_175974_b + c field_175975_c +bqk$a net/minecraft/client/stream/ChatController$EnumChannelState + a Created + b Connecting + c Connected + d Disconnecting + e Disconnected + f $VALUES + values ()[Lbqk$a; values +bqk$b net/minecraft/client/stream/ChatController$ChatChannelListener + a field_176048_a + b field_176046_b + c field_176047_c + d field_176044_d + e field_176045_e + f field_176042_f + g field_176043_g + h field_176049_h + a ()Lbqk$a; func_176040_a + a (Lbqk$a;)V func_176035_a + a (Ljava/lang/String;)V func_176032_a + a (Z)Z func_176038_a + b (Ljava/lang/String;)Z func_176037_b + c (Ljava/lang/String;)V func_176031_c + chatBadgeDataDownloadCallback (Ljava/lang/String;Ltv/twitch/ErrorCode;)V chatBadgeDataDownloadCallback + chatChannelMembershipCallback (Ljava/lang/String;Ltv/twitch/chat/ChatEvent;Ltv/twitch/chat/ChatChannelInfo;)V chatChannelMembershipCallback + chatChannelRawMessageCallback (Ljava/lang/String;[Ltv/twitch/chat/ChatRawMessage;)V chatChannelRawMessageCallback + chatChannelTokenizedMessageCallback (Ljava/lang/String;[Ltv/twitch/chat/ChatTokenizedMessage;)V chatChannelTokenizedMessageCallback + chatChannelUserChangeCallback (Ljava/lang/String;[Ltv/twitch/chat/ChatUserInfo;[Ltv/twitch/chat/ChatUserInfo;[Ltv/twitch/chat/ChatUserInfo;)V chatChannelUserChangeCallback + chatClearCallback (Ljava/lang/String;Ljava/lang/String;)V chatClearCallback + chatStatusCallback (Ljava/lang/String;Ltv/twitch/ErrorCode;)V chatStatusCallback + d (Ljava/lang/String;)V func_176036_d + g ()Z func_176034_g + h ()V func_176041_h + i ()V func_176039_i + j ()V func_176033_j + k ()V func_176030_k +bqk$c net/minecraft/client/stream/ChatController$ChatState + a Uninitialized + b Initializing + c Initialized + d ShuttingDown + e $VALUES + values ()[Lbqk$c; values +bqk$d net/minecraft/client/stream/ChatController$EnumEmoticonMode + a None + b Url + c TextureAtlas + d $VALUES + values ()[Lbqk$d; values +bqk$e net/minecraft/client/stream/ChatController$ChatListener + a (Lbqk$c;)V func_176017_a + a (Ljava/lang/String;)V func_180606_a + a (Ljava/lang/String;Ljava/lang/String;)V func_176019_a + a (Ljava/lang/String;[Ltv/twitch/chat/ChatRawMessage;)V func_180605_a + a (Ljava/lang/String;[Ltv/twitch/chat/ChatTokenizedMessage;)V func_176025_a + a (Ljava/lang/String;[Ltv/twitch/chat/ChatUserInfo;[Ltv/twitch/chat/ChatUserInfo;[Ltv/twitch/chat/ChatUserInfo;)V func_176018_a + b (Ljava/lang/String;)V func_180607_b + c (Ljava/lang/String;)V func_176016_c + d ()V func_176021_d + d (Ljava/lang/String;)V func_176020_d + d (Ltv/twitch/ErrorCode;)V func_176023_d + e ()V func_176024_e + e (Ltv/twitch/ErrorCode;)V func_176022_e +bql net/minecraft/client/stream/IngestServerTester + A field_176005_A + B field_176006_B + a field_153044_b + b field_153045_c + c field_153046_d + d field_153047_e + e field_153048_f + f field_153049_g + g field_153050_h + h field_153051_i + i field_153052_j + j field_153053_k + k field_153054_l + l field_153055_m + m field_153056_n + n field_153057_o + o field_153058_p + p field_153059_q + q field_153060_r + r field_153061_s + s field_153062_t + t field_153063_u + u field_153064_v + v field_153065_w + w field_153066_x + x field_176009_x + y field_176008_y + z field_176007_z + a (Lbql$a;)V func_153042_a + a (Lbql$b;)V func_153034_a + a (Ltv/twitch/broadcast/IngestServer;)Z func_153036_a + b (Ltv/twitch/broadcast/IngestServer;)V func_153035_b + c ()Ltv/twitch/broadcast/IngestServer; func_153040_c + c (Ltv/twitch/broadcast/IngestServer;)Z func_153029_c + d ()I func_153028_p + f ()Z func_153032_e + i ()F func_153030_h + j ()V func_176004_j + k ()V func_153041_j + m ()V func_153039_l + n ()J func_153037_m + o ()V func_153038_n + p ()V func_153031_o +bql$1 net/minecraft/client/stream/IngestServerTester$1 + a field_176010_a + bufferUnlockCallback (J)V bufferUnlockCallback + getArchivingStateCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/ArchivingState;)V getArchivingStateCallback + getGameNameListCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/GameInfoList;)V getGameNameListCallback + getIngestServersCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/IngestList;)V getIngestServersCallback + getStreamInfoCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/StreamInfo;)V getStreamInfoCallback + getUserInfoCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/UserInfo;)V getUserInfoCallback + loginCallback (Ltv/twitch/ErrorCode;Ltv/twitch/broadcast/ChannelInfo;)V loginCallback + requestAuthTokenCallback (Ltv/twitch/ErrorCode;Ltv/twitch/AuthToken;)V requestAuthTokenCallback + runCommercialCallback (Ltv/twitch/ErrorCode;)V runCommercialCallback + sendActionMetaDataCallback (Ltv/twitch/ErrorCode;)V sendActionMetaDataCallback + sendEndSpanMetaDataCallback (Ltv/twitch/ErrorCode;)V sendEndSpanMetaDataCallback + sendStartSpanMetaDataCallback (Ltv/twitch/ErrorCode;)V sendStartSpanMetaDataCallback + setStreamInfoCallback (Ltv/twitch/ErrorCode;)V setStreamInfoCallback + startCallback (Ltv/twitch/ErrorCode;)V startCallback + stopCallback (Ltv/twitch/ErrorCode;)V stopCallback +bql$2 net/minecraft/client/stream/IngestServerTester$2 + a field_176001_a + statCallback (Ltv/twitch/broadcast/StatType;J)V statCallback +bql$3 net/minecraft/client/stream/IngestServerTester$3 + a field_176003_a + b field_176002_b +bql$a net/minecraft/client/stream/IngestServerTester$IngestTestListener + a (Lbql;Lbql$b;)V func_152907_a +bql$b net/minecraft/client/stream/IngestServerTester$IngestTestState + a Uninitalized + b Starting + c ConnectingToServer + d TestingServer + e DoneTestingServer + f Finished + g Cancelling + h Cancelled + i Failed + j $VALUES + values ()[Lbql$b; values +bqm net/minecraft/client/stream/IStream + A ()Z func_152928_D + B ()Ltv/twitch/ErrorCode; func_152912_E + C ()Z func_152913_F + D ()Z func_152929_G + E ()Lbqm$a; func_152918_H + a (Lbqh;J)V func_152911_a + a (Lbqh;JJ)V func_176026_a + a (Z)V func_152910_a + e (Ljava/lang/String;)Ltv/twitch/chat/ChatUserInfo; func_152926_a + f ()V func_152923_i + f (Ljava/lang/String;)V func_152917_b + g ()V func_152935_j + h ()V func_152922_k + i ()Z func_152936_l + j ()Z func_152924_m + k ()Z func_152934_n + l ()Z func_152919_o + m ()V func_152931_p + n ()V func_152916_q + o ()V func_152933_r + p ()V func_152915_s + q ()V func_152930_t + r ()V func_152914_u + s ()[Ltv/twitch/broadcast/IngestServer; func_152925_v + u ()V func_152909_x + v ()Lbql; func_152932_y + w ()Z func_152908_z + x ()I func_152920_A + y ()Z func_152927_B + z ()Ljava/lang/String; func_152921_C +bqm$a net/minecraft/client/stream/IStream$AuthFailureReason + a ERROR + b INVALID_TOKEN + c $VALUES + values ()[Lbqm$a; values +bqn net/minecraft/client/stream/TwitchStream + a field_152949_a + b field_152950_b + c field_152951_c + d field_152952_d + e field_176029_e + f field_152953_e + g field_152954_f + h field_152955_g + i field_152956_h + j field_152957_i + k field_152958_j + l field_152959_k + m field_152960_l + n field_152961_m + o field_152962_n + p field_152963_o + q field_152964_p + r field_152965_q + A ()Z func_152928_D + B ()Ltv/twitch/ErrorCode; func_152912_E + C ()Z func_152913_F + D ()Z func_152929_G + E ()Lbqm$a; func_152918_H + F ()V func_152942_I + G ()Lorg/apache/logging/log4j/Logger; access$000 + a ()V func_152895_a + a (F)I func_152948_a + a (Lbqh;J)V func_152911_a + a (Lbqh;JJ)V func_176026_a + a (Lbqj$a;)V func_152891_a + a (Lbqk$c;)V func_176017_a + a (Lbql;Lbql$b;)V func_152907_a + a (Lbqn;)Lbqj; access$100 + a (Lbqn;Lbqm$a;)Lbqm$a; access$302 + a (Ljava/lang/String;)V func_180606_a + a (Ljava/lang/String;Ljava/lang/String;)V func_176019_a + a (Ljava/lang/String;Ltv/twitch/chat/ChatRawMessage;)V func_176027_a + a (Ljava/lang/String;[Ltv/twitch/chat/ChatRawMessage;)V func_180605_a + a (Ljava/lang/String;[Ltv/twitch/chat/ChatTokenizedMessage;)V func_176025_a + a (Ljava/lang/String;[Ltv/twitch/chat/ChatUserInfo;[Ltv/twitch/chat/ChatUserInfo;[Ltv/twitch/chat/ChatUserInfo;)V func_176018_a + a (Ljava/util/Set;Ljava/util/Set;I)Z func_176028_a + a (Ltv/twitch/ErrorCode;)V func_152897_a + a (Ltv/twitch/ErrorCode;Ltv/twitch/AuthToken;)V func_152900_a + a (Ltv/twitch/ErrorCode;[Ltv/twitch/broadcast/GameInfo;)V func_152898_a + a (Ltv/twitch/broadcast/IngestList;)V func_152896_a + a (Ltv/twitch/broadcast/StreamInfo;)V func_152894_a + a (Z)V func_152910_a + b ()V func_152899_b + b (F)I func_152946_b + b (Lbqn;)Lbqk; access$200 + b (Ljava/lang/String;)V func_180607_b + b (Ltv/twitch/ErrorCode;)V func_152893_b + c ()V func_152901_c + c (F)F func_152947_c + c (Ljava/lang/String;)V func_176016_c + c (Ltv/twitch/ErrorCode;)V func_152892_c + d ()V func_176021_d + d (Ljava/lang/String;)V func_176020_d + d (Ltv/twitch/ErrorCode;)V func_176023_d + e ()V func_176024_e + e (Ljava/lang/String;)Ltv/twitch/chat/ChatUserInfo; func_152926_a + e (Ltv/twitch/ErrorCode;)V func_176022_e + f ()V func_152923_i + f (Ljava/lang/String;)V func_152917_b + g ()V func_152935_j + h ()V func_152922_k + i ()Z func_152936_l + j ()Z func_152924_m + k ()Z func_152934_n + l ()Z func_152919_o + m ()V func_152931_p + n ()V func_152916_q + o ()V func_152933_r + p ()V func_152915_s + q ()V func_152930_t + r ()V func_152914_u + s ()[Ltv/twitch/broadcast/IngestServer; func_152925_v + u ()V func_152909_x + v ()Lbql; func_152932_y + w ()Z func_152908_z + x ()I func_152920_A + y ()Z func_152927_B + z ()Ljava/lang/String; func_152921_C +bqn$1 net/minecraft/client/stream/TwitchStream$1 + a field_153083_a + b field_153084_b + run ()V run +bqn$1$1 net/minecraft/client/stream/TwitchStream$1$1 + a field_153082_a + run ()V run +bqo net/minecraft/client/stream/NullStream + a field_152938_a + A ()Z func_152928_D + B ()Ltv/twitch/ErrorCode; func_152912_E + C ()Z func_152913_F + D ()Z func_152929_G + E ()Lbqm$a; func_152918_H + a ()Ljava/lang/Throwable; func_152937_a + a (Lbqh;J)V func_152911_a + a (Lbqh;JJ)V func_176026_a + a (Z)V func_152910_a + e (Ljava/lang/String;)Ltv/twitch/chat/ChatUserInfo; func_152926_a + f ()V func_152923_i + f (Ljava/lang/String;)V func_152917_b + g ()V func_152935_j + h ()V func_152922_k + i ()Z func_152936_l + j ()Z func_152924_m + k ()Z func_152934_n + l ()Z func_152919_o + m ()V func_152931_p + n ()V func_152916_q + o ()V func_152933_r + p ()V func_152915_s + q ()V func_152930_t + r ()V func_152914_u + s ()[Ltv/twitch/broadcast/IngestServer; func_152925_v + u ()V func_152909_x + v ()Lbql; func_152932_y + w ()Z func_152908_z + x ()I func_152920_A + y ()Z func_152927_B + z ()Ljava/lang/String; func_152921_C +bqq net/minecraft/util/Matrix4f +bqr net/minecraft/util/Vector3d + a field_181059_a + b field_181060_b + c field_181061_c +bqs net/minecraft/client/renderer/OpenGlHelper + A field_176097_z + B field_176080_A + C field_176081_B + D field_176082_C + E field_176076_D + F field_176077_E + G field_176078_F + H field_176079_G + I field_176084_H + J field_176085_I + K field_176086_J + L field_176087_K + M field_153211_u + N field_148827_a + O field_148824_g + P field_176083_O + Q field_181062_Q + R field_176089_P + S field_148826_e + T field_153212_w + U field_153213_x + V field_153214_y + W field_153215_z + X field_176088_V + Y field_148828_i + Z field_153196_B + a field_153197_d + aa field_183030_aa + ab field_176090_Y + b field_181063_b + c field_153198_e + d field_153199_f + e field_153200_g + f field_153201_h + g field_153202_i + h field_153203_j + i field_153204_k + j field_153205_l + k field_153206_m + l field_148823_f + m field_153207_o + n field_153208_p + o field_153209_q + p field_153210_r + q field_77478_a + r field_77476_b + s field_176096_r + t field_176095_s + u field_176094_t + v field_176093_u + w field_176092_v + x field_176091_w + y field_176099_x + z field_176098_y + a ()V func_77474_a + a (I)V func_153180_a + a (IFF)V func_77475_a + a (II)I func_153175_a + a (IIII)V func_153186_a + a (IIIII)V func_153188_a + a (ILjava/lang/CharSequence;)I func_153194_a + a (ILjava/nio/ByteBuffer;)V func_153169_a + a (ILjava/nio/ByteBuffer;I)V func_176071_a + a (ILjava/nio/FloatBuffer;)V func_153168_a + a (ILjava/nio/IntBuffer;)V func_153181_a + a (IZLjava/nio/FloatBuffer;)V func_153173_a + b ()Z func_153193_b + b (I)I func_153195_b + b (II)V func_153178_b + b (IIII)V func_153190_b + b (ILjava/lang/CharSequence;)I func_153164_b + b (ILjava/nio/FloatBuffer;)V func_153177_b + b (ILjava/nio/IntBuffer;)V func_153182_b + b (IZLjava/nio/FloatBuffer;)V func_153189_b + c ()Ljava/lang/String; func_153172_c + c (I)V func_153170_c + c (II)I func_153157_c + c (IIII)V func_148821_a + c (ILjava/nio/FloatBuffer;)V func_153191_c + c (ILjava/nio/IntBuffer;)V func_153192_c + c (IZLjava/nio/FloatBuffer;)V func_153160_c + d ()I func_153183_d + d (I)V func_153161_d + d (II)Ljava/lang/String; func_153158_d + d (ILjava/nio/FloatBuffer;)V func_153159_d + d (ILjava/nio/IntBuffer;)V func_153162_d + e ()I func_176073_e + e (I)V func_153187_e + e (II)Ljava/lang/String; func_153166_e + f ()Z func_176075_f + f (I)V func_153179_f + f (II)V func_153163_f + g ()I func_153165_e + g (I)V func_176074_g + g (II)V func_176072_g + h ()I func_153185_f + h (I)V func_153184_g + h (II)V func_153171_g + i ()Z func_148822_b + i (I)V func_153174_h + i (II)V func_153176_h + j ()Ljava/lang/String; func_183029_j + j (I)I func_153167_i + k (I)V func_77473_a + l (I)V func_77472_b +br net/minecraft/command/CommandTime + a ()I func_82362_a + a (Lm;I)V func_71552_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b (Lm;I)V func_71553_b + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bs net/minecraft/command/CommandTitle + a field_175774_a + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bt net/minecraft/command/CommandToggleDownfall + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + d ()V func_71554_c +bu net/minecraft/command/CommandTrigger + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bv net/minecraft/command/CommandWeather + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bw net/minecraft/command/server/CommandWhitelist + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +bx net/minecraft/command/CommandWorldBorder + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + d ()Lams; func_175772_d +bz net/minecraft/command/CommandException + a field_74845_a + a ()[Ljava/lang/Object; func_74844_a +c net/minecraft/crash/CrashReportCategory + a field_85078_a + b field_85076_b + c field_85077_c + d field_85075_d + a ()[Ljava/lang/StackTraceElement; func_147152_a + a (DDD)Ljava/lang/String; func_85074_a + a (I)I func_85073_a + a (Lc;Lcj;Lafh;I)V func_180523_a + a (Lc;Lcj;Lalz;)V func_175750_a + a (Lcj;)Ljava/lang/String; func_180522_a + a (Ljava/lang/StackTraceElement;Ljava/lang/StackTraceElement;)Z func_85069_a + a (Ljava/lang/String;Ljava/lang/Object;)V func_71507_a + a (Ljava/lang/String;Ljava/lang/Throwable;)V func_71499_a + a (Ljava/lang/String;Ljava/util/concurrent/Callable;)V func_71500_a + a (Ljava/lang/StringBuilder;)V func_85072_a + b (I)V func_85070_b +c$1 net/minecraft/crash/CrashReportCategory$1 + a field_85080_a + b field_147151_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +c$2 net/minecraft/crash/CrashReportCategory$2 + a field_85063_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +c$3 net/minecraft/crash/CrashReportCategory$3 + a field_175749_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +c$6 net/minecraft/crash/CrashReportCategory$6 + a field_175754_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +c$7 net/minecraft/crash/CrashReportCategory$7 + a field_175752_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +c$a net/minecraft/crash/CrashReportCategory$Entry + a field_85092_a + b field_85091_b + a ()Ljava/lang/String; func_85089_a + b ()Ljava/lang/String; func_85090_b +ca net/minecraft/command/EntityNotFoundException +cb net/minecraft/command/NumberInvalidException +cc net/minecraft/command/SyntaxErrorException +cd net/minecraft/command/PlayerNotFoundException +ce net/minecraft/command/CommandNotFoundException +cf net/minecraft/command/WrongUsageException +cj net/minecraft/util/BlockPos + a field_177992_a + c field_177990_b + d field_177991_c + e field_177989_d + f field_177987_f + g field_177988_g + h field_177994_h + i field_177995_i + j field_177993_j + a ()Lcj; func_177984_a + a (DDD)Lcj; func_177963_a + a (III)Lcj; func_177982_a + a (J)Lcj; func_177969_a + a (Lcj;Lcj;)Ljava/lang/Iterable; func_177980_a + a (Lcq;)Lcj; func_177972_a + a (Lcq;I)Lcj; func_177967_a + a (Ldf;)Lcj; func_177971_a + b ()Lcj; func_177977_b + b (I)Lcj; func_177981_b + b (Lcj;Lcj;)Ljava/lang/Iterable; func_177975_b + b (Ldf;)Lcj; func_177973_b + c ()Lcj; func_177978_c + c (I)Lcj; func_177979_c + c (Ldf;)Lcj; func_177955_d + d ()Lcj; func_177968_d + d (I)Lcj; func_177964_d + d (Ldf;)Ldf; func_177955_d + e ()Lcj; func_177976_e + e (I)Lcj; func_177970_e + f ()Lcj; func_177974_f + f (I)Lcj; func_177985_f + g ()J func_177986_g + g (I)Lcj; func_177965_g +cj$1 net/minecraft/util/BlockPos$1 + a field_179307_a + b field_179306_b + iterator ()Ljava/util/Iterator; iterator +cj$1$1 net/minecraft/util/BlockPos$1$1 + a field_179310_a + b field_179309_b + a ()Lcj; computeNext + computeNext ()Ljava/lang/Object; computeNext +cj$2 net/minecraft/util/BlockPos$2 + a field_179312_a + b field_179311_b + iterator ()Ljava/util/Iterator; iterator +cj$2$1 net/minecraft/util/BlockPos$2$1 + a field_179315_a + b field_179314_b + a ()Lcj$a; computeNext + computeNext ()Ljava/lang/Object; computeNext +cj$a net/minecraft/util/BlockPos$MutableBlockPos + c field_177997_b + d field_177998_c + e field_177996_d + a (Lcj$a;I)I access$002 + b (Lcj$a;I)I access$102 + c (III)Lcj$a; func_181079_c + c (Lcj$a;I)I access$202 + d (Ldf;)Ldf; func_177955_d + n ()I func_177958_n + o ()I func_177956_o + p ()I func_177952_p +ck net/minecraft/dispenser/IBlockSource + a ()D func_82615_a + b ()D func_82617_b + c ()D func_82616_c + d ()Lcj; func_180699_d + f ()I func_82620_h + h ()Lakw; func_150835_j +cl net/minecraft/block/BlockSourceImpl + a field_82627_a + b field_179317_b + a ()D func_82615_a + b ()D func_82617_b + c ()D func_82616_c + d ()Lcj; func_180699_d + f ()I func_82620_h + h ()Lakw; func_150835_j + i ()Ladm; func_82618_k +cm net/minecraft/util/Cartesian + a (Ljava/lang/Class;I)[Ljava/lang/Object; access$200 + a (Ljava/lang/Class;Ljava/lang/Iterable;)Ljava/lang/Iterable; func_179318_a + a (Ljava/lang/Iterable;)Ljava/lang/Iterable; func_179321_a + b (Ljava/lang/Class;I)[Ljava/lang/Object; func_179319_b + b (Ljava/lang/Class;Ljava/lang/Iterable;)[Ljava/lang/Object; func_179322_b + b (Ljava/lang/Iterable;)Ljava/lang/Iterable; func_179323_b +cm$1 net/minecraft/util/Cartesian$1 +cm$a net/minecraft/util/Cartesian$GetList + a ([Ljava/lang/Object;)Ljava/util/List; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +cm$b net/minecraft/util/Cartesian$Product + a field_179429_a + b field_179428_b + iterator ()Ljava/util/Iterator; iterator +cm$b$a net/minecraft/util/Cartesian$Product$ProductIterator + a field_179426_a + b field_179424_b + c field_179425_c + d field_179423_d + a ()[Ljava/lang/Object; next + b ()V func_179422_b + hasNext ()Z hasNext + next ()Ljava/lang/Object; next +cn net/minecraft/dispenser/BehaviorDefaultDispenseItem + a (Ladm;Lzx;ILcq;Lcz;)V func_82486_a + a (Lck;)V func_82485_a + a (Lck;Lcq;)V func_82489_a + a (Lck;Lzx;)Lzx; func_82482_a + a (Lcq;)I func_82488_a + b (Lck;Lzx;)Lzx; func_82487_b +co net/minecraft/util/RegistryNamespacedDefaultedByKey + d field_148760_d + e field_148761_e + a ()V func_177776_a + a (I)Ljava/lang/Object; func_148754_a + a (ILjava/lang/Object;Ljava/lang/Object;)V func_177775_a + a (Ljava/lang/Object;)Ljava/lang/Object; func_82594_a +cp net/minecraft/util/RegistryDefaulted + a field_82597_b + a (Ljava/lang/Object;)Ljava/lang/Object; func_82594_a +cq net/minecraft/util/EnumFacing + a DOWN + b UP + c NORTH + d SOUTH + e WEST + f EAST + g field_176748_g + h field_176759_h + i field_176760_i + j field_176757_j + k field_176758_k + l field_176755_l + m field_176756_m + n field_82609_l + o field_176754_o + p field_176761_p + q $VALUES + a ()I func_176745_a + a (D)Lcq; func_176733_a + a (FFF)Lcq; func_176737_a + a (I)Lcq; func_82600_a + a (Lcq$a;)Lcq; func_176732_a + a (Lcq$b;Lcq$a;)Lcq; func_181076_a + a (Ljava/lang/String;)Lcq; func_176739_a + a (Ljava/util/Random;)Lcq; func_176741_a + b ()I func_176736_b + b (I)Lcq; func_176731_b + c ()Lcq$b; func_176743_c + d ()Lcq; func_176734_d + e ()Lcq; func_176746_e + f ()Lcq; func_176735_f + g ()I func_82601_c + h ()I func_96559_d + i ()I func_82599_e + j ()Ljava/lang/String; func_176742_j + k ()Lcq$a; func_176740_k + l ()Ljava/lang/String; func_176610_l + m ()Ldf; func_176730_m + n ()Lcq; func_176744_n + p ()Lcq; func_176738_p + toString ()Ljava/lang/String; toString + values ()[Lcq; values +cq$1 net/minecraft/util/EnumFacing$1 + a field_179515_a + b field_179513_b + c field_179514_c +cq$a net/minecraft/util/EnumFacing$Axis + a X + b Y + c Z + d field_176725_d + e field_176726_e + f field_176723_f + g $VALUES + a ()Ljava/lang/String; func_176719_a + a (Lcq;)Z apply + a (Ljava/lang/String;)Lcq$a; func_176717_a + apply (Ljava/lang/Object;)Z apply + b ()Z func_176720_b + c ()Z func_176722_c + d ()Lcq$c; func_176716_d + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lcq$a; values +cq$b net/minecraft/util/EnumFacing$AxisDirection + a POSITIVE + b NEGATIVE + c field_179528_c + d field_179525_d + e $VALUES + a ()I func_179524_a + toString ()Ljava/lang/String; toString + values ()[Lcq$b; values +cq$c net/minecraft/util/EnumFacing$Plane + a HORIZONTAL + b VERTICAL + c $VALUES + a ()[Lcq; func_179516_a + a (Lcq;)Z apply + a (Ljava/util/Random;)Lcq; func_179518_a + apply (Ljava/lang/Object;)Z apply + iterator ()Ljava/util/Iterator; iterator + values ()[Lcq$c; values +cr net/minecraft/dispenser/IBehaviorDispenseItem + a field_82483_a + a (Lck;Lzx;)Lzx; func_82482_a +cr$1 net/minecraft/dispenser/IBehaviorDispenseItem$1 + a (Lck;Lzx;)Lzx; func_82482_a +cs net/minecraft/util/IObjectIntIterable +ct net/minecraft/util/ObjectIntIdentityMap + a field_148749_a + b field_148748_b + a (I)Ljava/lang/Object; func_148745_a + a (Ljava/lang/Object;I)V func_148746_a + b (Ljava/lang/Object;)I func_148747_b + iterator ()Ljava/util/Iterator; iterator +cu net/minecraft/dispenser/ILocatableSource +cv net/minecraft/dispenser/ILocation + i ()Ladm; func_82618_k +cw net/minecraft/util/MapPopulator + a (Ljava/lang/Iterable;Ljava/lang/Iterable;Ljava/util/Map;)Ljava/util/Map; func_179399_a + b (Ljava/lang/Iterable;Ljava/lang/Iterable;)Ljava/util/Map; func_179400_b +cx net/minecraft/util/RegistryNamespaced + a field_148759_a + b field_148758_b + a (I)Ljava/lang/Object; func_148754_a + a (ILjava/lang/Object;Ljava/lang/Object;)V func_177775_a + a (Ljava/lang/Object;)Ljava/lang/Object; func_82594_a + b ()Ljava/util/Map; func_148740_a + b (Ljava/lang/Object;)I func_148757_b + c (Ljava/lang/Object;)Ljava/lang/Object; func_177774_c + d (Ljava/lang/Object;)Z func_148741_d + iterator ()Ljava/util/Iterator; iterator +cy net/minecraft/util/EnumParticleTypes + A FLAME + B LAVA + C FOOTSTEP + D CLOUD + E REDSTONE + F SNOWBALL + G SNOW_SHOVEL + H SLIME + I HEART + J BARRIER + K ITEM_CRACK + L BLOCK_CRACK + M BLOCK_DUST + N WATER_DROP + O ITEM_TAKE + P MOB_APPEARANCE + Q field_179369_Q + R field_179372_R + S field_179371_S + T field_179366_T + U field_179365_U + V field_179368_V + W $VALUES + a EXPLOSION_NORMAL + b EXPLOSION_LARGE + c EXPLOSION_HUGE + d FIREWORKS_SPARK + e WATER_BUBBLE + f WATER_SPLASH + g WATER_WAKE + h SUSPENDED + i SUSPENDED_DEPTH + j CRIT + k CRIT_MAGIC + l SMOKE_NORMAL + m SMOKE_LARGE + n SPELL + o SPELL_INSTANT + p SPELL_MOB + q SPELL_MOB_AMBIENT + r SPELL_WITCH + s DRIP_WATER + t DRIP_LAVA + u VILLAGER_ANGRY + v VILLAGER_HAPPY + w TOWN_AURA + x NOTE + y PORTAL + z ENCHANTMENT_TABLE + a ()[Ljava/lang/String; func_179349_a + a (I)Lcy; func_179342_a + b ()Ljava/lang/String; func_179346_b + c ()I func_179348_c + d ()I func_179345_d + e ()Z func_179344_e + f ()Z func_179343_f + values ()[Lcy; values +cz net/minecraft/dispenser/IPosition + a ()D func_82615_a + b ()D func_82617_b + c ()D func_82616_c +da net/minecraft/dispenser/PositionImpl + a field_82630_a + b field_82628_b + c field_82629_c + a ()D func_82615_a + b ()D func_82617_b + c ()D func_82616_c +db net/minecraft/util/IRegistry + a (Ljava/lang/Object;)Ljava/lang/Object; func_82594_a + a (Ljava/lang/Object;Ljava/lang/Object;)V func_82595_a +dc net/minecraft/util/Rotations + a field_179419_a + b field_179417_b + c field_179418_c + a ()Ldu; func_179414_a + b ()F func_179415_b + c ()F func_179416_c + d ()F func_179413_d + equals (Ljava/lang/Object;)Z equals +dd net/minecraft/util/RegistrySimple + a field_148743_a + c field_82596_a + a (Ljava/lang/Object;)Ljava/lang/Object; func_82594_a + a (Ljava/lang/Object;Ljava/lang/Object;)V func_82595_a + b ()Ljava/util/Map; func_148740_a + c ()Ljava/util/Set; func_148742_b + d (Ljava/lang/Object;)Z func_148741_d + iterator ()Ljava/util/Iterator; iterator +df net/minecraft/util/Vec3i + a field_177962_a + b field_177959_e + c field_177960_b + d field_177961_c + c (DDD)D func_177954_c + compareTo (Ljava/lang/Object;)I compareTo + d (DDD)D func_177957_d + d (Ldf;)Ldf; func_177955_d + equals (Ljava/lang/Object;)Z equals + g (Ldf;)I compareTo + hashCode ()I hashCode + i (Ldf;)D func_177951_i + n ()I func_177958_n + o ()I func_177956_o + p ()I func_177952_p + toString ()Ljava/lang/String; toString +di net/minecraft/util/StatCollector + a field_74839_a + b field_150828_b + a ()J func_150827_a + a (Ljava/lang/String;)Ljava/lang/String; func_74838_a + a (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String; func_74837_a + b (Ljava/lang/String;)Ljava/lang/String; func_150826_b + c (Ljava/lang/String;)Z func_94522_b +dj net/minecraft/util/StringTranslate + a field_111053_a + b field_135065_b + c field_74817_a + d field_74816_c + e field_150511_e + a ()Ldj; func_74808_a + a (Ljava/lang/String;)Ljava/lang/String; func_74805_b + a (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String; func_74803_a + a (Ljava/util/Map;)V func_135063_a + b (Ljava/lang/String;)Z func_94520_b + c ()J func_150510_c + c (Ljava/lang/String;)Ljava/lang/String; func_135064_c +dl net/minecraft/nbt/NBTTagByteArray + b field_74754_a + a ()B func_74732_a + a (Ljava/io/DataInput;ILdw;)V func_152446_a + a (Ljava/io/DataOutput;)V func_74734_a + b ()Leb; func_74737_b + c ()[B func_150292_c + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dm net/minecraft/nbt/NBTTagByte + b field_74756_a + a ()B func_74732_a + a (Ljava/io/DataInput;ILdw;)V func_152446_a + a (Ljava/io/DataOutput;)V func_74734_a + b ()Leb; func_74737_b + c ()J func_150291_c + d ()I func_150287_d + e ()S func_150289_e + equals (Ljava/lang/Object;)Z equals + f ()B func_150290_f + g ()D func_150286_g + h ()F func_150288_h + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dn net/minecraft/nbt/NBTTagCompound + b field_74784_a + a ()B func_74732_a + a (BLjava/lang/String;Ljava/io/DataInput;ILdw;)Leb; func_152449_a + a (Ldn;)V func_179237_a + a (Ljava/io/DataInput;ILdw;)V func_152446_a + a (Ljava/io/DataInput;Ldw;)B func_152447_a + a (Ljava/io/DataOutput;)V func_74734_a + a (Ljava/lang/String;)Leb; func_74781_a + a (Ljava/lang/String;B)V func_74774_a + a (Ljava/lang/String;D)V func_74780_a + a (Ljava/lang/String;F)V func_74776_a + a (Ljava/lang/String;I)V func_74768_a + a (Ljava/lang/String;ILjava/lang/ClassCastException;)Lb; func_82581_a + a (Ljava/lang/String;J)V func_74772_a + a (Ljava/lang/String;Leb;)V func_74782_a + a (Ljava/lang/String;Leb;Ljava/io/DataOutput;)V func_150298_a + a (Ljava/lang/String;Ljava/lang/String;)V func_74778_a + a (Ljava/lang/String;S)V func_74777_a + a (Ljava/lang/String;Z)V func_74757_a + a (Ljava/lang/String;[B)V func_74773_a + a (Ljava/lang/String;[I)V func_74783_a + b ()Leb; func_74737_b + b (Ldn;)Ljava/util/Map; access$000 + b (Ljava/io/DataInput;Ldw;)Ljava/lang/String; func_152448_b + b (Ljava/lang/String;)B func_150299_b + b (Ljava/lang/String;I)Z func_150297_b + c ()Ljava/util/Set; func_150296_c + c (Ljava/lang/String;)Z func_74764_b + c (Ljava/lang/String;I)Ldu; func_150295_c + c_ ()Z func_82582_d + d (Ljava/lang/String;)B func_74771_c + e (Ljava/lang/String;)S func_74765_d + equals (Ljava/lang/Object;)Z equals + f (Ljava/lang/String;)I func_74762_e + g (Ljava/lang/String;)J func_74763_f + h (Ljava/lang/String;)F func_74760_g + hashCode ()I hashCode + i (Ljava/lang/String;)D func_74769_h + j (Ljava/lang/String;)Ljava/lang/String; func_74779_i + k (Ljava/lang/String;)[B func_74770_j + l (Ljava/lang/String;)[I func_74759_k + m (Ljava/lang/String;)Ldn; func_74775_l + n (Ljava/lang/String;)Z func_74767_n + o (Ljava/lang/String;)V func_82580_o + toString ()Ljava/lang/String; toString +dn$1 net/minecraft/nbt/NBTTagCompound$1 + a field_82585_a + b field_82584_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +dn$2 net/minecraft/nbt/NBTTagCompound$2 + a field_82588_a + b field_82587_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +dp net/minecraft/nbt/NBTTagDouble + b field_74755_a + a ()B func_74732_a + a (Ljava/io/DataInput;ILdw;)V func_152446_a + a (Ljava/io/DataOutput;)V func_74734_a + b ()Leb; func_74737_b + c ()J func_150291_c + d ()I func_150287_d + e ()S func_150289_e + equals (Ljava/lang/Object;)Z equals + f ()B func_150290_f + g ()D func_150286_g + h ()F func_150288_h + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dq net/minecraft/nbt/NBTTagEnd + a ()B func_74732_a + a (Ljava/io/DataInput;ILdw;)V func_152446_a + a (Ljava/io/DataOutput;)V func_74734_a + b ()Leb; func_74737_b + toString ()Ljava/lang/String; toString +dr net/minecraft/nbt/NBTTagFloat + b field_74750_a + a ()B func_74732_a + a (Ljava/io/DataInput;ILdw;)V func_152446_a + a (Ljava/io/DataOutput;)V func_74734_a + b ()Leb; func_74737_b + c ()J func_150291_c + d ()I func_150287_d + e ()S func_150289_e + equals (Ljava/lang/Object;)Z equals + f ()B func_150290_f + g ()D func_150286_g + h ()F func_150288_h + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ds net/minecraft/nbt/NBTTagIntArray + b field_74749_a + a ()B func_74732_a + a (Ljava/io/DataInput;ILdw;)V func_152446_a + a (Ljava/io/DataOutput;)V func_74734_a + b ()Leb; func_74737_b + c ()[I func_150302_c + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dt net/minecraft/nbt/NBTTagInt + b field_74748_a + a ()B func_74732_a + a (Ljava/io/DataInput;ILdw;)V func_152446_a + a (Ljava/io/DataOutput;)V func_74734_a + b ()Leb; func_74737_b + c ()J func_150291_c + d ()I func_150287_d + e ()S func_150289_e + equals (Ljava/lang/Object;)Z equals + f ()B func_150290_f + g ()D func_150286_g + h ()F func_150288_h + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +du net/minecraft/nbt/NBTTagList + b field_179239_b + c field_74747_a + d field_74746_b + a ()B func_74732_a + a (I)Leb; func_74744_a + a (ILeb;)V func_150304_a + a (Leb;)V func_74742_a + a (Ljava/io/DataInput;ILdw;)V func_152446_a + a (Ljava/io/DataOutput;)V func_74734_a + b ()Leb; func_74737_b + b (I)Ldn; func_150305_b + c ()I func_74745_c + c (I)[I func_150306_c + c_ ()Z func_82582_d + d (I)D func_150309_d + e (I)F func_150308_e + equals (Ljava/lang/Object;)Z equals + f ()I func_150303_d + f (I)Ljava/lang/String; func_150307_f + g (I)Leb; func_179238_g + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dv net/minecraft/nbt/NBTTagLong + b field_74753_a + a ()B func_74732_a + a (Ljava/io/DataInput;ILdw;)V func_152446_a + a (Ljava/io/DataOutput;)V func_74734_a + b ()Leb; func_74737_b + c ()J func_150291_c + d ()I func_150287_d + e ()S func_150289_e + equals (Ljava/lang/Object;)Z equals + f ()B func_150290_f + g ()D func_150286_g + h ()F func_150288_h + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dw net/minecraft/nbt/NBTSizeTracker + a field_152451_a + b field_152452_b + c field_152453_c + a (J)V func_152450_a +dw$1 net/minecraft/nbt/NBTSizeTracker$1 + a (J)V func_152450_a +dx net/minecraft/nbt/CompressedStreamTools + a (Ldn;Ljava/io/DataOutput;)V func_74800_a + a (Ldn;Ljava/io/File;)V func_74793_a + a (Ldn;Ljava/io/OutputStream;)V func_74799_a + a (Leb;Ljava/io/DataOutput;)V func_150663_a + a (Ljava/io/DataInput;ILdw;)Leb; func_152455_a + a (Ljava/io/DataInput;Ldw;)Ldn; func_152456_a + a (Ljava/io/DataInputStream;)Ldn; func_74794_a + a (Ljava/io/File;)Ldn; func_74797_a + a (Ljava/io/InputStream;)Ldn; func_74796_a + b (Ldn;Ljava/io/File;)V func_74795_b +dy net/minecraft/nbt/NBTUtil + a (Ldn;)Lcom/mojang/authlib/GameProfile; func_152459_a + a (Ldn;Lcom/mojang/authlib/GameProfile;)Ldn; func_180708_a + a (Leb;Leb;Z)Z func_181123_a +dz net/minecraft/nbt/NBTTagShort + b field_74752_a + a ()B func_74732_a + a (Ljava/io/DataInput;ILdw;)V func_152446_a + a (Ljava/io/DataOutput;)V func_74734_a + b ()Leb; func_74737_b + c ()J func_150291_c + d ()I func_150287_d + e ()S func_150289_e + equals (Ljava/lang/Object;)Z equals + f ()B func_150290_f + g ()D func_150286_g + h ()F func_150288_h + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +e net/minecraft/util/ReportedException + a field_71576_a + a ()Lb; func_71575_a + getCause ()Ljava/lang/Throwable; getCause + getMessage ()Ljava/lang/String; getMessage +ea net/minecraft/nbt/NBTTagString + b field_74751_a + a ()B func_74732_a + a (Ljava/io/DataInput;ILdw;)V func_152446_a + a (Ljava/io/DataOutput;)V func_74734_a + a_ ()Ljava/lang/String; func_150285_a_ + b ()Leb; func_74737_b + c_ ()Z func_82582_d + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eb net/minecraft/nbt/NBTBase + a field_82578_b + a ()B func_74732_a + a (B)Leb; func_150284_a + a (Ljava/io/DataInput;ILdw;)V func_152446_a + a (Ljava/io/DataOutput;)V func_74734_a + a_ ()Ljava/lang/String; func_150285_a_ + b ()Leb; func_74737_b + c_ ()Z func_82582_d + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eb$a net/minecraft/nbt/NBTBase$NBTPrimitive + c ()J func_150291_c + d ()I func_150287_d + e ()S func_150289_e + f ()B func_150290_f + g ()D func_150286_g + h ()F func_150288_h +ec net/minecraft/nbt/NBTException +ed net/minecraft/nbt/JsonToNBT + a field_150317_a + b field_179273_b + a (Ljava/lang/String;)Ldn; func_180713_a + a (Ljava/lang/String;C)I func_150312_a + a (Ljava/lang/String;I)Ljava/lang/String; func_179269_a + a (Ljava/lang/String;Ljava/lang/String;)Led$a; func_150316_a + a (Ljava/lang/String;Z)Led$a; func_179270_a + a ([Ljava/lang/String;)Led$a; func_179272_a + b (Ljava/lang/String;)I func_150310_b + b (Ljava/lang/String;I)Z func_179271_b + b (Ljava/lang/String;Z)Ljava/lang/String; func_150314_a + c (Ljava/lang/String;Z)Ljava/lang/String; func_150313_b + d (Ljava/lang/String;Z)Ljava/lang/String; func_150311_c +ed$a net/minecraft/nbt/JsonToNBT$Any + a field_150490_a + a ()Leb; func_150489_a +ed$b net/minecraft/nbt/JsonToNBT$Compound + b field_150491_b + a ()Leb; func_150489_a +ed$c net/minecraft/nbt/JsonToNBT$List + b field_150492_b + a ()Leb; func_150489_a +ed$d net/minecraft/nbt/JsonToNBT$Primitive + b field_150493_b + c field_179265_c + d field_179263_d + e field_179264_e + f field_179261_f + g field_179262_g + h field_179267_h + i field_179268_i + j field_179266_j + a ()Leb; func_150489_a +ef net/minecraft/network/NettyEncryptionTranslator + a field_150507_a + b field_150505_b + c field_150506_c + a (Lio/netty/buffer/ByteBuf;)[B func_150502_a + a (Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V func_150504_a + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; func_150503_a +eg net/minecraft/network/NettyEncryptingDecoder + a field_150509_a + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V decode + decode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V decode +eh net/minecraft/network/NettyEncryptingEncoder + a field_150750_a + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V encode + encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V encode +ei net/minecraft/network/NettyCompressionDecoder + a field_179305_a + b field_179304_b + a (I)V func_179303_a + decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V decode +ej net/minecraft/network/NettyCompressionEncoder + a field_179302_a + b field_179300_b + c field_179301_c + a (I)V func_179299_a + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V encode + encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V encode +ek net/minecraft/network/NetworkManager + a field_150740_a + b field_150738_b + c field_150739_c + d field_179295_d + e field_181125_e + f field_179296_e + g field_150735_g + h field_179294_g + i field_150745_j + j field_181680_j + k field_150746_k + l field_150743_l + m field_150744_m + n field_150742_o + o field_152463_r + p field_179297_n + a ()V func_74428_b + a (I)V func_179289_a + a (Lek;)Lio/netty/channel/Channel; access$000 + a (Lel;)V func_150723_a + a (Lep;)V func_150719_a + a (Leu;)V func_150718_a + a (Lff;)V func_179290_a + a (Lff;Lio/netty/util/concurrent/GenericFutureListener;[Lio/netty/util/concurrent/GenericFutureListener;)V func_179288_a + a (Lff;[Lio/netty/util/concurrent/GenericFutureListener;)V func_150732_b + a (Lio/netty/channel/ChannelHandlerContext;Lff;)V channelRead0 + a (Ljava/net/InetAddress;IZ)Lek; func_181124_a + a (Ljava/net/SocketAddress;)Lek; func_150722_a + a (Ljavax/crypto/SecretKey;)V func_150727_a + b ()Ljava/net/SocketAddress; func_74430_c + c ()Z func_150731_c + channelActive (Lio/netty/channel/ChannelHandlerContext;)V channelActive + channelInactive (Lio/netty/channel/ChannelHandlerContext;)V channelInactive + channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V channelRead0 + exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V exceptionCaught + f ()Z func_179292_f + g ()Z func_150724_d + h ()Z func_179291_h + i ()Lep; func_150729_e + j ()Leu; func_150730_f + k ()V func_150721_g + l ()V func_179293_l + m ()V func_150733_h +ek$1 net/minecraft/network/NetworkManager$1 + a ()Lio/netty/channel/nio/NioEventLoopGroup; func_179280_b + b ()Ljava/lang/Object; func_179280_b +ek$2 net/minecraft/network/NetworkManager$2 + a ()Lio/netty/channel/epoll/EpollEventLoopGroup; func_179280_b + b ()Ljava/lang/Object; func_179280_b +ek$3 net/minecraft/network/NetworkManager$3 + a ()Lio/netty/channel/local/LocalEventLoopGroup; func_179280_b + b ()Ljava/lang/Object; func_179280_b +ek$4 net/minecraft/network/NetworkManager$4 + a field_181130_a + b field_181131_b + c field_181132_c + d field_181133_d + e field_181134_e + run ()V run +ek$5 net/minecraft/network/NetworkManager$5 + a field_179248_a + initChannel (Lio/netty/channel/Channel;)V initChannel +ek$6 net/minecraft/network/NetworkManager$6 + a field_181135_a + initChannel (Lio/netty/channel/Channel;)V initChannel +ek$a net/minecraft/network/NetworkManager$InboundHandlerTuplePacketListener + a field_150774_a + b field_150773_b + a (Lek$a;)Lff; access$100 + b (Lek$a;)[Lio/netty/util/concurrent/GenericFutureListener; access$200 +el net/minecraft/network/EnumConnectionState + a HANDSHAKING + b PLAY + c STATUS + d LOGIN + e field_181136_e + f field_181137_f + g field_150764_e + h field_150761_f + i field_150762_g + j field_179247_h + k $VALUES + a ()I func_150759_c + a (I)Lel; func_150760_a + a (Lff;)Lel; func_150752_a + a (Lfg;I)Lff; func_179244_a + a (Lfg;Lff;)Ljava/lang/Integer; func_179246_a + a (Lfg;Ljava/lang/Class;)Lel; func_179245_a + values ()[Lel; values +el$1 net/minecraft/network/EnumConnectionState$1 +el$2 net/minecraft/network/EnumConnectionState$2 +el$3 net/minecraft/network/EnumConnectionState$3 +el$4 net/minecraft/network/EnumConnectionState$4 +em net/minecraft/network/PacketBuffer + a field_150794_a + a ()[B func_179251_a + a (I)I func_150790_a + a (Lcj;)V func_179255_a + a (Ldn;)V func_150786_a + a (Leu;)V func_179256_a + a (Ljava/lang/Class;)Ljava/lang/Enum; func_179257_a + a (Ljava/lang/Enum;)V func_179249_a + a (Ljava/lang/String;)Lem; func_180714_a + a (Ljava/util/UUID;)V func_179252_a + a (Lzx;)V func_150788_a + a ([B)V func_179250_a + alloc ()Lio/netty/buffer/ByteBufAllocator; alloc + array ()[B array + arrayOffset ()I arrayOffset + b (I)V func_150787_b + b (J)V func_179254_b + bytesBefore (B)I bytesBefore + bytesBefore (IB)I bytesBefore + bytesBefore (IIB)I bytesBefore + c ()Lcj; func_179259_c + c (I)Ljava/lang/String; func_150789_c + capacity ()I capacity + capacity (I)Lio/netty/buffer/ByteBuf; capacity + clear ()Lio/netty/buffer/ByteBuf; clear + compareTo (Lio/netty/buffer/ByteBuf;)I compareTo + compareTo (Ljava/lang/Object;)I compareTo + copy ()Lio/netty/buffer/ByteBuf; copy + copy (II)Lio/netty/buffer/ByteBuf; copy + d ()Leu; func_179258_d + discardReadBytes ()Lio/netty/buffer/ByteBuf; discardReadBytes + discardSomeReadBytes ()Lio/netty/buffer/ByteBuf; discardSomeReadBytes + duplicate ()Lio/netty/buffer/ByteBuf; duplicate + e ()I func_150792_a + ensureWritable (I)Lio/netty/buffer/ByteBuf; ensureWritable + ensureWritable (IZ)I ensureWritable + equals (Ljava/lang/Object;)Z equals + f ()J func_179260_f + forEachByte (IILio/netty/buffer/ByteBufProcessor;)I forEachByte + forEachByte (Lio/netty/buffer/ByteBufProcessor;)I forEachByte + forEachByteDesc (IILio/netty/buffer/ByteBufProcessor;)I forEachByteDesc + forEachByteDesc (Lio/netty/buffer/ByteBufProcessor;)I forEachByteDesc + g ()Ljava/util/UUID; func_179253_g + getBoolean (I)Z getBoolean + getByte (I)B getByte + getBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; getBytes + getBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; getBytes + getBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; getBytes + getBytes (ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf; getBytes + getBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; getBytes + getBytes (ILjava/nio/channels/GatheringByteChannel;I)I getBytes + getBytes (I[B)Lio/netty/buffer/ByteBuf; getBytes + getBytes (I[BII)Lio/netty/buffer/ByteBuf; getBytes + getChar (I)C getChar + getDouble (I)D getDouble + getFloat (I)F getFloat + getInt (I)I getInt + getLong (I)J getLong + getMedium (I)I getMedium + getShort (I)S getShort + getUnsignedByte (I)S getUnsignedByte + getUnsignedInt (I)J getUnsignedInt + getUnsignedMedium (I)I getUnsignedMedium + getUnsignedShort (I)I getUnsignedShort + h ()Ldn; func_150793_b + hasArray ()Z hasArray + hasMemoryAddress ()Z hasMemoryAddress + hashCode ()I hashCode + i ()Lzx; func_150791_c + indexOf (IIB)I indexOf + internalNioBuffer (II)Ljava/nio/ByteBuffer; internalNioBuffer + isDirect ()Z isDirect + isReadable ()Z isReadable + isReadable (I)Z isReadable + isWritable ()Z isWritable + isWritable (I)Z isWritable + markReaderIndex ()Lio/netty/buffer/ByteBuf; markReaderIndex + markWriterIndex ()Lio/netty/buffer/ByteBuf; markWriterIndex + maxCapacity ()I maxCapacity + maxWritableBytes ()I maxWritableBytes + memoryAddress ()J memoryAddress + nioBuffer ()Ljava/nio/ByteBuffer; nioBuffer + nioBuffer (II)Ljava/nio/ByteBuffer; nioBuffer + nioBufferCount ()I nioBufferCount + nioBuffers ()[Ljava/nio/ByteBuffer; nioBuffers + nioBuffers (II)[Ljava/nio/ByteBuffer; nioBuffers + order ()Ljava/nio/ByteOrder; order + order (Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf; order + readBoolean ()Z readBoolean + readByte ()B readByte + readBytes (I)Lio/netty/buffer/ByteBuf; readBytes + readBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; readBytes + readBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; readBytes + readBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; readBytes + readBytes (Ljava/io/OutputStream;I)Lio/netty/buffer/ByteBuf; readBytes + readBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; readBytes + readBytes (Ljava/nio/channels/GatheringByteChannel;I)I readBytes + readBytes ([B)Lio/netty/buffer/ByteBuf; readBytes + readBytes ([BII)Lio/netty/buffer/ByteBuf; readBytes + readChar ()C readChar + readDouble ()D readDouble + readFloat ()F readFloat + readInt ()I readInt + readLong ()J readLong + readMedium ()I readMedium + readShort ()S readShort + readSlice (I)Lio/netty/buffer/ByteBuf; readSlice + readUnsignedByte ()S readUnsignedByte + readUnsignedInt ()J readUnsignedInt + readUnsignedMedium ()I readUnsignedMedium + readUnsignedShort ()I readUnsignedShort + readableBytes ()I readableBytes + readerIndex ()I readerIndex + readerIndex (I)Lio/netty/buffer/ByteBuf; readerIndex + refCnt ()I refCnt + release ()Z release + release (I)Z release + resetReaderIndex ()Lio/netty/buffer/ByteBuf; resetReaderIndex + resetWriterIndex ()Lio/netty/buffer/ByteBuf; resetWriterIndex + retain ()Lio/netty/buffer/ByteBuf; retain + retain ()Lio/netty/util/ReferenceCounted; retain + retain (I)Lio/netty/buffer/ByteBuf; retain + retain (I)Lio/netty/util/ReferenceCounted; retain + setBoolean (IZ)Lio/netty/buffer/ByteBuf; setBoolean + setByte (II)Lio/netty/buffer/ByteBuf; setByte + setBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; setBytes + setBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; setBytes + setBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; setBytes + setBytes (ILjava/io/InputStream;I)I setBytes + setBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; setBytes + setBytes (ILjava/nio/channels/ScatteringByteChannel;I)I setBytes + setBytes (I[B)Lio/netty/buffer/ByteBuf; setBytes + setBytes (I[BII)Lio/netty/buffer/ByteBuf; setBytes + setChar (II)Lio/netty/buffer/ByteBuf; setChar + setDouble (ID)Lio/netty/buffer/ByteBuf; setDouble + setFloat (IF)Lio/netty/buffer/ByteBuf; setFloat + setIndex (II)Lio/netty/buffer/ByteBuf; setIndex + setInt (II)Lio/netty/buffer/ByteBuf; setInt + setLong (IJ)Lio/netty/buffer/ByteBuf; setLong + setMedium (II)Lio/netty/buffer/ByteBuf; setMedium + setShort (II)Lio/netty/buffer/ByteBuf; setShort + setZero (II)Lio/netty/buffer/ByteBuf; setZero + skipBytes (I)Lio/netty/buffer/ByteBuf; skipBytes + slice ()Lio/netty/buffer/ByteBuf; slice + slice (II)Lio/netty/buffer/ByteBuf; slice + toString ()Ljava/lang/String; toString + toString (IILjava/nio/charset/Charset;)Ljava/lang/String; toString + toString (Ljava/nio/charset/Charset;)Ljava/lang/String; toString + unwrap ()Lio/netty/buffer/ByteBuf; unwrap + writableBytes ()I writableBytes + writeBoolean (Z)Lio/netty/buffer/ByteBuf; writeBoolean + writeByte (I)Lio/netty/buffer/ByteBuf; writeByte + writeBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; writeBytes + writeBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; writeBytes + writeBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; writeBytes + writeBytes (Ljava/io/InputStream;I)I writeBytes + writeBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; writeBytes + writeBytes (Ljava/nio/channels/ScatteringByteChannel;I)I writeBytes + writeBytes ([B)Lio/netty/buffer/ByteBuf; writeBytes + writeBytes ([BII)Lio/netty/buffer/ByteBuf; writeBytes + writeChar (I)Lio/netty/buffer/ByteBuf; writeChar + writeDouble (D)Lio/netty/buffer/ByteBuf; writeDouble + writeFloat (F)Lio/netty/buffer/ByteBuf; writeFloat + writeInt (I)Lio/netty/buffer/ByteBuf; writeInt + writeLong (J)Lio/netty/buffer/ByteBuf; writeLong + writeMedium (I)Lio/netty/buffer/ByteBuf; writeMedium + writeShort (I)Lio/netty/buffer/ByteBuf; writeShort + writeZero (I)Lio/netty/buffer/ByteBuf; writeZero + writerIndex ()I writerIndex + writerIndex (I)Lio/netty/buffer/ByteBuf; writerIndex +en net/minecraft/util/MessageDeserializer + a field_150800_a + b field_150799_b + c field_152499_c + decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V decode +eo net/minecraft/util/MessageSerializer + a field_150798_a + b field_150797_b + c field_152500_c + a (Lio/netty/channel/ChannelHandlerContext;Lff;Lio/netty/buffer/ByteBuf;)V encode + encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V encode +ep net/minecraft/network/INetHandler + a (Leu;)V func_147231_a +eq net/minecraft/util/MessageDeserializer2 + decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V decode +er net/minecraft/util/MessageSerializer2 + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V encode + encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V encode +es net/minecraft/util/ChatComponentStyle + a field_150264_a + b field_150263_b + a ()Ljava/util/List; func_150253_a + a (Leu;)Leu; func_150257_a + a (Lez;)Leu; func_150255_a + a (Ljava/lang/Iterable;)Ljava/util/Iterator; func_150262_a + a (Ljava/lang/String;)Leu; func_150258_a + b ()Lez; func_150256_b + c ()Ljava/lang/String; func_150260_c + d ()Ljava/lang/String; func_150254_d + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + iterator ()Ljava/util/Iterator; iterator + toString ()Ljava/lang/String; toString +es$1 net/minecraft/util/ChatComponentStyle$1 + a (Leu;)Ljava/util/Iterator; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +es$2 net/minecraft/util/ChatComponentStyle$2 + a (Leu;)Leu; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +et net/minecraft/event/ClickEvent + a field_150671_a + b field_150670_b + a ()Let$a; func_150669_a + b ()Ljava/lang/String; func_150668_b + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +et$a net/minecraft/event/ClickEvent$Action + a OPEN_URL + b OPEN_FILE + c RUN_COMMAND + d TWITCH_USER_INFO + e SUGGEST_COMMAND + f CHANGE_PAGE + g field_150679_e + h field_150676_f + i field_150677_g + j $VALUES + a ()Z func_150674_a + a (Ljava/lang/String;)Let$a; func_150672_a + b ()Ljava/lang/String; func_150673_b + values ()[Let$a; values +eu net/minecraft/util/IChatComponent + a ()Ljava/util/List; func_150253_a + a (Leu;)Leu; func_150257_a + a (Lez;)Leu; func_150255_a + a (Ljava/lang/String;)Leu; func_150258_a + b ()Lez; func_150256_b + c ()Ljava/lang/String; func_150260_c + d ()Ljava/lang/String; func_150254_d + e ()Ljava/lang/String; func_150261_e + f ()Leu; func_150259_f +eu$a net/minecraft/util/IChatComponent$Serializer + a field_150700_a + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Leu; deserialize + a (Leu;)Ljava/lang/String; func_150696_a + a (Leu;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + a (Lez;Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V func_150695_a + a (Ljava/lang/String;)Leu; func_150699_a + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize +ev net/minecraft/util/ChatComponentProcessor + a (Lm;Leu;Lpk;)Leu; func_179985_a +ew net/minecraft/event/HoverEvent + a field_150704_a + b field_150703_b + a ()Lew$a; func_150701_a + b ()Leu; func_150702_b + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ew$a net/minecraft/event/HoverEvent$Action + a SHOW_TEXT + b SHOW_ACHIEVEMENT + c SHOW_ITEM + d SHOW_ENTITY + e field_150690_d + f field_150691_e + g field_150688_f + h $VALUES + a ()Z func_150686_a + a (Ljava/lang/String;)Lew$a; func_150684_a + b ()Ljava/lang/String; func_150685_b + values ()[Lew$a; values +ex net/minecraft/util/ChatComponentScore + b field_179999_b + c field_180000_c + d field_179998_d + b (Ljava/lang/String;)V func_179997_b + e ()Ljava/lang/String; func_150261_e + equals (Ljava/lang/Object;)Z equals + f ()Leu; func_150259_f + g ()Ljava/lang/String; func_179995_g + h ()Ljava/lang/String; func_179994_h + i ()Lex; func_150259_f + toString ()Ljava/lang/String; toString +ey net/minecraft/util/ChatComponentSelector + b field_179993_b + e ()Ljava/lang/String; func_150261_e + equals (Ljava/lang/Object;)Z equals + f ()Leu; func_150259_f + g ()Ljava/lang/String; func_179992_g + h ()Ley; func_150259_f + toString ()Ljava/lang/String; toString +ez net/minecraft/util/ChatStyle + a field_150249_a + b field_150247_b + c field_150248_c + d field_150245_d + e field_150246_e + f field_150243_f + g field_150244_g + h field_150251_h + i field_150252_i + j field_179990_j + k field_150250_j + a ()La; func_150215_a + a (La;)Lez; func_150238_a + a (Let;)Lez; func_150241_a + a (Lew;)Lez; func_150209_a + a (Lez;)Lez; func_150221_a + a (Lez;La;)La; access$502 + a (Lez;Let;)Let; access$702 + a (Lez;Lew;)Lew; access$802 + a (Lez;Ljava/lang/Boolean;)Ljava/lang/Boolean; access$002 + a (Lez;Ljava/lang/String;)Ljava/lang/String; access$602 + a (Ljava/lang/Boolean;)Lez; func_150227_a + a (Ljava/lang/String;)Lez; func_179989_a + b ()Z func_150223_b + b (Lez;)Ljava/lang/Boolean; access$000 + b (Lez;Ljava/lang/Boolean;)Ljava/lang/Boolean; access$102 + b (Ljava/lang/Boolean;)Lez; func_150217_b + c ()Z func_150242_c + c (Lez;)Ljava/lang/Boolean; access$100 + c (Lez;Ljava/lang/Boolean;)Ljava/lang/Boolean; access$202 + c (Ljava/lang/Boolean;)Lez; func_150225_c + d ()Z func_150236_d + d (Lez;)Ljava/lang/Boolean; access$200 + d (Lez;Ljava/lang/Boolean;)Ljava/lang/Boolean; access$302 + d (Ljava/lang/Boolean;)Lez; func_150228_d + e ()Z func_150234_e + e (Lez;)Ljava/lang/Boolean; access$300 + e (Lez;Ljava/lang/Boolean;)Ljava/lang/Boolean; access$402 + e (Ljava/lang/Boolean;)Lez; func_150237_e + equals (Ljava/lang/Object;)Z equals + f ()Z func_150233_f + f (Lez;)Ljava/lang/Boolean; access$400 + g ()Z func_150229_g + g (Lez;)La; access$500 + h ()Let; func_150235_h + h (Lez;)Ljava/lang/String; access$600 + hashCode ()I hashCode + i ()Lew; func_150210_i + i (Lez;)Let; access$700 + j ()Ljava/lang/String; func_179986_j + j (Lez;)Lew; access$800 + k ()Ljava/lang/String; func_150218_j + m ()Lez; func_150232_l + n ()Lez; func_150206_m + o ()Lez; func_150224_n + toString ()Ljava/lang/String; toString +ez$1 net/minecraft/util/ChatStyle$1 + a ()La; func_150215_a + a (La;)Lez; func_150238_a + a (Let;)Lez; func_150241_a + a (Lew;)Lez; func_150209_a + a (Lez;)Lez; func_150221_a + a (Ljava/lang/Boolean;)Lez; func_150227_a + b ()Z func_150223_b + b (Ljava/lang/Boolean;)Lez; func_150217_b + c ()Z func_150242_c + c (Ljava/lang/Boolean;)Lez; func_150225_c + d ()Z func_150236_d + d (Ljava/lang/Boolean;)Lez; func_150228_d + e ()Z func_150234_e + e (Ljava/lang/Boolean;)Lez; func_150237_e + f ()Z func_150233_f + h ()Let; func_150235_h + i ()Lew; func_150210_i + j ()Ljava/lang/String; func_179986_j + k ()Ljava/lang/String; func_150218_j + m ()Lez; func_150232_l + n ()Lez; func_150206_m + toString ()Ljava/lang/String; toString +ez$a net/minecraft/util/ChatStyle$Serializer + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lez; deserialize + a (Lez;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize +f net/minecraft/util/ChatAllowedCharacters + a field_71567_b + a (C)Z func_71566_a + a (Ljava/lang/String;)Ljava/lang/String; func_71565_a +fa net/minecraft/util/ChatComponentText + b field_150267_b + e ()Ljava/lang/String; func_150261_e + equals (Ljava/lang/Object;)Z equals + f ()Leu; func_150259_f + g ()Ljava/lang/String; func_150265_g + h ()Lfa; func_150259_f + toString ()Ljava/lang/String; toString +fb net/minecraft/util/ChatComponentTranslation + b field_150278_b + c field_150279_c + d field_150276_d + e field_150277_e + f field_150274_f + g field_150275_g + a (I)Leu; func_150272_a + a (Lez;)Leu; func_150255_a + b (Ljava/lang/String;)V func_150269_b + e ()Ljava/lang/String; func_150261_e + equals (Ljava/lang/Object;)Z equals + f ()Leu; func_150259_f + g ()V func_150270_g + h ()Lfb; func_150259_f + hashCode ()I hashCode + i ()Ljava/lang/String; func_150268_i + iterator ()Ljava/util/Iterator; iterator + j ()[Ljava/lang/Object; func_150271_j + toString ()Ljava/lang/String; toString +fc net/minecraft/util/ChatComponentTranslationFormatException +ff net/minecraft/network/Packet + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + b (Lem;)V func_148840_b +fg net/minecraft/network/EnumPacketDirection + a SERVERBOUND + b CLIENTBOUND + c $VALUES + values ()[Lfg; values +fh net/minecraft/network/PacketThreadUtil + a (Lff;Lep;Lod;)V func_180031_a +fh$1 net/minecraft/network/PacketThreadUtil$1 + a field_180030_a + b field_180029_b + run ()V run +fi net/minecraft/network/play/server/S08PacketPlayerPosLook + a field_148940_a + b field_148938_b + c field_148939_c + d field_148936_d + e field_148937_e + f field_179835_f + a ()D func_148932_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()D func_148928_d + b (Lem;)V func_148840_b + c ()D func_148933_e + d ()F func_148931_f + e ()F func_148930_g + f ()Ljava/util/Set; func_179834_f +fi$a net/minecraft/network/play/server/S08PacketPlayerPosLook$EnumFlags + a X + b Y + c Z + d Y_ROT + e X_ROT + f field_180058_f + g $VALUES + a ()I func_180055_a + a (I)Ljava/util/Set; func_180053_a + a (Ljava/util/Set;)I func_180056_a + b (I)Z func_180054_b + values ()[Lfi$a; values +fj net/minecraft/network/play/INetHandlerPlayClient + a (Lfi;)V func_147258_a + a (Lfk;)V func_147235_a + a (Lfl;)V func_147286_a + a (Lfm;)V func_147292_a + a (Lfn;)V func_147281_a + a (Lfo;)V func_147288_a + a (Lfp;)V func_147237_a + a (Lfq;)V func_147279_a + a (Lfr;)V func_147293_a + a (Lfs;)V func_147294_a + a (Lft;)V func_147273_a + a (Lfu;)V func_147261_a + a (Lfv;)V func_147234_a + a (Lfw;)V func_175101_a + a (Lfx;)V func_147274_a + a (Lfy;)V func_147251_a + a (Lfz;)V func_147287_a + a (Lga;)V func_147239_a + a (Lgb;)V func_147276_a + a (Lgc;)V func_147265_a + a (Lgd;)V func_147241_a + a (Lge;)V func_147245_a + a (Lgf;)V func_147266_a + a (Lgg;)V func_147240_a + a (Lgh;)V func_147253_a + a (Lgi;)V func_147236_a + a (Lgj;)V func_175097_a + a (Lgk;)V func_147283_a + a (Lgl;)V func_175100_a + a (Lgm;)V func_147252_a + a (Lgn;)V func_147272_a + a (Lgo;)V func_147263_a + a (Lgp;)V func_147269_a + a (Lgq;)V func_147277_a + a (Lgr;)V func_147289_a + a (Lgs;)V func_147255_a + a (Lgt;)V func_147282_a + a (Lgu;)V func_147264_a + a (Lgv;)V func_147259_a + a (Lgw;)V func_147268_a + a (Lgx;)V func_147270_a + a (Lgy;)V func_175098_a + a (Lgz;)V func_147256_a + a (Lha;)V func_147278_a + a (Lhb;)V func_147238_a + a (Lhc;)V func_147262_a + a (Lhd;)V func_175095_a + a (Lhe;)V func_147280_a + a (Lhf;)V func_147267_a + a (Lhg;)V func_175093_a + a (Lhh;)V func_175094_a + a (Lhi;)V func_147257_a + a (Lhj;)V func_147254_a + a (Lhk;)V func_147284_a + a (Lhl;)V func_147243_a + a (Lhm;)V func_147244_a + a (Lhn;)V func_147242_a + a (Lho;)V func_147295_a + a (Lhp;)V func_147249_a + a (Lhq;)V func_147291_a + a (Lhr;)V func_147247_a + a (Lhs;)V func_147250_a + a (Lht;)V func_147271_a + a (Lhu;)V func_147285_a + a (Lhv;)V func_175099_a + a (Lhw;)V func_147248_a + a (Lhx;)V func_175096_a + a (Lhy;)V func_147246_a + a (Lhz;)V func_147275_a + a (Lia;)V func_147290_a + a (Lib;)V func_147260_a +fk net/minecraft/network/play/server/S0EPacketSpawnObject + a field_149018_a + b field_149016_b + c field_149017_c + d field_149014_d + e field_149015_e + f field_149012_f + g field_149013_g + h field_149021_h + i field_149022_i + j field_149019_j + k field_149020_k + a ()I func_149001_c + a (I)V func_148996_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_148997_d + b (I)V func_148995_b + b (Lem;)V func_148840_b + c ()I func_148998_e + c (I)V func_149005_c + d ()I func_148994_f + d (I)V func_149003_d + e ()I func_149010_g + e (I)V func_149000_e + f ()I func_149004_h + f (I)V func_149007_f + g ()I func_148999_i + g (I)V func_149002_g + h ()I func_149008_j + i ()I func_149006_k + j ()I func_148993_l + k ()I func_149009_m +fl net/minecraft/network/play/server/S11PacketSpawnExperienceOrb + a field_148992_a + b field_148990_b + c field_148991_c + d field_148988_d + e field_148989_e + a ()I func_148985_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_148984_d + b (Lem;)V func_148840_b + c ()I func_148983_e + d ()I func_148982_f + e ()I func_148986_g +fm net/minecraft/network/play/server/S2CPacketSpawnGlobalEntity + a field_149059_a + b field_149057_b + c field_149058_c + d field_149055_d + e field_149056_e + a ()I func_149052_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149051_d + b (Lem;)V func_148840_b + c ()I func_149050_e + d ()I func_149049_f + e ()I func_149053_g +fn net/minecraft/network/play/server/S0FPacketSpawnMob + a field_149042_a + b field_149040_b + c field_149041_c + d field_149038_d + e field_149039_e + f field_149036_f + g field_149037_g + h field_149047_h + i field_149048_i + j field_149045_j + k field_149046_k + l field_149043_l + m field_149044_m + a ()Ljava/util/List; func_149027_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149024_d + b (Lem;)V func_148840_b + c ()I func_149025_e + d ()I func_149023_f + e ()I func_149034_g + f ()I func_149029_h + g ()I func_149026_i + h ()I func_149033_j + i ()I func_149031_k + j ()B func_149028_l + k ()B func_149030_m + l ()B func_149032_n +fo net/minecraft/network/play/server/S10PacketSpawnPainting + a field_148973_a + b field_179838_b + c field_179839_c + d field_148968_f + a ()I func_148965_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Lcj; func_179837_b + b (Lem;)V func_148840_b + c ()Lcq; func_179836_c + d ()Ljava/lang/String; func_148961_h +fp net/minecraft/network/play/server/S0CPacketSpawnPlayer + a field_148957_a + b field_179820_b + c field_148956_c + d field_148953_d + e field_148954_e + f field_148951_f + g field_148952_g + h field_148959_h + i field_148960_i + j field_148958_j + a ()Ljava/util/List; func_148944_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_148943_d + b (Lem;)V func_148840_b + c ()Ljava/util/UUID; func_179819_c + d ()I func_148942_f + e ()I func_148949_g + f ()I func_148946_h + g ()B func_148941_i + h ()B func_148945_j + i ()I func_148947_k +fq net/minecraft/network/play/server/S0BPacketAnimation + a field_148981_a + b field_148980_b + a ()I func_148978_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_148977_d + b (Lem;)V func_148840_b +fr net/minecraft/network/play/server/S37PacketStatistics + a field_148976_a + a ()Ljava/util/Map; func_148974_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +fs net/minecraft/network/play/server/S25PacketBlockBreakAnim + a field_148852_a + b field_179822_b + c field_148849_e + a ()I func_148845_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Lcj; func_179821_b + b (Lem;)V func_148840_b + c ()I func_148846_g +ft net/minecraft/network/play/server/S35PacketUpdateTileEntity + a field_179824_a + b field_148859_d + c field_148860_e + a ()Lcj; func_179823_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_148853_f + b (Lem;)V func_148840_b + c ()Ldn; func_148857_g +fu net/minecraft/network/play/server/S24PacketBlockAction + a field_179826_a + b field_148872_d + c field_148873_e + d field_148871_f + a ()Lcj; func_179825_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_148869_g + b (Lem;)V func_148840_b + c ()I func_148864_h + d ()Lafh; func_148868_c +fv net/minecraft/network/play/server/S23PacketBlockChange + a field_179828_a + b field_148883_d + a ()Lalz; func_180728_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Lcj; func_179827_b + b (Lem;)V func_148840_b +fw net/minecraft/network/play/server/S41PacketServerDifficulty + a field_179833_a + b field_179832_b + a ()Z func_179830_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Loj; func_179831_b + b (Lem;)V func_148840_b +fx net/minecraft/network/play/server/S3APacketTabComplete + a field_149632_a + a ()[Ljava/lang/String; func_149630_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +fy net/minecraft/network/play/server/S02PacketChat + a field_148919_a + b field_179842_b + a ()Leu; func_148915_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Z func_148916_d + b (Lem;)V func_148840_b + c ()B func_179841_c +fz net/minecraft/network/play/server/S22PacketMultiBlockChange + a field_148925_b + b field_179845_b + a ()[Lfz$a; func_179844_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + a (Lfz;)Ladg; access$000 + b (Lem;)V func_148840_b +fz$a net/minecraft/network/play/server/S22PacketMultiBlockChange$BlockUpdateData + a field_180093_a + b field_180091_b + c field_180092_c + a ()Lcj; func_180090_a + b ()S func_180089_b + c ()Lalz; func_180088_c +g net/minecraft/util/Util + a ()Lg$a; func_110647_a + a (Ljava/util/concurrent/FutureTask;Lorg/apache/logging/log4j/Logger;)Ljava/lang/Object; func_181617_a +g$a net/minecraft/util/Util$EnumOS + a LINUX + b SOLARIS + c WINDOWS + d OSX + e UNKNOWN + f $VALUES + values ()[Lg$a; values +ga net/minecraft/network/play/server/S32PacketConfirmTransaction + a field_148894_a + b field_148892_b + c field_148893_c + a ()I func_148889_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()S func_148890_d + b (Lem;)V func_148840_b + c ()Z func_148888_e +gb net/minecraft/network/play/server/S2EPacketCloseWindow + a field_148896_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +gc net/minecraft/network/play/server/S2DPacketOpenWindow + a field_148909_a + b field_148907_b + c field_148908_c + d field_148905_d + e field_148904_f + a ()I func_148901_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Ljava/lang/String; func_148902_e + b (Lem;)V func_148840_b + c ()Leu; func_179840_c + d ()I func_148898_f + e ()I func_148897_h + f ()Z func_148900_g +gd net/minecraft/network/play/server/S30PacketWindowItems + a field_148914_a + b field_148913_b + a ()I func_148911_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()[Lzx; func_148910_d + b (Lem;)V func_148840_b +ge net/minecraft/network/play/server/S31PacketWindowProperty + a field_149186_a + b field_149184_b + c field_149185_c + a ()I func_149182_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149181_d + b (Lem;)V func_148840_b + c ()I func_149180_e +gf net/minecraft/network/play/server/S2FPacketSetSlot + a field_149179_a + b field_149177_b + c field_149178_c + a ()I func_149175_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149173_d + b (Lem;)V func_148840_b + c ()Lzx; func_149174_e +gg net/minecraft/network/play/server/S3FPacketCustomPayload + a field_149172_a + b field_149171_b + a ()Ljava/lang/String; func_149169_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Lem; func_180735_b + b (Lem;)V func_148840_b +gh net/minecraft/network/play/server/S40PacketDisconnect + a field_149167_a + a ()Leu; func_149165_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +gi net/minecraft/network/play/server/S19PacketEntityStatus + a field_149164_a + b field_149163_b + a ()B func_149160_c + a (Ladm;)Lpk; func_149161_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +gj net/minecraft/network/play/server/S49PacketUpdateEntityNBT + a field_179766_a + b field_179765_b + a ()Ldn; func_179763_a + a (Ladm;)Lpk; func_179764_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +gk net/minecraft/network/play/server/S27PacketExplosion + a field_149158_a + b field_149156_b + c field_149157_c + d field_149154_d + e field_149155_e + f field_149152_f + g field_149153_g + h field_149159_h + a ()F func_149149_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()F func_149144_d + b (Lem;)V func_148840_b + c ()F func_149147_e + d ()D func_149148_f + e ()D func_149143_g + f ()D func_149145_h + g ()F func_149146_i + h ()Ljava/util/List; func_149150_j +gl net/minecraft/network/play/server/S46PacketSetCompressionLevel + a field_179761_a + a ()I func_179760_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +gm net/minecraft/network/play/server/S2BPacketChangeGameState + a field_149142_a + b field_149140_b + c field_149141_c + a ()I func_149138_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()F func_149137_d + b (Lem;)V func_148840_b +gn net/minecraft/network/play/server/S00PacketKeepAlive + a field_149136_a + a ()I func_149134_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +go net/minecraft/network/play/server/S21PacketChunkData + a field_149284_a + b field_149282_b + c field_179758_c + d field_149279_g + a ()[B func_149272_d + a (IZZ)I func_180737_a + a (Lamy;ZZI)Lgo$a; func_179756_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + a ([B[BI)I func_179757_a + b ()I func_149273_e + b (Lem;)V func_148840_b + c ()I func_149271_f + d ()I func_149276_g + e ()Z func_149274_i +go$a net/minecraft/network/play/server/S21PacketChunkData$Extracted + a field_150282_a + b field_150280_b +gp net/minecraft/network/play/server/S26PacketMapChunkBulk + a field_149266_a + b field_149264_b + c field_179755_c + d field_149267_h + a ()I func_149254_d + a (I)I func_149255_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (I)I func_149253_b + b (Lem;)V func_148840_b + c (I)[B func_149256_c + d (I)I func_179754_d +gq net/minecraft/network/play/server/S28PacketEffect + a field_149251_a + b field_179747_b + c field_149249_b + d field_149246_f + a ()Z func_149244_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149242_d + b (Lem;)V func_148840_b + c ()I func_149241_e + d ()Lcj; func_179746_d +gr net/minecraft/network/play/server/S2APacketParticles + a field_179751_a + b field_149234_b + c field_149235_c + d field_149232_d + e field_149233_e + f field_149230_f + g field_149231_g + h field_149237_h + i field_149238_i + j field_179752_j + k field_179753_k + a ()Lcy; func_179749_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Z func_179750_b + b (Lem;)V func_148840_b + c ()D func_149220_d + d ()D func_149226_e + e ()D func_149225_f + f ()F func_149221_g + g ()F func_149224_h + h ()F func_149223_i + i ()F func_149227_j + j ()I func_149222_k + k ()[I func_179748_k +gs net/minecraft/network/play/server/S29PacketSoundEffect + a field_149219_a + b field_149217_b + c field_149218_c + d field_149215_d + e field_149216_e + f field_149214_f + a ()Ljava/lang/String; func_149212_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()D func_149207_d + b (Lem;)V func_148840_b + c ()D func_149211_e + d ()D func_149210_f + e ()F func_149208_g + f ()F func_149209_h +gt net/minecraft/network/play/server/S01PacketJoinGame + a field_149206_a + b field_149204_b + c field_149205_c + d field_149202_d + e field_149203_e + f field_149200_f + g field_149201_g + h field_179745_h + a ()I func_149197_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Z func_149195_d + b (Lem;)V func_148840_b + c ()Ladp$a; func_149198_e + d ()I func_149194_f + e ()Loj; func_149192_g + f ()I func_149193_h + g ()Ladr; func_149196_i + h ()Z func_179744_h +gu net/minecraft/network/play/server/S34PacketMaps + a field_149191_a + b field_179739_b + c field_179740_c + d field_179737_d + e field_179738_e + f field_179735_f + g field_179736_g + h field_179741_h + a ()I func_149188_c + a (Latg;)V func_179734_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +gv net/minecraft/network/play/server/S14PacketEntity + a field_149074_a + b field_149072_b + c field_149073_c + d field_149070_d + e field_149071_e + f field_149068_f + g field_179743_g + h field_149069_g + a ()B func_149062_c + a (Ladm;)Lpk; func_149065_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()B func_149061_d + b (Lem;)V func_148840_b + c ()B func_149064_e + d ()B func_149066_f + e ()B func_149063_g + f ()Z func_149060_h + g ()Z func_179742_g + toString ()Ljava/lang/String; toString +gv$a net/minecraft/network/play/server/S14PacketEntity$S15PacketEntityRelMove + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + b (Lem;)V func_148840_b +gv$b net/minecraft/network/play/server/S14PacketEntity$S17PacketEntityLookMove + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + b (Lem;)V func_148840_b +gv$c net/minecraft/network/play/server/S14PacketEntity$S16PacketEntityLook + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + b (Lem;)V func_148840_b +gw net/minecraft/network/play/server/S36PacketSignEditorOpen + a field_179778_a + a ()Lcj; func_179777_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +gx net/minecraft/network/play/server/S39PacketPlayerAbilities + a field_149119_a + b field_149117_b + c field_149118_c + d field_149115_d + e field_149116_e + f field_149114_f + a ()Z func_149112_c + a (F)V func_149104_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + a (Z)V func_149108_a + b ()Z func_149106_d + b (F)V func_149110_b + b (Lem;)V func_148840_b + b (Z)V func_149102_b + c ()Z func_149105_e + c (Z)V func_149109_c + d ()Z func_149103_f + d (Z)V func_149111_d + e ()F func_149101_g + f ()F func_149107_h +gy net/minecraft/network/play/server/S42PacketCombatEvent + a field_179776_a + b field_179774_b + c field_179775_c + d field_179772_d + e field_179773_e + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +gy$1 net/minecraft/network/play/server/S42PacketCombatEvent$1 + a field_179944_a +gy$a net/minecraft/network/play/server/S42PacketCombatEvent$Event + a ENTER_COMBAT + b END_COMBAT + c ENTITY_DIED + d $VALUES + values ()[Lgy$a; values +gz net/minecraft/network/play/server/S38PacketPlayerListItem + a field_179770_a + b field_179769_b + a ()Ljava/util/List; func_179767_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Lgz$a; func_179768_b + b (Lem;)V func_148840_b + toString ()Ljava/lang/String; toString +gz$1 net/minecraft/network/play/server/S38PacketPlayerListItem$1 + a field_179938_a +gz$a net/minecraft/network/play/server/S38PacketPlayerListItem$Action + a ADD_PLAYER + b UPDATE_GAME_MODE + c UPDATE_LATENCY + d UPDATE_DISPLAY_NAME + e REMOVE_PLAYER + f $VALUES + values ()[Lgz$a; values +gz$b net/minecraft/network/play/server/S38PacketPlayerListItem$AddPlayerData + a field_179968_a + b field_179966_b + c field_179967_c + d field_179964_d + e field_179965_e + a ()Lcom/mojang/authlib/GameProfile; func_179962_a + b ()I func_179963_b + c ()Ladp$a; func_179960_c + d ()Leu; func_179961_d + toString ()Ljava/lang/String; toString +h net/minecraft/command/IAdminCommand + a (Lm;Lk;ILjava/lang/String;[Ljava/lang/Object;)V func_152372_a +ha net/minecraft/network/play/server/S0APacketUseBed + a field_149097_a + b field_179799_b + a ()Lcj; func_179798_a + a (Ladm;)Lwn; func_149091_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +hb net/minecraft/network/play/server/S13PacketDestroyEntities + a field_149100_a + a ()[I func_149098_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +hc net/minecraft/network/play/server/S1EPacketRemoveEntityEffect + a field_149079_a + b field_149078_b + a ()I func_149076_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149075_d + b (Lem;)V func_148840_b +hd net/minecraft/network/play/server/S48PacketResourcePackSend + a field_179786_a + b field_179785_b + a ()Ljava/lang/String; func_179783_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Ljava/lang/String; func_179784_b + b (Lem;)V func_148840_b +he net/minecraft/network/play/server/S07PacketRespawn + a field_149088_a + b field_149086_b + c field_149087_c + d field_149085_d + a ()I func_149082_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Loj; func_149081_d + b (Lem;)V func_148840_b + c ()Ladp$a; func_149083_e + d ()Ladr; func_149080_f +hf net/minecraft/network/play/server/S19PacketEntityHeadLook + a field_149384_a + b field_149383_b + a ()B func_149380_c + a (Ladm;)Lpk; func_149381_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +hg net/minecraft/network/play/server/S44PacketWorldBorder + a field_179795_a + b field_179793_b + c field_179794_c + d field_179791_d + e field_179792_e + f field_179789_f + g field_179790_g + h field_179796_h + i field_179797_i + a (Lams;)V func_179788_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +hg$1 net/minecraft/network/play/server/S44PacketWorldBorder$1 + a field_179947_a +hg$a net/minecraft/network/play/server/S44PacketWorldBorder$Action + a SET_SIZE + b LERP_SIZE + c SET_CENTER + d INITIALIZE + e SET_WARNING_TIME + f SET_WARNING_BLOCKS + g $VALUES + values ()[Lhg$a; values +hh net/minecraft/network/play/server/S43PacketCamera + a field_179781_a + a (Ladm;)Lpk; func_179780_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +hi net/minecraft/network/play/server/S09PacketHeldItemChange + a field_149387_a + a ()I func_149385_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +hj net/minecraft/network/play/server/S3DPacketDisplayScoreboard + a field_149374_a + b field_149373_b + a ()I func_149371_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Ljava/lang/String; func_149370_d + b (Lem;)V func_148840_b +hk net/minecraft/network/play/server/S1CPacketEntityMetadata + a field_149379_a + b field_149378_b + a ()Ljava/util/List; func_149376_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149375_d + b (Lem;)V func_148840_b +hl net/minecraft/network/play/server/S1BPacketEntityAttach + a field_149408_a + b field_149406_b + c field_149407_c + a ()I func_149404_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149403_d + b (Lem;)V func_148840_b + c ()I func_149402_e +hm net/minecraft/network/play/server/S12PacketEntityVelocity + a field_149417_a + b field_149415_b + c field_149416_c + d field_149414_d + a ()I func_149412_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149411_d + b (Lem;)V func_148840_b + c ()I func_149410_e + d ()I func_149409_f +hn net/minecraft/network/play/server/S04PacketEntityEquipment + a field_149394_a + b field_149392_b + c field_149393_c + a ()Lzx; func_149390_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149389_d + b (Lem;)V func_148840_b + c ()I func_149388_e +ho net/minecraft/network/play/server/S1FPacketSetExperience + a field_149401_a + b field_149399_b + c field_149400_c + a ()F func_149397_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149396_d + b (Lem;)V func_148840_b + c ()I func_149395_e +hp net/minecraft/network/play/server/S06PacketUpdateHealth + a field_149336_a + b field_149334_b + c field_149335_c + a ()F func_149332_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149330_d + b (Lem;)V func_148840_b + c ()F func_149331_e +hq net/minecraft/network/play/server/S3BPacketScoreboardObjective + a field_149343_a + b field_149341_b + c field_179818_c + d field_149342_c + a ()Ljava/lang/String; func_149339_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Ljava/lang/String; func_149337_d + b (Lem;)V func_148840_b + c ()I func_149338_e + d ()Lauu$a; func_179817_d +hr net/minecraft/network/play/server/S3EPacketTeams + a field_149320_a + b field_149318_b + c field_149319_c + d field_149316_d + e field_179816_e + f field_179815_f + g field_149317_e + h field_149314_f + i field_149315_g + a ()Ljava/lang/String; func_149312_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Ljava/lang/String; func_149306_d + b (Lem;)V func_148840_b + c ()Ljava/lang/String; func_149311_e + d ()Ljava/lang/String; func_149309_f + e ()Ljava/util/Collection; func_149310_g + f ()I func_149307_h + g ()I func_149308_i + h ()I func_179813_h + i ()Ljava/lang/String; func_179814_i +hs net/minecraft/network/play/server/S3CPacketUpdateScore + a field_149329_a + b field_149327_b + c field_149328_c + d field_149326_d + a ()Ljava/lang/String; func_149324_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Ljava/lang/String; func_149321_d + b (Lem;)V func_148840_b + c ()I func_149323_e + d ()Lhs$a; func_180751_d +hs$a net/minecraft/network/play/server/S3CPacketUpdateScore$Action + a CHANGE + b REMOVE + c $VALUES + values ()[Lhs$a; values +ht net/minecraft/network/play/server/S05PacketSpawnPosition + a field_179801_a + a ()Lcj; func_179800_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b (Lem;)V func_148840_b +hu net/minecraft/network/play/server/S03PacketTimeUpdate + a field_149369_a + b field_149368_b + a ()J func_149366_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()J func_149365_d + b (Lem;)V func_148840_b +hv net/minecraft/network/play/server/S45PacketTitle + a field_179812_a + b field_179810_b + c field_179811_c + d field_179808_d + e field_179809_e + a ()Lhv$a; func_179807_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Leu; func_179805_b + b (Lem;)V func_148840_b + c ()I func_179806_c + d ()I func_179804_d + e ()I func_179803_e +hv$a net/minecraft/network/play/server/S45PacketTitle$Type + a TITLE + b SUBTITLE + c TIMES + d CLEAR + e RESET + f $VALUES + a ()[Ljava/lang/String; func_179971_a + a (Ljava/lang/String;)Lhv$a; func_179969_a + values ()[Lhv$a; values +hw net/minecraft/network/play/server/S33PacketUpdateSign + a field_179706_a + b field_179705_b + c field_149349_d + a ()Lcj; func_179704_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()[Leu; func_180753_b + b (Lem;)V func_148840_b +hx net/minecraft/network/play/server/S47PacketPlayerListHeaderFooter + a field_179703_a + b field_179702_b + a ()Leu; func_179700_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Leu; func_179701_b + b (Lem;)V func_148840_b +hy net/minecraft/network/play/server/S0DPacketCollectItem + a field_149357_a + b field_149356_b + a ()I func_149354_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149353_d + b (Lem;)V func_148840_b +hz net/minecraft/network/play/server/S18PacketEntityTeleport + a field_149458_a + b field_149456_b + c field_149457_c + d field_149454_d + e field_149455_e + f field_149453_f + g field_179698_g + a ()I func_149451_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149449_d + b (Lem;)V func_148840_b + c ()I func_149448_e + d ()I func_149446_f + e ()B func_149450_g + f ()B func_149447_h + g ()Z func_179697_g +i net/minecraft/command/CommandBase + a field_71533_a + a ()I func_82362_a + a (DLjava/lang/String;IIZ)Li$a; func_175767_a + a (DLjava/lang/String;Z)Li$a; func_175770_a + a (Lh;)V func_71529_a + a (Ljava/lang/String;)I func_175755_a + a (Ljava/lang/String;D)D func_180526_a + a (Ljava/lang/String;DD)D func_175756_a + a (Ljava/lang/String;I)I func_180528_a + a (Ljava/lang/String;II)I func_175764_a + a (Ljava/lang/String;JJ)J func_175760_a + a (Ljava/lang/String;Ljava/lang/String;)Z func_71523_a + a (Ljava/util/Collection;)Ljava/lang/String; func_96333_a + a (Ljava/util/List;)Leu; func_180530_a + a (Lk;)I compareTo + a (Lm;)Z func_71519_b + a (Lm;Ljava/lang/String;)Llf; func_82359_c + a (Lm;Ljava/lang/String;Ljava/lang/Class;)Lpk; func_175759_a + a (Lm;Lk;ILjava/lang/String;[Ljava/lang/Object;)V func_152374_a + a (Lm;Lk;Ljava/lang/String;[Ljava/lang/Object;)V func_152373_a + a (Lm;[Ljava/lang/String;I)Leu; func_147178_a + a (Lm;[Ljava/lang/String;IZ)Lcj; func_175757_a + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + a ([Ljava/lang/Object;)Ljava/lang/String; func_71527_a + a ([Ljava/lang/String;I)Ljava/lang/String; func_180529_a + a ([Ljava/lang/String;ILcj;)Ljava/util/List; func_175771_a + a ([Ljava/lang/String;Ljava/util/Collection;)Ljava/util/List; func_175762_a + a ([Ljava/lang/String;[Ljava/lang/String;)Ljava/util/List; func_71530_a + b ()Ljava/util/List; func_71514_a + b (DLjava/lang/String;IIZ)D func_175769_b + b (DLjava/lang/String;Z)D func_175761_b + b (Ljava/lang/String;)J func_175766_b + b (Lm;)Llf; func_71521_c + b (Lm;Ljava/lang/String;)Lpk; func_175768_b + b (Lm;[Ljava/lang/String;IZ)Leu; func_147176_a + b ([Ljava/lang/String;I)Z func_82358_a + b ([Ljava/lang/String;ILcj;)Ljava/util/List; func_181043_b + c (Ljava/lang/String;)D func_175765_c + c (Lm;Ljava/lang/String;)Ljava/util/List; func_175763_c + compareTo (Ljava/lang/Object;)I compareTo + d (Ljava/lang/String;)Z func_180527_d + d (Lm;Ljava/lang/String;)Ljava/lang/String; func_96332_d + e (Lm;Ljava/lang/String;)Ljava/lang/String; func_175758_e + f (Lm;Ljava/lang/String;)Lzw; func_147179_f + g (Lm;Ljava/lang/String;)Lafh; func_147180_g +i$a net/minecraft/command/CommandBase$CoordinateArg + a field_179633_a + b field_179631_b + c field_179632_c + a ()D func_179628_a + b ()D func_179629_b + c ()Z func_179630_c +ia net/minecraft/network/play/server/S20PacketEntityProperties + a field_149445_a + b field_149444_b + a ()I func_149442_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()Ljava/util/List; func_149441_d + b (Lem;)V func_148840_b +ia$a net/minecraft/network/play/server/S20PacketEntityProperties$Snapshot + a field_151414_a + b field_151412_b + c field_151413_c + d field_151411_d + a ()Ljava/lang/String; func_151409_a + b ()D func_151410_b + c ()Ljava/util/Collection; func_151408_c +ib net/minecraft/network/play/server/S1DPacketEntityEffect + a field_149434_a + b field_149432_b + c field_149433_c + d field_149431_d + e field_179708_e + a ()Z func_149429_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lfj;)V func_148833_a + b ()I func_149426_d + b (Lem;)V func_148840_b + c ()B func_149427_e + d ()B func_149428_f + e ()I func_180755_e + f ()Z func_179707_f +ic net/minecraft/network/play/INetHandlerPlayServer + a (Lid;)V func_147341_a + a (Lie;)V func_147354_a + a (Lig;)V func_147342_a + a (Lih;)V func_147352_a + a (Lii;)V func_147339_a + a (Lij;)V func_147338_a + a (Lik;)V func_147351_a + a (Lil;)V func_147356_a + a (Lim;)V func_147349_a + a (Lin;)V func_147340_a + a (Lio;)V func_147353_a + a (Lip;)V func_147347_a + a (Liq;)V func_147348_a + a (Lir;)V func_147345_a + a (Lis;)V func_147357_a + a (Lit;)V func_147358_a + a (Liu;)V func_175086_a + a (Liv;)V func_147355_a + a (Liw;)V func_147344_a + a (Lix;)V func_147343_a + a (Liy;)V func_175087_a + a (Liz;)V func_175088_a + a (Lja;)V func_147346_a +id net/minecraft/network/play/client/C14PacketTabComplete + a field_149420_a + b field_179710_b + a ()Ljava/lang/String; func_149419_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b ()Lcj; func_179709_b + b (Lem;)V func_148840_b +ie net/minecraft/network/play/client/C01PacketChatMessage + a field_149440_a + a ()Ljava/lang/String; func_149439_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b (Lem;)V func_148840_b +ig net/minecraft/network/play/client/C16PacketClientStatus + a field_149437_a + a ()Lig$a; func_149435_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b (Lem;)V func_148840_b +ig$a net/minecraft/network/play/client/C16PacketClientStatus$EnumState + a PERFORM_RESPAWN + b REQUEST_STATS + c OPEN_INVENTORY_ACHIEVEMENT + d $VALUES + values ()[Lig$a; values +ih net/minecraft/network/play/client/C15PacketClientSettings + a field_149530_a + b field_149528_b + c field_149529_c + d field_149526_d + e field_179711_e + a ()Ljava/lang/String; func_149524_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b (Lem;)V func_148840_b + c ()Lwn$b; func_149523_e + d ()Z func_149520_f + e ()I func_149521_d +ii net/minecraft/network/play/client/C0FPacketConfirmTransaction + a field_149536_a + b field_149534_b + c field_149535_c + a ()I func_149532_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b ()S func_149533_d + b (Lem;)V func_148840_b +ij net/minecraft/network/play/client/C11PacketEnchantItem + a field_149541_a + b field_149540_b + a ()I func_149539_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b ()I func_149537_d + b (Lem;)V func_148840_b +ik net/minecraft/network/play/client/C0EPacketClickWindow + a field_149554_a + b field_149552_b + c field_149553_c + d field_149550_d + e field_149551_e + f field_149549_f + a ()I func_149548_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b ()I func_149544_d + b (Lem;)V func_148840_b + c ()I func_149543_e + d ()S func_149547_f + e ()Lzx; func_149546_g + f ()I func_149542_h +il net/minecraft/network/play/client/C0DPacketCloseWindow + a field_149556_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b (Lem;)V func_148840_b +im net/minecraft/network/play/client/C17PacketCustomPayload + a field_149562_a + b field_149561_c + a ()Ljava/lang/String; func_149559_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b ()Lem; func_180760_b + b (Lem;)V func_148840_b +in net/minecraft/network/play/client/C02PacketUseEntity + a field_149567_a + b field_149566_b + c field_179713_c + a ()Lin$a; func_149565_c + a (Ladm;)Lpk; func_149564_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b ()Laui; func_179712_b + b (Lem;)V func_148840_b +in$a net/minecraft/network/play/client/C02PacketUseEntity$Action + a INTERACT + b ATTACK + c INTERACT_AT + d $VALUES + values ()[Lin$a; values +io net/minecraft/network/play/client/C00PacketKeepAlive + a field_149461_a + a ()I func_149460_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b (Lem;)V func_148840_b +ip net/minecraft/network/play/client/C03PacketPlayer + a field_149479_a + b field_149477_b + c field_149478_c + d field_149476_e + e field_149473_f + f field_149474_g + g field_149480_h + h field_149481_i + a ()D func_149464_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + a (Z)V func_149469_a + b ()D func_149467_d + b (Lem;)V func_148840_b + c ()D func_149472_e + d ()F func_149462_g + e ()F func_149470_h + f ()Z func_149465_i + g ()Z func_149466_j + h ()Z func_149463_k +ip$a net/minecraft/network/play/client/C03PacketPlayer$C04PacketPlayerPosition + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + b (Lem;)V func_148840_b +ip$b net/minecraft/network/play/client/C03PacketPlayer$C06PacketPlayerPosLook + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + b (Lem;)V func_148840_b +ip$c net/minecraft/network/play/client/C03PacketPlayer$C05PacketPlayerLook + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + b (Lem;)V func_148840_b +iq net/minecraft/network/play/client/C13PacketPlayerAbilities + a field_149500_a + b field_149498_b + c field_149499_c + d field_149496_d + e field_149497_e + f field_149495_f + a ()Z func_149494_c + a (F)V func_149485_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + a (Z)V func_149490_a + b ()Z func_149488_d + b (F)V func_149492_b + b (Lem;)V func_148840_b + b (Z)V func_149483_b + c ()Z func_149486_e + c (Z)V func_149491_c + d ()Z func_149484_f + d (Z)V func_149493_d +ir net/minecraft/network/play/client/C07PacketPlayerDigging + a field_179717_a + b field_179716_b + c field_149508_e + a ()Lcj; func_179715_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b ()Lcq; func_179714_b + b (Lem;)V func_148840_b + c ()Lir$a; func_180762_c +ir$a net/minecraft/network/play/client/C07PacketPlayerDigging$Action + a START_DESTROY_BLOCK + b ABORT_DESTROY_BLOCK + c STOP_DESTROY_BLOCK + d DROP_ALL_ITEMS + e DROP_ITEM + f RELEASE_USE_ITEM + g $VALUES + values ()[Lir$a; values +is net/minecraft/network/play/client/C0BPacketEntityAction + a field_149517_a + b field_149515_b + c field_149516_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b ()Lis$a; func_180764_b + b (Lem;)V func_148840_b + c ()I func_149512_e +is$a net/minecraft/network/play/client/C0BPacketEntityAction$Action + a START_SNEAKING + b STOP_SNEAKING + c STOP_SLEEPING + d START_SPRINTING + e STOP_SPRINTING + f RIDING_JUMP + g OPEN_INVENTORY + h $VALUES + values ()[Lis$a; values +it net/minecraft/network/play/client/C0CPacketInput + a field_149624_a + b field_149622_b + c field_149623_c + d field_149621_d + a ()F func_149620_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b ()F func_149616_d + b (Lem;)V func_148840_b + c ()Z func_149618_e + d ()Z func_149617_f +iu net/minecraft/network/play/client/C19PacketResourcePackStatus + a field_179720_a + b field_179719_b + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b (Lem;)V func_148840_b +iu$a net/minecraft/network/play/client/C19PacketResourcePackStatus$Action + a SUCCESSFULLY_LOADED + b DECLINED + c FAILED_DOWNLOAD + d ACCEPTED + e $VALUES + values ()[Liu$a; values +iv net/minecraft/network/play/client/C09PacketHeldItemChange + a field_149615_a + a ()I func_149614_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b (Lem;)V func_148840_b +iw net/minecraft/network/play/client/C10PacketCreativeInventoryAction + a field_149629_a + b field_149628_b + a ()I func_149627_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b ()Lzx; func_149625_d + b (Lem;)V func_148840_b +ix net/minecraft/network/play/client/C12PacketUpdateSign + a field_179723_a + b field_149590_d + a ()Lcj; func_179722_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b ()[Leu; func_180768_b + b (Lem;)V func_148840_b +iy net/minecraft/network/play/client/C0APacketAnimation + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b (Lem;)V func_148840_b +iz net/minecraft/network/play/client/C18PacketSpectate + a field_179729_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + a (Lle;)Lpk; func_179727_a + b (Lem;)V func_148840_b +j net/minecraft/command/CommandHandler + a field_147175_a + b field_71562_a + c field_71561_b + a ()Ljava/util/Map; func_71555_a + a (Lk;)Lk; func_71560_a + a (Lk;[Ljava/lang/String;)I func_82370_a + a (Lm;)Ljava/util/List; func_71557_a + a (Lm;Ljava/lang/String;)I func_71556_a + a (Lm;Ljava/lang/String;Lcj;)Ljava/util/List; func_180524_a + a (Lm;[Ljava/lang/String;Lk;Ljava/lang/String;)Z func_175786_a + a ([Ljava/lang/String;)[Ljava/lang/String; func_71559_a +ja net/minecraft/network/play/client/C08PacketPlayerBlockPlacement + a field_179726_a + b field_179725_b + c field_149579_d + d field_149580_e + e field_149577_f + f field_149578_g + g field_149584_h + a ()Lcj; func_179724_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Lic;)V func_148833_a + b ()I func_149568_f + b (Lem;)V func_148840_b + c ()Lzx; func_149574_g + d ()F func_149573_h + e ()F func_149569_i + f ()F func_149575_j +jc net/minecraft/network/handshake/client/C00Handshake + a field_149600_a + b field_149598_b + c field_149599_c + d field_149597_d + a ()Lel; func_149594_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Ljd;)V func_148833_a + b ()I func_149595_d + b (Lem;)V func_148840_b +jd net/minecraft/network/handshake/INetHandlerHandshakeServer + a (Ljc;)V func_147383_a +jf net/minecraft/network/login/INetHandlerLoginClient + a (Ljg;)V func_147390_a + a (Ljh;)V func_147389_a + a (Lji;)V func_180464_a + a (Ljj;)V func_147388_a +jg net/minecraft/network/login/server/S02PacketLoginSuccess + a field_149602_a + a ()Lcom/mojang/authlib/GameProfile; func_179730_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Ljf;)V func_148833_a + b (Lem;)V func_148840_b +jh net/minecraft/network/login/server/S01PacketEncryptionRequest + a field_149612_a + b field_149610_b + c field_149611_c + a ()Ljava/lang/String; func_149609_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Ljf;)V func_148833_a + b ()Ljava/security/PublicKey; func_149608_d + b (Lem;)V func_148840_b + c ()[B func_149607_e +ji net/minecraft/network/login/server/S03PacketEnableCompression + a field_179733_a + a ()I func_179731_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Ljf;)V func_148833_a + b (Lem;)V func_148840_b +jj net/minecraft/network/login/server/S00PacketDisconnect + a field_149605_a + a ()Leu; func_149603_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Ljf;)V func_148833_a + b (Lem;)V func_148840_b +jk net/minecraft/network/login/INetHandlerLoginServer + a (Ljl;)V func_147316_a + a (Ljm;)V func_147315_a +jl net/minecraft/network/login/client/C00PacketLoginStart + a field_149305_a + a ()Lcom/mojang/authlib/GameProfile; func_149304_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Ljk;)V func_148833_a + b (Lem;)V func_148840_b +jm net/minecraft/network/login/client/C01PacketEncryptionResponse + a field_149302_a + b field_149301_b + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Ljava/security/PrivateKey;)Ljavax/crypto/SecretKey; func_149300_a + a (Ljk;)V func_148833_a + b (Lem;)V func_148840_b + b (Ljava/security/PrivateKey;)[B func_149299_b +jp net/minecraft/network/status/INetHandlerStatusClient + a (Ljq;)V func_147398_a + a (Ljr;)V func_147397_a +jq net/minecraft/network/status/server/S01PacketPong + a field_149293_a + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Ljp;)V func_148833_a + b (Lem;)V func_148840_b +jr net/minecraft/network/status/server/S00PacketServerInfo + a field_149297_a + b field_149296_b + a ()Ljs; func_149294_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Ljp;)V func_148833_a + b (Lem;)V func_148840_b +js net/minecraft/network/ServerStatusResponse + a field_151326_a + b field_151324_b + c field_151325_c + d field_151323_d + a ()Leu; func_151317_a + a (Leu;)V func_151315_a + a (Ljava/lang/String;)V func_151320_a + a (Ljs$a;)V func_151319_a + a (Ljs$c;)V func_151321_a + b ()Ljs$a; func_151318_b + c ()Ljs$c; func_151322_c + d ()Ljava/lang/String; func_151316_d +js$a net/minecraft/network/ServerStatusResponse$PlayerCountData + a field_151336_a + b field_151334_b + c field_151335_c + a ()I func_151332_a + a ([Lcom/mojang/authlib/GameProfile;)V func_151330_a + b ()I func_151333_b + c ()[Lcom/mojang/authlib/GameProfile; func_151331_c +js$a$a net/minecraft/network/ServerStatusResponse$PlayerCountData$Serializer + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljs$a; deserialize + a (Ljs$a;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize +js$b net/minecraft/network/ServerStatusResponse$Serializer + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljs; deserialize + a (Ljs;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize +js$c net/minecraft/network/ServerStatusResponse$MinecraftProtocolVersionIdentifier + a field_151306_a + b field_151305_b + a ()Ljava/lang/String; func_151303_a + b ()I func_151304_b +js$c$a net/minecraft/network/ServerStatusResponse$MinecraftProtocolVersionIdentifier$Serializer + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljs$c; deserialize + a (Ljs$c;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize +jt net/minecraft/network/status/INetHandlerStatusServer + a (Lju;)V func_147311_a + a (Ljv;)V func_147312_a +ju net/minecraft/network/status/client/C01PacketPing + a field_149290_a + a ()J func_149289_c + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Ljt;)V func_148833_a + b (Lem;)V func_148840_b +jv net/minecraft/network/status/client/C00PacketServerQuery + a (Lem;)V func_148837_a + a (Lep;)V func_148833_a + a (Ljt;)V func_148833_a + b (Lem;)V func_148840_b +jy net/minecraft/util/ResourceLocation + a field_110626_a + b field_110625_b + a ()Ljava/lang/String; func_110623_a + a (Ljava/lang/String;)[Ljava/lang/String; func_177516_a + b ()Ljava/lang/String; func_110624_b + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +k net/minecraft/command/ICommand + a (Lm;)Z func_71519_b + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ()Ljava/util/List; func_71514_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +ka net/minecraft/dispenser/BehaviorProjectileDispense + a ()F func_82498_a + a (Ladm;Lcz;)Lwv; func_82499_a + a (Lck;)V func_82485_a + b ()F func_82500_b + b (Lck;Lzx;)Lzx; func_82487_b +kb net/minecraft/init/Bootstrap + a field_179872_a + b field_151355_a + c field_179871_c + a ()Z func_179869_a + a (Ljava/lang/String;)V func_179870_a + b ()V func_151353_a + c ()V func_151354_b + d ()V func_179868_d +kb$1 net/minecraft/init/Bootstrap$1 + a (Ladm;Lcz;)Lwv; func_82499_a +kb$10 net/minecraft/init/Bootstrap$10 + a (Ladm;Lcz;)Lwv; func_82499_a +kb$11 net/minecraft/init/Bootstrap$11 + a ()F func_82498_a + a (Ladm;Lcz;)Lwv; func_82499_a + b ()F func_82500_b +kb$12 net/minecraft/init/Bootstrap$12 + b field_150843_b + a (Lck;Lzx;)Lzx; func_82482_a +kb$12$1 net/minecraft/init/Bootstrap$12$1 + b field_150836_b + c field_150837_c + a ()F func_82498_a + a (Ladm;Lcz;)Lwv; func_82499_a + b ()F func_82500_b +kb$13 net/minecraft/init/Bootstrap$13 + b (Lck;Lzx;)Lzx; func_82487_b +kb$14 net/minecraft/init/Bootstrap$14 + a (Lck;)V func_82485_a + b (Lck;Lzx;)Lzx; func_82487_b +kb$15 net/minecraft/init/Bootstrap$15 + a (Lck;)V func_82485_a + b (Lck;Lzx;)Lzx; func_82487_b +kb$16 net/minecraft/init/Bootstrap$16 + b field_150842_b + a (Lck;)V func_82485_a + b (Lck;Lzx;)Lzx; func_82487_b +kb$2 net/minecraft/init/Bootstrap$2 + b field_150841_b + b (Lck;Lzx;)Lzx; func_82487_b +kb$3 net/minecraft/init/Bootstrap$3 + b field_150840_b + b (Lck;Lzx;)Lzx; func_82487_b +kb$4 net/minecraft/init/Bootstrap$4 + b field_150839_b + a (Lck;)V func_82485_a + b (Lck;Lzx;)Lzx; func_82487_b +kb$5 net/minecraft/init/Bootstrap$5 + b field_150838_b + a (Lck;)V func_82485_a + b (Lck;Lzx;)Lzx; func_82487_b +kb$6 net/minecraft/init/Bootstrap$6 + b (Lck;Lzx;)Lzx; func_82487_b +kb$7 net/minecraft/init/Bootstrap$7 + b field_179240_b + a (Lck;)V func_82485_a + b (Lck;Lzx;)Lzx; func_82487_b +kb$8 net/minecraft/init/Bootstrap$8 + b field_179241_b + a (Lck;)V func_82485_a + b (Lck;Lzx;)Lzx; func_82487_b +kb$9 net/minecraft/init/Bootstrap$9 + a (Ladm;Lcz;)Lwv; func_82499_a +kc net/minecraft/client/util/JsonException + a field_151383_a + b field_151382_b + a (Ljava/lang/Exception;)Lkc; func_151379_a + a (Ljava/lang/String;)V func_151380_a + b (Ljava/lang/String;)V func_151381_b + getMessage ()Ljava/lang/String; getMessage +kc$1 net/minecraft/client/util/JsonException$1 +kc$a net/minecraft/client/util/JsonException$Entry + a field_151376_a + b field_151375_b + a (Ljava/lang/String;)V func_151373_a + a (Lkc$a;Ljava/lang/String;)V access$100 + b ()Ljava/lang/String; func_151372_b + b (Lkc$a;Ljava/lang/String;)Ljava/lang/String; access$202 + toString ()Ljava/lang/String; toString +kd net/minecraft/command/ServerCommand + a field_73702_a + b field_73701_b +kf net/minecraft/server/ServerEula + a field_154349_a + b field_154350_b + c field_154351_c + a ()Z func_154346_a + a (Ljava/io/File;)Z func_154347_a + b ()V func_154348_b +kg net/minecraft/util/LoggingPrintStream + a field_179884_a + b field_179883_b + a (Ljava/lang/String;)V func_179882_a + println (Ljava/lang/Object;)V println + println (Ljava/lang/String;)V println +ki net/minecraft/network/ThreadQuickExitException + a field_179886_a + fillInStackTrace ()Ljava/lang/Throwable; fillInStackTrace +kj net/minecraft/network/rcon/IServer + E ()Ljava/lang/String; func_71277_t + F ()I func_71234_u + G ()Ljava/lang/String; func_71274_v + H ()Ljava/lang/String; func_71249_w + I ()I func_71233_x + J ()I func_71275_y + K ()[Ljava/lang/String; func_71213_z + M ()Z func_71239_B + U ()Ljava/lang/String; func_71270_I + a ()V func_71326_a + a (Ljava/lang/String;I)I func_71327_a + a (Ljava/lang/String;Ljava/lang/Object;)V func_71328_a + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; func_71330_a + a_ (Ljava/lang/String;)Ljava/lang/String; func_71252_i + b ()Ljava/lang/String; func_71329_c + d_ ()Ljava/lang/String; func_71258_A + e (Ljava/lang/String;)V func_71244_g + f (Ljava/lang/String;)V func_71236_h + g (Ljava/lang/String;)V func_71201_j + h (Ljava/lang/String;)V func_71198_k +kk net/minecraft/scoreboard/ServerScoreboard + a field_96555_a + b field_96553_b + c field_96554_c + a (ILauk;)V func_96530_a + a (Lauk;)V func_96522_a + a (Laul;)V func_96523_a + a (Laum;)V func_96536_a + a (Laup;)V func_96547_a + a (Ljava/lang/String;)V func_96516_a + a (Ljava/lang/String;Lauk;)V func_178820_a + a (Ljava/lang/String;Laul;)V func_96512_b + a (Ljava/lang/String;Ljava/lang/String;)Z func_151392_a + b ()V func_96551_b + b (Lauk;)V func_96532_b + b (Laul;)V func_96538_b + c (Lauk;)V func_96533_c + c (Laul;)V func_96513_c + d (Lauk;)Ljava/util/List; func_96550_d + e (Lauk;)V func_96549_e + f (Lauk;)Ljava/util/List; func_96548_f + g (Lauk;)V func_96546_g + h (Lauk;)I func_96552_h +kl net/minecraft/server/dedicated/PropertyManager + a field_164440_a + b field_73672_b + c field_73673_c + a ()V func_73666_a + a (Ljava/lang/String;I)I func_73669_a + a (Ljava/lang/String;J)J func_179885_a + a (Ljava/lang/String;Ljava/lang/Object;)V func_73667_a + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; func_73671_a + a (Ljava/lang/String;Z)Z func_73670_a + b ()V func_73668_b + c ()Ljava/io/File; func_73665_c +km net/minecraft/util/ITickable + c ()V func_73660_a +kn net/minecraft/server/dedicated/DedicatedPlayerList + f field_164439_d + A ()V func_72417_t + B ()V func_72419_u + C ()V func_72418_v + D ()V func_72421_w + a ()V func_72362_j + a (Lcom/mojang/authlib/GameProfile;)V func_152605_a + a (Z)V func_72371_a + b ()Lko; func_72365_p + b (Lcom/mojang/authlib/GameProfile;)V func_152610_b + c ()Lnet/minecraft/server/MinecraftServer; func_72365_p + c (Lcom/mojang/authlib/GameProfile;)V func_152597_c + d (Lcom/mojang/authlib/GameProfile;)V func_152601_d + e (Lcom/mojang/authlib/GameProfile;)Z func_152607_e + f (Lcom/mojang/authlib/GameProfile;)Z func_183023_f + w ()V func_152618_v + x ()V func_152617_w + y ()V func_152619_x + z ()V func_152620_y +ko net/minecraft/server/dedicated/DedicatedServer + k field_155771_h + l field_71341_l + m field_71342_m + n field_71339_n + o field_71340_o + p field_154332_n + q field_71338_p + r field_71337_q + s field_71335_s + B ()V func_71190_q + C ()Z func_71255_r + W ()Z func_71193_K + a ()V func_71326_a + a (Ladm;Lcj;Lwn;)Z func_175579_a + a (Ladp$a;)V func_71235_a + a (Ladp$a;Z)Ljava/lang/String; func_71206_a + a (Lb;)V func_71228_a + a (Ljava/lang/String;I)I func_71327_a + a (Ljava/lang/String;Ljava/lang/Object;)V func_71328_a + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; func_71330_a + a (Ljava/lang/String;Lm;)V func_71331_a + a (Ljava/lang/String;Z)Z func_71332_a + a (Lor;)V func_70000_a + aB ()Z func_147136_ar + aI ()I func_175580_aG + aK ()I func_175577_aI + aO ()V func_71333_ah + aP ()Lkn; func_71203_ab + aQ ()V func_120011_ar + aR ()Z func_152368_aE + aS ()J func_175593_aQ + aT ()Lorg/apache/logging/log4j/Logger; access$000 + aU ()V func_152369_aG + a_ (Ljava/lang/String;)Ljava/lang/String; func_71252_i + ad ()Z func_70002_Q + ae ()Z func_71262_S + ai ()Z func_181035_ah + al ()Z func_82356_Z + ap ()Llx; func_71203_ab + as ()Z func_71279_ae + aw ()I func_82357_ak + b ()Ljava/lang/String; func_71329_c + b (Lb;)Lb; func_71230_b + d (I)V func_143006_e + d_ ()Ljava/lang/String; func_71258_A + i ()Z func_71197_b + l ()Z func_71225_e + m ()Ladp$a; func_71265_f + n ()Loj; func_147135_j + o ()Z func_71199_h + p ()I func_110455_j + q ()Z func_181034_q + r ()Z func_183002_r + z ()V func_71240_o +ko$1 net/minecraft/server/dedicated/DedicatedServer$1 + a field_72451_a + run ()V run +ko$2 net/minecraft/server/dedicated/DedicatedServer$2 + a field_72428_a + run ()V run +ko$3 net/minecraft/server/dedicated/DedicatedServer$3 + a field_71743_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ko$4 net/minecraft/server/dedicated/DedicatedServer$4 + a field_85171_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +kp net/minecraft/server/dedicated/ServerHangWatchdog + a field_180251_a + b field_180249_b + c field_180250_c + a ()V func_180248_a + run ()V run +kp$1 net/minecraft/server/dedicated/ServerHangWatchdog$1 + a field_180252_a + run ()V run +kr net/minecraft/server/gui/MinecraftServerGui + a field_164249_a + b field_164248_b + c field_120021_b + a ()Ljavax/swing/JComponent; func_120019_b + a (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V func_164247_a + a (Lko;)V func_120016_a + a (Lkr;)Lko; access$000 + b ()Ljavax/swing/JComponent; func_120020_c + c ()Ljavax/swing/JComponent; func_120018_d +kr$1 net/minecraft/server/gui/MinecraftServerGui$1 + a field_120023_a + windowClosing (Ljava/awt/event/WindowEvent;)V windowClosing +kr$2 net/minecraft/server/gui/MinecraftServerGui$2 + a field_120025_a + b field_120024_b + actionPerformed (Ljava/awt/event/ActionEvent;)V actionPerformed +kr$3 net/minecraft/server/gui/MinecraftServerGui$3 + a field_120032_a + focusGained (Ljava/awt/event/FocusEvent;)V focusGained +kr$4 net/minecraft/server/gui/MinecraftServerGui$4 + a field_164252_a + b field_164250_b + c field_164251_c + run ()V run +kr$5 net/minecraft/server/gui/MinecraftServerGui$5 + a field_164256_a + b field_164254_b + c field_164255_c + d field_164253_d + run ()V run +ks net/minecraft/server/gui/PlayerListComponent + a field_120015_a + b field_120014_b + c ()V func_73660_a +kt net/minecraft/server/gui/StatsComponent + a field_120040_a + b field_120038_b + c field_120039_c + d field_120036_d + e field_120037_e + a ()V func_120034_a + a (Lkt;)V access$000 + a ([J)D func_120035_a + paint (Ljava/awt/Graphics;)V paint +kt$1 net/minecraft/server/gui/StatsComponent$1 + a field_120030_a + actionPerformed (Ljava/awt/event/ActionEvent;)V actionPerformed +kw net/minecraft/client/renderer/DestroyBlockProgress + a field_73115_a + b field_180247_b + c field_73112_e + d field_82745_f + a (I)V func_73107_a + b ()Lcj; func_180246_b + b (I)V func_82744_b + c ()I func_73106_e + d ()I func_82743_f +kx net/minecraft/world/demo/DemoWorldServer + I field_73072_L + a field_73071_a +ky net/minecraft/world/demo/DemoWorldManager + c field_73105_c + d field_73103_d + e field_73104_e + f field_73102_f + a ()V func_73075_a + a (Lcj;)V func_180785_a + a (Lcj;Lcq;)V func_180784_a + a (Lwn;Ladm;Lzx;)Z func_73085_a + a (Lwn;Ladm;Lzx;Lcj;Lcq;FFF)Z func_180236_a + b (Lcj;)Z func_180237_b + f ()V func_73101_e +kz net/minecraft/world/WorldServerMulti + a field_175743_a + a ()V func_73042_a + b ()Ladm; func_175643_b +kz$1 net/minecraft/world/WorldServerMulti$1 + a field_177698_a + a (Lams;D)V func_177694_a + a (Lams;DD)V func_177693_a + a (Lams;DDJ)V func_177692_a + a (Lams;I)V func_177691_a + b (Lams;D)V func_177696_b + b (Lams;I)V func_177690_b + c (Lams;D)V func_177695_c +l net/minecraft/command/ICommandManager + a ()Ljava/util/Map; func_71555_a + a (Lm;)Ljava/util/List; func_71557_a + a (Lm;Ljava/lang/String;)I func_71556_a + a (Lm;Ljava/lang/String;Lcj;)Ljava/util/List; func_180524_a +la net/minecraft/entity/EntityTracker + a field_151249_a + b field_72795_a + c field_72793_b + d field_72794_c + e field_72792_d + a ()V func_72788_a + a (Llf;)V func_180245_a + a (Llf;Lamy;)V func_85172_a + a (Lpk;)V func_72786_a + a (Lpk;II)V func_72791_a + a (Lpk;IIZ)V func_72785_a + a (Lpk;Lff;)V func_151247_a + b (Llf;)V func_72787_a + b (Lpk;)V func_72790_b + b (Lpk;Lff;)V func_151248_b +la$1 net/minecraft/entity/EntityTracker$1 + a field_96570_a + b field_96569_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +lb net/minecraft/world/WorldManager + a field_72783_a + b field_72782_b + a (IIIIII)V func_147585_a + a (ILcj;I)V func_180440_a + a (IZDDDDDD[I)V func_180442_a + a (Lcj;)V func_174960_a + a (Ljava/lang/String;DDDFF)V func_72704_a + a (Ljava/lang/String;Lcj;)V func_174961_a + a (Lpk;)V func_72703_a + a (Lwn;ILcj;I)V func_180439_a + a (Lwn;Ljava/lang/String;DDDFF)V func_85102_a + b (ILcj;I)V func_180441_b + b (Lcj;)V func_174959_b + b (Lpk;)V func_72709_b +lc net/minecraft/server/management/PlayerManager + a field_152627_a + b field_72701_a + c field_72699_b + d field_72700_c + e field_72697_d + f field_111193_e + g field_72698_e + h field_111192_g + i field_72696_f + a ()Lle; func_72688_a + a (I)V func_152622_a + a (II)Z func_152621_a + a (IIIII)Z func_72684_a + a (IIZ)Llc$a; func_72690_a + a (Lcj;)V func_180244_a + a (Llc;)Lle; access$100 + a (Llf;)V func_72683_a + a (Llf;II)Z func_72694_a + b ()V func_72693_b + b (I)I func_72686_a + b (Llc;)Lnq; access$200 + b (Llf;)V func_72691_b + c ()Lorg/apache/logging/log4j/Logger; access$000 + c (Llc;)Ljava/util/List; access$300 + c (Llf;)V func_72695_c + d (Llc;)Ljava/util/List; access$400 + d (Llf;)V func_72685_d +lc$a net/minecraft/server/management/PlayerManager$PlayerInstance + a field_73265_a + b field_73263_b + c field_73264_c + d field_151254_d + e field_73262_e + f field_73260_f + g field_111198_g + a ()V func_111194_a + a (III)V func_151253_a + a (Lakw;)V func_151252_a + a (Lamy;)V func_111196_a + a (Lff;)V func_151251_a + a (Llc$a;)Ladg; access$500 + a (Llf;)V func_73255_a + b ()V func_73254_a + b (Llc$a;)Ljava/util/List; access$600 + b (Llf;)V func_73252_b +ld net/minecraft/world/gen/ChunkProviderServer + a field_73250_a + b field_147417_b + c field_73248_b + d field_73249_c + e field_73246_d + f field_73247_e + g field_73244_f + h field_73245_g + i field_73251_h + a ()Ljava/util/List; func_152380_a + a (II)Z func_73149_a + a (Ladm;Ljava/lang/String;Lcj;)Lcj; func_180513_a + a (Lamv;II)V func_73153_a + a (Lamv;Lamy;II)Z func_177460_a + a (Lamy;)V func_73243_a + a (Lamy;II)V func_180514_a + a (Lcj;)Lamy; func_177459_a + a (Lpt;Lcj;)Ljava/util/List; func_177458_a + a (ZLnu;)Z func_73151_a + b ()V func_73240_a + b (II)V func_73241_b + b (Lamy;)V func_73242_b + c ()V func_104112_b + c (II)Lamy; func_73158_c + d ()Z func_73156_b + d (II)Lamy; func_73154_d + e ()Z func_73157_c + e (II)Lamy; func_73239_e + f ()Ljava/lang/String; func_73148_d + g ()I func_73152_e +le net/minecraft/world/WorldServer + I field_73061_a + J field_73062_L + K field_73063_M + L field_73064_N + M field_73065_O + N field_175741_N + O field_73068_P + P field_80004_Q + Q field_85177_Q + R field_175742_R + S field_147490_S + T field_147489_T + U field_73069_S + V field_94579_S + a field_147491_a + b field_73059_b + c field_73058_d + d field_175740_d + a ()V func_73042_a + a (IIIIII)Ljava/util/List; func_147486_a + a (Lade;)Z func_147485_a + a (Ladp;)V func_72963_a + a (Lamy;Z)Ljava/util/List; func_72920_a + a (Laqe;Z)Ljava/util/List; func_175712_a + a (Lcj;)Lcj; func_175736_a + a (Lcj;Lafh;)Z func_175691_a + a (Lcj;Lafh;I)V func_175684_a + a (Lcj;Lafh;II)V func_175654_a + a (Lcy;DDDIDDDD[I)V func_175739_a + a (Lcy;ZDDDIDDDD[I)V func_180505_a + a (Ljava/lang/Runnable;)Lcom/google/common/util/concurrent/ListenableFuture; func_152344_a + a (Ljava/util/UUID;)Lpk; func_175733_a + a (Lpk;)V func_72923_a + a (Lpk;B)V func_72960_a + a (Lpk;DDDFZZ)Ladi; func_72885_a + a (Lpk;Z)V func_72866_a + a (Lpt;Lady$c;Lcj;)Z func_175732_a + a (Lpt;Lcj;)Lady$c; func_175734_a + a (Lwn;Lcj;)Z func_175660_a + a (Z)Z func_72955_a + a (ZLnu;)V func_73044_a + aJ ()Z func_152345_ab + ag ()V func_73051_P + ah ()Z func_175738_ah + ai ()Z func_175735_ai + aj ()V func_175737_aj + ak ()V func_147488_Z + b ()Ladm; func_175643_b + b (Ladp;)V func_73052_b + b (Lcj;Lafh;II)V func_180497_b + b (Lpk;)V func_72847_b + c ()V func_72835_b + c (Lcj;Lafh;II)V func_175641_c + c (Lpk;)Z func_72942_c + d ()V func_72854_c + e ()V func_73053_d + f ()Z func_73056_e + g ()V func_72974_f + h ()V func_147456_g + i ()V func_72939_s + j ()V func_82742_i + k ()Lamv; func_72970_h + l ()V func_73047_i + m ()Lcj; func_180504_m + n ()V func_104140_m + o ()V func_73041_k + p ()V func_72979_l + q ()I func_152379_p + r ()Lnet/minecraft/server/MinecraftServer; func_73046_m + s ()Lla; func_73039_n + t ()Llc; func_73040_p + u ()Ladu; func_85176_s +le$1 net/minecraft/world/WorldServer$1 + a field_180243_a + a (Lpr;)Z apply + apply (Ljava/lang/Object;)Z apply +le$a net/minecraft/world/WorldServer$ServerBlockEventList +lf net/minecraft/entity/player/EntityPlayerMP + a field_71135_a + b field_71133_b + bH field_147102_bM + bI field_71148_cg + bJ field_71130_g + bK field_147103_bO + bL field_130068_bO + bM field_71149_ch + bN field_71146_ci + bO field_71147_cj + bP field_71144_ck + bQ field_147101_bU + bR field_71143_cn + bS field_71140_co + bT field_143005_bX + bU field_175401_bS + bV field_71139_cq + c field_71134_c + d field_71131_d + e field_71132_e + f field_71129_f + g field_71137_h + h field_71138_i + i field_71136_j + A ()Lmv; func_147099_x + B ()V func_175135_B + C ()Lpk; func_175398_C + D ()J func_154331_x + E ()Leu; func_175396_E + a (DDD)V func_70634_a + a (DZ)V func_71122_b + a (DZLafh;Lcj;)V func_180433_a + a (FFZZ)V func_110430_a + a (I)V func_82242_a + a (ILjava/lang/String;)Z func_70003_b + a (Lacy;)V func_180472_a + a (Ladp$a;)V func_71033_a + a (Lakw;)V func_147097_b + a (Laln;)V func_175141_a + a (Lcj;)Lwn$a; func_180469_a + a (Ldn;)V func_70037_a + a (Leu;)V func_145747_a + a (Lih;)V func_147100_a + a (Ljava/lang/String;Ljava/lang/String;)V func_175397_a + a (Llf;)Z func_174827_a + a (Lmw;)V func_175145_a + a (Lmw;I)V func_71064_a + a (Log;)V func_71007_a + a (Lol;)V func_180468_a + a (Low;)V func_70645_a + a (Low;F)Z func_70097_a + a (Lpf;)V func_70670_a + a (Lpf;Z)V func_70695_b + a (Lpk;)V func_70078_a + a (Lpk;I)V func_71001_a + a (Ltp;Log;)V func_110298_a + a (Lwn;)Z func_96122_a + a (Lwn;Z)V func_71049_a + a (Lxi;)V func_71120_a + a (Lxi;II)V func_71112_a + a (Lxi;ILzx;)V func_71111_a + a (Lxi;Ljava/util/List;)V func_71110_a + a (Lxi;Log;)V func_175173_a + a (Lzx;)V func_71048_c + a (Lzx;I)V func_71008_a + a (ZZZ)V func_70999_a + b (I)V func_71013_b + b (Ldn;)V func_70014_b + b (Leu;)V func_146105_b + b (Lpf;)V func_70688_c + b (Lpk;)V func_71009_b + c ()Lcj; func_180425_c + c (I)V func_71027_c + c (Lpk;)V func_71047_c + cr ()Z func_175400_cq + cs ()V func_71117_bO + d (Lpk;)V func_152339_d + e (Lpk;)V func_175399_e + f (Lpk;)V func_71059_n + g_ ()V func_71116_b + h_ ()V func_152111_bt + i_ ()V func_147098_j + j ()V func_152112_bu + l ()V func_71127_g + n ()V func_71053_j + o ()V func_71113_k + p ()V func_71128_l + q ()V func_71123_m + r ()V func_71118_n + s ()V func_71036_o + t ()V func_71016_p + t_ ()V func_70071_h_ + u ()Lle; func_71121_q + v ()Z func_175149_v + w ()Ljava/lang/String; func_71114_r + y ()Lwn$b; func_147096_v + z ()V func_143004_u +lg net/minecraft/server/management/ItemInWorldManager + a field_73092_a + b field_73090_b + c field_73091_c + d field_73088_d + e field_73089_e + f field_180240_f + g field_73100_i + h field_73097_j + i field_180241_i + j field_73093_n + k field_73094_o + a ()V func_73075_a + a (Ladp$a;)V func_73076_a + a (Lcj;)V func_180785_a + a (Lcj;Lcq;)V func_180784_a + a (Lle;)V func_73080_a + a (Lwn;Ladm;Lzx;)Z func_73085_a + a (Lwn;Ladm;Lzx;Lcj;Lcq;FFF)Z func_180236_a + b ()Ladp$a; func_73081_b + b (Ladp$a;)V func_73077_b + b (Lcj;)Z func_180237_b + c ()Z func_180239_c + c (Lcj;)Z func_180235_c + d ()Z func_73083_d + e ()V func_180238_e +lh net/minecraft/entity/EntityTrackerEntry + a field_73132_a + b field_73130_b + c field_73131_c + d field_73128_d + e field_73129_e + f field_73126_f + g field_73127_g + h field_73139_h + i field_73140_i + j field_73137_j + k field_73138_k + l field_73135_l + m field_73136_m + n field_73133_n + o field_73134_o + p field_151262_p + q field_73147_p + r field_73146_q + s field_73145_r + t field_73144_s + u field_73143_t + v field_73142_u + w field_85178_v + x field_73141_v + y field_180234_y + a ()V func_73119_a + a (Lff;)V func_151259_a + a (Ljava/util/List;)V func_73122_a + a (Llf;)V func_73118_a + b ()V func_111190_b + b (Lff;)V func_151261_b + b (Ljava/util/List;)V func_73125_b + b (Llf;)V func_73117_b + c ()Lff; func_151260_c + c (Llf;)Z func_180233_c + d (Llf;)V func_73123_c + e (Llf;)Z func_73121_d + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode +lj net/minecraft/network/PingResponseHandler + a field_151258_a + b field_151257_b + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V func_151256_a + a (Ljava/lang/String;)Lio/netty/buffer/ByteBuf; func_151255_a + channelRead (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V channelRead +lk net/minecraft/client/network/NetHandlerHandshakeMemory + a field_147385_a + b field_147384_b + a (Leu;)V func_147231_a + a (Ljc;)V func_147383_a +ll net/minecraft/network/NetworkSystem + a field_151276_c + b field_181141_b + c field_180232_b + d field_151277_a + e field_151275_b + f field_151273_d + g field_151274_e + h field_151272_f + a ()Ljava/net/SocketAddress; func_151270_a + a (Ljava/net/InetAddress;I)V func_151265_a + a (Lll;)Ljava/util/List; access$000 + b ()V func_151268_b + b (Lll;)Lnet/minecraft/server/MinecraftServer; access$100 + c ()V func_151269_c + d ()Lnet/minecraft/server/MinecraftServer; func_151267_d +ll$1 net/minecraft/network/NetworkSystem$1 + a ()Lio/netty/channel/nio/NioEventLoopGroup; func_179280_b + b ()Ljava/lang/Object; func_179280_b +ll$2 net/minecraft/network/NetworkSystem$2 + a ()Lio/netty/channel/epoll/EpollEventLoopGroup; func_179280_b + b ()Ljava/lang/Object; func_179280_b +ll$3 net/minecraft/network/NetworkSystem$3 + a ()Lio/netty/channel/local/LocalEventLoopGroup; func_179280_b + b ()Ljava/lang/Object; func_179280_b +ll$4 net/minecraft/network/NetworkSystem$4 + a field_151283_c + initChannel (Lio/netty/channel/Channel;)V initChannel +ll$5 net/minecraft/network/NetworkSystem$5 + a field_180230_b + initChannel (Lio/netty/channel/Channel;)V initChannel +ll$6 net/minecraft/network/NetworkSystem$6 + a field_151284_a + b field_180228_c + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ll$7 net/minecraft/network/NetworkSystem$7 + a field_181143_a + b field_181144_b + c field_181145_c + operationComplete (Lio/netty/util/concurrent/Future;)V operationComplete +lm net/minecraft/network/NetHandlerPlayServer + a field_147371_a + b field_147369_b + c field_147370_c + d field_147367_d + e field_147368_e + f field_175090_f + g field_147365_f + h field_147366_g + i field_147378_h + j field_147379_i + k field_147377_k + l field_147374_l + m field_147375_m + n field_147372_n + o field_147373_o + p field_147382_p + q field_147381_q + r field_147380_r + a ()Lek; func_147362_b + a (DDDFF)V func_147364_a + a (DDDFFLjava/util/Set;)V func_175089_a + a (Leu;)V func_147231_a + a (Lff;)V func_147359_a + a (Lid;)V func_147341_a + a (Lie;)V func_147354_a + a (Lig;)V func_147342_a + a (Lih;)V func_147352_a + a (Lii;)V func_147339_a + a (Lij;)V func_147338_a + a (Lik;)V func_147351_a + a (Lil;)V func_147356_a + a (Lim;)V func_147349_a + a (Lin;)V func_147340_a + a (Lio;)V func_147353_a + a (Lip;)V func_147347_a + a (Liq;)V func_147348_a + a (Lir;)V func_147345_a + a (Lis;)V func_147357_a + a (Lit;)V func_147358_a + a (Liu;)V func_175086_a + a (Liv;)V func_147355_a + a (Liw;)V func_147344_a + a (Lix;)V func_147343_a + a (Liy;)V func_175087_a + a (Liz;)V func_175088_a + a (Lja;)V func_147346_a + b (Lip;)Z func_183006_b + c ()V func_73660_a + c (Ljava/lang/String;)V func_147360_c + d ()J func_147363_d + d (Ljava/lang/String;)V func_147361_d +lm$1 net/minecraft/network/NetHandlerPlayServer$1 + a field_151289_a + b field_151288_b + operationComplete (Lio/netty/util/concurrent/Future;)V operationComplete +lm$2 net/minecraft/network/NetHandlerPlayServer$2 + a field_151286_b + run ()V run +lm$3 net/minecraft/network/NetHandlerPlayServer$3 + a field_180227_a + b field_180226_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +lm$4 net/minecraft/network/NetHandlerPlayServer$4 + a field_180224_a + b field_180222_b + c field_180223_c +ln net/minecraft/server/network/NetHandlerHandshakeTCP + a field_147387_a + b field_147386_b + a (Leu;)V func_147231_a + a (Ljc;)V func_147383_a +ln$1 net/minecraft/server/network/NetHandlerHandshakeTCP$1 + a field_151291_a +lo net/minecraft/server/network/NetHandlerLoginServer + a field_147333_a + b field_147331_b + c field_147332_c + d field_147329_d + e field_147330_e + f field_147327_f + g field_147328_g + h field_147336_h + i field_147337_i + j field_147334_j + k field_147335_k + l field_181025_l + a (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/authlib/GameProfile; func_152506_a + a (Leu;)V func_147231_a + a (Ljava/lang/String;)V func_147322_a + a (Ljl;)V func_147316_a + a (Ljm;)V func_147315_a + a (Llo;)Lnet/minecraft/server/MinecraftServer; access$000 + a (Llo;Lcom/mojang/authlib/GameProfile;)Lcom/mojang/authlib/GameProfile; access$102 + a (Llo;Llo$a;)Llo$a; access$502 + b ()V func_147326_c + b (Llo;)Lcom/mojang/authlib/GameProfile; access$100 + c ()V func_73660_a + c (Llo;)Ljava/lang/String; access$200 + d ()Ljava/lang/String; func_147317_d + d (Llo;)Ljavax/crypto/SecretKey; access$300 + e ()Lorg/apache/logging/log4j/Logger; access$400 +lo$1 net/minecraft/server/network/NetHandlerLoginServer$1 + a field_151292_a + a (Lio/netty/channel/ChannelFuture;)V operationComplete + operationComplete (Lio/netty/util/concurrent/Future;)V operationComplete +lo$2 net/minecraft/server/network/NetHandlerLoginServer$2 + a field_180221_a + run ()V run +lo$a net/minecraft/server/network/NetHandlerLoginServer$LoginState + a HELLO + b KEY + c AUTHENTICATING + d READY_TO_ACCEPT + e DELAY_ACCEPT + f ACCEPTED + g $VALUES + values ()[Llo$a; values +lp net/minecraft/server/network/NetHandlerStatusServer + a field_183007_a + b field_147314_a + c field_147313_b + d field_183008_d + a (Leu;)V func_147231_a + a (Lju;)V func_147311_a + a (Ljv;)V func_147312_a +ls net/minecraft/server/management/BanEntry + a field_73698_a + b field_73694_d + c field_73695_e + d field_73692_f + e field_73693_g + a (Lcom/google/gson/JsonObject;)V func_152641_a + c ()Ljava/util/Date; func_73680_d + d ()Ljava/lang/String; func_73686_f + e ()Z func_73682_e +lt net/minecraft/server/management/PlayerProfileCache + a field_152659_a + b field_152660_b + c field_152661_c + d field_152662_d + e field_152663_e + f field_152664_f + g field_152665_g + h field_152666_h + a ()[Ljava/lang/String; func_152654_a + a (I)Ljava/util/List; func_152656_a + a (Lcom/mojang/authlib/GameProfile;)V func_152649_a + a (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;)V func_152651_a + a (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; func_152655_a + a (Ljava/util/UUID;)Lcom/mojang/authlib/GameProfile; func_152652_a + a (Lnet/minecraft/server/MinecraftServer;Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; func_152650_a + b ()V func_152657_b + b (Ljava/util/UUID;)Llt$a; func_152653_b + c ()V func_152658_c +lt$1 net/minecraft/server/management/PlayerProfileCache$1 + a field_152667_a + onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V onProfileLookupFailed + onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V onProfileLookupSucceeded +lt$2 net/minecraft/server/management/PlayerProfileCache$2 + getActualTypeArguments ()[Ljava/lang/reflect/Type; getActualTypeArguments + getOwnerType ()Ljava/lang/reflect/Type; getOwnerType + getRawType ()Ljava/lang/reflect/Type; getRawType +lt$a net/minecraft/server/management/PlayerProfileCache$ProfileEntry + a field_152671_a + b field_152672_b + c field_152673_c + a ()Lcom/mojang/authlib/GameProfile; func_152668_a + a (Llt$a;)Ljava/util/Date; access$200 + b ()Ljava/util/Date; func_152670_b +lt$b net/minecraft/server/management/PlayerProfileCache$Serializer + a field_152677_a + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Llt$a; deserialize + a (Llt$a;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize +lu net/minecraft/server/management/BanList + a (Lcom/google/gson/JsonObject;)Lma; func_152682_a + a (Ljava/net/SocketAddress;)Z func_152708_a + b (Ljava/net/SocketAddress;)Llv; func_152709_b + c (Ljava/net/SocketAddress;)Ljava/lang/String; func_152707_c +lv net/minecraft/server/management/IPBanEntry + a (Lcom/google/gson/JsonObject;)V func_152641_a + b (Lcom/google/gson/JsonObject;)Ljava/lang/String; func_152647_b +lw net/minecraft/server/management/PreYggdrasilConverter + a field_152728_a + b field_152729_b + c field_152730_c + d field_152731_d + e field_152732_e + a ()Lorg/apache/logging/log4j/Logger; access$000 + a (Ljava/io/File;)V access$400 + a (Ljava/io/File;Ljava/util/Map;)Ljava/util/List; func_152721_a + a (Ljava/lang/String;)Ljava/lang/String; func_152719_a + a (Ljava/lang/String;Ljava/util/Date;)Ljava/util/Date; access$200 + a (Lkl;)Z func_152714_a + a (Lko;Lkl;)Z func_152723_a + a (Lnet/minecraft/server/MinecraftServer;)Z func_152724_a + a (Lnet/minecraft/server/MinecraftServer;Ljava/util/Collection;Lcom/mojang/authlib/ProfileLookupCallback;)V func_152717_a + b (Ljava/io/File;)V func_152711_b + b (Ljava/lang/String;Ljava/util/Date;)Ljava/util/Date; func_152713_b + b (Lkl;)Z func_152712_b + b (Lnet/minecraft/server/MinecraftServer;)Z func_152722_b + c (Ljava/io/File;)V func_152727_c + c (Lkl;)Z func_152715_c + c (Lnet/minecraft/server/MinecraftServer;)Z func_152718_c + d (Lkl;)Ljava/io/File; func_152725_d + d (Lnet/minecraft/server/MinecraftServer;)Z func_152710_d +lw$1 net/minecraft/server/management/PreYggdrasilConverter$1 + a (Ljava/lang/String;)Z apply + apply (Ljava/lang/Object;)Z apply +lw$2 net/minecraft/server/management/PreYggdrasilConverter$2 + a field_152734_a + b field_152735_b + c field_152736_c + onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V onProfileLookupFailed + onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V onProfileLookupSucceeded +lw$3 net/minecraft/server/management/PreYggdrasilConverter$3 + a field_152737_a + b field_152738_b + onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V onProfileLookupFailed + onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V onProfileLookupSucceeded +lw$4 net/minecraft/server/management/PreYggdrasilConverter$4 + a field_152739_a + b field_152740_b + onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V onProfileLookupFailed + onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V onProfileLookupSucceeded +lw$5 net/minecraft/server/management/PreYggdrasilConverter$5 + a field_152741_a + b field_152742_b + onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V onProfileLookupFailed + onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V onProfileLookupSucceeded +lw$6 net/minecraft/server/management/PreYggdrasilConverter$6 + a field_152745_a + b field_152746_b + c field_152747_c + d field_152748_d + e field_152749_e + a (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; func_152744_a + a (Ljava/io/File;Ljava/lang/String;Ljava/lang/String;)V func_152743_a + onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V onProfileLookupFailed + onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V onProfileLookupSucceeded +lw$a net/minecraft/server/management/PreYggdrasilConverter$ConversionError +lx net/minecraft/server/management/ServerConfigurationManager + a field_152613_a + b field_152614_b + c field_152615_c + d field_152616_d + e field_72405_c + f field_148546_d + g field_72403_e + h field_72400_f + i field_72404_b + j field_177454_f + k field_72401_g + l field_72413_h + m field_72414_i + n field_72411_j + o field_148547_k + p field_72412_k + q field_72409_l + r field_72402_d + s field_72410_m + t field_72407_n + u field_72408_o + a ()V func_72362_j + a (DDDDILff;)V func_148541_a + a (I)V func_152611_a + a (Ladp$a;)V func_152604_a + a (Lcom/mojang/authlib/GameProfile;)V func_152605_a + a (Lek;Llf;)V func_72355_a + a (Leu;)V func_148539_a + a (Leu;Z)V func_148544_a + a (Lff;)V func_148540_a + a (Lff;I)V func_148537_a + a (Ljava/lang/String;)Llf; func_152612_a + a (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; func_148542_a + a (Ljava/util/UUID;)Llf; func_177451_a + a (Lkk;Llf;)V func_96456_a + a (Llf;)Ldn; func_72380_a + a (Llf;I)V func_72356_a + a (Llf;IZ)Llf; func_72368_a + a (Llf;Lle;)V func_72375_a + a (Llf;Llf;Ladm;)V func_72381_a + a (Lpk;ILle;Lle;)V func_82448_a + a (Lwn;)Lmv; func_152602_a + a (Lwn;DDDDILff;)V func_148543_a + a (Lwn;Leu;)V func_177453_a + a (Z)V func_72371_a + a ([Lle;)V func_72364_a + b (Lcom/mojang/authlib/GameProfile;)V func_152610_b + b (Ljava/lang/String;)Ljava/util/List; func_72382_j + b (Llf;)V func_72391_b + b (Llf;Lle;)V func_72354_b + b (Lwn;Leu;)V func_177452_b + b (Z)Ljava/lang/String; func_181058_b + c ()Lnet/minecraft/server/MinecraftServer; func_72365_p + c (Lcom/mojang/authlib/GameProfile;)V func_152597_c + c (Llf;)V func_72377_c + c (Z)V func_72387_b + d ()I func_72372_a + d (Lcom/mojang/authlib/GameProfile;)V func_152601_d + d (Llf;)V func_72358_d + e ()V func_72374_b + e (Lcom/mojang/authlib/GameProfile;)Z func_152607_e + e (Llf;)V func_72367_e + f ()[Ljava/lang/String; func_72369_d + f (Lcom/mojang/authlib/GameProfile;)Z func_183023_f + f (Llf;)V func_72385_f + g ()[Lcom/mojang/authlib/GameProfile; func_152600_g + g (Lcom/mojang/authlib/GameProfile;)Llf; func_148545_a + h ()Lmc; func_152608_h + h (Lcom/mojang/authlib/GameProfile;)Z func_152596_g + i ()Llu; func_72363_f + j ()V func_72389_g + k ()Lme; func_152599_k + l ()[Ljava/lang/String; func_152598_l + m ()Lly; func_152603_m + n ()[Ljava/lang/String; func_152606_n + o ()I func_72394_k + p ()I func_72352_l + q ()[Ljava/lang/String; func_72373_m + r ()Z func_72383_n + s ()I func_72395_o + t ()Ldn; func_72378_q + u ()V func_72392_r + v ()Ljava/util/List; func_181057_v +lx$1 net/minecraft/server/management/ServerConfigurationManager$1 + a field_177697_a + a (Lams;D)V func_177694_a + a (Lams;DD)V func_177693_a + a (Lams;DDJ)V func_177692_a + a (Lams;I)V func_177691_a + b (Lams;D)V func_177696_b + b (Lams;I)V func_177690_b + c (Lams;D)V func_177695_c +ly net/minecraft/server/management/UserListOps + a ()[Ljava/lang/String; func_152685_a + a (Lcom/google/gson/JsonObject;)Lma; func_152682_a + a (Ljava/lang/Object;)Ljava/lang/String; func_152681_a + a (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; func_152700_a + b (Lcom/mojang/authlib/GameProfile;)Z func_183026_b + c (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; func_152681_a +lz net/minecraft/server/management/UserListOpsEntry + a field_152645_a + b field_183025_b + a ()I func_152644_a + a (Lcom/google/gson/JsonObject;)V func_152641_a + b ()Z func_183024_b + b (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; func_152643_b +m net/minecraft/command/ICommandSender + a (ILjava/lang/String;)Z func_70003_b + a (Leu;)V func_145747_a + a (Ln$a;I)V func_174794_a + c ()Lcj; func_180425_c + d ()Laui; func_174791_d + e ()Ladm; func_130014_f_ + e_ ()Ljava/lang/String; func_70005_c_ + f ()Lpk; func_174793_f + f_ ()Leu; func_145748_c_ + u_ ()Z func_174792_t_ +ma net/minecraft/server/management/UserListEntry + a field_152642_a + a (Lcom/google/gson/JsonObject;)V func_152641_a + e ()Z func_73682_e + f ()Ljava/lang/Object; func_152640_f +mb net/minecraft/server/management/UserList + a field_152693_a + b field_152694_b + c field_152695_c + d field_152696_d + e field_152697_e + f field_152698_f + a ()[Ljava/lang/String; func_152685_a + a (Lcom/google/gson/JsonObject;)Lma; func_152682_a + a (Ljava/lang/Object;)Ljava/lang/String; func_152681_a + a (Lma;)V func_152687_a + a (Z)V func_152686_a + b ()Z func_152689_b + b (Ljava/lang/Object;)Lma; func_152683_b + c ()Ljava/io/File; func_152691_c + c (Ljava/lang/Object;)V func_152684_c + d ()Z func_152690_d + d (Ljava/lang/Object;)Z func_152692_d + e ()Ljava/util/Map; func_152688_e + f ()V func_152678_f + g ()V func_152679_g + h ()V func_152680_h +mb$1 net/minecraft/server/management/UserList$1 + getActualTypeArguments ()[Ljava/lang/reflect/Type; getActualTypeArguments + getOwnerType ()Ljava/lang/reflect/Type; getOwnerType + getRawType ()Ljava/lang/reflect/Type; getRawType +mb$a net/minecraft/server/management/UserList$Serializer + a field_152752_a + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lma; deserialize + a (Lma;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize +mc net/minecraft/server/management/UserListBans + a ()[Ljava/lang/String; func_152685_a + a (Lcom/google/gson/JsonObject;)Lma; func_152682_a + a (Lcom/mojang/authlib/GameProfile;)Z func_152702_a + a (Ljava/lang/Object;)Ljava/lang/String; func_152681_a + a (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; func_152703_a + b (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; func_152681_a +md net/minecraft/server/management/UserListBansEntry + a (Lcom/google/gson/JsonObject;)V func_152641_a + b (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; func_152648_b +me net/minecraft/server/management/UserListWhitelist + a ()[Ljava/lang/String; func_152685_a + a (Lcom/google/gson/JsonObject;)Lma; func_152682_a + a (Lcom/mojang/authlib/GameProfile;)Z func_152705_a + a (Ljava/lang/Object;)Ljava/lang/String; func_152681_a + a (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; func_152706_a + b (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; func_152681_a +mf net/minecraft/server/management/UserListWhitelistEntry + a (Lcom/google/gson/JsonObject;)V func_152641_a + b (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; func_152646_b +mh net/minecraft/network/rcon/RConOutputStream + a field_72674_a + b field_72673_b + a ()[B func_72672_a + a (I)V func_72667_a + a (Ljava/lang/String;)V func_72671_a + a (S)V func_72668_a + a ([B)V func_72670_a + b ()V func_72669_b +mi net/minecraft/network/rcon/RConUtils + a field_72666_a + a (B)Ljava/lang/String; func_72663_a + a ([BII)Ljava/lang/String; func_72661_a + b ([BI)I func_72662_b + b ([BII)I func_72665_b + c ([BII)I func_72664_c +mj net/minecraft/network/rcon/RConConsoleSource + a field_70010_a + b field_70009_b + a (ILjava/lang/String;)Z func_70003_b + a (Leu;)V func_145747_a + a (Ln$a;I)V func_174794_a + c ()Lcj; func_180425_c + d ()Laui; func_174791_d + e ()Ladm; func_130014_f_ + e_ ()Ljava/lang/String; func_70005_c_ + f ()Lpk; func_174793_f + f_ ()Leu; func_145748_c_ + h ()Lmj; func_175570_h + i ()V func_70007_b + j ()Ljava/lang/String; func_70008_c + u_ ()Z func_174792_t_ +ml net/minecraft/network/rcon/RConThreadBase + a field_72619_a + b field_72617_b + c field_164003_c + d field_72618_c + e field_72615_d + f field_72616_e + g field_72614_f + h field_164004_h + a ()V func_72602_a + a (Ljava/lang/String;)V func_72607_a + a (Ljava/net/DatagramSocket;)V func_72601_a + a (Ljava/net/DatagramSocket;Z)Z func_72604_a + a (Ljava/net/ServerSocket;Z)Z func_72605_a + a (Z)V func_72612_a + b (Ljava/lang/String;)V func_72609_b + b (Ljava/net/ServerSocket;)Z func_72608_b + c ()Z func_72613_c + c (Ljava/lang/String;)V func_72606_c + d ()I func_72603_d + d (Ljava/lang/String;)V func_72610_d + e ()V func_72611_e +mm net/minecraft/network/rcon/RConThreadQuery + h field_72629_g + i field_72636_h + j field_72637_i + k field_72634_j + l field_72635_k + m field_72632_l + n field_72633_m + o field_72630_n + p field_72631_o + q field_72644_p + r field_72643_q + s field_72642_r + t field_72641_s + u field_72640_t + v field_72639_u + w field_72638_v + a ()V func_72602_a + a (Ljava/lang/Exception;)V func_72623_a + a (Ljava/net/DatagramPacket;)Z func_72621_a + a (Ljava/net/SocketAddress;)[B func_72625_a + a ([BLjava/net/DatagramPacket;)V func_72620_a + b (Ljava/net/DatagramPacket;)[B func_72624_b + c (Ljava/net/DatagramPacket;)Ljava/lang/Boolean; func_72627_c + d (Ljava/net/DatagramPacket;)V func_72622_d + f ()V func_72628_f + g ()Z func_72626_g + run ()V run +mm$a net/minecraft/network/rcon/RConThreadQuery$Auth + a field_72600_a + b field_72598_b + c field_72599_c + d field_72596_d + e field_72597_e + f field_72595_f + a ()I func_72592_a + a (J)Ljava/lang/Boolean; func_72593_a + b ()[B func_72594_b + c ()[B func_72591_c +mn net/minecraft/network/rcon/RConThreadClient + h field_164005_h + i field_72657_g + j field_72659_h + k field_72660_i + l field_72658_j + a (IILjava/lang/String;)V func_72654_a + a (ILjava/lang/String;)V func_72655_a + f ()V func_72656_f + g ()V func_72653_g + run ()V run +mo net/minecraft/network/rcon/RConThreadMain + h field_72647_g + i field_72651_h + j field_72652_i + k field_72649_j + l field_72650_k + m field_72648_l + a ()V func_72602_a + f ()V func_72646_f + g ()V func_72645_g + run ()V run +mq net/minecraft/stats/Achievement + a field_75993_a + b field_75991_b + c field_75992_c + d field_75990_d + k field_75996_k + l field_75994_l + m field_75995_m + a ()Lmq; func_75966_h + a (Ljava/lang/Class;)Lmq; func_150953_b + a (Lms;)Lmq; func_75988_a + b ()Lmq; func_75987_b + b (Ljava/lang/Class;)Lmw; func_150953_b + c ()Lmq; func_75971_g + d ()Z func_75967_d + e ()Leu; func_150951_e + f ()Ljava/lang/String; func_75989_e + g ()Z func_75984_f + h ()Lmw; func_75971_g + i ()Lmw; func_75966_h +mr net/minecraft/stats/AchievementList + A field_76027_z + B field_76001_A + C field_76002_B + D field_76003_C + E field_75998_D + F field_75999_E + G field_76000_F + H field_150962_H + I field_150963_I + J field_150964_J + K field_150965_K + L field_150961_L + M field_180219_M + a field_76010_a + b field_76008_b + c field_76009_c + d field_76006_d + e field_76007_e + f field_76004_f + g field_76005_g + h field_76017_h + i field_76018_i + j field_76015_j + k field_76016_k + l field_76013_l + m field_76014_m + n field_76011_n + o field_76012_o + p field_76026_p + q field_76025_q + r field_76024_r + s field_76023_s + t field_76022_t + u field_76021_u + v field_76020_v + w field_76019_w + x field_150966_x + y field_76029_x + z field_76028_y + a ()V func_75997_a +ms net/minecraft/stats/IStatStringFormat + a (Ljava/lang/String;)Ljava/lang/String; func_74535_a +mt net/minecraft/stats/StatBasic + h ()Lmw; func_75971_g +mu net/minecraft/stats/StatCrafting + a field_150960_a + a ()Lzw; func_150959_a +mv net/minecraft/stats/StatisticsFile + b field_150889_b + c field_150890_c + d field_150887_d + e field_150888_e + f field_150885_f + g field_150886_g + a ()V func_150882_a + a (Ljava/lang/String;)Ljava/util/Map; func_150881_a + a (Ljava/util/Map;)Ljava/lang/String; func_150880_a + a (Llf;)V func_150876_a + a (Lwn;Lmw;I)V func_150873_a + b ()V func_150883_b + b (Llf;)V func_150884_b + c ()Ljava/util/Set; func_150878_c + d ()V func_150877_d + e ()Z func_150879_e +mw net/minecraft/stats/StatBase + a field_75978_a + b field_75976_b + c field_150957_c + d field_150956_d + e field_75975_e + f field_75972_f + g field_75980_h + h field_75981_i + i field_75979_j + j field_111202_k + k field_75977_c + l field_75974_d + a (I)Ljava/lang/String; func_75968_a + b (Ljava/lang/Class;)Lmw; func_150953_b + d ()Z func_75967_d + e ()Leu; func_150951_e + equals (Ljava/lang/Object;)Z equals + h ()Lmw; func_75971_g + hashCode ()I hashCode + i ()Lmw; func_75966_h + j ()Leu; func_150955_j + k ()Lauu; func_150952_k + l ()Ljava/lang/Class; func_150954_l + m ()Ljava/text/NumberFormat; access$000 + n ()Ljava/text/DecimalFormat; access$100 + toString ()Ljava/lang/String; toString +mw$1 net/minecraft/stats/StatBase$1 + a (I)Ljava/lang/String; func_75843_a +mw$2 net/minecraft/stats/StatBase$2 + a (I)Ljava/lang/String; func_75843_a +mw$3 net/minecraft/stats/StatBase$3 + a (I)Ljava/lang/String; func_75843_a +mw$4 net/minecraft/stats/StatBase$4 + a (I)Ljava/lang/String; func_75843_a +mx net/minecraft/stats/IStatType + a (I)Ljava/lang/String; func_75843_a +my net/minecraft/util/TupleIntJsonSerializable + a field_151192_a + b field_151191_b + a ()I func_151189_a + a (I)V func_151188_a + a (Lmz;)V func_151190_a + b ()Lmz; func_151187_b +mz net/minecraft/util/IJsonSerializable + a ()Lcom/google/gson/JsonElement; func_151003_a + a (Lcom/google/gson/JsonElement;)V func_152753_a +n net/minecraft/command/CommandResultStats + a field_179676_a + b field_179674_b + c field_179675_c + d field_179673_d + a (Ldn;)V func_179668_a + a (Lm;Ln$a;I)V func_179672_a + a (Ln;)V func_179671_a + a (Ln;Ln$a;)V func_179669_a + a (Ln;Ln$a;Ljava/lang/String;Ljava/lang/String;)V func_179667_a + b (Ldn;)V func_179670_b +n$1 net/minecraft/command/CommandResultStats$1 + a field_181547_a + b field_181548_b + a (ILjava/lang/String;)Z func_70003_b + a (Leu;)V func_145747_a + a (Ln$a;I)V func_174794_a + c ()Lcj; func_180425_c + d ()Laui; func_174791_d + e ()Ladm; func_130014_f_ + e_ ()Ljava/lang/String; func_70005_c_ + f ()Lpk; func_174793_f + f_ ()Leu; func_145748_c_ + u_ ()Z func_174792_t_ +n$a net/minecraft/command/CommandResultStats$Type + a SUCCESS_COUNT + b AFFECTED_BLOCKS + c AFFECTED_ENTITIES + d AFFECTED_ITEMS + e QUERY_RESULT + f field_179639_f + g field_179640_g + h $VALUES + a ()I func_179636_a + a (Ljava/lang/String;)Ln$a; func_179635_a + b ()Ljava/lang/String; func_179637_b + c ()[Ljava/lang/String; func_179634_c + values ()[Ln$a; values +na net/minecraft/stats/StatList + A field_151186_x + B field_75932_A + C field_75933_B + D field_151183_A + E field_151184_B + F field_180205_F + G field_180206_G + H field_181724_H + I field_181725_I + J field_181726_J + K field_181727_K + L field_181728_L + M field_181729_M + N field_181730_N + O field_181731_O + P field_181732_P + Q field_181733_Q + R field_181734_R + S field_181735_S + T field_181736_T + U field_181737_U + V field_181738_V + W field_181739_W + X field_181740_X + Y field_181741_Y + Z field_181742_Z + a field_75942_a + aa field_181723_aa + ab field_75934_C + ac field_75928_D + ad field_75929_E + ae field_75930_F + b field_75940_b + c field_75941_c + d field_75938_d + e field_75939_e + f field_75947_j + g field_75948_k + h field_180209_h + i field_75945_l + j field_180207_j + k field_180208_k + l field_75946_m + m field_75943_n + n field_75944_o + o field_75958_p + p field_75957_q + q field_75956_r + r field_75955_s + s field_75954_t + t field_151185_q + u field_75953_u + v field_75952_v + w field_75951_w + x field_75961_x + y field_75960_y + z field_75959_z + a ()V func_151178_a + a (Ljava/lang/String;)Lmw; func_151177_a + a (Lpm$a;)Lmw; func_151182_a + a (Lzw;)Ljava/lang/String; func_180204_a + a ([Lmw;)V func_75924_a + a ([Lmw;Lafh;Lafh;)V func_151180_a + b ()V func_75918_d + b (Lpm$a;)Lmw; func_151176_b + c ()V func_151181_c + d ()V func_75925_c + e ()V func_151179_e +nb net/minecraft/stats/StatFileWriter + a field_150875_a + a (Lmq;)Z func_77443_a + a (Lmw;)I func_77444_a + a (Lmw;Lmz;)Lmz; func_150872_a + a (Lwn;Lmw;I)V func_150873_a + b (Lmq;)Z func_77442_b + b (Lmw;)Lmz; func_150870_b + b (Lwn;Lmw;I)V func_150871_b + c (Lmq;)I func_150874_c +nc net/minecraft/util/JsonSerializableSet + a field_151004_a + a ()Lcom/google/gson/JsonElement; func_151003_a + a (Lcom/google/gson/JsonElement;)V func_152753_a + delegate ()Ljava/lang/Object; delegate + delegate ()Ljava/util/Collection; delegate + delegate ()Ljava/util/Set; delegate +ne net/minecraft/util/ClassInheritanceMultiMap + a field_181158_a + b field_180218_a + c field_180216_b + d field_180217_c + e field_181745_e + a (Ljava/lang/Class;)V func_180213_a + a (Ljava/lang/Object;Ljava/lang/Class;)V func_181743_a + a (Lne;)Ljava/util/Map; access$000 + add (Ljava/lang/Object;)Z add + b (Ljava/lang/Class;)Ljava/lang/Class; func_181157_b + c (Ljava/lang/Class;)Ljava/lang/Iterable; func_180215_b + contains (Ljava/lang/Object;)Z contains + iterator ()Ljava/util/Iterator; iterator + remove (Ljava/lang/Object;)Z remove + size ()I size +ne$1 net/minecraft/util/ClassInheritanceMultiMap$1 + a field_180211_a + b field_180210_b + iterator ()Ljava/util/Iterator; iterator +net/minecraft/client/ClientBrandRetriever net/minecraft/client/ClientBrandRetriever + getClientModName ()Ljava/lang/String; getClientModName +net/minecraft/client/main/Main net/minecraft/client/main/Main + a (Ljava/lang/String;)Z func_110121_a +net/minecraft/client/main/Main$1 net/minecraft/client/main/Main$1 + a field_178749_a + b field_178748_b + getPasswordAuthentication ()Ljava/net/PasswordAuthentication; getPasswordAuthentication +net/minecraft/client/main/Main$2 net/minecraft/client/main/Main$2 + run ()V run +net/minecraft/realms/DisconnectedRealmsScreen net/minecraft/realms/DisconnectedRealmsScreen + lines lines + parent parent + reason reason + textHeight textHeight + title title + buttonClicked (Lnet/minecraft/realms/RealmsButton;)V buttonClicked + init ()V init + keyPressed (CI)V keyPressed + render (IIF)V render +net/minecraft/realms/Realms net/minecraft/realms/Realms + adventureId ()I adventureId + clearResourcePack ()V clearResourcePack + creativeId ()I creativeId + currentTimeMillis ()J currentTimeMillis + downloadResourcePack (Ljava/lang/String;Ljava/lang/String;)Lcom/google/common/util/concurrent/ListenableFuture; downloadResourcePack + getGameDirectoryPath ()Ljava/lang/String; getGameDirectoryPath + getName ()Ljava/lang/String; getName + getProxy ()Ljava/net/Proxy; getProxy + getSessionId ()Ljava/lang/String; getSessionId + getUUID ()Ljava/lang/String; getUUID + isTouchScreen ()Z isTouchScreen + sessionId ()Ljava/lang/String; sessionId + setConnectedToRealms (Z)V setConnectedToRealms + setScreen (Lnet/minecraft/realms/RealmsScreen;)V setScreen + spectatorId ()I spectatorId + survivalId ()I survivalId + userName ()Ljava/lang/String; userName + uuidToName (Ljava/lang/String;)Ljava/lang/String; uuidToName +net/minecraft/realms/RealmsAnvilLevelStorageSource net/minecraft/realms/RealmsAnvilLevelStorageSource + levelStorageSource levelStorageSource + clearAll ()V clearAll + convertLevel (Ljava/lang/String;Lnu;)Z convertLevel + deleteLevel (Ljava/lang/String;)Z deleteLevel + getLevelList ()Ljava/util/List; getLevelList + getName ()Ljava/lang/String; getName + isConvertible (Ljava/lang/String;)Z isConvertible + isNewLevelIdAcceptable (Ljava/lang/String;)Z isNewLevelIdAcceptable + levelExists (Ljava/lang/String;)Z levelExists + renameLevel (Ljava/lang/String;Ljava/lang/String;)V renameLevel + requiresConversion (Ljava/lang/String;)Z requiresConversion +net/minecraft/realms/RealmsBridge net/minecraft/realms/RealmsBridge + LOGGER LOGGER + previousScreen previousScreen + init ()V init + switchToRealms (Laxu;)V switchToRealms +net/minecraft/realms/RealmsBufferBuilder net/minecraft/realms/RealmsBufferBuilder + b b + begin (ILbmu;)V begin + clear ()V clear + color (FFFF)Lnet/minecraft/realms/RealmsBufferBuilder; color + color (IIII)Lnet/minecraft/realms/RealmsBufferBuilder; color + end ()V end + endVertex ()V endVertex + faceTex2 (IIII)V faceTex2 + faceTint (FFFI)V faceTint + fixupQuadColor (FFF)V fixupQuadColor + fixupQuadColor (I)V fixupQuadColor + fixupVertexColor (FFFI)V fixupVertexColor + from (Lbfd;)Lnet/minecraft/realms/RealmsBufferBuilder; from + getBuffer ()Ljava/nio/ByteBuffer; getBuffer + getDrawMode ()I getDrawMode + getVertexCount ()I getVertexCount + getVertexFormat ()Lnet/minecraft/realms/RealmsVertexFormat; getVertexFormat + noColor ()V noColor + normal (FFF)Lnet/minecraft/realms/RealmsBufferBuilder; normal + offset (DDD)V offset + postNormal (FFF)V postNormal + postProcessFacePosition (DDD)V postProcessFacePosition + putBulkData ([I)V putBulkData + restoreState (Lbfd$a;)V restoreState + sortQuads (FFF)V sortQuads + tex (DD)Lnet/minecraft/realms/RealmsBufferBuilder; tex + tex2 (II)Lnet/minecraft/realms/RealmsBufferBuilder; tex2 + vertex (DDD)Lnet/minecraft/realms/RealmsBufferBuilder; vertex +net/minecraft/realms/RealmsButton net/minecraft/realms/RealmsButton + WIDGETS_LOCATION WIDGETS_LOCATION + proxy proxy + active ()Z active + active (Z)V active + blit (IIIIII)V blit + clicked (II)V clicked + getHeight ()I getHeight + getProxy ()Lavs; getProxy + getWidth ()I getWidth + getYImage (Z)I getYImage + id ()I id + msg (Ljava/lang/String;)V msg + released (II)V released + render (II)V render + renderBg (II)V renderBg + y ()I y +net/minecraft/realms/RealmsClickableScrolledSelectionList net/minecraft/realms/RealmsClickableScrolledSelectionList + proxy proxy + customMouseEvent (IIIFI)V customMouseEvent + getItemCount ()I getItemCount + getMaxPosition ()I getMaxPosition + getScroll ()I getScroll + getScrollbarPosition ()I getScrollbarPosition + isSelectedItem (I)Z isSelectedItem + itemClicked (IIIII)V itemClicked + mouseEvent ()V mouseEvent + render (IIF)V render + renderBackground ()V renderBackground + renderItem (IIIIII)V renderItem + renderItem (IIIILnet/minecraft/realms/Tezzelator;II)V renderItem + renderList (IIII)V renderList + renderSelected (IIILnet/minecraft/realms/Tezzelator;)V renderSelected + scroll (I)V scroll + selectItem (IZII)V selectItem + setLeftPos (I)V setLeftPos + width ()I width + xm ()I xm + ym ()I ym +net/minecraft/realms/RealmsConnect net/minecraft/realms/RealmsConnect + LOGGER LOGGER + aborted aborted + connection connection + onlineScreen onlineScreen + abort ()V abort + access$000 (Lnet/minecraft/realms/RealmsConnect;)Z access$000 + access$100 (Lnet/minecraft/realms/RealmsConnect;)Lek; access$100 + access$102 (Lnet/minecraft/realms/RealmsConnect;Lek;)Lek; access$102 + access$200 (Lnet/minecraft/realms/RealmsConnect;)Lnet/minecraft/realms/RealmsScreen; access$200 + access$300 ()Lorg/apache/logging/log4j/Logger; access$300 + connect (Ljava/lang/String;I)V connect + tick ()V tick +net/minecraft/realms/RealmsConnect$1 net/minecraft/realms/RealmsConnect$1 + a field_154355_a + b field_154356_b + c field_154357_c + run ()V run +net/minecraft/realms/RealmsDefaultVertexFormat net/minecraft/realms/RealmsDefaultVertexFormat + BLOCK BLOCK + BLOCK_NORMALS BLOCK_NORMALS + ELEMENT_COLOR ELEMENT_COLOR + ELEMENT_NORMAL ELEMENT_NORMAL + ELEMENT_PADDING ELEMENT_PADDING + ELEMENT_POSITION ELEMENT_POSITION + ELEMENT_UV0 ELEMENT_UV0 + ELEMENT_UV1 ELEMENT_UV1 + ENTITY ENTITY + PARTICLE PARTICLE + POSITION POSITION + POSITION_COLOR POSITION_COLOR + POSITION_NORMAL POSITION_NORMAL + POSITION_TEX POSITION_TEX + POSITION_TEX2_COLOR POSITION_TEX2_COLOR + POSITION_TEX_COLOR POSITION_TEX_COLOR + POSITION_TEX_COLOR_NORMAL POSITION_TEX_COLOR_NORMAL + POSITION_TEX_NORMAL POSITION_TEX_NORMAL +net/minecraft/realms/RealmsEditBox net/minecraft/realms/RealmsEditBox + editBox editBox + getValue ()Ljava/lang/String; getValue + isFocused ()Z isFocused + keyPressed (CI)V keyPressed + mouseClicked (III)V mouseClicked + render ()V render + setFocus (Z)V setFocus + setIsEditable (Z)V setIsEditable + setMaxLength (I)V setMaxLength + setValue (Ljava/lang/String;)V setValue + tick ()V tick +net/minecraft/realms/RealmsLevelSummary net/minecraft/realms/RealmsLevelSummary + levelSummary levelSummary + compareTo (Lats;)I compareTo + compareTo (Ljava/lang/Object;)I compareTo + compareTo (Lnet/minecraft/realms/RealmsLevelSummary;)I compareTo + getGameMode ()I getGameMode + getLastPlayed ()J getLastPlayed + getLevelId ()Ljava/lang/String; getLevelId + getLevelName ()Ljava/lang/String; getLevelName + getSizeOnDisk ()J getSizeOnDisk + hasCheats ()Z hasCheats + isHardcore ()Z isHardcore + isRequiresConversion ()Z isRequiresConversion +net/minecraft/realms/RealmsMth net/minecraft/realms/RealmsMth + abs (F)F abs + abs (I)I abs + absFloor (D)I absFloor + absMax (DD)D absMax + average ([J)D average + ceil (D)I ceil + ceil (F)I ceil + clamp (DDD)D clamp + clamp (FFF)F clamp + clamp (III)I clamp + clampedLerp (DDD)D clampedLerp + cos (F)F cos + fastFloor (D)I fastFloor + floor (D)I floor + floor (F)I floor + getDouble (Ljava/lang/String;D)D getDouble + getDouble (Ljava/lang/String;DD)D getDouble + getInt (Ljava/lang/String;I)I getInt + getInt (Ljava/lang/String;II)I getInt + intFloorDiv (II)I intFloorDiv + isEmpty (Ljava/lang/String;)Z isEmpty + lfloor (D)J lfloor + log2 (I)I log2 + nextDouble (Ljava/util/Random;DD)D nextDouble + nextFloat (Ljava/util/Random;FF)F nextFloat + nextInt (Ljava/util/Random;II)I nextInt + roundUp (II)I roundUp + sin (F)F sin + smallestEncompassingPowerOfTwo (I)I smallestEncompassingPowerOfTwo + sqrt (D)F sqrt + sqrt (F)F sqrt + wrapDegrees (D)D wrapDegrees + wrapDegrees (F)F wrapDegrees +net/minecraft/realms/RealmsScreen net/minecraft/realms/RealmsScreen + SKIN_HAT_HEIGHT SKIN_HAT_HEIGHT + SKIN_HAT_U SKIN_HAT_U + SKIN_HAT_V SKIN_HAT_V + SKIN_HAT_WIDTH SKIN_HAT_WIDTH + SKIN_HEAD_HEIGHT SKIN_HEAD_HEIGHT + SKIN_HEAD_U SKIN_HEAD_U + SKIN_HEAD_V SKIN_HEAD_V + SKIN_HEAD_WIDTH SKIN_HEAD_WIDTH + SKIN_TEX_HEIGHT SKIN_TEX_HEIGHT + SKIN_TEX_WIDTH SKIN_TEX_WIDTH + height height + minecraft minecraft + proxy proxy + width width + bind (Ljava/lang/String;)V bind + bindFace (Ljava/lang/String;Ljava/lang/String;)V bindFace + blit (IIFFIIFF)V blit + blit (IIFFIIIIFF)V blit + blit (IIIIII)V blit + buttonClicked (Lnet/minecraft/realms/RealmsButton;)V buttonClicked + buttons ()Ljava/util/List; buttons + buttonsAdd (Lnet/minecraft/realms/RealmsButton;)V buttonsAdd + buttonsClear ()V buttonsClear + buttonsRemove (Lnet/minecraft/realms/RealmsButton;)V buttonsRemove + confirmResult (ZI)V confirmResult + drawCenteredString (Ljava/lang/String;III)V drawCenteredString + drawString (Ljava/lang/String;III)V drawString + fillGradient (IIIIII)V fillGradient + fontDrawShadow (Ljava/lang/String;III)V fontDrawShadow + fontLineHeight ()I fontLineHeight + fontSplit (Ljava/lang/String;I)Ljava/util/List; fontSplit + fontWidth (Ljava/lang/String;)I fontWidth + getLevelStorageSource ()Lnet/minecraft/realms/RealmsAnvilLevelStorageSource; getLevelStorageSource + getLocalizedString (Ljava/lang/String;)Ljava/lang/String; getLocalizedString + getLocalizedString (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String; getLocalizedString + getProxy ()Lawr; getProxy + height ()I height + init ()V init + init (Lave;II)V init + isPauseScreen ()Z isPauseScreen + keyPressed (CI)V keyPressed + keyboardEvent ()V keyboardEvent + mouseClicked (III)V mouseClicked + mouseDragged (IIIJ)V mouseDragged + mouseEvent ()V mouseEvent + mouseReleased (III)V mouseReleased + newButton (IIIIILjava/lang/String;)Lnet/minecraft/realms/RealmsButton; newButton + newButton (IIILjava/lang/String;)Lnet/minecraft/realms/RealmsButton; newButton + newEditBox (IIIII)Lnet/minecraft/realms/RealmsEditBox; newEditBox + removed ()V removed + render (IIF)V render + renderBackground ()V renderBackground + renderBackground (I)V renderBackground + renderTooltip (Ljava/lang/String;II)V renderTooltip + renderTooltip (Ljava/util/List;II)V renderTooltip + renderTooltip (Lzx;II)V renderTooltip + tick ()V tick + width ()I width +net/minecraft/realms/RealmsScrolledSelectionList net/minecraft/realms/RealmsScrolledSelectionList + proxy proxy + getItemCount ()I getItemCount + getMaxPosition ()I getMaxPosition + getScroll ()I getScroll + getScrollbarPosition ()I getScrollbarPosition + isSelectedItem (I)Z isSelectedItem + mouseEvent ()V mouseEvent + render (IIF)V render + renderBackground ()V renderBackground + renderItem (IIIIII)V renderItem + renderItem (IIIILnet/minecraft/realms/Tezzelator;II)V renderItem + renderList (IIII)V renderList + scroll (I)V scroll + selectItem (IZII)V selectItem + width ()I width + xm ()I xm + ym ()I ym +net/minecraft/realms/RealmsServerAddress net/minecraft/realms/RealmsServerAddress + host host + port port + getHost ()Ljava/lang/String; getHost + getPort ()I getPort + parseString (Ljava/lang/String;)Lnet/minecraft/realms/RealmsServerAddress; parseString +net/minecraft/realms/RealmsServerPing net/minecraft/realms/RealmsServerPing + lastPingSnapshot lastPingSnapshot + nrOfPlayers nrOfPlayers + playerList playerList +net/minecraft/realms/RealmsServerStatusPinger net/minecraft/realms/RealmsServerStatusPinger + LOGGER LOGGER + connections connections + access$000 ()Lorg/apache/logging/log4j/Logger; access$000 + pingServer (Ljava/lang/String;Lnet/minecraft/realms/RealmsServerPing;)V pingServer + removeAll ()V removeAll + tick ()V tick +net/minecraft/realms/RealmsServerStatusPinger$1 net/minecraft/realms/RealmsServerStatusPinger$1 + a field_154341_a + b field_154342_b + c field_154343_c + d field_154344_d + e field_154345_e + a (Leu;)V func_147231_a + a (Ljq;)V func_147398_a + a (Ljr;)V func_147397_a +net/minecraft/realms/RealmsSharedConstants net/minecraft/realms/RealmsSharedConstants + ILLEGAL_FILE_CHARACTERS ILLEGAL_FILE_CHARACTERS + NETWORK_PROTOCOL_VERSION NETWORK_PROTOCOL_VERSION + TICKS_PER_SECOND TICKS_PER_SECOND + VERSION_STRING VERSION_STRING +net/minecraft/realms/RealmsSimpleScrolledSelectionList net/minecraft/realms/RealmsSimpleScrolledSelectionList + proxy proxy + getItemCount ()I getItemCount + getMaxPosition ()I getMaxPosition + getScroll ()I getScroll + getScrollbarPosition ()I getScrollbarPosition + isSelectedItem (I)Z isSelectedItem + mouseEvent ()V mouseEvent + render (IIF)V render + renderBackground ()V renderBackground + renderItem (IIIIII)V renderItem + renderItem (IIIILnet/minecraft/realms/Tezzelator;II)V renderItem + renderList (IIII)V renderList + scroll (I)V scroll + selectItem (IZII)V selectItem + width ()I width + xm ()I xm + ym ()I ym +net/minecraft/realms/RealmsSliderButton net/minecraft/realms/RealmsSliderButton + maxValue maxValue + minValue minValue + sliding sliding + steps steps + value value + clamp (F)F clamp + clampSteps (F)F clampSteps + clicked (F)V clicked + clicked (II)V clicked + getMessage ()Ljava/lang/String; getMessage + getYImage (Z)I getYImage + released (II)V released + renderBg (II)V renderBg + toPct (F)F toPct + toValue (F)F toValue +net/minecraft/realms/RealmsVertexFormat net/minecraft/realms/RealmsVertexFormat + v v + addElement (Lnet/minecraft/realms/RealmsVertexFormatElement;)Lnet/minecraft/realms/RealmsVertexFormat; addElement + clear ()V clear + equals (Ljava/lang/Object;)Z equals + from (Lbmu;)Lnet/minecraft/realms/RealmsVertexFormat; from + getColorOffset ()I getColorOffset + getElement (I)Lnet/minecraft/realms/RealmsVertexFormatElement; getElement + getElementCount ()I getElementCount + getElements ()Ljava/util/List; getElements + getIntegerSize ()I getIntegerSize + getNormalOffset ()I getNormalOffset + getOffset (I)I getOffset + getUvOffset (I)I getUvOffset + getVertexFormat ()Lbmu; getVertexFormat + getVertexSize ()I getVertexSize + hasColor ()Z hasColor + hasNormal ()Z hasNormal + hasUv (I)Z hasUv + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +net/minecraft/realms/RealmsVertexFormatElement net/minecraft/realms/RealmsVertexFormatElement + v v + equals (Ljava/lang/Object;)Z equals + getByteSize ()I getByteSize + getCount ()I getCount + getIndex ()I getIndex + getVertexFormatElement ()Lbmv; getVertexFormatElement + hashCode ()I hashCode + isPosition ()Z isPosition + toString ()Ljava/lang/String; toString +net/minecraft/realms/Tezzelator net/minecraft/realms/Tezzelator + instance instance + t t + begin (ILnet/minecraft/realms/RealmsVertexFormat;)V begin + color (FFFF)V color + color (IIII)Lnet/minecraft/realms/RealmsBufferBuilder; color + end ()V end + endVertex ()V endVertex + normal (FFF)V normal + offset (DDD)V offset + tex (DD)Lnet/minecraft/realms/Tezzelator; tex + tex2 (SS)V tex2 + vertex (DDD)Lnet/minecraft/realms/Tezzelator; vertex +net/minecraft/server/MinecraftServer net/minecraft/server/MinecraftServer + A field_71324_y + B field_71323_z + C field_71284_A + D field_71285_B + E field_71286_C + F field_71280_D + G field_143008_E + H field_71292_I + I field_71293_J + J field_71294_K + K field_71287_L + L field_71288_M + M field_71289_N + N field_71290_O + O field_147141_M + P field_175588_P + Q field_71296_Q + R field_71299_R + S field_71298_S + T field_71295_T + U field_104057_T + V field_152364_T + W field_147143_S + X field_147142_T + Y field_152365_W + Z field_152366_X + a field_152367_a + aa field_175590_aa + ab field_175591_ab + b field_71321_q + c field_71304_b + d field_71305_c + e field_110456_c + f field_71302_d + g field_71303_e + h field_71311_j + i field_71312_k + j field_175589_i + k field_147145_h + l field_71309_l + m field_71310_m + n field_71307_n + o field_71308_o + p field_71322_p + q field_147144_o + r field_147147_p + s field_147146_q + t field_71320_r + u field_71319_s + v field_71318_t + w field_71317_u + x field_71316_v + y field_71315_w + z field_71325_x + A ()V func_71217_p + B ()V func_71190_q + C ()Z func_71255_r + D ()V func_71256_s + E ()Ljava/lang/String; func_71277_t + F ()I func_71234_u + G ()Ljava/lang/String; func_71274_v + H ()Ljava/lang/String; func_71249_w + I ()I func_71233_x + J ()I func_71275_y + K ()[Ljava/lang/String; func_71213_z + L ()[Lcom/mojang/authlib/GameProfile; func_152357_F + M ()Z func_71239_B + N ()Lnet/minecraft/server/MinecraftServer; func_71276_C + O ()Z func_175578_N + P ()Ll; func_71187_D + Q ()Ljava/security/KeyPair; func_71250_E + R ()I func_71215_F + S ()Ljava/lang/String; func_71214_G + T ()Z func_71264_H + U ()Ljava/lang/String; func_71270_I + V ()Ljava/lang/String; func_71221_J + W ()Z func_71193_K + X ()Z func_71242_L + Y ()Latr; func_71254_M + a (I)Lle; func_71218_a + a (ILjava/lang/String;)Z func_70003_b + a (Ladm;Lcj;Lwn;)Z func_175579_a + a (Ladp$a;)V func_71235_a + a (Ladp$a;Z)Ljava/lang/String; func_71206_a + a (Lb;)V func_71228_a + a (Leu;)V func_145747_a + a (Ljava/lang/Runnable;)Lcom/google/common/util/concurrent/ListenableFuture; func_152344_a + a (Ljava/lang/String;)V func_71237_c + a (Ljava/lang/String;Latp;)V func_175584_a + a (Ljava/lang/String;Ljava/lang/String;JLadr;Ljava/lang/String;)V func_71247_a + a (Ljava/security/KeyPair;)V func_71253_a + a (Ljava/util/UUID;)Lpk; func_175576_a + a (Ljava/util/concurrent/Callable;)Lcom/google/common/util/concurrent/ListenableFuture; func_175586_a + a (Ljs;)V func_147138_a + a (Lkm;)V func_82010_a + a (Llx;)V func_152361_a + a (Lm;Ljava/lang/String;Lcj;)Ljava/util/List; func_180506_a + a (Ln$a;I)V func_174794_a + a (Lnet/minecraft/server/MinecraftServer;)Llx; access$100 + a (Loj;)V func_147139_a + a (Lor;)V func_70000_a + a (Z)V func_71267_a + aA ()I func_143007_ar + aB ()Z func_147136_ar + aD ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; func_147130_as + aE ()Lcom/mojang/authlib/GameProfileRepository; func_152359_aw + aF ()Llt; func_152358_ax + aG ()Ljs; func_147134_at + aH ()V func_147132_au + aI ()I func_175580_aG + aJ ()Z func_152345_ab + aK ()I func_175577_aI + aL ()J func_175587_aJ + aM ()Ljava/lang/Thread; func_175583_aK + aN ()Lorg/apache/logging/log4j/Logger; access$000 + a_ (Ljava/lang/String;I)V func_71216_a_ + a_ (Ljava/lang/String;Ljava/lang/String;)V func_180507_a_ + aa ()V func_71272_O + ab ()Ljava/lang/String; func_147133_T + ac ()Ljava/lang/String; func_175581_ab + ad ()Z func_70002_Q + ae ()Z func_71262_S + af ()Z func_71266_T + ag ()Z func_71268_U + ah ()Z func_71220_V + ai ()Z func_181035_ah + aj ()Z func_71219_W + ak ()Z func_71231_X + al ()Z func_82356_Z + am ()Ljava/lang/String; func_71273_Y + an ()I func_71207_Z + ao ()Z func_71241_aa + ap ()Llx; func_71203_ab + aq ()Lll; func_147137_ag + ar ()Z func_71200_ad + as ()Z func_71279_ae + at ()I func_71259_af + au ()V func_71223_ag + av ()Lor; func_80003_ah + aw ()I func_82357_ak + ax ()Z func_104056_am + ay ()Ljava/net/Proxy; func_110454_ao + az ()J func_130071_aq + b (I)V func_71208_b + b (Lb;)Lb; func_71230_b + b (Ljava/lang/String;)V func_71192_d + b (Lor;)V func_70001_b + b (Z)V func_71204_b + c ()Lcj; func_180425_c + c (I)V func_71191_d + c (Ljava/lang/String;)V func_71189_e + c (Z)V func_71194_c + d ()Laui; func_174791_d + d (I)V func_143006_e + d (Ljava/lang/String;)Ljava/io/File; func_71209_f + d (Z)V func_71229_d + e ()Ladm; func_130014_f_ + e (Ljava/lang/String;)V func_71244_g + e (Z)V func_71251_e + e_ ()Ljava/lang/String; func_70005_c_ + f ()Lpk; func_174793_f + f (Ljava/lang/String;)V func_71236_h + f (Z)V func_71257_f + f_ ()Leu; func_145748_c_ + g (Ljava/lang/String;)V func_71201_j + g (Z)V func_71188_g + getServerModName ()Ljava/lang/String; getServerModName + h ()Lbd; func_175582_h + h (Ljava/lang/String;)V func_71198_k + h (Z)V func_71245_h + i ()Z func_71197_b + i (Ljava/lang/String;)V func_71224_l + i (Z)V func_104055_i + j ()Ljava/lang/String; func_71195_b_ + j (Ljava/lang/String;)V func_71261_m + k ()V func_71222_d + k (Ljava/lang/String;)V func_71246_n + l ()Z func_71225_e + l (Ljava/lang/String;)V func_71205_p + m ()Ladp$a; func_71265_f + n ()Loj; func_147135_j + o ()Z func_71199_h + p ()I func_110455_j + q ()Z func_181034_q + r ()Z func_183002_r + run ()V run + s ()V func_71243_i + t ()V func_71260_j + u ()Ljava/lang/String; func_71211_k + u_ ()Z func_174792_t_ + v ()Z func_71278_l + w ()V func_71263_m + x ()V func_175585_v + y ()Ljava/io/File; func_71238_n + z ()V func_71240_o +net/minecraft/server/MinecraftServer$1 net/minecraft/server/MinecraftServer$1 + a field_74267_a + b field_96245_b + a ()V func_146586_a + a (I)V func_73718_a + a (Ljava/lang/String;)V func_73720_a + b (Ljava/lang/String;)V func_73721_b + c (Ljava/lang/String;)V func_73719_c +net/minecraft/server/MinecraftServer$2 net/minecraft/server/MinecraftServer$2 + a field_96244_a + run ()V run +net/minecraft/server/MinecraftServer$3 net/minecraft/server/MinecraftServer$3 + a field_73716_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +net/minecraft/server/MinecraftServer$4 net/minecraft/server/MinecraftServer$4 + a field_74274_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +ng net/minecraft/util/CryptManager + a field_180198_a + a ()Ljavax/crypto/SecretKey; func_75890_a + a (ILjava/lang/String;Ljava/security/Key;)Ljavax/crypto/Cipher; func_75886_a + a (ILjava/security/Key;)Ljavax/crypto/Cipher; func_151229_a + a (ILjava/security/Key;[B)[B func_75885_a + a (Ljava/lang/String;Ljava/security/PublicKey;Ljavax/crypto/SecretKey;)[B func_75895_a + a (Ljava/lang/String;[[B)[B func_75893_a + a (Ljava/security/Key;[B)[B func_75894_a + a (Ljava/security/PrivateKey;[B)Ljavax/crypto/SecretKey; func_75887_a + a ([B)Ljava/security/PublicKey; func_75896_a + b ()Ljava/security/KeyPair; func_75891_b + b (Ljava/security/Key;[B)[B func_75889_b +nh net/minecraft/util/FrameTimer + a field_181752_a + b field_181753_b + c field_181754_c + d field_181755_d + a ()I func_181749_a + a (J)V func_181747_a + a (JI)I func_181748_a + b ()I func_181750_b + b (I)I func_181751_b + c ()[J func_181746_c +ni net/minecraft/util/JsonUtils + a (Lcom/google/gson/JsonElement;)Z func_151211_a + a (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/lang/String; func_151206_a + a (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z func_151205_a + a (Lcom/google/gson/JsonObject;Ljava/lang/String;F)F func_151221_a + a (Lcom/google/gson/JsonObject;Ljava/lang/String;I)I func_151208_a + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonArray;)Lcom/google/gson/JsonArray; func_151213_a + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonObject;)Lcom/google/gson/JsonObject; func_151218_a + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; func_151219_a + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Z)Z func_151209_a + b (Lcom/google/gson/JsonElement;Ljava/lang/String;)Z func_151216_b + c (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z func_180199_c + d (Lcom/google/gson/JsonElement;)Ljava/lang/String; func_151222_d + d (Lcom/google/gson/JsonElement;Ljava/lang/String;)F func_151220_d + d (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z func_151202_d + f (Lcom/google/gson/JsonElement;Ljava/lang/String;)I func_151215_f + f (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z func_151201_f + g (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z func_151204_g + h (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/String; func_151200_h + i (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z func_151212_i + k (Lcom/google/gson/JsonObject;Ljava/lang/String;)F func_151217_k + l (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonObject; func_151210_l + m (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonArray; func_151207_m + m (Lcom/google/gson/JsonObject;Ljava/lang/String;)I func_151203_m + s (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonObject; func_152754_s + t (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonArray; func_151214_t +nj net/minecraft/util/HttpUtil + a field_180193_a + b field_151228_a + c field_151227_b + a ()I func_76181_a + a (Ljava/io/File;Ljava/lang/String;Ljava/util/Map;ILnu;Ljava/net/Proxy;)Lcom/google/common/util/concurrent/ListenableFuture; func_180192_a + a (Ljava/net/URL;)Ljava/lang/String; func_152755_a + a (Ljava/net/URL;Ljava/lang/String;Z)Ljava/lang/String; func_151225_a + a (Ljava/net/URL;Ljava/util/Map;Z)Ljava/lang/String; func_151226_a + a (Ljava/util/Map;)Ljava/lang/String; func_76179_a + b ()Lorg/apache/logging/log4j/Logger; access$000 +nj$1 net/minecraft/util/HttpUtil$1 + a field_151199_a + b field_151197_b + c field_151198_c + d field_151195_d + e field_151196_e + f field_151194_g + run ()V run +nk net/minecraft/server/management/LowerStringMap + a field_76117_a + a (Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; put + clear ()V clear + containsKey (Ljava/lang/Object;)Z containsKey + containsValue (Ljava/lang/Object;)Z containsValue + entrySet ()Ljava/util/Set; entrySet + get (Ljava/lang/Object;)Ljava/lang/Object; get + isEmpty ()Z isEmpty + keySet ()Ljava/util/Set; keySet + put (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; put + putAll (Ljava/util/Map;)V putAll + remove (Ljava/lang/Object;)Ljava/lang/Object; remove + size ()I size + values ()Ljava/util/Collection; values +nl net/minecraft/util/IntegerCache + a field_181757_a + a (I)Ljava/lang/Integer; func_181756_a +nm net/minecraft/util/IntHashMap + a field_76055_a + b field_76053_b + c field_76054_c + d field_76051_d + a (I)Ljava/lang/Object; func_76041_a + a (II)I func_76043_a + a (IILjava/lang/Object;I)V func_76040_a + a (ILjava/lang/Object;)V func_76038_a + a ([Lnm$a;)V func_76048_a + b (I)Z func_76037_b + c ()V func_76046_c + c (I)Lnm$a; func_76045_c + d (I)Ljava/lang/Object; func_76049_d + e (I)Lnm$a; func_76036_e + f (I)I access$000 + g (I)I func_76044_g + h (I)V func_76047_h +nm$a net/minecraft/util/IntHashMap$Entry + a field_76035_a + b field_76033_b + c field_76034_c + d field_76032_d + a ()I func_76031_a + b ()Ljava/lang/Object; func_76030_b + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +no net/minecraft/util/LazyLoadBase + a field_179283_a + b field_179282_b + b ()Ljava/lang/Object; func_179280_b + c ()Ljava/lang/Object; func_179281_c +np net/minecraft/util/ThreadSafeBoundList + a field_152759_a + b field_152760_b + c field_152761_c + d field_152762_d + e field_152763_e + a (Ljava/lang/Object;)Ljava/lang/Object; func_152757_a + b ()I func_152758_b + c ()[Ljava/lang/Object; func_152756_c +nq net/minecraft/util/LongHashMap + a field_76169_a + b field_76167_b + c field_180201_c + d field_76168_c + e field_76165_d + f field_76166_e + a ()I func_76162_a + a (I)I func_76157_a + a (II)I func_76158_a + a (IJLjava/lang/Object;I)V func_76156_a + a (J)Ljava/lang/Object; func_76164_a + a (JLjava/lang/Object;)V func_76163_a + a ([Lnq$a;)V func_76154_a + b (I)V func_76153_b + b (J)Z func_76161_b + c (J)Lnq$a; func_76160_c + d (J)Ljava/lang/Object; func_76159_d + e (J)Lnq$a; func_76152_e + f (J)I access$000 + g (J)I func_76155_g +nq$a net/minecraft/util/LongHashMap$Entry + a field_76150_a + b field_76148_b + c field_76149_c + d field_76147_d + a ()J func_76146_a + b ()Ljava/lang/Object; func_76145_b + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +nr net/minecraft/util/EnumTypeAdapterFactory + a (Ljava/lang/Object;)Ljava/lang/String; func_151232_a + a (Lnr;Ljava/lang/Object;)Ljava/lang/String; access$000 + create (Lcom/google/gson/Gson;Lcom/google/gson/reflect/TypeToken;)Lcom/google/gson/TypeAdapter; create +nr$1 net/minecraft/util/EnumTypeAdapterFactory$1 + a field_151231_a + b field_151230_b + read (Lcom/google/gson/stream/JsonReader;)Ljava/lang/Object; read + write (Lcom/google/gson/stream/JsonWriter;Ljava/lang/Object;)V write +ns net/minecraft/util/MathHelper + a field_180189_a + b field_76144_a + c field_151242_b + d field_181163_d + e field_181164_e + f field_181165_f + a (D)F func_76133_a + a (DD)D func_76132_a + a (DDD)D func_151237_a + a (F)F func_76126_a + a (FF)Z func_180185_a + a (FFF)F func_76131_a + a (I)I func_76130_a + a (II)I func_76137_a + a (III)I func_76125_a + a (Ldf;)J func_180186_a + a (Ljava/lang/String;D)D func_82712_a + a (Ljava/lang/String;DD)D func_82713_a + a (Ljava/lang/String;I)I func_82715_a + a (Ljava/lang/String;II)I func_82714_a + a (Ljava/util/Random;)Ljava/util/UUID; func_180182_a + a (Ljava/util/Random;DD)D func_82716_a + a (Ljava/util/Random;FF)F func_151240_a + a (Ljava/util/Random;II)I func_76136_a + a ([J)D func_76127_a + b (D)I func_76140_b + b (DD)D func_181159_b + b (DDD)D func_151238_b + b (F)F func_76134_b + b (FFF)I func_180183_b + b (I)I func_151236_b + b (II)I func_180184_b + b (III)I func_180181_b + c (D)I func_76128_c + c (DDD)D func_181160_c + c (F)F func_76129_c + c (FFF)I func_181758_c + c (I)I func_151239_c + c (II)I func_154354_b + c (III)J func_180187_c + d (D)J func_76124_d + d (F)I func_76141_d + d (I)Z func_151235_d + d (II)I func_180188_d + e (D)I func_154353_e + e (F)F func_76135_e + e (I)I func_151241_e + f (D)I func_76143_f + f (F)I func_76123_f + g (D)D func_76138_g + g (F)F func_76142_g + h (D)D func_181162_h + i (D)D func_181161_i +nt net/minecraft/profiler/Profiler + a field_76327_a + b field_151234_b + c field_76325_b + d field_76326_c + e field_76323_d + f field_76324_e + a ()V func_76317_a + a (Ljava/lang/String;)V func_76320_a + b ()V func_76319_b + b (Ljava/lang/String;)Ljava/util/List; func_76321_b + c ()Ljava/lang/String; func_76322_c + c (Ljava/lang/String;)V func_76318_c +nt$a net/minecraft/profiler/Profiler$Result + a field_76332_a + b field_76330_b + c field_76331_c + a ()I func_76329_a + a (Lnt$a;)I compareTo + compareTo (Ljava/lang/Object;)I compareTo +nu net/minecraft/util/IProgressUpdate + a ()V func_146586_a + a (I)V func_73718_a + a (Ljava/lang/String;)V func_73720_a + b (Ljava/lang/String;)V func_73721_b + c (Ljava/lang/String;)V func_73719_c +nv net/minecraft/util/MouseFilter + a field_76336_a + b field_76334_b + c field_76335_c + a ()V func_180179_a + a (FF)F func_76333_a +nw net/minecraft/util/IStringSerializable + l ()Ljava/lang/String; func_176610_l +nx net/minecraft/util/StringUtils + a field_76339_a + a (I)Ljava/lang/String; func_76337_a + a (Ljava/lang/String;)Ljava/lang/String; func_76338_a + b (Ljava/lang/String;)Z func_151246_b +nz net/minecraft/util/Tuple + a a + b b + a ()Ljava/lang/Object; func_76341_a + b ()Ljava/lang/Object; func_76340_b +o net/minecraft/command/PlayerSelector + a field_82389_a + b field_82387_b + c field_82388_c + d field_179666_d + a (I)I func_179650_a + a (Lcj;III)Laug; func_179661_a + a (Ljava/lang/String;)Z func_82377_a + a (Ljava/util/List;Ljava/util/Map;Lm;Ljava/lang/Class;Ljava/lang/String;Lcj;)Ljava/util/List; func_179658_a + a (Ljava/util/Map;)Ljava/util/Map; func_96560_a + a (Ljava/util/Map;Lcj;)Ljava/util/List; func_180698_a + a (Ljava/util/Map;Ljava/lang/Class;Ljava/util/List;Ljava/lang/String;Ladm;Lcj;)Ljava/util/List; func_179660_a + a (Ljava/util/Map;Ljava/lang/String;)Ljava/util/List; func_179663_a + a (Ljava/util/Map;Ljava/lang/String;I)I func_179653_a + a (Lm;Ljava/lang/String;)Llf; func_82386_a + a (Lm;Ljava/lang/String;Ljava/lang/Class;)Lpk; func_179652_a + a (Lm;Ljava/util/Map;)Ljava/util/List; func_179654_a + b (Ljava/lang/String;)Z func_82378_b + b (Ljava/util/Map;)Ljava/util/List; func_179648_b + b (Ljava/util/Map;Lcj;)Lcj; func_179664_b + b (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/String; func_179651_b + b (Lm;Ljava/lang/String;)Leu; func_150869_b + b (Lm;Ljava/lang/String;Ljava/lang/Class;)Ljava/util/List; func_179656_b + b (Lm;Ljava/util/Map;)Z func_179655_b + c (Ljava/lang/String;)Ljava/util/Map; func_82381_h + c (Ljava/util/Map;)Ljava/util/List; func_179649_c + d (Ljava/util/Map;)Ljava/util/List; func_179659_d + e (Ljava/util/Map;)Ljava/util/List; func_179657_e + f (Ljava/util/Map;)Ljava/util/List; func_179647_f + g (Ljava/util/Map;)Ljava/util/List; func_179662_g + h (Ljava/util/Map;)Z func_179665_h +o$1 net/minecraft/command/PlayerSelector$1 + a field_179615_a + b field_179614_b + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +o$10 net/minecraft/command/PlayerSelector$10 + a field_179602_a + b field_179601_b + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +o$11 net/minecraft/command/PlayerSelector$11 + a field_179599_a + b field_179597_b + c field_179598_c + d field_179595_d + e field_179596_e + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +o$12 net/minecraft/command/PlayerSelector$12 + a field_179593_a + b field_179592_b + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +o$2 net/minecraft/command/PlayerSelector$2 + a field_179618_a + b field_179617_b + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +o$3 net/minecraft/command/PlayerSelector$3 + a field_179610_a + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +o$4 net/minecraft/command/PlayerSelector$4 + a field_179612_a + a (Lpk;Lpk;)I compare + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare +o$5 net/minecraft/command/PlayerSelector$5 + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +o$6 net/minecraft/command/PlayerSelector$6 + a field_179627_a + b field_179626_b + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +o$7 net/minecraft/command/PlayerSelector$7 + a field_179620_a + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +o$8 net/minecraft/command/PlayerSelector$8 + a field_179623_a + b field_179622_b + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +o$9 net/minecraft/command/PlayerSelector$9 + a field_179604_a + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +oa net/minecraft/util/WeightedRandom + a (Ljava/util/Collection;)I func_76272_a + a (Ljava/util/Collection;I)Loa$a; func_180166_a + a (Ljava/util/Random;Ljava/util/Collection;)Loa$a; func_76271_a + a (Ljava/util/Random;Ljava/util/Collection;I)Loa$a; func_76273_a +oa$a net/minecraft/util/WeightedRandom$Item + a field_76292_a +ob net/minecraft/util/WeightedRandomChestContent + b field_76297_b + c field_76295_d + d field_76296_e + a (Ljava/util/List;[Lob;)Ljava/util/List; func_177629_a + a (Ljava/util/Random;Ljava/util/List;Lalc;I)V func_177631_a + a (Ljava/util/Random;Ljava/util/List;Log;I)V func_177630_a +od net/minecraft/util/IThreadListener + a (Ljava/lang/Runnable;)Lcom/google/common/util/concurrent/ListenableFuture; func_152344_a + aJ ()Z func_152345_ab +of net/minecraft/inventory/InventoryLargeChest + a field_70479_a + b field_70477_b + c field_70478_c + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (Log;)Z func_90010_a + a (Lon;)V func_174892_a + a (Lwm;Lwn;)Lxi; func_174876_a + a (Lwn;)Z func_70300_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (Lwn;)V func_174889_b + c (Lwn;)V func_174886_c + e_ ()Ljava/lang/String; func_70005_c_ + f_ ()Leu; func_145748_c_ + g ()I func_174890_g + i ()Lon; func_174891_i + k ()Ljava/lang/String; func_174875_k + l ()V func_174888_l + l_ ()Z func_145818_k_ + o_ ()I func_70302_i_ + p_ ()V func_70296_d + q_ ()I func_70297_j_ + r_ ()Z func_174893_q_ +og net/minecraft/inventory/IInventory + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (Lwn;)Z func_70300_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (Lwn;)V func_174889_b + c (Lwn;)V func_174886_c + g ()I func_174890_g + l ()V func_174888_l + o_ ()I func_70302_i_ + p_ ()V func_70296_d + q_ ()I func_70297_j_ +oh net/minecraft/inventory/IInvBasic + a (Loq;)V func_76316_a +oi net/minecraft/inventory/InventoryHelper + a field_180177_a + a (Ladm;DDDLog;)V func_180174_a + a (Ladm;DDDLzx;)V func_180173_a + a (Ladm;Lcj;Log;)V func_180175_a + a (Ladm;Lpk;Log;)V func_180176_a +oj net/minecraft/world/EnumDifficulty + a PEACEFUL + b EASY + c NORMAL + d HARD + e field_151530_e + f field_151527_f + g field_151528_g + h $VALUES + a ()I func_151525_a + a (I)Loj; func_151523_a + b ()Ljava/lang/String; func_151526_b + values ()[Loj; values +ok net/minecraft/world/DifficultyInstance + a field_180172_a + b field_180171_b + a (Loj;JJF)F func_180169_a + b ()F func_180168_b + c ()F func_180170_c +ol net/minecraft/world/IInteractionObject + a (Lwm;Lwn;)Lxi; func_174876_a + k ()Ljava/lang/String; func_174875_k +on net/minecraft/world/LockCode + a field_180162_a + b field_180161_b + a ()Z func_180160_a + a (Ldn;)V func_180157_a + b ()Ljava/lang/String; func_180159_b + b (Ldn;)Lon; func_180158_b +oo net/minecraft/world/ILockableContainer + a (Lon;)V func_174892_a + i ()Lon; func_174891_i + r_ ()Z func_174893_q_ +op net/minecraft/world/IWorldNameable + e_ ()Ljava/lang/String; func_70005_c_ + f_ ()Leu; func_145748_c_ + l_ ()Z func_145818_k_ +oq net/minecraft/inventory/InventoryBasic + a field_70483_a + b field_70481_b + c field_70482_c + d field_70480_d + e field_94051_e + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (Ljava/lang/String;)V func_110133_a + a (Loh;)V func_110134_a + a (Lwn;)Z func_70300_a + a (Lzx;)Lzx; func_174894_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (Loh;)V func_110132_b + b (Lwn;)V func_174889_b + c (Lwn;)V func_174886_c + e_ ()Ljava/lang/String; func_70005_c_ + f_ ()Leu; func_145748_c_ + g ()I func_174890_g + l ()V func_174888_l + l_ ()Z func_145818_k_ + o_ ()I func_70302_i_ + p_ ()V func_70296_d + q_ ()I func_70297_j_ +or net/minecraft/profiler/PlayerUsageSnooper + a field_152773_a + b field_152774_b + c field_76480_b + d field_76481_c + e field_76478_d + f field_76479_e + g field_76476_f + h field_98224_g + i field_76477_g + j field_76483_h + a ()V func_76463_a + a (Ljava/lang/String;Ljava/lang/Object;)V func_152768_a + a (Lor;)Los; access$000 + b ()V func_76471_b + b (Ljava/lang/String;Ljava/lang/Object;)V func_152767_b + b (Lor;)Ljava/lang/Object; access$100 + c ()Ljava/util/Map; func_76465_c + c (Lor;)Ljava/util/Map; access$200 + d ()Z func_76468_d + d (Lor;)I access$300 + e ()V func_76470_e + e (Lor;)Ljava/util/Map; access$400 + f ()Ljava/lang/String; func_80006_f + f (Lor;)I access$308 + g ()J func_130105_g + g (Lor;)Ljava/lang/String; access$500 + h ()V func_152766_h + h (Lor;)Ljava/net/URL; access$600 + i ()V func_76467_g +or$1 net/minecraft/profiler/PlayerUsageSnooper$1 + a field_76344_a + run ()V run +os net/minecraft/profiler/IPlayerUsage + a (Lor;)V func_70000_a + ad ()Z func_70002_Q + b (Lor;)V func_70001_b +ot net/minecraft/inventory/ISidedInventory + a (ILzx;Lcq;)Z func_180462_a + a (Lcq;)[I func_180463_a + b (ILzx;Lcq;)Z func_180461_b +ou net/minecraft/util/CombatEntry + a field_94569_a + b field_94567_b + c field_94568_c + d field_94565_d + e field_94566_e + f field_94564_f + a ()Low; func_94560_a + c ()F func_94563_c + f ()Z func_94559_f + g ()Ljava/lang/String; func_94562_g + h ()Leu; func_151522_h + i ()F func_94561_i +ov net/minecraft/util/CombatTracker + a field_94556_a + b field_94554_b + c field_94555_c + d field_152775_d + e field_152776_e + f field_94552_d + g field_94553_e + h field_94551_f + a ()V func_94545_a + a (Lou;)Ljava/lang/String; func_94548_b + a (Low;FF)V func_94547_a + b ()Leu; func_151521_b + c ()Lpr; func_94550_c + f ()I func_180134_f + g ()V func_94549_h + h ()Lpr; func_180135_h + i ()Lou; func_94544_f + j ()V func_94542_g +ow net/minecraft/util/DamageSource + a field_76372_a + b field_180137_b + c field_76370_b + d field_76371_c + e field_76368_d + f field_76369_e + g field_76366_f + h field_76367_g + i field_76379_h + j field_76380_i + k field_76377_j + l field_76376_m + m field_82727_n + n field_82728_o + o field_82729_p + p field_76373_n + q field_76374_o + r field_76385_p + s field_151520_r + t field_76384_q + u field_76383_r + v field_76382_s + w field_76381_t + x field_82730_x + y field_76378_k + a ()Z func_76352_a + a (Ladi;)Low; func_94539_a + a (Lpk;)Low; func_92087_a + a (Lpk;Lpk;)Low; func_76356_a + a (Lpr;)Low; func_76358_a + a (Lwn;)Low; func_76365_a + a (Lwq;Lpk;)Low; func_76353_a + a (Lws;Lpk;)Low; func_76362_a + b ()Low; func_76349_b + b (Lpk;Lpk;)Low; func_76354_b + b (Lpr;)Leu; func_151519_b + c ()Z func_94541_c + d ()Low; func_94540_d + e ()Z func_76363_c + f ()F func_76345_d + g ()Z func_76357_e + h ()Z func_151517_h + i ()Lpk; func_76364_f + j ()Lpk; func_76346_g + k ()Low; func_76348_h + l ()Low; func_76359_i + m ()Low; func_151518_m + n ()Low; func_76361_j + o ()Z func_76347_k + p ()Ljava/lang/String; func_76355_l + q ()Low; func_76351_m + r ()Z func_76350_n + s ()Z func_82725_o + t ()Low; func_82726_p + u ()Z func_180136_u +ox net/minecraft/util/EntityDamageSource + q field_76386_o + r field_180140_r + b (Lpr;)Leu; func_151519_b + j ()Lpk; func_76346_g + r ()Z func_76350_n + v ()Lox; func_180138_v + w ()Z func_180139_w +oy net/minecraft/util/EntityDamageSourceIndirect + r field_76387_p + b (Lpr;)Leu; func_151519_b + i ()Lpk; func_76364_f + j ()Lpk; func_76346_g +p net/minecraft/command/server/CommandAchievement + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +p$1 net/minecraft/command/server/CommandAchievement$1 + a field_179608_a + b field_179606_b + c field_179607_c + a (Lmq;)Z apply + apply (Ljava/lang/Object;)Z apply +pa net/minecraft/potion/PotionAbsorption + a (Lpr;Lqf;I)V func_111187_a + b (Lpr;Lqf;I)V func_111185_a +pb net/minecraft/potion/PotionAttackDamage + a (ILqd;)D func_111183_a +pc net/minecraft/potion/PotionHealthBoost + a (Lpr;Lqf;I)V func_111187_a +pd net/minecraft/potion/PotionHealth + a (II)Z func_76397_a + b ()Z func_76403_b +pe net/minecraft/potion/Potion + A field_180147_A + B field_180148_B + C field_180149_C + D field_180143_D + E field_180144_E + F field_180145_F + G field_180146_G + H field_76415_H + I field_180150_I + J field_111188_I + K field_76418_K + L field_76414_N + M field_76416_I + N field_76417_J + O field_76412_L + P field_76413_M + a field_76425_a + b field_180151_b + c field_76424_c + d field_76421_d + e field_76422_e + f field_76419_f + g field_76420_g + h field_76432_h + i field_76433_i + j field_76430_j + k field_76431_k + l field_76428_l + m field_76429_m + n field_76426_n + o field_76427_o + p field_76441_p + q field_76440_q + r field_76439_r + s field_76438_s + t field_76437_t + u field_76436_u + v field_82731_v + w field_180152_w + x field_76444_x + y field_76443_y + z field_180153_z + a ()Ljava/lang/String; func_76393_a + a (D)Lpe; func_76404_a + a (II)Z func_76397_a + a (ILqd;)D func_111183_a + a (Lpf;)Ljava/lang/String; func_76389_a + a (Lpk;Lpk;Lpr;ID)V func_180793_a + a (Lpr;I)V func_76394_a + a (Lpr;Lqf;I)V func_111187_a + a (Lqb;Ljava/lang/String;DI)Lpe; func_111184_a + b ()Z func_76403_b + b (II)Lpe; func_76399_b + b (Ljava/lang/String;)Lpe; func_180142_b + b (Lpr;Lqf;I)V func_111185_a + c ()Ljava/util/Set; func_181168_c + c (Ljava/lang/String;)Lpe; func_76390_b + d ()I func_76396_c + e ()Z func_76400_d + f ()I func_76392_e + g ()Z func_76398_f + h ()D func_76388_g + j ()Z func_76395_i + k ()I func_76401_j + l ()Ljava/util/Map; func_111186_k +pf net/minecraft/potion/PotionEffect + a field_180155_a + b field_76462_a + c field_76460_b + d field_76461_c + e field_82723_d + f field_82724_e + g field_100013_f + h field_180156_h + a ()I func_76456_a + a (Ldn;)Ldn; func_82719_a + a (Lpf;)V func_76452_a + a (Lpr;)Z func_76455_a + a (Z)V func_82721_a + b ()I func_76459_b + b (Ldn;)Lpf; func_82722_b + b (Lpr;)V func_76457_b + b (Z)V func_100012_b + c ()I func_76458_c + e ()Z func_82720_e + equals (Ljava/lang/Object;)Z equals + f ()Z func_180154_f + g ()Ljava/lang/String; func_76453_d + h ()Z func_100011_g + hashCode ()I hashCode + i ()I func_76454_e + toString ()Ljava/lang/String; toString +ph net/minecraft/entity/EntityAgeable + a field_175504_a + b field_175502_b + bm field_98056_d + bn field_98057_e + c field_175503_c + a (F)V func_98055_j + a (FF)V func_70105_a + a (I)V func_110195_a + a (IZ)V func_175501_a + a (Ldn;)V func_70037_a + a (Lph;)Lph; func_90011_a + a (Lwn;)Z func_70085_c + a (Z)V func_98054_a + b (I)V func_70873_a + b (Ldn;)V func_70014_b + h ()V func_70088_a + j_ ()Z func_70631_g_ + l ()I func_70874_b + m ()V func_70636_d + n ()V func_175500_n +pi net/minecraft/entity/passive/IAnimals +pk net/minecraft/entity/Entity + A field_70126_B + B field_70127_C + C field_70122_E + D field_70123_F + E field_70124_G + F field_70132_H + G field_70133_I + H field_70134_J + I field_70128_L + J field_70130_N + K field_70131_O + L field_70141_P + M field_70140_Q + N field_82151_R + O field_70143_R + P field_70142_S + Q field_70137_T + R field_70136_U + S field_70138_W + T field_70145_X + U field_70144_Y + V field_70146_Z + W field_70173_aa + X field_70174_ab + Y field_70171_ac + Z field_70172_ad + a field_174836_a + aa field_70148_d + ab field_70178_ae + ac field_70180_af + ad field_70175_ag + ae field_70176_ah + af field_70162_ai + ag field_70164_aj + ah field_70158_ak + ai field_70160_al + aj field_71088_bW + ak field_71087_bX + al field_82153_h + am field_71093_bK + an field_181016_an + ao field_181017_ao + ap field_181018_ap + aq field_96093_i + ar field_70149_e + as field_70147_f + at field_83001_bt + au field_174837_as + b field_70152_a + bW field_70118_ct + bX field_70117_cu + bY field_70116_cv + c field_145783_c + f field_70121_D + g field_174835_g + h field_70150_b + i field_70151_c + j field_70155_l + k field_70156_m + l field_70153_n + m field_70154_o + n field_98038_p + o field_70170_p + p field_70169_q + q field_70167_r + r field_70166_s + s field_70165_t + t field_70163_u + u field_70161_v + v field_70159_w + w field_70181_x + x field_70179_y + y field_70177_z + z field_70125_A + F ()I func_145782_y + G ()V func_174812_G + H ()Lpz; func_70096_w + I ()V func_70065_x + J ()V func_70106_y + K ()V func_70030_z + L ()I func_82145_z + M ()V func_70044_A + N ()V func_70066_B + O ()V func_70076_C + P ()Ljava/lang/String; func_145776_H + Q ()V func_145775_I + R ()Z func_174814_R + S ()Laug; func_70046_E + T ()Z func_70045_F + U ()Z func_70026_G + V ()Z func_70090_H + W ()Z func_70072_I + X ()V func_71061_d_ + Y ()V func_174830_Y + Z ()V func_174808_Z + a (B)V func_70103_a + a (D)Z func_70112_a + a (DDD)V func_70634_a + a (DDDFF)V func_70080_a + a (DDDFFIZ)V func_180426_a + a (DF)Lauh; func_174822_a + a (DZLafh;Lcj;)V func_180433_a + a (FF)V func_70105_a + a (FFF)V func_70060_a + a (ILjava/lang/String;)Z func_70003_b + a (Ladi;Ladm;Lcj;Lalz;)F func_180428_a + a (Ladi;Ladm;Lcj;Lalz;F)Z func_174816_a + a (Ladm;)V func_70029_a + a (Larm;)Z func_70055_a + a (Laug;)V func_174826_a + a (Lc;)V func_85029_a + a (Lcj;FF)V func_174828_a + a (Lcj;Lafh;)V func_180429_a + a (Ldn;)V func_70037_a + a (Leu;)V func_145747_a + a (Ljava/lang/String;)V func_96094_a + a (Ljava/lang/String;FF)V func_85030_a + a (Llf;)Z func_174827_a + a (Ln$a;I)V func_174794_a + a (Low;F)Z func_70097_a + a (Lpk;)V func_70078_a + a (Lpr;)V func_70074_a + a (Lpr;Lpk;)V func_174815_a + a (Luv;)V func_70077_a + a (Lwn;Laui;)Z func_174825_a + a (Lzw;I)Luz; func_145779_a + a (Lzw;IF)Luz; func_145778_a + a (Lzx;F)Luz; func_70099_a + a ([D)Ldu; func_70087_a + a ([F)Ldu; func_70049_a + aA ()V func_70110_aj + aB ()[Lpk; func_70021_al + aC ()F func_70079_am + aD ()Z func_70075_an + aE ()I func_82143_as + aG ()Laui; func_181014_aG + aH ()Lcq; func_181012_aH + aI ()Z func_145773_az + aJ ()Z func_90999_ad + aK ()Ljava/util/UUID; func_110124_au + aL ()Z func_96092_aw + aM ()Ljava/lang/String; func_95999_t + aN ()Z func_174833_aM + aO ()Z func_94059_bO + aP ()Lcq; func_174811_aO + aQ ()Lew; func_174823_aP + aR ()Laug; func_174813_aQ + aS ()F func_70047_e + aT ()Z func_174832_aS + aU ()Ln; func_174807_aT + aV ()Ldn; func_174819_aU + aW ()Z func_180427_aV + aa ()Ljava/lang/String; func_145777_O + ab ()Z func_180799_ab + ac ()V func_70018_K + ad ()Z func_70067_L + ae ()Z func_70104_M + af ()Z func_142008_O + ag ()Ljava/lang/String; func_70022_Q + ah ()V func_110123_P + ai ()Z func_70089_S + aj ()Z func_70094_T + ak ()V func_70098_U + al ()V func_70043_V + am ()D func_70033_W + an ()D func_70042_X + ao ()F func_70111_Y + ap ()Laui; func_70040_Z + aq ()I func_82147_ab + ar ()V func_70057_ab + as ()[Lzx; func_70035_c + at ()Z func_70027_ad + au ()Z func_70115_ae + av ()Z func_70093_af + aw ()Z func_70051_ag + ax ()Z func_82150_aj + ay ()Z func_70113_ah + az ()I func_70086_ai + b (DDD)V func_70107_b + b (DDDFF)V func_70012_b + b (F)I func_70070_b + b (FF)V func_70101_b + b (IZ)V func_70052_a + b (Laug;)Z func_174809_b + b (Lcj;)D func_174818_b + b (Ldn;)V func_70014_b + b (Low;)Z func_180431_b + b (Lpk;I)V func_70084_c + b (Z)V func_174810_b + c ()Lcj; func_180425_c + c (DDD)Z func_70038_c + c (F)F func_70013_c + c (FF)V func_70082_c + c (I)V func_71027_c + c (ILzx;)V func_70062_b + c (Lcj;)D func_174831_c + c (Ldn;)Z func_98035_c + c (Z)V func_70095_a + d ()Laui; func_174791_d + d (DDD)V func_70091_d + d (F)Laui; func_70676_i + d (I)V func_145769_d + d (ILzx;)Z func_174820_d + d (Lcj;)V func_181015_d + d (Ldn;)Z func_70039_c + d (Lwn;)V func_70100_b_ + d (Z)V func_70031_b + e ()Ladm; func_130014_f_ + e (DDD)D func_70092_e + e (F)Laui; func_174824_e + e (FF)V func_180430_e + e (I)V func_70015_d + e (Ldn;)V func_70109_d + e (Lwn;)Z func_130002_c + e (Z)V func_82142_c + e_ ()Ljava/lang/String; func_70005_c_ + equals (Ljava/lang/Object;)Z equals + f ()Lpk; func_174793_f + f (DDD)D func_70011_f + f (F)V func_70034_d + f (FF)Laui; func_174806_f + f (I)V func_70081_e + f (Ldn;)V func_70020_e + f (Lwn;)Z func_98034_c + f (Z)V func_70019_c + f_ ()Leu; func_145748_c_ + g (DDD)V func_70024_g + g (F)V func_181013_g + g (I)Z func_70083_f + g (Ldn;)V func_174834_g + g (Lpk;)F func_70032_d + g (Z)V func_174805_g + h ()V func_70088_a + h (DDD)Z func_145770_h + h (I)V func_70050_g + h (Lpk;)D func_70068_e + h (Z)V func_174821_h + hashCode ()I hashCode + i (DDD)V func_70016_h + i (I)V func_145781_i + i (Lpk;)V func_70108_f + j (DDD)Z func_145771_j + j (Lpk;)Laug; func_70114_g + k (Lpk;)Z func_70028_i + l (Lpk;)Z func_85031_j + l_ ()Z func_145818_k_ + m ()V func_174829_m + m (Lpk;)V func_82149_j + n (Lpk;)V func_180432_n + o (Lpk;)V func_174817_o + s_ ()Z func_70041_e_ + t_ ()V func_70071_h_ + toString ()Ljava/lang/String; toString + u_ ()Z func_174792_t_ +pk$1 net/minecraft/entity/Entity$1 + a field_85155_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +pk$2 net/minecraft/entity/Entity$2 + a field_96564_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +pk$3 net/minecraft/entity/Entity$3 + a field_180119_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +pk$4 net/minecraft/entity/Entity$4 + a field_180117_a + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +pm net/minecraft/entity/EntityList + a field_75627_a + b field_151516_b + c field_75625_b + d field_75626_c + e field_75623_d + f field_75624_e + g field_180126_g + a ()V func_151514_a + a (I)Ljava/lang/Class; func_90035_a + a (ILadm;)Lpk; func_75616_a + a (Ldn;Ladm;)Lpk; func_75615_a + a (Ljava/lang/Class;Ljava/lang/String;I)V func_75618_a + a (Ljava/lang/Class;Ljava/lang/String;III)V func_75614_a + a (Ljava/lang/String;)I func_180122_a + a (Ljava/lang/String;Ladm;)Lpk; func_75620_a + a (Lpk;)I func_75619_a + a (Lpk;Ljava/lang/String;)Z func_180123_a + b ()Ljava/util/List; func_180124_b + b (I)Ljava/lang/String; func_75617_a + b (Ljava/lang/String;)Z func_180125_b + b (Lpk;)Ljava/lang/String; func_75621_b +pm$a net/minecraft/entity/EntityList$EntityEggInfo + a field_75613_a + b field_75611_b + c field_75612_c + d field_151512_d + e field_151513_e +po net/minecraft/util/EntitySelectors + a field_94557_a + b field_152785_b + c field_96566_b + d field_180132_d +po$1 net/minecraft/util/EntitySelectors$1 + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +po$2 net/minecraft/util/EntitySelectors$2 + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +po$3 net/minecraft/util/EntitySelectors$3 + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +po$4 net/minecraft/util/EntitySelectors$4 + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +po$a net/minecraft/util/EntitySelectors$ArmoredMob + a field_96567_c + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +pp net/minecraft/entity/item/EntityXPOrb + a field_70533_a + b field_70531_b + c field_70532_c + d field_70529_d + e field_70530_e + f field_80001_f + g field_80002_g + W ()Z func_70072_I + a (I)I func_70527_a + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + aD ()Z func_70075_an + b (F)I func_70070_b + b (Ldn;)V func_70014_b + d (Lwn;)V func_70100_b_ + f (I)V func_70081_e + h ()V func_70088_a + j ()I func_70526_d + l ()I func_70528_g + s_ ()Z func_70041_e_ + t_ ()V func_70071_h_ +pq net/minecraft/entity/EntityFlying + a (DZLafh;Lcj;)V func_180433_a + e (FF)V func_180430_e + g (FF)V func_70612_e + k_ ()Z func_70617_f_ +pr net/minecraft/entity/EntityLivingBase + a field_110156_b + aA field_70722_aY + aB field_70721_aZ + aC field_70754_ba + aD field_70771_an + aE field_70727_aS + aF field_70726_aT + aG field_70769_ao + aH field_70770_ap + aI field_70761_aq + aJ field_70760_ar + aK field_70759_as + aL field_70758_at + aM field_70747_aH + aN field_70717_bb + aO field_70718_bc + aP field_70729_aU + aQ field_70708_bq + aR field_70768_au + aS field_110154_aX + aT field_70764_aw + aU field_70763_ax + aV field_70741_aB + aW field_70744_aE + aX field_110153_bc + aY field_70703_bu + aZ field_70702_br + ar field_82175_bq + as field_110158_av + at field_70720_be + au field_70737_aN + av field_70738_aO + aw field_70739_aP + ax field_70725_aQ + ay field_70732_aI + az field_70733_aJ + b field_110157_c + ba field_70701_bs + bb field_70704_bt + bc field_70716_bi + bd field_70709_bj + be field_70710_bk + bf field_110152_bk + bg field_70712_bm + bh field_70705_bn + bi field_70755_b + bj field_70756_c + bk field_110150_bn + bl field_142016_bo + bm field_70746_aG + bn field_70773_bE + bo field_110151_bq + c field_110155_d + f field_94063_bt + g field_70713_bf + h field_82180_bT + i field_70752_e + B ()V func_175135_B + G ()V func_174812_G + K ()V func_70030_z + O ()V func_70076_C + a (B)V func_70103_a + a (DDDFFIZ)V func_180426_a + a (DZLafh;Lcj;)V func_180433_a + a (Lauq;)Z func_142012_a + a (Ldn;)V func_70037_a + a (Low;)V func_70645_a + a (Low;F)Z func_70097_a + a (Lpe;)Z func_70644_a + a (Lpf;)V func_70670_a + a (Lpf;Z)V func_70695_b + a (Lpk;)V func_70078_a + a (Lpk;FDD)V func_70653_a + a (Lpk;I)V func_71001_a + a (Lqb;)Lqc; func_110148_a + a (ZI)V func_82160_b + aC ()F func_70079_am + aO ()Z func_94059_bO + aX ()V func_110147_ax + aY ()Z func_70648_aU + aZ ()V func_70609_aI + ac ()V func_70018_K + ad ()Z func_70067_L + ae ()Z func_70104_M + ai ()Z func_70089_S + ak ()V func_70098_U + ap ()Laui; func_70040_Z + ar ()V func_70057_ab + as ()[Lzx; func_70035_c + b (Ldn;)V func_70014_b + b (Low;F)F func_70655_b + b (Lpe;)Lpf; func_70660_b + b (Lpf;)V func_70688_c + b (Lpr;)V func_70604_c + b (Lwn;)I func_70693_a + b (Lzx;)V func_70669_a + b (ZI)V func_70628_a + bA ()Lzx; func_70694_bm + bB ()F func_70599_aP + bC ()F func_70647_i + bD ()Z func_70610_aX + bE ()F func_175134_bD + bF ()V func_70664_aZ + bG ()V func_70629_bd + bH ()V func_180466_bG + bI ()F func_70689_ay + bJ ()Z func_70608_bn + bK ()V func_70626_be + bL ()V func_85033_bc + bM ()Z func_70613_aW + bN ()F func_110139_bj + bO ()Lauq; func_96124_cp + bP ()V func_175136_bO + ba ()Z func_146066_aG + bb ()Z func_70684_aJ + bc ()Ljava/util/Random; func_70681_au + bd ()Lpr; func_70643_av + be ()I func_142015_aE + bf ()Lpr; func_110144_aD + bg ()I func_142013_aG + bh ()I func_70654_ax + bi ()V func_70679_bo + bj ()V func_175133_bi + bk ()V func_70674_bp + bl ()Ljava/util/Collection; func_70651_bq + bm ()Z func_70662_br + bn ()F func_110143_aJ + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + bq ()V func_82164_bB + br ()I func_70658_aO + bs ()Lov; func_110142_aN + bt ()Lpr; func_94060_bK + bu ()F func_110138_aP + bv ()I func_85035_bI + bw ()V func_71038_i + bx ()V func_82168_bl + by ()Lqf; func_110140_aT + bz ()Lpw; func_70668_bt + c (ILzx;)V func_70062_b + c (Low;F)F func_70672_c + c (Lpf;)V func_70690_d + c (Lpr;)Z func_142014_c + d (F)Laui; func_70676_i + d (Low;F)V func_70665_d + d (Lpf;)Z func_70687_e + d (Z)V func_70031_b + e (FF)V func_180430_e + f (F)V func_70034_d + g (F)V func_181013_g + g (FF)V func_70612_e + h ()V func_70088_a + h (F)V func_70691_i + h (FF)F func_110146_f + h_ ()V func_152111_bt + i (F)V func_70606_j + i (Z)V func_70637_d + j ()V func_152112_bu + j (F)V func_70675_k + j (I)I func_70682_h + j_ ()Z func_70631_g_ + k (F)V func_70659_e + k (I)Z func_82165_m + k_ ()Z func_70617_f_ + l (F)F func_70678_g + l (I)V func_70618_n + m ()V func_70636_d + m (F)V func_110149_m + m (I)V func_82170_o + n ()I func_82166_i + n (I)Ljava/lang/String; func_146067_o + o (I)V func_85034_r + p (I)Lzx; func_71124_b + p (Lpk;)V func_130011_c + q (I)Lzx; func_82169_q + q (Lpk;)V func_110145_l + r (Lpk;)Z func_70652_k + s (Lpk;)V func_82167_n + t (Lpk;)Z func_70685_l + t_ ()V func_70071_h_ +pr$1 net/minecraft/entity/EntityLivingBase$1 + a field_181170_a + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +ps net/minecraft/entity/EntityLiving + a field_70749_g + a_ field_70757_a + b field_70762_j + b_ field_70728_aV + bi field_70715_bh + bj field_82174_bp + bk field_70723_bA + bl field_82182_bS + bm field_82172_bs + bn field_82179_bU + bo field_110169_bv + bp field_110168_bw + bq field_110170_bx + c field_70696_bz + f field_70765_h + g field_70767_i + h field_70699_by + i field_70714_bg + A ()Lzw; func_146068_u + C ()Z func_70692_ba + D ()V func_70623_bb + E ()V func_70619_bc + K ()V func_70030_z + a (B)V func_70103_a + a (IF)V func_96120_a + a (II)Lzw; func_82161_a + a (Ldn;)V func_70037_a + a (Ljava/lang/Class;)Z func_70686_a + a (Lok;)V func_180481_a + a (Lok;Lpu;)Lpu; func_180482_a + a (Lpk;FF)V func_70625_a + a (Lpk;Z)V func_110162_b + a (Luz;)V func_175445_a + a (Lwn;)Z func_70085_c + a (Lzx;)Z func_175448_a + a (ZI)V func_82160_b + a (ZZ)V func_110160_i + aE ()I func_82143_as + aX ()V func_110147_ax + as ()[Lzx; func_70035_c + b (FFF)F func_70663_b + b (Ladm;)Lsw; func_175447_b + b (Ldn;)V func_70014_b + b (Lok;)V func_180483_b + b (Lwn;)I func_70693_a + b (ZI)V func_70628_a + bA ()Lzx; func_70694_bm + bK ()V func_70626_be + bM ()Z func_70613_aW + bQ ()I func_70646_bf + bR ()Z func_70601_bi + bS ()Z func_70058_J + bT ()F func_70603_bj + bV ()I func_70641_bl + bW ()Z func_82171_bF + bX ()V func_110163_bv + bY ()Z func_98052_bS + bZ ()Z func_104002_bU + c (ILzx;)V func_70062_b + c (Lzx;)I func_82159_b + ca ()V func_110159_bB + cb ()Z func_110164_bC + cc ()Z func_110167_bD + cd ()Lpk; func_110166_bE + ce ()Z func_175446_cd + d (ILzx;)Z func_174820_d + d (Lpr;)V func_70624_b + e (Lwn;)Z func_130002_c + h ()V func_70088_a + h (FF)F func_110146_f + j (Z)V func_98053_h + k (F)V func_70659_e + k (Z)V func_94061_f + m ()V func_70636_d + n ()V func_110165_bF + n (F)V func_70657_f + p ()Lqp; func_70671_ap + p (I)Lzx; func_71124_b + q ()Lqq; func_70605_aq + q (I)Lzx; func_82169_q + r ()Lqo; func_70683_ar + s ()Lsw; func_70661_as + t ()Lta; func_70635_at + t_ ()V func_70071_h_ + u ()Lpr; func_70638_az + v ()V func_70615_aA + w ()I func_70627_aG + x ()V func_70642_aH + y ()V func_70656_aK + z ()Ljava/lang/String; func_70639_aQ +ps$a net/minecraft/entity/EntityLiving$SpawnPlacementType + a ON_GROUND + b IN_AIR + c IN_WATER + d $VALUES + values ()[Lps$a; values +pt net/minecraft/entity/EnumCreatureType + a MONSTER + b CREATURE + c AMBIENT + d WATER_CREATURE + e field_75605_d + f field_75606_e + g field_75603_f + h field_75604_g + i field_82707_i + j $VALUES + a ()Ljava/lang/Class; func_75598_a + b ()I func_75601_b + d ()Z func_75599_d + e ()Z func_82705_e + valueOf (Ljava/lang/String;)Lpt; valueOf + values ()[Lpt; values +pu net/minecraft/entity/IEntityLivingData +pv net/minecraft/entity/EntitySpawnPlacementRegistry + a field_180110_a + a (Ljava/lang/Class;)Lps$a; func_180109_a +pw net/minecraft/entity/EnumCreatureAttribute + a UNDEFINED + b UNDEAD + c ARTHROPOD + d $VALUES + valueOf (Ljava/lang/String;)Lpw; valueOf + values ()[Lpw; values +px net/minecraft/entity/IEntityOwnable + b ()Ljava/lang/String; func_152113_b + m_ ()Lpk; func_70902_q +py net/minecraft/entity/EntityCreature + a field_70775_bC + b field_70772_bD + bk field_110179_h + bl field_110181_i + bm field_110180_bt + c field_110178_bs + a (Lcj;)F func_180484_a + a (Lcj;I)V func_175449_a + bR ()Z func_70601_bi + ca ()V func_110159_bB + cf ()Z func_70781_l + cg ()Z func_110173_bK + ch ()Lcj; func_180486_cf + ci ()F func_110174_bM + cj ()V func_110177_bN + ck ()Z func_110175_bO + e (Lcj;)Z func_180485_d + o (F)V func_142017_o +pz net/minecraft/entity/DataWatcher + a field_151511_a + b field_92086_a + c field_75697_a + d field_75695_b + e field_75696_c + f field_75694_d + a ()Z func_75684_a + a (I)B func_75683_a + a (II)V func_82709_a + a (ILjava/lang/Object;)V func_75682_a + a (Lem;)V func_151509_a + a (Lem;Lpz$a;)V func_151510_a + a (Ljava/util/List;)V func_75687_a + a (Ljava/util/List;Lem;)V func_151507_a + b ()Ljava/util/List; func_75688_b + b (I)S func_75693_b + b (ILjava/lang/Object;)V func_75692_b + b (Lem;)Ljava/util/List; func_151508_b + c ()Ljava/util/List; func_75685_c + c (I)I func_75679_c + d ()Z func_92085_d + d (I)F func_111145_d + e ()V func_111144_e + e (I)Ljava/lang/String; func_75681_e + f (I)Lzx; func_82710_f + h (I)Ldc; func_180115_h + i (I)V func_82708_h + j (I)Lpz$a; func_75691_i +pz$a net/minecraft/entity/DataWatcher$WatchableObject + a field_75678_a + b field_75676_b + c field_75677_c + d field_75675_d + a ()I func_75672_a + a (Ljava/lang/Object;)V func_75673_a + a (Lpz$a;Z)Z access$002 + a (Z)V func_75671_a + b ()Ljava/lang/Object; func_75669_b + c ()I func_75674_c + d ()Z func_75670_d +q net/minecraft/command/server/CommandBanIp + a field_147211_a + a ()I func_82362_a + a (Lm;)Z func_71519_b + a (Lm;Ljava/lang/String;Ljava/lang/String;)V func_147210_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +qa net/minecraft/entity/passive/EntityTameable + bm field_70911_d + a (B)V func_70103_a + a (Ldn;)V func_70037_a + a (Low;)V func_70645_a + a (Lpr;Lpr;)Z func_142018_a + b ()Ljava/lang/String; func_152113_b + b (Ldn;)V func_70014_b + b (Ljava/lang/String;)V func_152115_b + bO ()Lauq; func_96124_cp + c (Lpr;)Z func_142014_c + cl ()Z func_70909_n + cm ()V func_175544_ck + cn ()Z func_70906_o + co ()Lpr; func_70902_q + cp ()Lse; func_70907_r + e (Lpr;)Z func_152114_e + h ()V func_70088_a + l (Z)V func_70908_e + m (Z)V func_70903_f + m_ ()Lpk; func_70902_q + n (Z)V func_70904_g +qb net/minecraft/entity/ai/attributes/IAttribute + a ()Ljava/lang/String; func_111108_a + a (D)D func_111109_a + b ()D func_111110_b + c ()Z func_111111_c + d ()Lqb; func_180372_d +qc net/minecraft/entity/ai/attributes/IAttributeInstance + a ()Lqb; func_111123_a + a (D)V func_111128_a + a (I)Ljava/util/Collection; func_111130_a + a (Ljava/util/UUID;)Lqd; func_111127_a + a (Lqd;)Z func_180374_a + b ()D func_111125_b + b (Lqd;)V func_111121_a + c ()Ljava/util/Collection; func_111122_c + c (Lqd;)V func_111124_b + d ()V func_142049_d + e ()D func_111126_e +qd net/minecraft/entity/ai/attributes/AttributeModifier + a field_111174_a + b field_111172_b + c field_111173_c + d field_111170_d + e field_111171_e + a ()Ljava/util/UUID; func_111167_a + a (Z)Lqd; func_111168_a + b ()Ljava/lang/String; func_111166_b + c ()I func_111169_c + d ()D func_111164_d + e ()Z func_111165_e + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +qe net/minecraft/entity/ai/attributes/BaseAttribute + a field_180373_a + b field_111115_a + c field_111113_b + d field_111114_c + a ()Ljava/lang/String; func_111108_a + a (Z)Lqe; func_111112_a + b ()D func_111110_b + c ()Z func_111111_c + d ()Lqb; func_180372_d + equals (Ljava/lang/Object;)Z equals + hashCode ()I hashCode +qf net/minecraft/entity/ai/attributes/BaseAttributeMap + a field_111154_a + b field_111153_b + c field_180377_c + a ()Ljava/util/Collection; func_111146_a + a (Lcom/google/common/collect/Multimap;)V func_111148_a + a (Ljava/lang/String;)Lqc; func_111152_a + a (Lqb;)Lqc; func_111151_a + a (Lqc;)V func_180794_a + b (Lcom/google/common/collect/Multimap;)V func_111147_b + b (Lqb;)Lqc; func_111150_b + c (Lqb;)Lqc; func_180376_c +qh net/minecraft/entity/ai/attributes/ModifiableAttributeInstance + a field_111138_a + b field_111136_b + c field_111137_c + d field_111134_d + e field_111135_e + f field_111132_f + g field_111133_g + h field_111139_h + a ()Lqb; func_111123_a + a (D)V func_111128_a + a (I)Ljava/util/Collection; func_111130_a + a (Ljava/util/UUID;)Lqd; func_111127_a + a (Lqd;)Z func_180374_a + b ()D func_111125_b + b (I)Ljava/util/Collection; func_180375_b + b (Lqd;)V func_111121_a + c ()Ljava/util/Collection; func_111122_c + c (Lqd;)V func_111124_b + d ()V func_142049_d + e ()D func_111126_e + f ()V func_111131_f + g ()D func_111129_g +qi net/minecraft/entity/ai/attributes/ServersideAttributeMap + d field_111163_c + e field_111162_d + a (Ljava/lang/String;)Lqc; func_111152_a + a (Lqb;)Lqc; func_111151_a + a (Lqc;)V func_180794_a + b ()Ljava/util/Set; func_111161_b + b (Ljava/lang/String;)Lqh; func_111152_a + b (Lqb;)Lqc; func_111150_b + c ()Ljava/util/Collection; func_111160_c + c (Lqb;)Lqc; func_180376_c + e (Lqb;)Lqh; func_111151_a +qj net/minecraft/entity/ai/attributes/RangedAttribute + a field_111120_a + b field_111118_b + c field_111119_c + a (D)D func_111109_a + a (Ljava/lang/String;)Lqj; func_111117_a + g ()Ljava/lang/String; func_111116_f +qm net/minecraft/entity/EntityBodyHelper + a field_75668_a + b field_75666_b + c field_75667_c + a ()V func_75664_a + a (FFF)F func_75665_a +qo net/minecraft/entity/ai/EntityJumpHelper + a field_75662_b + b field_75663_a + a ()V func_75660_a + b ()V func_75661_b +qp net/minecraft/entity/ai/EntityLookHelper + a field_75659_a + b field_75657_b + c field_75658_c + d field_75655_d + e field_75656_e + f field_75653_f + g field_75654_g + a ()V func_75649_a + a (DDDFF)V func_75650_a + a (FFF)F func_75652_a + a (Lpk;FF)V func_75651_a + b ()Z func_180424_b + e ()D func_180423_e + f ()D func_180422_f + g ()D func_180421_g +qq net/minecraft/entity/ai/EntityMoveHelper + a field_75648_a + b field_75646_b + c field_75647_c + d field_75644_d + e field_75645_e + f field_75643_f + a ()Z func_75640_a + a (DDDD)V func_75642_a + a (FFF)F func_75639_a + b ()D func_75638_b + c ()V func_75641_c + d ()D func_179917_d + e ()D func_179919_e + f ()D func_179918_f +qs net/minecraft/entity/ai/EntityAIAvoidEntity + a field_75380_a + b field_75376_d + c field_179509_a + d field_75378_b + e field_75379_c + f field_179508_f + g field_75374_f + h field_75375_g + i field_181064_i + j field_179510_i + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +qs$1 net/minecraft/entity/ai/EntityAIAvoidEntity$1 + a field_98219_c + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +qt net/minecraft/entity/ai/EntityAIBeg + a field_75387_a + b field_75385_b + c field_75386_c + d field_75383_d + e field_75384_e + a ()Z func_75250_a + a (Lwn;)Z func_75382_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +qu net/minecraft/entity/ai/EntityAIBreakDoor + g field_75359_i + h field_75358_j + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +qv net/minecraft/entity/ai/EntityAIMate + a field_75394_a + b field_75392_b + c field_75393_c + d field_75390_d + e field_75391_e + a ()Z func_75250_a + b ()Z func_75253_b + d ()V func_75251_c + e ()V func_75246_d + f ()Ltm; func_75389_f + g ()V func_75388_i +qw net/minecraft/entity/ai/EntityAIControlledByPlayer + a field_82640_a + b field_82638_b + c field_82639_c + d field_82636_d + e field_82637_e + f field_82635_f + a ()Z func_75250_a + a (Lafh;)Z func_151498_a + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d + f ()Z func_82634_f + g ()V func_82632_g + h ()Z func_82633_h +qx net/minecraft/entity/ai/EntityAIDoorInteract + a field_75356_a + b field_179507_b + c field_151504_e + d field_75350_f + e field_75351_g + f field_75357_h + a ()Z func_75250_a + a (Lcj;)Lagh; func_179506_a + b ()Z func_75253_b + c ()V func_75249_e + e ()V func_75246_d +qy net/minecraft/entity/ai/EntityAIEatGrass + a field_151502_a + b field_179505_b + c field_151500_b + d field_151501_c + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d + f ()I func_151499_f +qz net/minecraft/entity/ai/EntityAIFleeSun + a field_75372_a + b field_75370_b + c field_75371_c + d field_75368_d + e field_75369_e + f field_75367_f + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + f ()Laui; func_75366_f +r net/minecraft/command/server/CommandBanPlayer + a ()I func_82362_a + a (Lm;)Z func_71519_b + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +ra net/minecraft/entity/ai/EntityAISwimming + a field_75373_a + a ()Z func_75250_a + e ()V func_75246_d +rb net/minecraft/entity/ai/EntityAIFollowOwner + a field_75342_a + b field_75340_b + c field_75341_c + d field_75338_d + e field_75339_e + f field_75336_f + g field_75337_g + h field_75343_h + i field_75344_i + a ()Z func_75250_a + a (Lcj;)Z func_181065_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +rc net/minecraft/entity/ai/EntityAIFollowParent + a field_75348_a + b field_75346_b + c field_75347_c + d field_75345_d + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +rd net/minecraft/entity/ai/EntityAIBase + a field_75254_a + a ()Z func_75250_a + a (I)V func_75248_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d + i ()Z func_75252_g + j ()I func_75247_h +re net/minecraft/entity/ai/EntityAITasks + a field_151506_a + b field_75782_a + c field_75780_b + d field_75781_c + e field_75778_d + f field_75779_e + a ()V func_75774_a + a (ILrd;)V func_75776_a + a (Lrd;)V func_85156_a + a (Lre$a;)Z func_75773_a + a (Lre$a;Lre$a;)Z func_75777_a + b (Lre$a;)Z func_75775_b +re$a net/minecraft/entity/ai/EntityAITasks$EntityAITaskEntry + a field_75733_a + b field_75731_b + c field_75732_c +rf net/minecraft/entity/ai/EntityAIHarvestFarmland + c field_179504_c + d field_179502_d + e field_179503_e + f field_179501_f + a ()Z func_75250_a + a (Ladm;Lcj;)Z func_179488_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +rg net/minecraft/entity/ai/EntityAIWatchClosest2 +rh net/minecraft/entity/ai/EntityAILeapAtTarget + a field_75328_a + b field_75326_b + c field_75327_c + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e +ri net/minecraft/entity/ai/EntityAIWatchClosest + a field_75332_b + b field_75334_a + c field_75333_c + d field_75329_f + e field_75330_d + f field_75331_e + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +rj net/minecraft/entity/ai/EntityAILookAtTradePlayer + e field_75335_b + a ()Z func_75250_a +rk net/minecraft/entity/ai/EntityAIVillagerMate + a field_75452_a + b field_75450_b + c field_75451_c + d field_75448_d + e field_75449_e + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d + f ()Z func_75446_f + g ()V func_75447_i +rl net/minecraft/entity/ai/EntityAIAttackOnCollide + a field_75443_a + b field_75441_b + c field_75439_d + d field_75440_e + e field_75437_f + f field_75438_g + g field_75444_h + h field_75445_i + i field_151497_i + j field_151495_j + k field_151496_k + a ()Z func_75250_a + a (Lpr;)D func_179512_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +rm net/minecraft/entity/ai/EntityAIMoveIndoors + a field_75424_a + b field_75422_b + c field_75423_c + d field_75421_d + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c +rn net/minecraft/entity/ai/EntityAIMoveThroughVillage + a field_75420_a + b field_75418_b + c field_75419_c + d field_75416_d + e field_75417_e + f field_75415_f + a ()Z func_75250_a + a (Lte;)Z func_75413_a + a (Ltf;)Lte; func_75412_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + f ()V func_75414_f +ro net/minecraft/entity/ai/EntityAIMoveToBlock + a field_179496_a + b field_179494_b + c field_179495_c + d field_179492_d + e field_179493_e + f field_179490_f + g field_179491_g + h field_179497_h + a ()Z func_75250_a + a (Ladm;Lcj;)Z func_179488_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d + f ()Z func_179487_f + g ()Z func_179489_g +rp net/minecraft/entity/ai/EntityAIMoveTowardsRestriction + a field_75436_a + b field_75434_b + c field_75435_c + d field_75432_d + e field_75433_e + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e +rq net/minecraft/entity/ai/EntityAIMoveTowardsTarget + a field_75431_a + b field_75429_b + c field_75430_c + d field_75427_d + e field_75428_e + f field_75425_f + g field_75426_g + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c +rr net/minecraft/entity/ai/EntityAIOcelotAttack + a field_75411_a + b field_75409_b + c field_75410_c + d field_75408_d + a ()Z func_75250_a + b ()Z func_75253_b + d ()V func_75251_c + e ()V func_75246_d +rs net/minecraft/entity/ai/EntityAIOcelotSit + c field_151493_a + a ()Z func_75250_a + a (Ladm;Lcj;)Z func_179488_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +rt net/minecraft/entity/ai/EntityAILookAtVillager + a field_75397_a + b field_75395_b + c field_75396_c + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +ru net/minecraft/entity/ai/EntityAIOpenDoor + g field_75361_i + h field_75360_j + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +rv net/minecraft/entity/ai/EntityAIPanic + a field_75265_b + b field_75267_a + c field_75266_c + d field_75263_d + e field_75264_e + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e +rw net/minecraft/entity/ai/EntityAIPlay + a field_75262_a + b field_75260_b + c field_75261_c + d field_75259_d + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +ry net/minecraft/entity/ai/EntityAILookIdle + a field_75258_a + b field_75256_b + c field_75257_c + d field_75255_d + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + e ()V func_75246_d +rz net/minecraft/entity/ai/EntityAIWander + a field_75457_a + b field_75455_b + c field_75456_c + d field_75453_d + e field_75454_e + f field_179481_f + g field_179482_g + a ()Z func_75250_a + b ()Z func_75253_b + b (I)V func_179479_b + c ()V func_75249_e + f ()V func_179480_f +s net/minecraft/command/CommandBlockData + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +sa net/minecraft/entity/ai/EntityAIArrowAttack + a field_75322_b + b field_82641_b + c field_75323_c + d field_75320_d + e field_75321_e + f field_75318_f + g field_96561_g + h field_75325_h + i field_96562_i + j field_82642_h + a ()Z func_75250_a + b ()Z func_75253_b + d ()V func_75251_c + e ()V func_75246_d +sb net/minecraft/entity/ai/EntityAIRestrictOpenDoor + a field_75275_a + b field_75274_b + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +sc net/minecraft/entity/ai/EntityAIRestrictSun + a field_75273_a + a ()Z func_75250_a + c ()V func_75249_e + d ()V func_75251_c +sd net/minecraft/entity/ai/EntityAIRunAroundLikeCrazy + a field_111180_a + b field_111178_b + c field_111179_c + d field_111176_d + e field_111177_e + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + e ()V func_75246_d +se net/minecraft/entity/ai/EntityAISit + a field_75272_a + b field_75271_b + a ()Z func_75250_a + a (Z)V func_75270_a + c ()V func_75249_e + d ()V func_75251_c +sf net/minecraft/entity/ai/EntityAICreeperSwell + a field_75269_a + b field_75268_b + a ()Z func_75250_a + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +sg net/minecraft/entity/ai/EntityAIFollowGolem + a field_75294_a + b field_75292_b + c field_75293_c + d field_75291_d + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +sh net/minecraft/entity/ai/EntityAITempt + a field_75284_a + b field_75282_b + c field_75283_c + d field_75280_d + e field_75281_e + f field_75278_f + g field_75279_g + h field_75289_h + i field_75290_i + j field_75287_j + k field_151484_k + l field_75285_l + m field_75286_m + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d + f ()Z func_75277_f +si net/minecraft/entity/ai/EntityAITradePlayer + a field_75276_a + a ()Z func_75250_a + c ()V func_75249_e + d ()V func_75251_c +sj net/minecraft/entity/ai/EntityAIVillagerInteract + e field_179478_e + f field_179477_f + c ()V func_75249_e + e ()V func_75246_d +sl net/minecraft/entity/ai/EntityAIDefendVillage + a field_75305_a + b field_75304_b + a ()Z func_75250_a + c ()V func_75249_e +sm net/minecraft/entity/ai/EntityAIHurtByTarget + a field_75312_a + b field_142052_b + c field_179447_c + a ()Z func_75250_a + a (Lpy;Lpr;)V func_179446_a + c ()V func_75249_e +sn net/minecraft/entity/ai/EntityAIFindEntityNearest + a field_179444_a + b field_179442_b + c field_179443_c + d field_179440_d + e field_179441_e + f field_179439_f + a ()Z func_75250_a + a (Lsn;)Lps; access$000 + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + f ()D func_179438_f +sn$1 net/minecraft/entity/ai/EntityAIFindEntityNearest$1 + a field_179877_a + a (Lpr;)Z apply + apply (Ljava/lang/Object;)Z apply +so net/minecraft/entity/ai/EntityAIFindEntityNearestPlayer + a field_179436_a + b field_179434_b + c field_179435_c + d field_179432_d + e field_179433_e + a ()Z func_75250_a + a (Lso;)Lps; access$000 + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + f ()D func_179431_f +so$1 net/minecraft/entity/ai/EntityAIFindEntityNearestPlayer$1 + a field_179881_a + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +sp net/minecraft/entity/ai/EntityAINearestAttackableTarget + a field_75307_b + b field_75306_g + c field_82643_g + d field_75309_a + g field_75308_c + a ()Z func_75250_a + c ()V func_75249_e +sp$1 net/minecraft/entity/ai/EntityAINearestAttackableTarget$1 + a field_111103_c + b field_111102_d + a (Lpr;)Z apply + apply (Ljava/lang/Object;)Z apply +sp$a net/minecraft/entity/ai/EntityAINearestAttackableTarget$Sorter + a field_75459_b + a (Lpk;Lpk;)I compare + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare +sq net/minecraft/entity/ai/EntityAITargetNonTamed + g field_75310_g + a ()Z func_75250_a +sr net/minecraft/entity/ai/EntityAIOwnerHurtByTarget + a field_75316_a + b field_75315_b + c field_142051_e + a ()Z func_75250_a + c ()V func_75249_e +ss net/minecraft/entity/ai/EntityAIOwnerHurtTarget + a field_75314_a + b field_75313_b + c field_142050_e + a ()Z func_75250_a + c ()V func_75249_e +st net/minecraft/entity/ai/EntityAITarget + a field_75303_a + b field_75301_b + c field_75302_c + d field_75298_g + e field_75299_d + f field_75297_f + a (Lpr;)Z func_75295_a + a (Lpr;Z)Z func_75296_a + a (Lps;Lpr;ZZ)Z func_179445_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + f ()D func_111175_f +sv net/minecraft/pathfinding/PathNavigateGround + a field_179695_a + f field_179694_f + a ()Lasy; func_179679_a + a (IIIIIILaui;DD)Z func_179683_a + a (Laui;Laui;III)Z func_75493_a + a (Z)V func_179690_a + b ()Z func_75485_k + b (IIIIIILaui;DD)Z func_179692_b + b (Z)V func_179688_b + c ()Laui; func_75502_i + c (Z)V func_179691_c + d ()V func_75487_m + d (Z)V func_179693_d + e ()Z func_179689_e + e (Z)V func_179685_e + g ()Z func_179686_g + h ()Z func_179684_h + p ()I func_179687_p +sw net/minecraft/pathfinding/PathNavigate + a field_75512_e + b field_75515_a + c field_75513_b + d field_75514_c + e field_75511_d + f field_75510_g + g field_75520_h + h field_75521_i + i field_179682_i + j field_179681_j + a ()Lasy; func_179679_a + a (D)V func_75489_a + a (DDD)Lasx; func_75488_a + a (DDDD)Z func_75492_a + a (F)V func_179678_a + a (Lasx;D)Z func_75484_a + a (Laui;)V func_179677_a + a (Laui;Laui;III)Z func_75493_a + a (Lcj;)Lasx; func_179680_a + a (Lpk;)Lasx; func_75494_a + a (Lpk;D)Z func_75497_a + b ()Z func_75485_k + c ()Laui; func_75502_i + d ()V func_75487_m + i ()F func_111269_d + j ()Lasx; func_75505_d + k ()V func_75501_e + l ()V func_75508_h + m ()Z func_75500_f + n ()V func_75499_g + o ()Z func_75506_l +sx net/minecraft/pathfinding/PathNavigateClimber + f field_179696_f + a (Lcj;)Lasx; func_179680_a + a (Lpk;)Lasx; func_75494_a + a (Lpk;D)Z func_75497_a + k ()V func_75501_e +sy net/minecraft/pathfinding/PathNavigateSwimmer + a ()Lasy; func_179679_a + a (Laui;Laui;III)Z func_75493_a + b ()Z func_75485_k + c ()Laui; func_75502_i + d ()V func_75487_m + l ()V func_75508_h +t net/minecraft/command/CommandClearInventory + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + d ()[Ljava/lang/String; func_147209_d +ta net/minecraft/entity/ai/EntitySenses + a field_75526_a + b field_75524_b + c field_75525_c + a ()V func_75523_a + a (Lpk;)Z func_75522_a +tc net/minecraft/entity/ai/RandomPositionGenerator + a field_75465_a + a (Lpy;II)Laui; func_75463_a + a (Lpy;IILaui;)Laui; func_75464_a + b (Lpy;IILaui;)Laui; func_75461_b + c (Lpy;IILaui;)Laui; func_75462_c +te net/minecraft/village/VillageDoorInfo + a field_179859_a + b field_179857_b + c field_179858_c + d field_75475_f + e field_75476_g + f field_75482_h + a ()V func_75466_d + a (I)V func_179849_a + a (II)Lcq; func_179854_a + a (Lcj;)I func_179848_a + a (Z)V func_179853_a + b ()V func_75470_e + b (III)I func_75474_b + b (Lcj;)I func_179846_b + c ()I func_75468_f + c (Lcj;)Z func_179850_c + d ()Lcj; func_179852_d + e ()Lcj; func_179856_e + f ()I func_179847_f + g ()I func_179855_g + h ()I func_75473_b + i ()Z func_179851_i +tf net/minecraft/village/Village + a field_75586_a + b field_75584_b + c field_75585_c + d field_75582_d + e field_75583_e + f field_75580_f + g field_75581_g + h field_75588_h + i field_82694_i + j field_82693_j + k field_75589_i + l field_75587_j + a ()Lcj; func_180608_a + a (I)V func_75560_a + a (Ladm;)V func_82691_a + a (Lcj;)Z func_179866_a + a (Lcj;III)Laui; func_179862_a + a (Lcj;Lcj;)Z func_179861_a + a (Ldn;)V func_82690_a + a (Ljava/lang/String;)I func_82684_a + a (Ljava/lang/String;I)I func_82688_a + a (Lpr;)V func_75575_a + a (Lte;)V func_75576_a + b ()I func_75568_b + b (I)V func_82683_b + b (Lcj;)Lte; func_179865_b + b (Ldn;)V func_82689_b + b (Lpr;)Lpr; func_75571_b + c ()I func_75567_c + c (Lcj;)Lte; func_179863_c + c (Lpr;)Lwn; func_82685_c + d ()I func_75561_d + d (Ljava/lang/String;)Z func_82687_d + e ()I func_75562_e + e (Lcj;)Lte; func_179864_e + f ()Ljava/util/List; func_75558_f + f (Lcj;)Z func_179860_f + g ()Z func_75566_g + h ()V func_82692_h + i ()Z func_82686_i + j ()V func_75579_h + k ()V func_75572_i + l ()V func_75565_j + m ()V func_75557_k + n ()V func_75573_l +tf$a net/minecraft/village/Village$VillageAggressor + a field_75592_a + b field_75590_b + c field_75591_c +tg net/minecraft/village/VillageSiege + a field_75537_a + b field_75535_b + c field_75536_c + d field_75533_d + e field_75534_e + f field_75531_f + g field_75532_g + h field_75538_h + i field_75539_i + a ()V func_75528_a + a (Lcj;)Laui; func_179867_a + b ()Z func_75529_b + c ()Z func_75530_c +th net/minecraft/village/VillageCollection + b field_75556_a + c field_75554_b + d field_75555_c + e field_75552_d + f field_75553_e + a ()V func_75544_a + a (Ladm;)V func_82566_a + a (Lanm;)Ljava/lang/String; func_176062_a + a (Lcj;)V func_176060_a + a (Lcj;I)Ltf; func_176056_a + a (Lcj;Lcq;I)I func_176061_a + a (Ldn;)V func_76184_a + b ()Ljava/util/List; func_75540_b + b (Lcj;)V func_180609_b + b (Ldn;)V func_76187_b + c (Lcj;)Lte; func_176055_c + d (Lcj;)V func_176059_d + e ()V func_75549_c + e (Lcj;)Z func_176057_e + f ()V func_75543_d + f (Lcj;)Z func_176058_f + g ()V func_75545_e +tj net/minecraft/entity/passive/EntityAmbientCreature + a (Lwn;)Z func_70085_c + cb ()Z func_110164_bC +tk net/minecraft/entity/passive/EntityBat + a field_82237_a + E ()V func_70619_bc + a (DZLafh;Lcj;)V func_180433_a + a (Ldn;)V func_70037_a + a (Ljava/util/Calendar;)Z func_175569_a + a (Low;F)Z func_70097_a + a (Z)V func_82236_f + aI ()Z func_145773_az + aS ()F func_70047_e + aX ()V func_110147_ax + ae ()Z func_70104_M + b (Ldn;)V func_70014_b + bB ()F func_70599_aP + bC ()F func_70647_i + bL ()V func_85033_bc + bR ()Z func_70601_bi + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + e (FF)V func_180430_e + h ()V func_70088_a + n ()Z func_82235_h + s (Lpk;)V func_82167_n + s_ ()Z func_70041_e_ + t_ ()V func_70071_h_ + z ()Ljava/lang/String; func_70639_aQ +tm net/minecraft/entity/passive/EntityAnimal + bm field_70881_d + bn field_175506_bl + bo field_146084_br + C ()Z func_70692_ba + E ()V func_70619_bc + a (B)V func_70103_a + a (Lcj;)F func_180484_a + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + a (Ltm;)Z func_70878_b + a (Lwn;)Z func_70085_c + a (Lwn;Lzx;)V func_175505_a + b (Ldn;)V func_70014_b + b (Lwn;)I func_70693_a + bR ()Z func_70601_bi + c (Lwn;)V func_146082_f + cq ()Lwn; func_146083_cb + cr ()Z func_70880_s + cs ()V func_70875_t + d (Lzx;)Z func_70877_b + m ()V func_70636_d + w ()I func_70627_aG +tn net/minecraft/entity/passive/EntityChicken + bm field_70886_e + bo field_70883_f + bp field_70884_g + bq field_70888_h + br field_70889_i + bs field_70887_j + bt field_152118_bv + A ()Lzw; func_146068_u + C ()Z func_70692_ba + a (Lcj;Lafh;)V func_180429_a + a (Ldn;)V func_70037_a + a (Lph;)Lph; func_90011_a + aS ()F func_70047_e + aX ()V func_110147_ax + al ()V func_70043_V + b (Ldn;)V func_70014_b + b (Lph;)Ltn; func_90011_a + b (Lwn;)I func_70693_a + b (ZI)V func_70628_a + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + cl ()Z func_152116_bZ + d (Lzx;)Z func_70877_b + e (FF)V func_180430_e + l (Z)V func_152117_i + m ()V func_70636_d + z ()Ljava/lang/String; func_70639_aQ +to net/minecraft/entity/passive/EntityCow + A ()Lzw; func_146068_u + a (Lcj;Lafh;)V func_180429_a + a (Lph;)Lph; func_90011_a + a (Lwn;)Z func_70085_c + aS ()F func_70047_e + aX ()V func_110147_ax + b (Lph;)Lto; func_90011_a + b (ZI)V func_70628_a + bB ()F func_70599_aP + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + z ()Ljava/lang/String; func_70639_aQ +tp net/minecraft/entity/passive/EntityHorse + bA field_110292_bC + bB field_110289_bD + bC field_110290_bE + bD field_110295_bF + bE field_110296_bG + bF field_110293_bH + bG field_110294_bI + bH field_110283_bJ + bI field_110284_bK + bJ field_110281_bL + bK field_110282_bM + bL field_110287_bN + bM field_110288_bO + bN field_110285_bP + bO field_110286_bQ + bP field_110280_bR + bQ field_175508_bO + bm field_110278_bp + bo field_110279_bq + bp field_110275_br + bq field_110274_bs + br field_110277_bt + bs field_110276_bu + bt field_110271_bv + bu field_110270_bw + bv field_110273_bx + bw field_110272_by + bx field_110268_bz + by field_110269_bA + bz field_110291_bB + A ()Lzw; func_146068_u + a (B)V func_70103_a + a (Lcj;Lafh;)V func_180429_a + a (Ldn;)V func_70037_a + a (Lok;Lpu;)Lpu; func_180482_a + a (Loq;)V func_76316_a + a (Low;)V func_70645_a + a (Low;F)Z func_70097_a + a (Lph;)Lph; func_90011_a + a (Lpk;D)Ltp; func_110250_a + a (Lpk;Lxj;)V func_110240_a + a (Ltm;)Z func_70878_b + a (Lwn;)Z func_70085_c + a (Lzw;)Z func_146085_a + a (Z)V func_98054_a + aS ()F func_70047_e + aX ()V func_110147_ax + ae ()Z func_70104_M + al ()V func_70043_V + b (Ldn;)V func_70014_b + b (Ljava/lang/String;)V func_152120_b + bB ()F func_70599_aP + bD ()Z func_70610_aX + bR ()Z func_70601_bi + bV ()I func_70641_bl + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + br ()I func_70658_aO + c (IZ)V func_110208_b + cA ()Z func_110205_ce + cB ()Z func_110243_cf + cC ()I func_110252_cg + cD ()Z func_110262_ch + cE ()V func_110224_ci + cF ()D func_110215_cj + cG ()Z func_110257_ck + cH ()Ljava/lang/String; func_110217_cl + cI ()I func_110218_cm + cJ ()Z func_110239_cn + cK ()Z func_175507_cI + cL ()Ljava/lang/String; func_110264_co + cM ()[Ljava/lang/String; func_110212_cp + cO ()Z func_110259_cr + cP ()Z func_110229_cs + cR ()Z func_110256_cu + cS ()Z func_110222_cv + cW ()V func_110231_cz + cX ()V func_110244_cA + cY ()V func_110266_cB + cZ ()I func_110225_cC + cb ()Z func_110164_bC + cl ()I func_110265_bP + cm ()I func_110202_bQ + cn ()Z func_110228_bR + co ()Z func_110248_bS + cp ()Z func_110253_bW + ct ()Ljava/lang/String; func_152119_ch + cu ()F func_110254_bY + cv ()Z func_110246_bZ + cw ()Z func_110261_ca + cx ()I func_110241_cb + cy ()Z func_110204_cc + cz ()Z func_110209_cd + d (ILzx;)Z func_174820_d + d (Lzx;)Z func_70877_b + da ()V func_110226_cD + db ()V func_110232_cE + dc ()V func_110230_cF + dd ()V func_110247_cG + de ()V func_110210_cH + df ()V func_110249_cI + dg ()Z func_110200_cJ + dh ()V func_110220_cK + di ()F func_110267_cL + dj ()D func_110245_cM + dk ()D func_110203_cN + e (FF)V func_180430_e + e (Lzx;)V func_146086_d + e_ ()Ljava/lang/String; func_70005_c_ + f (Lzx;)I func_110260_d + f (Z)V func_70019_c + g (FF)V func_70612_e + g (Lwn;)V func_110199_f + h ()V func_70088_a + h (Lwn;)Z func_110263_g + i (Lwn;)V func_110237_h + k_ ()Z func_70617_f_ + l (Z)V func_110234_j + m ()V func_70636_d + m (Z)V func_110255_k + n (Z)V func_110242_l + o (F)V func_142017_o + o (Z)V func_110207_m + p (F)F func_110258_o + p (Z)V func_110221_n + q (F)F func_110223_p + q (Z)V func_110251_o + r (F)F func_110201_q + r (I)V func_110214_p + r (Z)V func_110227_p + s (I)V func_110235_q + s (Z)V func_110219_q + t (I)V func_110238_s + t (Z)V func_110216_r + t_ ()V func_70071_h_ + u (I)I func_110198_t + v (I)V func_110206_u + w ()I func_70627_aG + w (I)Z func_110233_w + z ()Ljava/lang/String; func_70639_aQ +tp$1 net/minecraft/entity/passive/EntityHorse$1 + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +tp$a net/minecraft/entity/passive/EntityHorse$GroupData + a field_111107_a + b field_111106_b +tq net/minecraft/entity/monster/EntityGolem + C ()Z func_70692_ba + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + e (FF)V func_180430_e + w ()I func_70627_aG + z ()Ljava/lang/String; func_70639_aQ +tr net/minecraft/entity/passive/EntityMooshroom + a (Lph;)Lph; func_90011_a + a (Lwn;)Z func_70085_c + b (Lph;)Lto; func_90011_a + c (Lph;)Ltr; func_90011_a +ts net/minecraft/entity/passive/EntityOcelot + bo field_175545_bm + bp field_70914_e + A ()Lzw; func_146068_u + C ()Z func_70692_ba + E ()V func_70619_bc + a (Ldn;)V func_70037_a + a (Lok;Lpu;)Lpu; func_180482_a + a (Low;F)Z func_70097_a + a (Lph;)Lph; func_90011_a + a (Ltm;)Z func_70878_b + a (Lwn;)Z func_70085_c + aX ()V func_110147_ax + b (Ldn;)V func_70014_b + b (Lph;)Lts; func_90011_a + b (ZI)V func_70628_a + bB ()F func_70599_aP + bR ()Z func_70601_bi + bS ()Z func_70058_J + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + cm ()V func_175544_ck + ct ()I func_70913_u + d (Lzx;)Z func_70877_b + e (FF)V func_180430_e + e_ ()Ljava/lang/String; func_70005_c_ + h ()V func_70088_a + m (Z)V func_70903_f + r (I)V func_70912_b + r (Lpk;)Z func_70652_k + z ()Ljava/lang/String; func_70639_aQ +tt net/minecraft/entity/passive/EntityPig + bm field_82184_d + A ()Lzw; func_146068_u + a (Lcj;Lafh;)V func_180429_a + a (Ldn;)V func_70037_a + a (Lph;)Lph; func_90011_a + a (Luv;)V func_70077_a + a (Lwn;)Z func_70085_c + aX ()V func_110147_ax + b (Ldn;)V func_70014_b + b (Lph;)Ltt; func_90011_a + b (ZI)V func_70628_a + bW ()Z func_82171_bF + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + cl ()Z func_70901_n + cm ()Lqw; func_82183_n + d (Lzx;)Z func_70877_b + e (FF)V func_180430_e + h ()V func_70088_a + l (Z)V func_70900_e + z ()Ljava/lang/String; func_70639_aQ +tu net/minecraft/entity/passive/EntityRabbit + bm field_175539_bk + bo field_175540_bm + bp field_175535_bn + bq field_175536_bo + br field_175537_bp + bs field_175538_bq + bt field_175542_br + bu field_175541_bs + bv field_175543_bt + E ()V func_70619_bc + Y ()V func_174830_Y + a (B)V func_70103_a + a (DD)V func_175533_a + a (Ldn;)V func_70037_a + a (Lok;Lpu;)Lpu; func_180482_a + a (Low;F)Z func_70097_a + a (Lph;)Lph; func_90011_a + a (Ltu$b;)V func_175522_a + a (Ltu;)Z access$000 + a (Lzw;)Z func_175525_a + a (ZLtu$b;)V func_175519_a + aX ()V func_110147_ax + b (D)V func_175515_b + b (Ldn;)V func_70014_b + b (Lph;)Ltu; func_90011_a + b (Ltu$b;)V func_175524_b + b (ZI)V func_70628_a + bE ()F func_175134_bD + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + bq ()V func_82164_bB + br ()I func_70658_aO + cl ()Z func_175523_cj + cm ()Ljava/lang/String; func_175516_ck + cn ()I func_175531_cl + co ()I func_175532_cm + cp ()V func_175528_cn + ct ()V func_175518_cr + cu ()V func_175520_cs + cv ()V func_175530_ct + cw ()V func_175517_cu + cx ()Z func_175534_cv + d (Lzx;)Z func_70877_b + h ()V func_70088_a + m ()V func_70636_d + p (F)F func_175521_o + r (I)V func_175529_r + r (Lpk;)Z func_70652_k + z ()Ljava/lang/String; func_70639_aQ +tu$a net/minecraft/entity/passive/EntityRabbit$AIEvilAttack + a (Lpr;)D func_179512_a +tu$b net/minecraft/entity/passive/EntityRabbit$EnumMoveType + a NONE + b HOP + c STEP + d SPRINT + e ATTACK + f field_180076_f + g field_180077_g + h field_180084_h + i field_180085_i + j $VALUES + a ()F func_180072_a + b ()F func_180074_b + c ()I func_180075_c + d ()I func_180073_d + values ()[Ltu$b; values +tu$c net/minecraft/entity/passive/EntityRabbit$AIAvoidEntity + c field_179511_d + e ()V func_75246_d +tu$d net/minecraft/entity/passive/EntityRabbit$RabbitTypeData + a field_179427_a +tu$e net/minecraft/entity/passive/EntityRabbit$RabbitJumpHelper + b field_180069_b + c field_180070_c + d field_180068_d + a (Z)V func_180066_a + b ()V func_75661_b + c ()Z func_180067_c + d ()Z func_180065_d +tu$f net/minecraft/entity/passive/EntityRabbit$RabbitMoveHelper + g field_179929_g + c ()V func_75641_c +tu$g net/minecraft/entity/passive/EntityRabbit$AIPanic + b field_179486_b + e ()V func_75246_d +tu$h net/minecraft/entity/passive/EntityRabbit$AIRaidFarm + c field_179500_c + d field_179498_d + e field_179499_e + a ()Z func_75250_a + a (Ladm;Lcj;)Z func_179488_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +tv net/minecraft/entity/passive/EntitySheep + bm field_90016_e + bo field_175514_bm + bp field_70899_e + bq field_146087_bs + A ()Lzw; func_146068_u + E ()V func_70619_bc + a (B)V func_70103_a + a (Lcj;Lafh;)V func_180429_a + a (Ldn;)V func_70037_a + a (Ljava/util/Random;)Lzd; func_175510_a + a (Lok;Lpu;)Lpu; func_180482_a + a (Lph;)Lph; func_90011_a + a (Ltm;Ltm;)Lzd; func_175511_a + a (Lwn;)Z func_70085_c + a (Lzd;)[F func_175513_a + aS ()F func_70047_e + aX ()V func_110147_ax + b (Ldn;)V func_70014_b + b (Lph;)Ltv; func_90011_a + b (Lzd;)V func_175512_b + b (ZI)V func_70628_a + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + cl ()Lzd; func_175509_cj + cm ()Z func_70892_o + h ()V func_70088_a + l (Z)V func_70893_e + m ()V func_70636_d + p (F)F func_70894_j + q (F)F func_70890_k + v ()V func_70615_aA + z ()Ljava/lang/String; func_70639_aQ +tv$1 net/minecraft/entity/passive/EntitySheep$1 + a field_90034_a + a (Lwn;)Z func_75145_c +tw net/minecraft/entity/monster/EntitySnowman + A ()Lzw; func_146068_u + a (Lpr;F)V func_82196_d + aS ()F func_70047_e + aX ()V func_110147_ax + b (ZI)V func_70628_a + m ()V func_70636_d +tx net/minecraft/entity/passive/EntitySquid + a field_70861_d + b field_70862_e + bk field_70860_g + bl field_70867_h + bm field_70868_i + bn field_70866_j + bo field_70865_by + bp field_70863_bz + bq field_70864_bA + br field_70871_bB + bs field_70872_bC + bt field_70869_bD + bu field_70870_bE + c field_70859_f + A ()Lzw; func_146068_u + V ()Z func_70090_H + a (B)V func_70103_a + a (Ltx;)Z access$000 + aS ()F func_70047_e + aX ()V func_110147_ax + b (FFF)V func_175568_b + b (ZI)V func_70628_a + bB ()F func_70599_aP + bR ()Z func_70601_bi + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + g (FF)V func_70612_e + m ()V func_70636_d + n ()Z func_175567_n + s_ ()Z func_70041_e_ + z ()Ljava/lang/String; func_70639_aQ +tx$a net/minecraft/entity/passive/EntitySquid$AIMoveRandom + a field_179476_a + a ()Z func_75250_a + e ()V func_75246_d +ty net/minecraft/entity/monster/EntityIronGolem + a field_70857_d + b field_70858_e + bm field_70856_g + c field_70855_f + E ()V func_70619_bc + a (B)V func_70103_a + a (Lcj;Lafh;)V func_180429_a + a (Ldn;)V func_70037_a + a (Ljava/lang/Class;)Z func_70686_a + a (Low;)V func_70645_a + a (Z)V func_70851_e + aX ()V func_110147_ax + b (Ldn;)V func_70014_b + b (ZI)V func_70628_a + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + cl ()I func_70854_o + cm ()I func_70853_p + cn ()Z func_70850_q + h ()V func_70088_a + j (I)I func_70682_h + l (Z)V func_70849_f + m ()V func_70636_d + n ()Ltf; func_70852_n + r (Lpk;)Z func_70652_k + s (Lpk;)V func_82167_n +ty$a net/minecraft/entity/monster/EntityIronGolem$AINearestAttackableTargetNonCreeper + a (Lty$a;)D access$000 + a (Lty$a;Lpr;Z)Z access$100 +ty$a$1 net/minecraft/entity/monster/EntityIronGolem$AINearestAttackableTargetNonCreeper$1 + a field_180099_a + b field_180097_b + c field_180098_c + a (Lpr;)Z apply + apply (Ljava/lang/Object;)Z apply +tz net/minecraft/entity/passive/EntityWaterMob + C ()Z func_70692_ba + K ()V func_70030_z + aL ()Z func_96092_aw + aY ()Z func_70648_aU + b (Lwn;)I func_70693_a + bR ()Z func_70601_bi + bS ()Z func_70058_J + w ()I func_70627_aG +u net/minecraft/command/CommandClone + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +u$a net/minecraft/command/CommandClone$StaticCloneData + a field_179537_a + b field_179535_b + c field_179536_c +ua net/minecraft/entity/passive/EntityWolf + bo field_70926_e + bp field_70924_f + bq field_70925_g + br field_70928_h + bs field_70929_i + bt field_70927_j + A ()Lzw; func_146068_u + C ()Z func_70692_ba + E ()V func_70619_bc + a (B)V func_70103_a + a (Lcj;Lafh;)V func_180429_a + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + a (Lph;)Lph; func_90011_a + a (Lpr;Lpr;)Z func_142018_a + a (Ltm;)Z func_70878_b + a (Lwn;)Z func_70085_c + a (Lzd;)V func_175547_a + aS ()F func_70047_e + aX ()V func_110147_ax + b (Ldn;)V func_70014_b + b (Lph;)Lua; func_90011_a + bB ()F func_70599_aP + bQ ()I func_70646_bf + bV ()I func_70641_bl + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + cb ()Z func_110164_bC + ct ()Z func_70921_u + cu ()F func_70920_v + cv ()Z func_70919_bu + cw ()Lzd; func_175546_cu + cx ()Z func_70922_bv + d (Lpr;)V func_70624_b + d (Lzx;)Z func_70877_b + h ()V func_70088_a + i (FF)F func_70923_f + m ()V func_70636_d + m (Z)V func_70903_f + o (Z)V func_70916_h + p (F)F func_70915_j + p (Z)V func_70918_i + q (F)F func_70917_k + r (Lpk;)Z func_70652_k + t_ ()V func_70071_h_ + z ()Ljava/lang/String; func_70639_aQ +ua$1 net/minecraft/entity/passive/EntityWolf$1 + a field_180095_a + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +uc net/minecraft/entity/boss/IBossDisplayData + bn ()F func_110143_aJ + bu ()F func_110138_aP + f_ ()Leu; func_145748_c_ +ud net/minecraft/entity/IEntityMultiPart + a ()Ladm; func_82194_d + a (Lue;Low;F)Z func_70965_a +ue net/minecraft/entity/boss/EntityDragonPart + a field_70259_a + b field_146032_b + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + ad ()Z func_70067_L + b (Ldn;)V func_70014_b + h ()V func_70088_a + k (Lpk;)Z func_70028_i +uf net/minecraft/entity/item/EntityEnderCrystal + a field_70261_a + b field_70260_b + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + ad ()Z func_70067_L + b (Ldn;)V func_70014_b + h ()V func_70088_a + s_ ()Z func_70041_e_ + t_ ()V func_70071_h_ +ug net/minecraft/entity/boss/EntityDragon + a field_70980_b + b field_70981_c + bA field_70993_bI + bk field_70979_e + bl field_70976_f + bm field_70977_g + bn field_70986_h + bo field_70987_i + bp field_70985_j + bq field_70984_by + br field_70982_bz + bs field_70983_bA + bt field_70990_bB + bu field_70991_bC + bv field_70988_bD + bw field_70989_bE + bx field_70994_bF + by field_70995_bG + bz field_70992_bH + c field_70978_d + D ()V func_70623_bb + G ()V func_174812_G + a ()Ladm; func_82194_d + a (Lcj;)V func_175499_a + a (Ljava/util/List;)V func_70970_a + a (Low;F)Z func_70097_a + a (Lue;Low;F)Z func_70965_a + aB ()[Lpk; func_70021_al + aX ()V func_110147_ax + aZ ()V func_70609_aI + ad ()Z func_70067_L + b (D)F func_70973_b + b (IF)[D func_70974_a + b (Laug;)Z func_70972_a + b (Ljava/util/List;)V func_70971_b + bB ()F func_70599_aP + bo ()Ljava/lang/String; func_70621_aR + cf ()V func_70967_k + e (Low;F)Z func_82195_e + h ()V func_70088_a + m ()V func_70636_d + n ()V func_70969_j + z ()Ljava/lang/String; func_70639_aQ +uk net/minecraft/entity/boss/EntityWither + a field_82220_d + b field_82221_e + bm field_82218_g + bn field_82223_h + bo field_82224_i + bp field_82222_j + bq field_82219_bJ + c field_82217_f + D ()V func_70623_bb + E ()V func_70619_bc + a (I)F func_82207_a + a (IDDDZ)V func_82209_a + a (ILpr;)V func_82216_a + a (Lafh;)Z func_181033_a + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + a (Lpk;)V func_70078_a + a (Lpr;F)V func_82196_d + aA ()V func_70110_aj + aX ()V func_110147_ax + b (F)I func_70070_b + b (FFF)F func_82204_b + b (I)F func_82210_r + b (II)V func_82211_c + b (Ldn;)V func_70014_b + b (ZI)V func_70628_a + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + br ()I func_70658_aO + bz ()Lpw; func_70668_bt + c (Lpf;)V func_70690_d + cl ()I func_82212_n + cm ()Z func_82205_o + e (FF)V func_180430_e + h ()V func_70088_a + m ()V func_70636_d + n ()V func_82206_m + r (I)V func_82215_s + s (I)I func_82203_t + t (I)D func_82214_u + u (I)D func_82208_v + v (I)D func_82213_w + z ()Ljava/lang/String; func_70639_aQ +uk$1 net/minecraft/entity/boss/EntityWither$1 + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +um net/minecraft/entity/item/EntityArmorStand + a field_175435_a + b field_175433_b + bi field_175442_bg + bj field_181028_bj + bk field_175443_bh + bl field_175444_bi + bm field_175438_bj + bn field_175439_bk + bo field_175440_bl + bp field_175441_bm + c field_175434_c + d field_175431_d + e field_175432_e + f field_175429_f + g field_175430_g + h field_175436_h + i field_175437_i + A ()V func_175412_z + B ()V func_175135_B + C ()V func_175421_A + D ()V func_175409_C + G ()V func_174812_G + a (D)Z func_70112_a + a (F)V func_175406_a + a (Ldc;)V func_175415_a + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + a (Lwn;I)V func_175422_a + a (Lwn;Laui;)Z func_174825_a + a (Z)V func_181550_a + aS ()F func_70047_e + aW ()Z func_180427_aV + ad ()Z func_70067_L + ae ()Z func_70104_M + as ()[Lzx; func_70035_c + b (Ldc;)V func_175424_b + b (Ldn;)V func_70014_b + bA ()Lzx; func_70694_bm + bL ()V func_85033_bc + bM ()Z func_70613_aW + c (ILzx;)V func_70062_b + c (Ldc;)V func_175405_c + d (ILzx;)Z func_174820_d + d (Ldc;)V func_175428_d + e (Ldc;)V func_175417_e + e (Z)V func_82142_c + f (Ldc;)V func_175427_f + g (FF)V func_70612_e + h ()V func_70088_a + h (FF)F func_110146_f + h (Ldn;)V func_175416_h + j (Z)V func_175420_a + j_ ()Z func_70631_g_ + k (Z)V func_175425_j + l (Z)V func_175413_k + m (Z)V func_175426_l + n ()Z func_175410_n + n (Z)V func_181027_m + p ()Z func_175423_p + p (I)Lzx; func_71124_b + q ()Z func_175402_q + q (I)Lzx; func_82169_q + r ()Z func_175414_r + s ()Z func_181026_s + s (Lpk;)V func_82167_n + t ()Ldc; func_175418_s + t_ ()V func_70071_h_ + u ()Ldc; func_175408_t + v ()Ldc; func_175404_u + w ()Ldc; func_175411_v + x ()Ldc; func_175403_w + y ()Ldc; func_175407_x + z ()Ldn; func_175419_y +un net/minecraft/entity/EntityHanging + a field_174861_a + b field_174860_b + c field_70520_f + a (I)D func_174858_a + a (Lcq;)V func_174859_a + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + aP ()Lcq; func_174811_aO + ad ()Z func_70067_L + af ()Z func_142008_O + b (DDD)V func_70107_b + b (Ldn;)V func_70014_b + b (Lpk;)V func_110128_b + d (DDD)V func_70091_d + g (DDD)V func_70024_g + h ()V func_70088_a + j ()Z func_70518_d + l ()I func_82329_d + l (Lpk;)Z func_85031_j + m ()I func_82330_g + n ()Lcj; func_174857_n + o ()V func_174856_o + t_ ()V func_70071_h_ +uo net/minecraft/entity/item/EntityItemFrame + c field_82337_e + a (D)Z func_70112_a + a (I)V func_82336_g + a (IZ)V func_174865_a + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + a (Lpk;Z)V func_146065_b + a (Lzx;)V func_82334_a + a (Lzx;Z)V func_174864_a + ao ()F func_70111_Y + b (Ldn;)V func_70014_b + b (Lpk;)V func_110128_b + b (Lzx;)V func_110131_b + e (Lwn;)Z func_130002_c + h ()V func_70088_a + l ()I func_82329_d + m ()I func_82330_g + o ()Lzx; func_82335_i + p ()I func_82333_j + q ()I func_174866_q +up net/minecraft/entity/EntityLeashKnot + a (D)Z func_70112_a + a (Ladm;Lcj;)Lup; func_174862_a + a (Lcq;)V func_174859_a + a (Ldn;)V func_70037_a + aS ()F func_70047_e + b (Ladm;Lcj;)Lup; func_174863_b + b (Ldn;)V func_70014_b + b (Lpk;)V func_110128_b + d (Ldn;)Z func_70039_c + e (Lwn;)Z func_130002_c + h ()V func_70088_a + j ()Z func_70518_d + l ()I func_82329_d + m ()I func_82330_g +uq net/minecraft/entity/item/EntityPainting + c field_70522_e + a (DDDFFIZ)V func_180426_a + a (Ldn;)V func_70037_a + b (DDDFF)V func_70012_b + b (Ldn;)V func_70014_b + b (Lpk;)V func_110128_b + l ()I func_82329_d + m ()I func_82330_g +uq$a net/minecraft/entity/item/EntityPainting$EnumArt + A field_180001_A + B field_75702_A + C field_75703_B + D field_75704_C + E field_75699_D + F field_75700_E + G $VALUES + a KEBAB + b AZTEC + c ALBAN + d AZTEC_2 + e BOMB + f PLANT + g WASTELAND + h POOL + i COURBET + j SEA + k SUNSET + l CREEBET + m WANDERER + n GRAHAM + o MATCH + p BUST + q STAGE + r VOID + s SKULL_AND_ROSES + t WITHER + u FIGHTERS + v POINTER + w PIGSCENE + x BURNING_SKULL + y SKELETON + z DONKEY_KONG + valueOf (Ljava/lang/String;)Luq$a; valueOf + values ()[Luq$a; values +ur net/minecraft/entity/projectile/EntityFishHook + a field_146044_a + aA field_146056_aC + aB field_146057_aD + aC field_146058_aE + aD field_146059_aF + aE field_146060_aG + aF field_146061_aH + aG field_146052_aI + aH field_146053_aJ + ar field_146046_j + as field_146051_au + at field_146049_av + au field_146047_aw + av field_146045_ax + aw field_146040_ay + ax field_146038_az + ay field_146054_aA + az field_146055_aB + b field_146042_b + c field_146043_c + d field_146039_d + e field_146041_e + f field_146036_f + g field_146037_g + h field_146048_h + i field_146050_i + J ()V func_70106_y + a (D)Z func_70112_a + a (DDDFFIZ)V func_180426_a + a (Ldn;)V func_70037_a + b (Ldn;)V func_70014_b + c (DDDFF)V func_146035_c + h ()V func_70088_a + i (DDD)V func_70016_h + j ()Ljava/util/List; func_174855_j + l ()I func_146034_e + m ()Lzx; func_146033_f + t_ ()V func_70071_h_ +us net/minecraft/util/WeightedRandomFishable + b field_150711_b + c field_150712_c + d field_150710_d + a ()Lus; func_150707_a + a (F)Lus; func_150709_a + a (Ljava/util/Random;)Lzx; func_150708_a +uu net/minecraft/entity/effect/EntityWeatherEffect +uv net/minecraft/entity/effect/EntityLightningBolt + a field_70264_a + b field_70262_b + c field_70263_c + a (Ldn;)V func_70037_a + b (Ldn;)V func_70014_b + h ()V func_70088_a + t_ ()V func_70071_h_ +ux net/minecraft/entity/item/EntityBoat + a field_70279_a + ar field_70280_j + as field_70278_an + b field_70276_b + c field_70277_c + d field_70274_d + e field_70275_e + f field_70272_f + g field_70273_g + h field_70281_h + i field_70282_i + S ()Laug; func_70046_E + a (DDDFFIZ)V func_180426_a + a (DZLafh;Lcj;)V func_180433_a + a (F)V func_70266_a + a (I)V func_70265_b + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + a (Z)V func_70270_d + ad ()Z func_70067_L + ae ()Z func_70104_M + al ()V func_70043_V + an ()D func_70042_X + ar ()V func_70057_ab + b (I)V func_70269_c + b (Ldn;)V func_70014_b + e (Lwn;)Z func_130002_c + h ()V func_70088_a + i (DDD)V func_70016_h + j ()F func_70271_g + j (Lpk;)Laug; func_70114_g + l ()I func_70268_h + m ()I func_70267_i + s_ ()Z func_70041_e_ + t_ ()V func_70071_h_ +uy net/minecraft/entity/item/EntityFallingBlock + a field_145812_b + b field_145813_c + c field_145810_d + d field_175132_d + e field_145808_f + f field_145809_g + g field_145815_h + h field_145816_i + a (Lc;)V func_85029_a + a (Ldn;)V func_70037_a + a (Z)V func_145806_a + aJ ()Z func_90999_ad + ad ()Z func_70067_L + b (Ldn;)V func_70014_b + e (FF)V func_180430_e + h ()V func_70088_a + j ()Ladm; func_145807_e + l ()Lalz; func_175131_l + s_ ()Z func_70041_e_ + t_ ()V func_70071_h_ +uz net/minecraft/entity/item/EntityItem + a field_70290_d + b field_145803_d + c field_70292_b + d field_145804_b + e field_70291_e + f field_145801_f + g field_145802_g + W ()Z func_70072_I + a (I)V func_174867_a + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + a (Luz;)Z func_70289_a + a (Lzx;)V func_92058_a + aD ()Z func_70075_an + b (Ldn;)V func_70014_b + b (Ljava/lang/String;)V func_145797_a + c (I)V func_71027_c + c (Ljava/lang/String;)V func_145799_b + d (Lwn;)V func_70100_b_ + e_ ()Ljava/lang/String; func_70005_c_ + f (I)V func_70081_e + h ()V func_70088_a + j ()V func_70288_d + l ()Lzx; func_92059_d + m ()Ljava/lang/String; func_145798_i + n ()Ljava/lang/String; func_145800_j + o ()I func_174872_o + p ()V func_174869_p + q ()V func_174868_q + r ()V func_174871_r + s ()Z func_174874_s + s_ ()Z func_70041_e_ + t_ ()V func_70071_h_ + u ()V func_174873_u + v ()V func_174870_v + w ()V func_85054_d +v net/minecraft/command/CommandCompare + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +va net/minecraft/entity/item/EntityMinecart + a field_70499_f + ar field_70508_aq + as field_70507_ar + at field_70506_as + b field_94102_c + c field_70500_g + d field_70510_h + e field_70511_i + f field_70509_j + g field_70514_an + h field_70512_ao + i field_70513_ap + J ()V func_70106_y + S ()Laug; func_70046_E + a (DDDD)Laui; func_70495_a + a (DDDFFIZ)V func_180426_a + a (F)V func_70492_c + a (IIIZ)V func_96095_a + a (Ladm;DDDLva$a;)Lva; func_180458_a + a (Lalz;)V func_174899_a + a (Lcj;Lalz;)V func_180460_a + a (Ldn;)V func_70037_a + a (Ljava/lang/String;)V func_96094_a + a (Low;)V func_94095_a + a (Low;F)Z func_70097_a + a (Z)V func_94096_e + aM ()Ljava/lang/String; func_95999_t + ad ()Z func_70067_L + ae ()Z func_70104_M + an ()D func_70042_X + ar ()V func_70057_ab + b (DDD)V func_70107_b + b (Ldn;)V func_70014_b + e_ ()Ljava/lang/String; func_70005_c_ + f_ ()Leu; func_145748_c_ + h ()V func_70088_a + i (DDD)V func_70016_h + i (Lpk;)V func_70108_f + j (I)V func_70497_h + j (Lpk;)Laug; func_70114_g + k (DDD)Laui; func_70489_a + k (I)V func_70494_i + l (I)V func_94086_l + l_ ()Z func_145818_k_ + m ()D func_174898_m + n ()V func_180459_n + o ()V func_94101_h + p ()F func_70491_i + q ()I func_70496_j + r ()I func_70493_k + s ()Lva$a; func_180456_s + s_ ()Z func_70041_e_ + t ()Lalz; func_174897_t + t_ ()V func_70071_h_ + u ()Lalz; func_180457_u + v ()I func_94099_q + w ()I func_94085_r + x ()Z func_94100_s +va$1 net/minecraft/entity/item/EntityMinecart$1 + a field_180037_a + b field_180036_b +va$a net/minecraft/entity/item/EntityMinecart$EnumMinecartType + a RIDEABLE + b CHEST + c FURNACE + d TNT + e SPAWNER + f HOPPER + g COMMAND_BLOCK + h field_180051_h + i field_180052_i + j field_180049_j + k $VALUES + a ()I func_180039_a + a (I)Lva$a; func_180038_a + b ()Ljava/lang/String; func_180040_b + values ()[Lva$a; values +vb net/minecraft/entity/item/EntityMinecartChest + a (Low;)V func_94095_a + a (Lwm;Lwn;)Lxi; func_174876_a + k ()Ljava/lang/String; func_174875_k + o_ ()I func_70302_i_ + s ()Lva$a; func_180456_s + u ()Lalz; func_180457_u + w ()I func_94085_r +vc net/minecraft/entity/EntityMinecartCommandBlock + a field_145824_a + b field_145823_b + a (IIIZ)V func_96095_a + a (Ldn;)V func_70037_a + b (Ldn;)V func_70014_b + e (Lwn;)Z func_130002_c + h ()V func_70088_a + i (I)V func_145781_i + j ()Ladc; func_145822_e + s ()Lva$a; func_180456_s + u ()Lalz; func_180457_u +vc$1 net/minecraft/entity/EntityMinecartCommandBlock$1 + a field_145768_a + a (Lio/netty/buffer/ByteBuf;)V func_145757_a + c ()Lcj; func_180425_c + d ()Laui; func_174791_d + e ()Ladm; func_130014_f_ + f ()Lpk; func_174793_f + h ()V func_145756_e + i ()I func_145751_f +vd net/minecraft/entity/item/EntityMinecartContainer + a field_94113_a + b field_94112_b + J ()V func_70106_y + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (Ldn;)V func_70037_a + a (Lon;)V func_174892_a + a (Low;)V func_94095_a + a (Lwn;)Z func_70300_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (Ldn;)V func_70014_b + b (Lwn;)V func_174889_b + c (I)V func_71027_c + c (Lwn;)V func_174886_c + e (Lwn;)Z func_130002_c + e_ ()Ljava/lang/String; func_70005_c_ + g ()I func_174890_g + i ()Lon; func_174891_i + l ()V func_174888_l + o ()V func_94101_h + p_ ()V func_70296_d + q_ ()I func_70297_j_ + r_ ()Z func_174893_q_ +ve net/minecraft/entity/item/EntityMinecartFurnace + a field_94111_a + b field_94109_b + c field_94110_c + a (Lcj;Lalz;)V func_180460_a + a (Ldn;)V func_70037_a + a (Low;)V func_94095_a + b (Ldn;)V func_70014_b + e (Lwn;)Z func_130002_c + h ()V func_70088_a + i (Z)V func_94107_f + j ()Z func_94108_c + m ()D func_174898_m + o ()V func_94101_h + s ()Lva$a; func_180456_s + t_ ()V func_70071_h_ + u ()Lalz; func_180457_u +vf net/minecraft/entity/item/EntityMinecartHopper + a field_96113_a + b field_98044_b + c field_174900_c + A ()D func_96107_aA + B ()D func_96109_aB + C ()D func_96108_aC + D ()Z func_96112_aD + E ()Z func_98043_aE + a (IIIZ)V func_96095_a + a (Ldn;)V func_70037_a + a (Low;)V func_94095_a + a (Lwm;Lwn;)Lxi; func_174876_a + b (Ldn;)V func_70014_b + e (Lwn;)Z func_130002_c + i (Z)V func_96110_f + k ()Ljava/lang/String; func_174875_k + m (I)V func_98042_n + o_ ()I func_70302_i_ + s ()Lva$a; func_180456_s + t_ ()V func_70071_h_ + u ()Lalz; func_180457_u + w ()I func_94085_r + y ()Z func_96111_ay + z ()Ladm; func_145831_w +vg net/minecraft/entity/item/EntityMinecartEmpty + a (IIIZ)V func_96095_a + e (Lwn;)Z func_130002_c + s ()Lva$a; func_180456_s +vh net/minecraft/entity/ai/EntityMinecartMobSpawner + a field_98040_a + a (B)V func_70103_a + a (Ldn;)V func_70037_a + b (Ldn;)V func_70014_b + j ()Ladd; func_98039_d + s ()Lva$a; func_180456_s + t_ ()V func_70071_h_ + u ()Lalz; func_180457_u +vh$1 net/minecraft/entity/ai/EntityMinecartMobSpawner$1 + a field_98296_a + a ()Ladm; func_98271_a + a (I)V func_98267_a + b ()Lcj; func_177221_b +vi net/minecraft/entity/item/EntityMinecartTNT + a field_94106_a + a (B)V func_70103_a + a (IIIZ)V func_96095_a + a (Ladi;Ladm;Lcj;Lalz;)F func_180428_a + a (Ladi;Ladm;Lcj;Lalz;F)Z func_174816_a + a (Ldn;)V func_70037_a + a (Low;)V func_94095_a + a (Low;F)Z func_70097_a + b (D)V func_94103_c + b (Ldn;)V func_70014_b + e (FF)V func_180430_e + j ()V func_94105_c + l ()I func_94104_d + s ()Lva$a; func_180456_s + t_ ()V func_70071_h_ + u ()Lalz; func_180457_u + y ()Z func_96096_ay +vj net/minecraft/entity/item/EntityTNTPrimed + a field_70516_a + b field_94084_b + a (Ldn;)V func_70037_a + aS ()F func_70047_e + ad ()Z func_70067_L + b (Ldn;)V func_70014_b + h ()V func_70088_a + j ()Lpr; func_94083_c + l ()V func_70515_d + s_ ()Z func_70041_e_ + t_ ()V func_70071_h_ +vl net/minecraft/entity/monster/EntityBlaze + a field_70847_d + b field_70848_e + A ()Lzw; func_146068_u + E ()V func_70619_bc + a (Z)V func_70844_e + aX ()V func_110147_ax + at ()Z func_70027_ad + b (F)I func_70070_b + b (ZI)V func_70628_a + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + c (F)F func_70013_c + e (FF)V func_180430_e + h ()V func_70088_a + m ()V func_70636_d + n ()Z func_70845_n + n_ ()Z func_70814_o + z ()Ljava/lang/String; func_70639_aQ +vl$a net/minecraft/entity/monster/EntityBlaze$AIFireballAttack + a field_179469_a + b field_179467_b + c field_179468_c + a ()Z func_75250_a + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +vm net/minecraft/entity/monster/EntityCaveSpider + a (Lok;Lpu;)Lpu; func_180482_a + aS ()F func_70047_e + aX ()V func_110147_ax + r (Lpk;)Z func_70652_k +vn net/minecraft/entity/monster/EntityCreeper + a field_70834_e + b field_70833_d + bm field_82226_g + bn field_175494_bm + c field_82225_f + A ()Lzw; func_146068_u + a (F)F func_70831_j + a (I)V func_70829_a + a (Ldn;)V func_70037_a + a (Low;)V func_70645_a + a (Luv;)V func_70077_a + a (Lwn;)Z func_70085_c + aE ()I func_82143_as + aX ()V func_110147_ax + b (Ldn;)V func_70014_b + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + cm ()I func_70832_p + cn ()Z func_146078_ca + co ()V func_146079_cb + cp ()Z func_70650_aV + cq ()V func_175493_co + cr ()V func_146077_cc + e (FF)V func_180430_e + h ()V func_70088_a + n ()Z func_70830_n + r (Lpk;)Z func_70652_k + t_ ()V func_70071_h_ +vo net/minecraft/entity/monster/EntityEnderman + a field_110192_bp + b field_110193_bq + bm field_104003_g + c field_70827_d + A ()Lzw; func_146068_u + E ()V func_70619_bc + a (Lalz;)V func_175490_a + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + a (Lvo;Lwn;)Z access$100 + a (Lvo;Z)Z access$202 + a (Z)V func_70819_e + aS ()F func_70047_e + aX ()V func_110147_ax + b (Ldn;)V func_70014_b + b (Lpk;)Z func_70816_c + b (ZI)V func_70628_a + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + c (Lwn;)Z func_70821_d + cm ()Lalz; func_175489_ck + co ()Z func_70823_r + cp ()Lqd; access$000 + cq ()Ljava/util/Set; access$300 + h ()V func_70088_a + k (DDD)Z func_70825_j + m ()V func_70636_d + n ()Z func_70820_n + z ()Ljava/lang/String; func_70639_aQ +vo$1 net/minecraft/entity/monster/EntityEnderman$1 + a field_179949_a + a (Lvp;)Z apply + apply (Ljava/lang/Object;)Z apply +vo$a net/minecraft/entity/monster/EntityEnderman$AIPlaceBlock + a field_179475_a + a ()Z func_75250_a + a (Ladm;Lcj;Lafh;Lafh;Lafh;)Z func_179474_a + e ()V func_75246_d +vo$b net/minecraft/entity/monster/EntityEnderman$AIFindPlayer + g field_179448_g + h field_179450_h + i field_179451_i + j field_179449_j + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +vo$c net/minecraft/entity/monster/EntityEnderman$AITakeBlock + a field_179473_a + a ()Z func_75250_a + e ()V func_75246_d +vp net/minecraft/entity/monster/EntityEndermite + a field_175497_b + b field_175498_c + A ()Lzw; func_146068_u + a (Lcj;Lafh;)V func_180429_a + a (Ldn;)V func_70037_a + a (Z)V func_175496_a + aS ()F func_70047_e + aX ()V func_110147_ax + b (Ldn;)V func_70014_b + bR ()Z func_70601_bi + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + bz ()Lpw; func_70668_bt + m ()V func_70636_d + n ()Z func_175495_n + n_ ()Z func_70814_o + s_ ()Z func_70041_e_ + t_ ()V func_70071_h_ + z ()Ljava/lang/String; func_70639_aQ +vq net/minecraft/entity/monster/IMob + d field_82192_a + e field_175450_e +vq$1 net/minecraft/entity/monster/IMob$1 + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +vq$2 net/minecraft/entity/monster/IMob$2 + a (Lpk;)Z apply + apply (Ljava/lang/Object;)Z apply +vr net/minecraft/entity/monster/EntityGhast + a field_92014_j + A ()Lzw; func_146068_u + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + a (Z)V func_175454_a + aS ()F func_70047_e + aX ()V func_110147_ax + b (Ldn;)V func_70014_b + b (ZI)V func_70628_a + bB ()F func_70599_aP + bR ()Z func_70601_bi + bV ()I func_70641_bl + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + cf ()I func_175453_cd + h ()V func_70088_a + n ()Z func_110182_bF + t_ ()V func_70071_h_ + z ()Ljava/lang/String; func_70639_aQ +vr$a net/minecraft/entity/monster/EntityGhast$AILookAround + a field_179472_a + a ()Z func_75250_a + e ()V func_75246_d +vr$b net/minecraft/entity/monster/EntityGhast$GhastMoveHelper + g field_179927_g + h field_179928_h + b (DDDD)Z func_179926_b + c ()V func_75641_c +vr$c net/minecraft/entity/monster/EntityGhast$AIFireballAttack + a field_179471_a + b field_179470_b + a ()Z func_75250_a + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +vr$d net/minecraft/entity/monster/EntityGhast$AIRandomFly + a field_179454_a + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e +vs net/minecraft/entity/monster/EntityGiantZombie + a (Lcj;)F func_180484_a + aS ()F func_70047_e + aX ()V func_110147_ax +vt net/minecraft/entity/monster/EntityGuardian + a field_175482_b + b field_175484_c + bm field_175485_bl + bn field_175486_bm + bo field_175478_bn + bp field_175479_bo + bq field_175480_bp + br field_175481_bq + c field_175483_bk + E ()V func_70619_bc + a (F)F func_175471_a + a (I)Z func_175468_a + a (IZ)V func_175473_a + a (Lcj;)F func_180484_a + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + a (Lvt;)Lrz; access$100 + a (Lvt;I)V access$000 + a (Lvt;Z)V access$200 + a (Z)V func_175467_a + aS ()F func_70047_e + aX ()V func_110147_ax + b (I)V func_175463_b + b (Ladm;)Lsw; func_175447_b + b (Ldn;)V func_70014_b + b (ZI)V func_70628_a + bQ ()I func_70646_bf + bR ()Z func_70601_bi + bS ()Z func_70058_J + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + bq ()V func_82164_bB + cm ()I func_175464_ck + cn ()Z func_175461_cl + co ()V func_175465_cm + cp ()Z func_175474_cn + cq ()Lpr; func_175466_co + g (FF)V func_70612_e + h ()V func_70088_a + i (I)V func_145781_i + l (Z)V func_175476_l + m ()V func_70636_d + n ()Z func_175472_n + n_ ()Z func_70814_o + p (F)F func_175469_o + q (F)F func_175477_p + s_ ()Z func_70041_e_ + w ()I func_70627_aG + z ()Ljava/lang/String; func_70639_aQ +vt$1 net/minecraft/entity/monster/EntityGuardian$1 + a field_179914_a + a (Llf;)Z apply + apply (Ljava/lang/Object;)Z apply +vt$a net/minecraft/entity/monster/EntityGuardian$AIGuardianAttack + a field_179456_a + b field_179455_b + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + d ()V func_75251_c + e ()V func_75246_d +vt$b net/minecraft/entity/monster/EntityGuardian$GuardianTargetSelector + a field_179916_a + a (Lpr;)Z apply + apply (Ljava/lang/Object;)Z apply +vt$c net/minecraft/entity/monster/EntityGuardian$GuardianMoveHelper + g field_179930_g + c ()V func_75641_c +vu net/minecraft/entity/monster/EntityMagmaCube + A ()Lzw; func_146068_u + aX ()V func_110147_ax + at ()Z func_70027_ad + b (F)I func_70070_b + b (ZI)V func_70628_a + bF ()V func_70664_aZ + bH ()V func_180466_bG + bR ()Z func_70601_bi + bS ()Z func_70058_J + br ()I func_70658_aO + c (F)F func_70013_c + cf ()Lwb; func_70802_j + cg ()I func_70806_k + ch ()V func_70808_l + ci ()Z func_70800_m + cj ()I func_70805_n + ck ()Ljava/lang/String; func_70803_o + cl ()Z func_70804_p + e (FF)V func_180430_e + n ()Lcy; func_180487_n +vv net/minecraft/entity/monster/EntityMob + P ()Ljava/lang/String; func_145776_H + a (Lcj;)F func_180484_a + a (Low;F)Z func_70097_a + aX ()V func_110147_ax + aa ()Ljava/lang/String; func_145777_O + bR ()Z func_70601_bi + ba ()Z func_146066_aG + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + m ()V func_70636_d + n (I)Ljava/lang/String; func_146067_o + n_ ()Z func_70814_o + r (Lpk;)Z func_70652_k + t_ ()V func_70071_h_ +vw net/minecraft/entity/monster/EntityPigZombie + b field_110189_bq + bm field_70837_d + bn field_70838_e + bo field_175459_bn + c field_110190_br + E ()V func_70619_bc + a (Ldn;)V func_70037_a + a (Lok;)V func_180481_a + a (Lok;Lpu;)Lpu; func_180482_a + a (Low;F)Z func_70097_a + a (Lvw;Lpk;)V access$000 + a (Lwn;)Z func_70085_c + aX ()V func_110147_ax + b (Ldn;)V func_70014_b + b (Lpk;)V func_70835_c + b (Lpr;)V func_70604_c + b (ZI)V func_70628_a + bR ()Z func_70601_bi + bS ()Z func_70058_J + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + bq ()V func_82164_bB + cm ()Z func_175457_ck + n ()V func_175456_n + t_ ()V func_70071_h_ + z ()Ljava/lang/String; func_70639_aQ +vw$a net/minecraft/entity/monster/EntityPigZombie$AITargetAggressor + a ()Z func_75250_a +vw$b net/minecraft/entity/monster/EntityPigZombie$AIHurtByAggressor + a (Lpy;Lpr;)V func_179446_a +vx net/minecraft/entity/IRangedAttackMob + a (Lpr;F)V func_82196_d +vy net/minecraft/entity/SharedMonsterAttributes + a field_111267_a + b field_111265_b + c field_111266_c + d field_111263_d + e field_111264_e + f field_151476_f + a (Ldn;)Lqd; func_111259_a + a (Lqc;)Ldn; func_111261_a + a (Lqc;Ldn;)V func_111258_a + a (Lqd;)Ldn; func_111262_a + a (Lqf;)Ldu; func_111257_a + a (Lqf;Ldu;)V func_151475_a +vz net/minecraft/entity/monster/EntitySilverfish + a field_175460_b + A ()Lzw; func_146068_u + a (Lcj;)F func_180484_a + a (Lcj;Lafh;)V func_180429_a + a (Low;F)Z func_70097_a + aS ()F func_70047_e + aX ()V func_110147_ax + am ()D func_70033_W + bR ()Z func_70601_bi + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + bz ()Lpw; func_70668_bt + n_ ()Z func_70814_o + s_ ()Z func_70041_e_ + t_ ()V func_70071_h_ + z ()Ljava/lang/String; func_70639_aQ +vz$a net/minecraft/entity/monster/EntitySilverfish$AIHideInStone + a field_179485_a + b field_179483_b + c field_179484_c + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e +vz$b net/minecraft/entity/monster/EntitySilverfish$AISummonSilverfish + a field_179464_a + b field_179463_b + a ()Z func_75250_a + e ()V func_75246_d + f ()V func_179462_f +w net/minecraft/command/server/CommandDeOp + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +wa net/minecraft/entity/monster/EntitySkeleton + a field_85037_d + b field_85038_e + A ()Lzw; func_146068_u + a (I)V func_82201_a + a (Lcj;Lafh;)V func_180429_a + a (Ldn;)V func_70037_a + a (Lok;)V func_180481_a + a (Lok;Lpu;)Lpu; func_180482_a + a (Low;)V func_70645_a + a (Lpr;F)V func_82196_d + aS ()F func_70047_e + aX ()V func_110147_ax + ak ()V func_70098_U + am ()D func_70033_W + b (Ldn;)V func_70014_b + b (ZI)V func_70628_a + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + bq ()V func_82164_bB + bz ()Lpw; func_70668_bt + c (ILzx;)V func_70062_b + cm ()I func_82202_m + h ()V func_70088_a + m ()V func_70636_d + n ()V func_85036_m + r (Lpk;)Z func_70652_k + z ()Ljava/lang/String; func_70639_aQ +wb net/minecraft/entity/monster/EntitySlime + a field_70813_a + b field_70811_b + bk field_175452_bi + c field_70812_c + A ()Lzw; func_146068_u + J ()V func_70106_y + a (I)V func_70799_a + a (Ldn;)V func_70037_a + a (Lok;Lpu;)Lpu; func_180482_a + aS ()F func_70047_e + b (Ldn;)V func_70014_b + bB ()F func_70599_aP + bF ()V func_70664_aZ + bQ ()I func_70646_bf + bR ()Z func_70601_bi + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + cf ()Lwb; func_70802_j + cg ()I func_70806_k + ch ()V func_70808_l + ci ()Z func_70800_m + cj ()I func_70805_n + ck ()Ljava/lang/String; func_70803_o + cl ()Z func_70804_p + cm ()I func_70809_q + cn ()Z func_70807_r + d (Lwn;)V func_70100_b_ + e (Lpr;)V func_175451_e + h ()V func_70088_a + i (I)V func_145781_i + i (Lpk;)V func_70108_f + n ()Lcy; func_180487_n + t_ ()V func_70071_h_ +wb$a net/minecraft/entity/monster/EntitySlime$AISlimeAttack + a field_179466_a + b field_179465_b + a ()Z func_75250_a + b ()Z func_75253_b + c ()V func_75249_e + e ()V func_75246_d +wb$b net/minecraft/entity/monster/EntitySlime$AISlimeFloat + a field_179457_a + a ()Z func_75250_a + e ()V func_75246_d +wb$c net/minecraft/entity/monster/EntitySlime$AISlimeHop + a field_179458_a + a ()Z func_75250_a + e ()V func_75246_d +wb$d net/minecraft/entity/monster/EntitySlime$SlimeMoveHelper + g field_179922_g + h field_179924_h + i field_179925_i + j field_179923_j + a (D)V func_179921_a + a (FZ)V func_179920_a + c ()V func_75641_c +wb$e net/minecraft/entity/monster/EntitySlime$AISlimeFaceRandom + a field_179461_a + b field_179459_b + c field_179460_c + a ()Z func_75250_a + e ()V func_75246_d +wc net/minecraft/entity/monster/EntitySpider + A ()Lzw; func_146068_u + a (Lcj;Lafh;)V func_180429_a + a (Lok;Lpu;)Lpu; func_180482_a + a (Z)V func_70839_e + aA ()V func_70110_aj + aS ()F func_70047_e + aX ()V func_110147_ax + an ()D func_70042_X + b (Ladm;)Lsw; func_175447_b + b (ZI)V func_70628_a + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + bz ()Lpw; func_70668_bt + d (Lpf;)Z func_70687_e + h ()V func_70088_a + k_ ()Z func_70617_f_ + n ()Z func_70841_p + t_ ()V func_70071_h_ + z ()Ljava/lang/String; func_70639_aQ +wc$a net/minecraft/entity/monster/EntitySpider$AISpiderAttack + a (Lpr;)D func_179512_a + b ()Z func_75253_b +wc$b net/minecraft/entity/monster/EntitySpider$GroupData + a field_111105_a + a (Ljava/util/Random;)V func_111104_a +wc$c net/minecraft/entity/monster/EntitySpider$AISpiderTarget + a ()Z func_75250_a +wd net/minecraft/entity/monster/EntityWitch + a field_110184_bp + b field_110185_bq + bm field_82200_e + c field_82199_d + a (B)V func_70103_a + a (Lpr;F)V func_82196_d + a (Z)V func_82197_f + aS ()F func_70047_e + aX ()V func_110147_ax + b (ZI)V func_70628_a + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + c (Low;F)F func_70672_c + h ()V func_70088_a + m ()V func_70636_d + n ()Z func_82198_m + z ()Ljava/lang/String; func_70639_aQ +we net/minecraft/entity/monster/EntityZombie + a field_110186_bp + b field_110187_bq + bm field_146075_bs + bn field_82234_d + bo field_146076_bu + bp field_146074_bv + bq field_146073_bw + c field_110188_br + A ()Lzw; func_146068_u + C ()Z func_70692_ba + a (B)V func_70103_a + a (F)V func_146069_a + a (FF)V func_70105_a + a (I)V func_82228_a + a (Lcj;Lafh;)V func_180429_a + a (Ldn;)V func_70037_a + a (Lok;)V func_180481_a + a (Lok;Lpu;)Lpu; func_180482_a + a (Low;)V func_70645_a + a (Low;F)Z func_70097_a + a (Lpr;)V func_70074_a + a (Lwn;)Z func_70085_c + a (Lzx;)Z func_175448_a + a (Z)V func_146070_a + aS ()F func_70047_e + aX ()V func_110147_ax + am ()D func_70033_W + b (Ldn;)V func_70014_b + b (Lwn;)I func_70693_a + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + bq ()V func_82164_bB + br ()I func_70658_aO + bz ()Lpw; func_70668_bt + cn ()Z func_146072_bX + co ()Z func_82231_m + cp ()Z func_82230_o + cq ()V func_82232_p + cr ()I func_82233_q + h ()V func_70088_a + j_ ()Z func_70631_g_ + l (Z)V func_82227_f + m ()V func_70636_d + m (Z)V func_82229_g + n ()V func_175456_n + n (Z)V func_146071_k + r (Lpk;)Z func_70652_k + t_ ()V func_70071_h_ + z ()Ljava/lang/String; func_70639_aQ +we$1 net/minecraft/entity/monster/EntityZombie$1 +we$a net/minecraft/entity/monster/EntityZombie$GroupData + a field_142048_a + b field_142046_b + c field_142047_c +wg net/minecraft/entity/NpcMerchant + a field_70937_a + b field_70935_b + c field_70936_c + d field_175548_d + a (Lacz;)V func_70933_a + a (Lada;)V func_70930_a + a_ (Lwn;)V func_70932_a_ + a_ (Lzx;)V func_110297_a_ + b_ (Lwn;)Lada; func_70934_b + f_ ()Leu; func_145748_c_ + v_ ()Lwn; func_70931_l_ +wh net/minecraft/entity/INpc +wi net/minecraft/entity/passive/EntityVillager + bA field_175564_by + bB field_175560_bz + bC field_175561_bA + bm field_70954_d + bn field_70955_e + bo field_70952_f + bp field_70953_g + bq field_70962_h + br field_70963_i + bs field_70961_j + bt field_70959_by + bu field_175565_bs + bv field_70956_bz + bw field_82189_bL + bx field_175563_bv + by field_175562_bw + bz field_82190_bM + C ()Z func_70692_ba + E ()V func_70619_bc + a (B)V func_70103_a + a (Lacz;)V func_70933_a + a (Lada;)V func_70930_a + a (Lcy;)V func_180489_a + a (Ldn;)V func_70037_a + a (Lok;Lpu;)Lpu; func_180482_a + a (Low;)V func_70645_a + a (Lph;)Lph; func_90011_a + a (Luv;)V func_70077_a + a (Luz;)V func_175445_a + a (Lwn;)Z func_70085_c + a (Lzw;)Z func_175558_a + aS ()F func_70047_e + aX ()V func_110147_ax + a_ (Lwn;)V func_70932_a_ + a_ (Lzx;)V func_110297_a_ + b (Ldn;)V func_70014_b + b (Lph;)Lwi; func_90011_a + b (Lpr;)V func_70604_c + b_ (Lwn;)Lada; func_70934_b + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + cb ()Z func_110164_bC + cl ()I func_70946_n + cm ()Z func_70941_o + cn ()Z func_70945_p + co ()Z func_70940_q + cp ()V func_82187_q + cq ()Loq; func_175551_co + cr ()Z func_175553_cp + cs ()Z func_175555_cq + ct ()Z func_175557_cr + cu ()Z func_175556_cs + cv ()V func_175552_ct + cw ()V func_175554_cu + d (ILzx;)Z func_174820_d + f_ ()Leu; func_145748_c_ + h ()V func_70088_a + l (Z)V func_70947_e + m (Z)V func_70939_f + n ()V func_175500_n + n (Z)Z func_175550_n + o (Z)V func_175549_o + r (I)V func_70938_b + s (I)Z func_175559_s + v_ ()Lwn; func_70931_l_ + z ()Ljava/lang/String; func_70639_aQ +wi$a net/minecraft/entity/passive/EntityVillager$EmeraldForItems + a field_179405_a + b field_179404_b + a (Lada;Ljava/util/Random;)V func_179401_a +wi$b net/minecraft/entity/passive/EntityVillager$ListEnchantedBookForEmeralds + a (Lada;Ljava/util/Random;)V func_179401_a +wi$c net/minecraft/entity/passive/EntityVillager$ListEnchantedItemForEmeralds + a field_179407_a + b field_179406_b + a (Lada;Ljava/util/Random;)V func_179401_a +wi$d net/minecraft/entity/passive/EntityVillager$ItemAndEmeraldToItem + a field_179411_a + b field_179409_b + c field_179410_c + d field_179408_d + a (Lada;Ljava/util/Random;)V func_179401_a +wi$e net/minecraft/entity/passive/EntityVillager$ListItemForEmeralds + a field_179403_a + b field_179402_b + a (Lada;Ljava/util/Random;)V func_179401_a +wi$f net/minecraft/entity/passive/EntityVillager$ITradeList + a (Lada;Ljava/util/Random;)V func_179401_a +wi$g net/minecraft/entity/passive/EntityVillager$PriceInfo + a (Ljava/util/Random;)I func_179412_a +wl net/minecraft/entity/player/PlayerCapabilities + a field_75102_a + b field_75100_b + c field_75101_c + d field_75098_d + e field_75099_e + f field_75096_f + g field_75097_g + a ()F func_75093_a + a (F)V func_75092_a + a (Ldn;)V func_75091_a + b ()F func_75094_b + b (F)V func_82877_b + b (Ldn;)V func_75095_b +wm net/minecraft/entity/player/InventoryPlayer + a field_70462_a + b field_70460_b + c field_70461_c + d field_70458_d + e field_70459_e + f field_70457_g + a (F)V func_70449_g + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (Lafh;)F func_146023_a + a (Ldu;)Ldu; func_70442_a + a (Lwn;)Z func_70300_a + a (Lzw;)Z func_146026_a + a (Lzw;I)I func_146024_c + a (Lzw;IILdn;)I func_174925_a + a (Lzw;IZZ)V func_146030_a + a (Lzx;)Z func_70441_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (Lafh;)Z func_146025_b + b (Ldu;)V func_70443_b + b (Lwm;)V func_70455_b + b (Lwn;)V func_174889_b + b (Lzw;)Z func_146028_b + b (Lzx;)V func_70437_b + c (Lwn;)V func_174886_c + c (Lzw;)I func_146029_c + c (Lzx;)Z func_70431_c + d (I)V func_70453_c + d (Lzx;)I func_70432_d + e (I)Lzx; func_70440_f + e (Lzx;)I func_70452_e + e_ ()Ljava/lang/String; func_70005_c_ + f_ ()Leu; func_145748_c_ + g ()I func_174890_g + h ()Lzx; func_70448_g + i ()I func_70451_h + j ()I func_70447_i + k ()V func_70429_k + l ()V func_174888_l + l_ ()Z func_145818_k_ + m ()I func_70430_l + n ()V func_70436_m + o_ ()I func_70302_i_ + p ()Lzx; func_70445_o + p_ ()V func_70296_d + q_ ()I func_70297_j_ +wm$1 net/minecraft/entity/player/InventoryPlayer$1 + a field_96634_a + b field_96633_b + a ()Ljava/lang/String; call + call ()Ljava/lang/Object; call +wn net/minecraft/entity/player/EntityPlayer + a field_71078_a + b field_71076_b + bA field_71075_bZ + bB field_71068_ca + bC field_71067_cb + bD field_71106_cc + bE field_71108_cd + bF field_71102_ce + bG field_71104_cf + bH field_146106_i + bI field_175153_bG + bZ field_71082_cx + bi field_71071_by + bj field_71069_bz + bk field_71070_bA + bl field_71100_bB + bm field_71101_bC + bn field_71107_bF + bo field_71109_bG + bp field_71090_bL + bq field_71091_bM + br field_71096_bN + bs field_71097_bO + bt field_71094_bP + bu field_71095_bQ + bv field_71085_bR + bw field_71083_bS + bx field_71081_bT + by field_71079_bU + bz field_71089_bV + c field_71077_c + d field_82248_d + e field_71073_d + f field_175152_f + g field_71074_e + h field_71072_f + i field_82249_h + I ()V func_70065_x + J ()V func_70106_y + L ()I func_82145_z + P ()Ljava/lang/String; func_145776_H + X ()V func_71061_d_ + a (B)V func_70103_a + a (F)V func_71020_j + a (I)V func_82242_a + a (Lacy;)V func_180472_a + a (Ladc;)V func_146095_a + a (Ladm;Lcj;Z)Lcj; func_180467_a + a (Ladp$a;)V func_71033_a + a (Lafh;)F func_180471_a + a (Laln;)V func_175141_a + a (Lcj;)Lwn$a; func_180469_a + a (Lcj;Lcq;Lzx;)Z func_175151_a + a (Lcj;Z)V func_180473_a + a (Lcom/mojang/authlib/GameProfile;)Ljava/util/UUID; func_146094_a + a (Lcq;)V func_175139_a + a (Ldn;)V func_70037_a + a (Ljava/lang/String;FF)V func_85030_a + a (Lmw;)V func_175145_a + a (Lmw;I)V func_71064_a + a (Log;)V func_71007_a + a (Lol;)V func_180468_a + a (Lon;)Z func_175146_a + a (Low;)V func_70645_a + a (Low;F)Z func_70097_a + a (Lpr;)V func_70074_a + a (Ltp;Log;)V func_110298_a + a (Luz;)V func_71012_a + a (Lwn;)Z func_96122_a + a (Lwn;Z)V func_71049_a + a (Lwo;)Z func_175148_a + a (Lzx;)V func_71048_c + a (Lzx;I)V func_71008_a + a (Lzx;Z)Luz; func_71019_a + a (Lzx;ZZ)Luz; func_146097_a + a (Z)Luz; func_71040_bB + a (ZZZ)V func_70999_a + aA ()V func_70110_aj + aL ()Z func_96092_aw + aO ()Z func_94059_bO + aS ()F func_70047_e + aX ()V func_110147_ax + aa ()Ljava/lang/String; func_145777_O + aj ()Z func_70094_T + ak ()V func_70098_U + am ()D func_70033_W + aq ()I func_82147_ab + as ()[Lzx; func_70035_c + b (I)V func_71013_b + b (Lafh;)Z func_146099_a + b (Ldn;)V func_70014_b + b (Leu;)V func_146105_b + b (Ljava/lang/String;)Ljava/util/UUID; func_175147_b + b (Lmw;)V func_71029_a + b (Lpk;)V func_71009_b + b (Lpk;I)V func_70084_c + b (Lwn;)I func_70693_a + b (Lzx;I)V func_71010_c + bA ()Lzx; func_70694_bm + bD ()Z func_70610_aX + bF ()V func_70664_aZ + bI ()F func_70689_ay + bJ ()Z func_70608_bn + bK ()V func_70626_be + bN ()F func_110139_bj + bO ()Lauq; func_96124_cp + bQ ()Lzx; func_71011_bu + bR ()I func_71052_bv + bS ()Z func_71039_bw + bT ()I func_71057_bx + bU ()V func_71034_by + bV ()V func_71041_bz + bW ()Z func_70632_aY + bX ()I func_71037_bA + bY ()F func_82243_bO + bZ ()Lzx; func_71045_bC + bb ()Z func_70684_aJ + bo ()Ljava/lang/String; func_70621_aR + bp ()Ljava/lang/String; func_70673_aS + br ()I func_70658_aO + c (ILzx;)V func_70062_b + c (Lpk;)V func_71047_c + ca ()V func_71028_bD + cb ()V func_71004_bE + cc ()Z func_175144_cb + cd ()Lcom/mojang/authlib/GameProfile; func_146103_bH + ce ()F func_71051_bG + cf ()Z func_71026_bH + cg ()I func_71060_bI + ch ()Lcj; func_180470_cg + ci ()Z func_82245_bX + cj ()I func_175138_ci + ck ()I func_71050_bK + cl ()Lxg; func_71024_bL + cm ()Z func_70996_bM + cn ()Z func_175142_cm + co ()Lyd; func_71005_bN + cp ()Lauo; func_96123_co + cq ()Z func_175140_cp + d (ILzx;)Z func_174820_d + d (Low;F)V func_70665_d + d (Lpk;)V func_71044_o + e (FF)V func_180430_e + e (Lpk;)Ljava/util/Collection; func_175137_e + e_ ()Ljava/lang/String; func_70005_c_ + f (Lpk;)V func_71059_n + f (Lwn;)Z func_98034_c + f_ ()Leu; func_145748_c_ + g (FF)V func_70612_e + h ()V func_70088_a + j (F)V func_70675_k + j (Z)Z func_71043_e + k (DDD)V func_71000_j + k (Z)V func_175150_k + l (DDD)V func_71015_k + m ()V func_70636_d + m (F)V func_110149_m + n ()V func_71053_j + n (I)Ljava/lang/String; func_146067_o + p ()Z func_175143_p + p (I)Lzx; func_71124_b + q (I)Lzx; func_82169_q + r (I)V func_85040_s + s ()V func_71036_o + s (I)V func_85039_t + s_ ()Z func_70041_e_ + t ()V func_71016_p + t_ ()V func_70071_h_ + u (I)V func_71023_q + u (Lpk;)Z func_70998_m + u_ ()Z func_174792_t_ + v ()Z func_175149_v +wn$1 net/minecraft/entity/player/EntityPlayer$1 + a field_179420_a +wn$a net/minecraft/entity/player/EntityPlayer$EnumStatus + a OK + b NOT_POSSIBLE_HERE + c NOT_POSSIBLE_NOW + d TOO_FAR_AWAY + e OTHER_PROBLEM + f NOT_SAFE + g $VALUES + valueOf (Ljava/lang/String;)Lwn$a; valueOf + values ()[Lwn$a; values +wn$b net/minecraft/entity/player/EntityPlayer$EnumChatVisibility + a FULL + b SYSTEM + c HIDDEN + d field_151432_d + e field_151433_e + f field_151430_f + g $VALUES + a ()I func_151428_a + a (I)Lwn$b; func_151426_a + b ()Ljava/lang/String; func_151429_b + values ()[Lwn$b; values +wo net/minecraft/entity/player/EnumPlayerModelParts + a CAPE + b JACKET + c LEFT_SLEEVE + d RIGHT_SLEEVE + e LEFT_PANTS_LEG + f RIGHT_PANTS_LEG + g HAT + h field_179340_h + i field_179341_i + j field_179338_j + k field_179339_k + l $VALUES + a ()I func_179327_a + b ()I func_179328_b + c ()Ljava/lang/String; func_179329_c + d ()Leu; func_179326_d + values ()[Lwo; values +wq net/minecraft/entity/projectile/EntityArrow + a field_70251_a + ar field_70252_j + as field_70257_an + at field_70255_ao + au field_70256_ap + b field_70249_b + c field_70250_c + d field_145791_d + e field_145792_e + f field_145789_f + g field_145790_g + h field_70253_h + i field_70254_i + a (DDDFFIZ)V func_180426_a + a (I)V func_70240_a + a (Ldn;)V func_70037_a + a (Z)V func_70243_d + aD ()Z func_70075_an + aS ()F func_70047_e + b (D)V func_70239_b + b (Ldn;)V func_70014_b + c (DDDFF)V func_70186_c + d (Lwn;)V func_70100_b_ + h ()V func_70088_a + i (DDD)V func_70016_h + j ()D func_70242_d + l ()Z func_70241_g + s_ ()Z func_70041_e_ + t_ ()V func_70071_h_ +wr net/minecraft/entity/item/EntityEnderEye + a field_70224_b + b field_70225_c + c field_70222_d + d field_70223_e + e field_70221_f + a (D)Z func_70112_a + a (Lcj;)V func_180465_a + a (Ldn;)V func_70037_a + aD ()Z func_70075_an + b (F)I func_70070_b + b (Ldn;)V func_70014_b + c (F)F func_70013_c + h ()V func_70088_a + i (DDD)V func_70016_h + t_ ()V func_70071_h_ +ws net/minecraft/entity/projectile/EntityFireball + a field_70235_a + ar field_70236_j + as field_70234_an + b field_70232_b + c field_70233_c + d field_70230_d + e field_145795_e + f field_145793_f + g field_145794_g + h field_145796_h + i field_70238_i + a (D)Z func_70112_a + a (Lauh;)V func_70227_a + a (Ldn;)V func_70037_a + a (Low;F)Z func_70097_a + ad ()Z func_70067_L + ao ()F func_70111_Y + b (F)I func_70070_b + b (Ldn;)V func_70014_b + c (F)F func_70013_c + h ()V func_70088_a + j ()F func_82341_c + t_ ()V func_70071_h_ +wt net/minecraft/entity/item/EntityFireworkRocket + a field_92056_a + b field_92055_b + a (B)V func_70103_a + a (D)Z func_70112_a + a (Ldn;)V func_70037_a + aD ()Z func_70075_an + b (F)I func_70070_b + b (Ldn;)V func_70014_b + c (F)F func_70013_c + h ()V func_70088_a + i (DDD)V func_70016_h + t_ ()V func_70071_h_ +wu net/minecraft/entity/projectile/EntityLargeFireball + e field_92057_e + a (Lauh;)V func_70227_a + a (Ldn;)V func_70037_a + b (Ldn;)V func_70014_b +wv net/minecraft/entity/IProjectile + c (DDDFF)V func_70186_c +ww net/minecraft/entity/projectile/EntitySmallFireball + a (Lauh;)V func_70227_a + a (Low;F)Z func_70097_a + ad ()Z func_70067_L +wx net/minecraft/entity/projectile/EntitySnowball + a (Lauh;)V func_70184_a +wy net/minecraft/entity/projectile/EntityThrowable + a field_174854_a + ar field_70195_i + b field_70191_b + c field_145788_c + d field_145786_d + e field_145787_e + f field_174853_f + g field_70192_c + h field_85053_h + i field_70194_h + a (D)Z func_70112_a + a (Lauh;)V func_70184_a + a (Ldn;)V func_70037_a + b (Ldn;)V func_70014_b + c (DDDFF)V func_70186_c + h ()V func_70088_a + i (DDD)V func_70016_h + j ()F func_70182_d + l ()F func_70183_g + m ()F func_70185_h + n ()Lpr; func_85052_h + t_ ()V func_70071_h_ +wz net/minecraft/entity/projectile/EntityEgg + a (Lauh;)V func_70184_a +x net/minecraft/command/CommandDebug + a field_147208_a + b field_147206_b + c field_147207_c + a ()I func_82362_a + a (ILjava/lang/String;Ljava/lang/StringBuilder;)V func_147202_a + a (JI)V func_147205_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b (JI)Ljava/lang/String; func_147204_b + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + d ()Ljava/lang/String; func_147203_d +xa net/minecraft/entity/item/EntityEnderPearl + c field_181555_c + a (Lauh;)V func_70184_a + t_ ()V func_70071_h_ +xb net/minecraft/entity/item/EntityExpBottle + a (Lauh;)V func_70184_a + j ()F func_70182_d + l ()F func_70183_g + m ()F func_70185_h +xc net/minecraft/entity/projectile/EntityPotion + c field_70197_d + a (I)V func_82340_a + a (Lauh;)V func_70184_a + a (Ldn;)V func_70037_a + b (Ldn;)V func_70014_b + j ()F func_70182_d + l ()F func_70183_g + m ()F func_70185_h + o ()I func_70196_i +xd net/minecraft/entity/projectile/EntityWitherSkull + a (Ladi;Ladm;Lcj;Lalz;)F func_180428_a + a (Lauh;)V func_70227_a + a (Low;F)Z func_70097_a + a (Z)V func_82343_e + ad ()Z func_70067_L + at ()Z func_70027_ad + h ()V func_70088_a + j ()F func_82341_c + l ()Z func_82342_d +xg net/minecraft/util/FoodStats + a field_75127_a + b field_75125_b + c field_75126_c + d field_75123_d + e field_75124_e + a ()I func_75116_a + a (F)V func_75113_a + a (I)V func_75114_a + a (IF)V func_75122_a + a (Ldn;)V func_75112_a + a (Lwn;)V func_75118_a + a (Lzs;Lzx;)V func_151686_a + b ()I func_75120_b + b (F)V func_75119_b + b (Ldn;)V func_75117_b + c ()Z func_75121_c + e ()F func_75115_e +xi net/minecraft/inventory/Container + a field_75150_e + b field_75153_a + c field_75151_b + d field_75152_c + e field_75149_d + f field_94535_f + g field_94536_g + h field_94537_h + i field_75148_f + a ()Ljava/util/List; func_75138_a + a (I)Lyg; func_75139_a + a (IIILwn;)Lzx; func_75144_a + a (IIZLwn;)V func_75133_b + a (ILwn;)Z func_180610_a + a (ILzx;)V func_75141_a + a (Lakw;)I func_178144_a + a (Ljava/util/Set;ILzx;I)V func_94525_a + a (Log;)V func_75130_a + a (Log;I)Lyg; func_75147_a + a (Lwm;)S func_75136_a + a (Lwn;)Z func_75145_c + a (Lwn;I)Z func_75140_a + a (Lwn;Z)V func_75128_a + a (Lxn;)V func_75132_a + a (Lyg;)Lyg; func_75146_a + a (Lyg;Lzx;Z)Z func_94527_a + a (Lzx;IIZ)Z func_75135_a + a (Lzx;Lyg;)Z func_94530_a + a ([Lzx;)V func_75131_a + b ()V func_75142_b + b (I)I func_94529_b + b (II)V func_75137_b + b (Log;)I func_94526_b + b (Lwn;)V func_75134_a + b (Lwn;I)Lzx; func_82846_b + b (Lxn;)V func_82847_b + b (Lyg;)Z func_94531_b + c (I)I func_94532_c + c (Lwn;)Z func_75129_b + d ()V func_94533_d + d (II)I func_94534_d +xj net/minecraft/inventory/AnimalChest +xk net/minecraft/inventory/ContainerRepair + a field_82854_e + f field_148326_f + g field_82852_f + h field_82853_g + i field_82860_h + j field_178156_j + k field_82856_l + l field_82857_m + m field_82855_n + a (Ljava/lang/String;)V func_82850_a + a (Log;)V func_75130_a + a (Lwn;)Z func_75145_c + a (Lxk;)Log; access$000 + a (Lxn;)V func_75132_a + b (II)V func_75137_b + b (Lwn;)V func_75134_a + b (Lwn;I)Lzx; func_82846_b + b (Lxk;)I access$100 + e ()V func_82848_d +xk$1 net/minecraft/inventory/ContainerRepair$1 + a field_135010_a + p_ ()V func_70296_d +xk$2 net/minecraft/inventory/ContainerRepair$2 + a field_135071_a + b field_178174_b + c field_135068_e + a (Lwn;)Z func_82869_a + a (Lwn;Lzx;)V func_82870_a + a (Lzx;)Z func_75214_a +xl net/minecraft/inventory/ContainerBeacon + a field_82866_e + f field_82864_f + a (Lwn;)Z func_75145_c + a (Lxn;)V func_75132_a + b (II)V func_75137_b + b (Lwn;)V func_75134_a + b (Lwn;I)Lzx; func_82846_b + e ()Log; func_180611_e +xl$a net/minecraft/inventory/ContainerBeacon$BeaconSlot + a field_82876_a + a ()I func_75219_a + a (Lzx;)Z func_75214_a +xm net/minecraft/inventory/ContainerBrewingStand + a field_75188_e + f field_75186_f + g field_75187_g + a (Lwn;)Z func_75145_c + a (Lxn;)V func_75132_a + b ()V func_75142_b + b (II)V func_75137_b + b (Lwn;I)Lzx; func_82846_b +xm$a net/minecraft/inventory/ContainerBrewingStand$Ingredient + a field_75226_a + a ()I func_75219_a + a (Lzx;)Z func_75214_a +xm$b net/minecraft/inventory/ContainerBrewingStand$Potion + a field_75244_a + a ()I func_75219_a + a (Lwn;Lzx;)V func_82870_a + a (Lzx;)Z func_75214_a + b_ (Lzx;)Z func_75243_a_ +xn net/minecraft/inventory/ICrafting + a (Lxi;II)V func_71112_a + a (Lxi;ILzx;)V func_71111_a + a (Lxi;Ljava/util/List;)V func_71110_a + a (Lxi;Log;)V func_175173_a +xo net/minecraft/inventory/ContainerChest + a field_75155_e + f field_75154_f + a (Lwn;)Z func_75145_c + b (Lwn;)V func_75134_a + b (Lwn;I)Lzx; func_82846_b + e ()Log; func_85151_d +xp net/minecraft/inventory/InventoryCrafting + a field_70466_a + b field_70464_b + c field_174924_c + d field_70465_c + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (Lwn;)Z func_70300_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (Lwn;)V func_174889_b + c (II)Lzx; func_70463_b + c (Lwn;)V func_174886_c + e_ ()Ljava/lang/String; func_70005_c_ + f_ ()Leu; func_145748_c_ + g ()I func_174890_g + h ()I func_174923_h + i ()I func_174922_i + l ()V func_174888_l + l_ ()Z func_145818_k_ + o_ ()I func_70302_i_ + p_ ()V func_70296_d + q_ ()I func_70297_j_ +xq net/minecraft/inventory/ContainerWorkbench + a field_75162_e + f field_75160_f + g field_75161_g + h field_178145_h + a (Log;)V func_75130_a + a (Lwn;)Z func_75145_c + a (Lzx;Lyg;)Z func_94530_a + b (Lwn;)V func_75134_a + b (Lwn;I)Lzx; func_82846_b +xr net/minecraft/inventory/ContainerDispenser + a field_178146_a + a (Lwn;)Z func_75145_c + b (Lwn;I)Lzx; func_82846_b +xs net/minecraft/inventory/ContainerEnchantment + a field_75168_e + f field_178149_f + g field_75167_g + h field_178151_h + i field_75172_h + j field_178150_j + k field_75169_l + a (Log;)V func_75130_a + a (Lwn;)Z func_75145_c + a (Lwn;I)Z func_75140_a + a (Lxn;)V func_75132_a + a (Lzx;II)Ljava/util/List; func_178148_a + b ()V func_75142_b + b (II)V func_75137_b + b (Lwn;)V func_75134_a + b (Lwn;I)Lzx; func_82846_b + e ()I func_178147_e +xs$1 net/minecraft/inventory/ContainerEnchantment$1 + a field_70484_a + p_ ()V func_70296_d + q_ ()I func_70297_j_ +xs$2 net/minecraft/inventory/ContainerEnchantment$2 + a field_75227_a + a ()I func_75219_a + a (Lzx;)Z func_75214_a +xs$3 net/minecraft/inventory/ContainerEnchantment$3 + a field_178172_a + a (Lzx;)Z func_75214_a +xt net/minecraft/inventory/SlotFurnaceFuel + a (Lzx;)Z func_75214_a + b (Lzx;)I func_178170_b + c_ (Lzx;)Z func_178173_c_ +xu net/minecraft/inventory/ContainerFurnace + a field_75158_e + f field_178152_f + g field_178153_g + h field_178154_h + i field_178155_i + a (Lwn;)Z func_75145_c + a (Lxn;)V func_75132_a + b ()V func_75142_b + b (II)V func_75137_b + b (Lwn;I)Lzx; func_82846_b +xv net/minecraft/inventory/SlotFurnaceOutput + a field_75229_a + b field_75228_b + a (I)Lzx; func_75209_a + a (Lwn;Lzx;)V func_82870_a + a (Lzx;)Z func_75214_a + a (Lzx;I)V func_75210_a + c (Lzx;)V func_75208_c +xw net/minecraft/inventory/ContainerHopper + a field_94538_a + a (Lwn;)Z func_75145_c + b (Lwn;)V func_75134_a + b (Lwn;I)Lzx; func_82846_b +xx net/minecraft/inventory/ContainerHorseInventory + a field_111243_a + f field_111242_f + a (Lwn;)Z func_75145_c + b (Lwn;)V func_75134_a + b (Lwn;I)Lzx; func_82846_b +xx$1 net/minecraft/inventory/ContainerHorseInventory$1 + a field_111239_a + a (Lzx;)Z func_75214_a +xx$2 net/minecraft/inventory/ContainerHorseInventory$2 + a field_111241_a + b field_111240_b + a (Lzx;)Z func_75214_a + b ()Z func_111238_b +xy net/minecraft/inventory/ContainerPlayer + a field_75181_e + f field_75179_f + g field_75180_g + h field_82862_h + a (Log;)V func_75130_a + a (Lwn;)Z func_75145_c + a (Lzx;Lyg;)Z func_94530_a + b (Lwn;)V func_75134_a + b (Lwn;I)Lzx; func_82846_b +xy$1 net/minecraft/inventory/ContainerPlayer$1 + a field_75236_a + b field_75235_b + a ()I func_75219_a + a (Lzx;)Z func_75214_a + c ()Ljava/lang/String; func_178171_c +y net/minecraft/command/CommandDefaultGameMode + a (Ladp$a;)V func_71541_a + a (Lm;[Ljava/lang/String;)V func_71515_b + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a +ya net/minecraft/inventory/InventoryMerchant + a field_70476_a + b field_70474_b + c field_70475_c + d field_70472_d + e field_70473_e + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (Lwn;)Z func_70300_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (Lwn;)V func_174889_b + c (Lwn;)V func_174886_c + d (I)V func_70471_c + e (I)Z func_70469_d + e_ ()Ljava/lang/String; func_70005_c_ + f_ ()Leu; func_145748_c_ + g ()I func_174890_g + h ()V func_70470_g + i ()Lacz; func_70468_h + l ()V func_174888_l + l_ ()Z func_145818_k_ + o_ ()I func_70302_i_ + p_ ()V func_70296_d + q_ ()I func_70297_j_ +yb net/minecraft/inventory/ContainerMerchant + a field_75178_e + f field_75176_f + g field_75177_g + a (Log;)V func_75130_a + a (Lwn;)Z func_75145_c + a (Lxn;)V func_75132_a + b ()V func_75142_b + b (II)V func_75137_b + b (Lwn;)V func_75134_a + b (Lwn;I)Lzx; func_82846_b + d (I)V func_75175_c + e ()Lya; func_75174_d +yc net/minecraft/inventory/SlotMerchantResult + a field_75233_a + b field_75232_b + c field_75231_g + h field_75234_h + a (I)Lzx; func_75209_a + a (Lacz;Lzx;Lzx;)Z func_75230_a + a (Lwn;Lzx;)V func_82870_a + a (Lzx;)Z func_75214_a + a (Lzx;I)V func_75210_a + c (Lzx;)V func_75208_c +yd net/minecraft/inventory/InventoryEnderChest + a field_70488_a + a (Lalf;)V func_146031_a + a (Ldu;)V func_70486_a + a (Lwn;)Z func_70300_a + b (Lwn;)V func_174889_b + c (Lwn;)V func_174886_c + h ()Ldu; func_70487_g +ye net/minecraft/inventory/InventoryCraftResult + a field_70467_a + a (I)Lzx; func_70301_a + a (II)Lzx; func_70298_a + a (ILzx;)V func_70299_a + a (Lwn;)Z func_70300_a + a_ (I)I func_174887_a_ + b (I)Lzx; func_70304_b + b (II)V func_174885_b + b (ILzx;)Z func_94041_b + b (Lwn;)V func_174889_b + c (Lwn;)V func_174886_c + e_ ()Ljava/lang/String; func_70005_c_ + f_ ()Leu; func_145748_c_ + g ()I func_174890_g + l ()V func_174888_l + l_ ()Z func_145818_k_ + o_ ()I func_70302_i_ + p_ ()V func_70296_d + q_ ()I func_70297_j_ +yf net/minecraft/inventory/SlotCrafting + a field_75239_a + b field_75238_b + c field_75237_g + a (I)Lzx; func_75209_a + a (Lwn;Lzx;)V func_82870_a + a (Lzx;)Z func_75214_a + a (Lzx;I)V func_75210_a + c (Lzx;)V func_75208_c +yg net/minecraft/inventory/Slot + a field_75225_a + d field_75224_c + e field_75222_d + f field_75223_e + g field_75221_f + a ()I func_75219_a + a (I)Lzx; func_75209_a + a (Log;I)Z func_75217_a + a (Lwn;)Z func_82869_a + a (Lwn;Lzx;)V func_82870_a + a (Lzx;)Z func_75214_a + a (Lzx;I)V func_75210_a + a (Lzx;Lzx;)V func_75220_a + b ()Z func_111238_b + b (Lzx;)I func_178170_b + c ()Ljava/lang/String; func_178171_c + c (Lzx;)V func_75208_c + d ()Lzx; func_75211_c + d (Lzx;)V func_75215_d + e ()Z func_75216_d + f ()V func_75218_e +yi net/minecraft/item/ItemAnvilBlock + a (I)I func_77647_b +yj net/minecraft/item/ItemArmor + a field_94603_a + b field_77881_a + c field_77879_b + d field_77880_c + k field_77882_bY + l field_96605_cw + m field_77878_bZ + a (Lzx;I)I func_82790_a + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + a (Lzx;Lzx;)Z func_82789_a + b ()I func_77619_b + b (Lzx;)I func_82814_b + b (Lzx;I)V func_82813_b + c (Lzx;)V func_82815_c + d ()[I access$000 + d_ (Lzx;)Z func_82816_b_ + x_ ()Lyj$a; func_82812_d +yj$1 net/minecraft/item/ItemArmor$1 + b (Lck;Lzx;)Lzx; func_82487_b +yj$a net/minecraft/item/ItemArmor$ArmorMaterial + a LEATHER + b CHAIN + c IRON + d GOLD + e DIAMOND + f field_179243_f + g field_78048_f + h field_78049_g + i field_78055_h + j $VALUES + a ()I func_78045_a + a (I)I func_78046_a + b ()Lzw; func_151685_b + b (I)I func_78044_b + c ()Ljava/lang/String; func_179242_c + valueOf (Ljava/lang/String;)Lyj$a; valueOf + values ()[Lyj$a; values +yk net/minecraft/item/ItemArmorStand + a (Lum;Ljava/util/Random;)V func_179221_a + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +yl net/minecraft/item/ItemAxe + c field_150917_c + a (Lzx;Lafh;)F func_150893_a +ym net/minecraft/item/ItemBanner + a (Lzw;Lyz;Ljava/util/List;)V func_150895_a + a (Lzx;)Ljava/lang/String; func_77653_i + a (Lzx;I)I func_82790_a + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a + a (Lzx;Lwn;Ljava/util/List;Z)V func_77624_a + c ()Lyz; func_77640_w + h (Lzx;)Lzd; func_179225_h +yn net/minecraft/item/ItemBed + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +yo net/minecraft/item/ItemBlock + a field_150939_a + a ()Ljava/lang/String; func_77658_a + a (Ladm;Lcj;Lcq;Lwn;Lzx;)Z func_179222_a + a (Ladm;Lwn;Lcj;Lzx;)Z func_179224_a + a (Lzw;Lyz;Ljava/util/List;)V func_150895_a + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a + b (Ljava/lang/String;)Lyo; func_77655_b + c ()Lyz; func_77640_w + c (Ljava/lang/String;)Lzw; func_77655_b + d ()Lafh; func_179223_d + e_ (Lzx;)Ljava/lang/String; func_77667_c +yp net/minecraft/item/ItemReed + a field_150935_a + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +yq net/minecraft/item/ItemBoat + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a +yr net/minecraft/item/ItemBook + b ()I func_77619_b + f_ (Lzx;)Z func_77616_k +ys net/minecraft/item/ItemGlassBottle + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a +yt net/minecraft/item/ItemBow + a field_94601_a + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + a (Lzx;Ladm;Lwn;I)V func_77615_a + b ()I func_77619_b + b (Lzx;Ladm;Lwn;)Lzx; func_77654_b + d (Lzx;)I func_77626_a + e (Lzx;)Laba; func_77661_b +yu net/minecraft/item/ItemSoup + b (Lzx;Ladm;Lwn;)Lzx; func_77654_b +yv net/minecraft/item/ItemBucket + a field_77876_a + a (Ladm;Lcj;)Z func_180616_a + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + a (Lzx;Lwn;Lzw;)Lzx; func_150910_a +yw net/minecraft/item/ItemCarrotOnAStick + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + e ()Z func_77629_n_ + w_ ()Z func_77662_d +yx net/minecraft/item/ItemCoal + a (Lzw;Lyz;Ljava/util/List;)V func_150895_a + e_ (Lzx;)Ljava/lang/String; func_77667_c +yy net/minecraft/item/ItemMapBase + c (Lzx;Ladm;Lwn;)Lff; func_150911_c + f ()Z func_77643_m_ +yz net/minecraft/creativetab/CreativeTabs + a field_78032_a + b field_78030_b + c field_78031_c + d field_78028_d + e field_78029_e + f field_78026_f + g field_78027_g + h field_78039_h + i field_78040_i + j field_78037_j + k field_78038_k + l field_78035_l + m field_78036_m + n field_78033_n + o field_78034_o + p field_78043_p + q field_78042_q + r field_78041_r + s field_111230_s + t field_151245_t + a ()I func_78021_a + a (Lacj;)Z func_111226_a + a (Ljava/lang/String;)Lyz; func_78025_a + a (Ljava/util/List;)V func_78018_a + a (Ljava/util/List;[Lacj;)V func_92116_a + a ([Lacj;)Lyz; func_111229_a + b ()Ljava/lang/String; func_78013_b + c ()Ljava/lang/String; func_78024_c + d ()Lzx; func_151244_d + e ()Lzw; func_78016_d + f ()I func_151243_f + g ()Ljava/lang/String; func_78015_f + h ()Z func_78019_g + i ()Lyz; func_78014_h + j ()Z func_78017_i + k ()Lyz; func_78022_j + l ()I func_78020_k + m ()Z func_78023_l + n ()[Lacj; func_111225_m +yz$1 net/minecraft/creativetab/CreativeTabs$1 + e ()Lzw; func_78016_d +yz$10 net/minecraft/creativetab/CreativeTabs$10 + e ()Lzw; func_78016_d +yz$11 net/minecraft/creativetab/CreativeTabs$11 + e ()Lzw; func_78016_d +yz$12 net/minecraft/creativetab/CreativeTabs$12 + e ()Lzw; func_78016_d +yz$2 net/minecraft/creativetab/CreativeTabs$2 + e ()Lzw; func_78016_d +yz$3 net/minecraft/creativetab/CreativeTabs$3 + e ()Lzw; func_78016_d +yz$4 net/minecraft/creativetab/CreativeTabs$4 + e ()Lzw; func_78016_d +yz$5 net/minecraft/creativetab/CreativeTabs$5 + e ()Lzw; func_78016_d + f ()I func_151243_f +yz$6 net/minecraft/creativetab/CreativeTabs$6 + e ()Lzw; func_78016_d +yz$7 net/minecraft/creativetab/CreativeTabs$7 + e ()Lzw; func_78016_d +yz$8 net/minecraft/creativetab/CreativeTabs$8 + e ()Lzw; func_78016_d +yz$9 net/minecraft/creativetab/CreativeTabs$9 + e ()Lzw; func_78016_d +z net/minecraft/command/CommandEffect + a ()I func_82362_a + a (Lm;[Ljava/lang/String;)V func_71515_b + a (Lm;[Ljava/lang/String;Lcj;)Ljava/util/List; func_180525_a + b ([Ljava/lang/String;I)Z func_82358_a + c ()Ljava/lang/String; func_71517_b + c (Lm;)Ljava/lang/String; func_71518_a + d ()[Ljava/lang/String; func_98152_d +za net/minecraft/item/ItemTool + a field_77864_a + b field_77862_b + c field_150914_c + d field_77865_bY + a (Lzx;Ladm;Lafh;Lcj;Lpr;)Z func_179218_a + a (Lzx;Lafh;)F func_150893_a + a (Lzx;Lpr;Lpr;)Z func_77644_a + a (Lzx;Lzx;)Z func_82789_a + b ()I func_77619_b + g ()Lzw$a; func_150913_i + h ()Ljava/lang/String; func_77861_e + i ()Lcom/google/common/collect/Multimap; func_111205_h + w_ ()Z func_77662_d +zb net/minecraft/item/ItemDoor + a field_179236_a + a (Ladm;Lcj;Lcq;Lafh;)V func_179235_a + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +zc net/minecraft/item/ItemDoublePlant + a (Lzx;I)I func_82790_a +zd net/minecraft/item/EnumDyeColor + a WHITE + b ORANGE + c MAGENTA + d LIGHT_BLUE + e YELLOW + f LIME + g PINK + h GRAY + i SILVER + j CYAN + k PURPLE + l BLUE + m BROWN + n GREEN + o RED + p BLACK + q field_176790_q + r field_176789_r + s field_176788_s + t field_176787_t + u field_176786_u + v field_176785_v + w field_176784_w + x field_176793_x + y $VALUES + a ()I func_176765_a + a (I)Lzd; func_176766_a + b ()I func_176767_b + b (I)Lzd; func_176764_b + d ()Ljava/lang/String; func_176762_d + e ()Larn; func_176768_e + l ()Ljava/lang/String; func_176610_l + toString ()Ljava/lang/String; toString + values ()[Lzd; values +ze net/minecraft/item/ItemDye + a field_150922_c + a (Ladm;Lcj;I)V func_180617_a + a (Lzw;Lyz;Ljava/util/List;)V func_150895_a + a (Lzx;Ladm;Lcj;)Z func_179234_a + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a + a (Lzx;Lwn;Lpr;)Z func_111207_a + e_ (Lzx;)Ljava/lang/String; func_77667_c +zf net/minecraft/item/ItemCloth + a (I)I func_77647_b + e_ (Lzx;)Ljava/lang/String; func_77667_c +zg net/minecraft/item/ItemEgg + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a +zh net/minecraft/item/ItemEmptyMap + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a +zi net/minecraft/item/ItemEnchantedBook + a (Laci;Ljava/util/List;)V func_92113_a + a (Lacl;)Lzx; func_92111_a + a (Ljava/util/Random;III)Lob; func_92112_a + a (Lzx;Lacl;)V func_92115_a + a (Lzx;Lwn;Ljava/util/List;Z)V func_77624_a + b (Ljava/util/Random;)Lob; func_92114_b + f (Lzx;)Z func_77636_d + f_ (Lzx;)Z func_77616_k + g (Lzx;)Laaj; func_77613_e + h (Lzx;)Ldu; func_92110_g +zj net/minecraft/item/ItemEnderEye + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +zk net/minecraft/item/ItemEnderPearl + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a +zl net/minecraft/item/ItemExpBottle + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + f (Lzx;)Z func_77636_d +zm net/minecraft/item/ItemFireball + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +zn net/minecraft/item/ItemFireworkCharge + a (Ldn;Ljava/util/List;)V func_150902_a + a (Lzx;I)I func_82790_a + a (Lzx;Ljava/lang/String;)Leb; func_150903_a + a (Lzx;Lwn;Ljava/util/List;Z)V func_77624_a +zo net/minecraft/item/ItemFirework + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a + a (Lzx;Lwn;Ljava/util/List;Z)V func_77624_a +zp net/minecraft/item/ItemFishFood + b field_150907_b + a (Lzw;Lyz;Ljava/util/List;)V func_150895_a + c (Lzx;Ladm;Lwn;)V func_77849_c + e_ (Lzx;)Ljava/lang/String; func_77667_c + h (Lzx;)I func_150905_g + i (Lzx;)F func_150906_h + j (Lzx;)Ljava/lang/String; func_150896_i +zp$a net/minecraft/item/ItemFishFood$FishType + a COD + b SALMON + c CLOWNFISH + d PUFFERFISH + e field_150983_e + f field_150980_f + g field_150981_g + h field_150991_j + i field_150992_k + j field_150989_l + k field_150990_m + l field_150987_n + m $VALUES + a ()I func_150976_a + a (I)Lzp$a; func_150974_a + a (Lzx;)Lzp$a; func_150978_a + b ()Ljava/lang/String; func_150972_b + c ()I func_150975_c + d ()F func_150967_d + e ()I func_150970_e + f ()F func_150977_f + g ()Z func_150973_i + values ()[Lzp$a; values +zq net/minecraft/item/ItemFishingRod + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + b ()I func_77619_b + e ()Z func_77629_n_ + f_ (Lzx;)Z func_77616_k + w_ ()Z func_77662_d +zr net/minecraft/item/ItemFlintAndSteel + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +zs net/minecraft/item/ItemFood + a field_77855_a + b field_77853_b + c field_77854_c + d field_77856_bY + k field_77852_bZ + l field_77851_ca + m field_77850_cb + n field_77857_cc + o field_77858_cd + a (IIIF)Lzs; func_77844_a + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + b (Lzx;Ladm;Lwn;)Lzx; func_77654_b + c (Lzx;Ladm;Lwn;)V func_77849_c + d (Lzx;)I func_77626_a + e (Lzx;)Laba; func_77661_b + g ()Z func_77845_h + h ()Lzs; func_77848_i + h (Lzx;)I func_150905_g + i (Lzx;)F func_150906_h +zt net/minecraft/item/ItemAppleGold + a (Lzw;Lyz;Ljava/util/List;)V func_150895_a + c (Lzx;Ladm;Lwn;)V func_77849_c + f (Lzx;)Z func_77636_d + g (Lzx;)Laaj; func_77613_e +zu net/minecraft/item/ItemHangingEntity + a field_82811_a + a (Ladm;Lcj;Lcq;)Lun; func_179233_a + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a +zv net/minecraft/item/ItemHoe + a field_77843_a + a (Lzx;Lwn;Ladm;Lcj;Lalz;)Z func_179232_a + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a + g ()Ljava/lang/String; func_77842_f + w_ ()Z func_77662_d +zv$1 net/minecraft/item/ItemHoe$1 + a field_179590_a +zw net/minecraft/item/Item + a field_179220_a + b field_77701_a + c field_77699_b + d field_77700_c + e field_150901_e + f field_111210_e + g field_77697_d + h field_77777_bU + i field_77789_bW + j field_77787_bX + k field_77785_bY + l field_77774_bZ + a ()Ljava/lang/String; func_77658_a + a (I)I func_77647_b + a (ILjava/lang/String;Lzw;)V func_179217_a + a (ILjy;Lzw;)V func_179219_a + a (Ladm;Lwn;Z)Lauh; func_77621_a + a (Lafh;)Lzw; func_150898_a + a (Lafh;Lzw;)V func_179214_a + a (Ldn;)Z func_179215_a + a (Lyz;)Lzw; func_77637_a + a (Lzw;Lyz;Ljava/util/List;)V func_150895_a + a (Lzx;)Ljava/lang/String; func_77653_i + a (Lzx;I)I func_82790_a + a (Lzx;Ladm;Lafh;Lcj;Lpr;)Z func_179218_a + a (Lzx;Ladm;Lpk;IZ)V func_77663_a + a (Lzx;Ladm;Lwn;)Lzx; func_77659_a + a (Lzx;Ladm;Lwn;I)V func_77615_a + a (Lzx;Lafh;)F func_150893_a + a (Lzx;Lpr;Lpr;)Z func_77644_a + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a + a (Lzx;Lwn;Ljava/util/List;Z)V func_77624_a + a (Lzx;Lwn;Lpr;)Z func_111207_a + a (Lzx;Lzx;)Z func_82789_a + a (Z)Lzw; func_77627_a + b ()I func_77619_b + b (I)Lzw; func_150899_d + b (Lafh;)Z func_150897_b + b (Lzw;)I func_150891_b + b (Lzx;Ladm;Lwn;)Lzx; func_77654_b + c ()Lyz; func_77640_w + c (I)Lzw; func_77625_d + c (Lafh;)V func_179216_c + c (Ljava/lang/String;)Lzw; func_77655_b + c (Lzw;)Lzw; func_77642_a + d (I)Lzw; func_77656_e + d (Ljava/lang/String;)Lzw; func_111206_d + d (Lzx;)I func_77626_a + d (Lzx;Ladm;Lwn;)V func_77622_d + e ()Z func_77629_n_ + e (Ljava/lang/String;)Lzw; func_77631_c + e (Lzx;)Laba; func_77661_b + e_ (Lzx;)Ljava/lang/String; func_77667_c + f ()Z func_77643_m_ + f (Lzx;)Z func_77636_d + f_ (Lzx;)Z func_77616_k + g (Lzx;)Laaj; func_77613_e + i ()Lcom/google/common/collect/Multimap; func_111205_h + j ()I func_77639_j + j (Lzx;)Ljava/lang/String; func_150896_i + k ()Z func_77614_k + k (Lzx;)Ljava/lang/String; func_77657_g + l ()I func_77612_l + l (Lzx;)Z func_150892_m + m ()Z func_77645_m + n ()Lzw; func_77664_n + p ()Z func_77651_p + q ()Lzw; func_77668_q + r ()Z func_77634_r + s ()Z func_82788_x + t ()V func_150900_l + w_ ()Z func_77662_d +zw$1 net/minecraft/item/Item$1 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$10 net/minecraft/item/Item$10 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$11 net/minecraft/item/Item$11 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$12 net/minecraft/item/Item$12 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$13 net/minecraft/item/Item$13 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$14 net/minecraft/item/Item$14 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$15 net/minecraft/item/Item$15 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$16 net/minecraft/item/Item$16 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$17 net/minecraft/item/Item$17 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$2 net/minecraft/item/Item$2 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$3 net/minecraft/item/Item$3 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$4 net/minecraft/item/Item$4 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$5 net/minecraft/item/Item$5 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$6 net/minecraft/item/Item$6 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$7 net/minecraft/item/Item$7 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$8 net/minecraft/item/Item$8 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$9 net/minecraft/item/Item$9 + a (Lzx;)Ljava/lang/String; apply + apply (Ljava/lang/Object;)Ljava/lang/Object; apply +zw$a net/minecraft/item/Item$ToolMaterial + a WOOD + b STONE + c IRON + d EMERALD + e GOLD + f field_78001_f + g field_78002_g + h field_78010_h + i field_78011_i + j field_78008_j + k $VALUES + a ()I func_77997_a + b ()F func_77998_b + c ()F func_78000_c + d ()I func_77996_d + e ()I func_77995_e + f ()Lzw; func_150995_f + valueOf (Ljava/lang/String;)Lzw$a; valueOf + values ()[Lzw$a; values +zx net/minecraft/item/ItemStack + a field_111284_a + b field_77994_a + c field_77992_b + d field_151002_e + e field_77990_d + f field_77991_e + g field_82843_f + h field_179552_h + i field_179553_i + j field_179550_j + k field_179551_k + A ()I func_82838_A + B ()Lcom/google/common/collect/Multimap; func_111283_C + C ()Leu; func_151000_E + a ()Ljava/lang/String; func_77977_a + a (I)Lzx; func_77979_a + a (ILjava/util/Random;)Z func_96631_a + a (ILpr;)V func_77972_a + a (Laci;I)V func_77966_a + a (Ladm;Lafh;Lcj;Lwn;)V func_179548_a + a (Ladm;Lpk;IZ)V func_77945_a + a (Ladm;Lwn;)Lzx; func_77957_a + a (Ladm;Lwn;I)V func_77980_a + a (Lafh;)F func_150997_a + a (Ldn;)Lzx; func_77949_a + a (Ljava/lang/String;Leb;)V func_77983_a + a (Ljava/lang/String;Z)Ldn; func_179543_a + a (Lpr;Lwn;)V func_77961_a + a (Luo;)V func_82842_a + a (Lwn;Ladm;Lcj;Lcq;FFF)Z func_179546_a + a (Lwn;Lpr;)Z func_111282_a + a (Lwn;Z)Ljava/util/List; func_82840_a + a (Lzw;)V func_150996_a + a (Lzx;)Z func_77969_a + a (Lzx;Lzx;)Z func_77970_a + b ()Lzw; func_77973_b + b (I)V func_77964_b + b (Ladm;Lwn;)Lzx; func_77950_b + b (Ladm;Lwn;I)V func_77974_b + b (Lafh;)Z func_150998_b + b (Ldn;)Ldn; func_77955_b + b (Lzx;)Lzx; func_77944_b + b (Lzx;Lzx;)Z func_77989_b + c ()I func_77976_d + c (I)V func_82841_c + c (Lafh;)Z func_179544_c + c (Ldn;)V func_77963_c + c (Ljava/lang/String;)Lzx; func_151001_c + c (Lzx;)Z func_179549_c + c (Lzx;Lzx;)Z func_179545_c + d ()Z func_77985_e + d (Lafh;)Z func_179547_d + d (Ldn;)V func_77982_d + d (Lzx;)Z func_77959_d + e ()Z func_77984_f + f ()Z func_77981_g + g ()Z func_77951_h + h ()I func_77952_i + i ()I func_77960_j + j ()I func_77958_k + k ()Lzx; func_77946_l + l ()I func_77988_m + m ()Laba; func_77975_n + n ()Z func_77942_o + o ()Ldn; func_77978_p + p ()Ldu; func_77986_q + q ()Ljava/lang/String; func_82833_r + r ()V func_135074_t + s ()Z func_82837_s + t ()Z func_77962_s + toString ()Ljava/lang/String; toString + u ()Laaj; func_77953_t + v ()Z func_77956_u + w ()Z func_77948_v + x ()Z func_82835_x + y ()Z func_82839_y + z ()Luo; func_82836_z +zy net/minecraft/init/Items + A field_151009_A + B field_151010_B + C field_151011_C + D field_151005_D + E field_151006_E + F field_151007_F + G field_151008_G + H field_151016_H + I field_151017_I + J field_151018_J + K field_151019_K + L field_151012_L + M field_151013_M + N field_151014_N + O field_151015_O + P field_151025_P + Q field_151024_Q + R field_151027_R + S field_151026_S + T field_151021_T + U field_151020_U + V field_151023_V + W field_151022_W + X field_151029_X + Y field_151028_Y + Z field_151030_Z + a field_151037_a + aA field_151141_av + aB field_151139_aw + aC field_151137_ax + aD field_151126_ay + aE field_151124_az + aF field_151116_aA + aG field_151117_aB + aH field_151118_aC + aI field_151119_aD + aJ field_151120_aE + aK field_151121_aF + aL field_151122_aG + aM field_151123_aH + aN field_151108_aI + aO field_151109_aJ + aP field_151110_aK + aQ field_151111_aL + aR field_151112_aM + aS field_151113_aN + aT field_151114_aO + aU field_151115_aP + aV field_179566_aV + aW field_151100_aR + aX field_151103_aS + aY field_151102_aT + aZ field_151105_aU + aa field_151165_aa + ab field_151167_ab + ac field_151161_ac + ad field_151163_ad + ae field_151173_ae + af field_151175_af + ag field_151169_ag + ah field_151171_ah + ai field_151149_ai + aj field_151151_aj + ak field_151145_ak + al field_151147_al + am field_151157_am + an field_151159_an + ao field_151153_ao + ap field_151155_ap + aq field_179570_aq + ar field_179569_ar + as field_179568_as + at field_179567_at + au field_179572_au + av field_179571_av + aw field_151133_ar + ax field_151131_as + ay field_151129_at + az field_151143_au + b field_151035_b + bA field_151069_bo + bB field_151070_bp + bC field_151071_bq + bD field_151065_br + bE field_151064_bs + bF field_151067_bt + bG field_151066_bu + bH field_151061_bv + bI field_151060_bw + bJ field_151063_bx + bK field_151062_by + bL field_151059_bz + bM field_151099_bA + bN field_151164_bB + bO field_151166_bC + bP field_151160_bD + bQ field_151162_bE + bR field_151172_bF + bS field_151174_bG + bT field_151168_bH + bU field_151170_bI + bV field_151148_bJ + bW field_151150_bK + bX field_151144_bL + bY field_151146_bM + bZ field_151156_bN + ba field_151104_aV + bb field_151107_aW + bc field_151106_aX + bd field_151098_aY + be field_151097_aZ + bf field_151127_ba + bg field_151080_bb + bh field_151081_bc + bi field_151082_bd + bj field_151083_be + bk field_151076_bf + bl field_151077_bg + bm field_179561_bm + bn field_179557_bn + bo field_179558_bo + bp field_179559_bp + bq field_179560_bq + br field_179556_br + bs field_179555_bs + bt field_151078_bh + bu field_151079_bi + bv field_151072_bj + bw field_151073_bk + bx field_151074_bl + by field_151075_bm + bz field_151068_bn + c field_151036_c + cA field_151086_cn + cB field_151084_co + cC field_179562_cC + cD field_179563_cD + cE field_179564_cE + ca field_151158_bO + cb field_151152_bP + cc field_151154_bQ + cd field_151134_bR + ce field_151132_bS + cf field_151130_bT + cg field_151128_bU + ch field_151142_bV + ci field_151140_bW + cj field_179565_cj + ck field_151138_bX + cl field_151136_bY + cm field_151125_bZ + cn field_151058_ca + co field_151057_cb + cp field_151095_cc + cq field_151096_cd + cr field_151093_ce + cs field_151094_cf + ct field_151091_cg + cu field_151092_ch + cv field_151089_ci + cw field_151090_cj + cx field_151087_ck + cy field_151088_cl + cz field_151085_cm + d field_151033_d + e field_151034_e + f field_151031_f + g field_151032_g + h field_151044_h + i field_151045_i + j field_151042_j + k field_151043_k + l field_151040_l + m field_151041_m + n field_151038_n + o field_151039_o + p field_151053_p + q field_151052_q + r field_151051_r + s field_151050_s + t field_151049_t + u field_151048_u + v field_151047_v + w field_151046_w + x field_151056_x + y field_151055_y + z field_151054_z + a (Ljava/lang/String;)Lzw; func_179554_a +zz net/minecraft/item/ItemLead + a (Lwn;Ladm;Lcj;)Z func_180618_a + a (Lzx;Lwn;Ladm;Lcj;Lcq;FFF)Z func_180614_a diff --git a/mappings/data/methods.csv b/mappings/data/methods.csv new file mode 100644 index 0000000..dac463b --- /dev/null +++ b/mappings/data/methods.csv @@ -0,0 +1,6731 @@ +searge,name,side,desc +func_100011_g,getIsPotionDurationMax,0, +func_100012_b,setPotionDurationMax,0,Toggle the isPotionDurationMax field. +func_100015_a,isKeyDown,0,Returns whether the specified key binding is currently being pressed.\n \n@param key The key tested +func_104002_bU,isNoDespawnRequired,2, +func_104055_i,setForceGamemode,1, +func_104056_am,getForceGamemode,2, +func_104112_b,saveExtraData,2,"Save extra data not associated with any Chunk. Not saved during autosave, only during world unload. Currently unimplemented." +func_104140_m,saveChunkData,2,saves chunk data - currently only called during execution of the Save All command +func_110121_a,isNullOrEmpty,0, +func_110123_P,onChunkLoad,2, +func_110124_au,getUniqueID,2, +func_110128_b,onBroken,2,Called when this entity is broken. Entity parameter may be null. +func_110131_b,removeFrameFromMap,2,Removes the dot representing this frame's position from the map when the item frame is broken. +func_110132_b,removeInventoryChangeListener,2,removes the specified IInvBasic from receiving further change notices\n \n@param listener the listener to remove +func_110133_a,setCustomName,2,Sets the name of this inventory. This is displayed to the client on opening. +func_110134_a,addInventoryChangeListener,2,Add a listener that will be notified when any item in this inventory is modified.\n \n@param listener the listener to add +func_110138_aP,getMaxHealth,2, +func_110139_bj,getAbsorptionAmount,2, +func_110140_aT,getAttributeMap,2, +func_110142_aN,getCombatTracker,2,1.8.9 +func_110143_aJ,getHealth,2, +func_110144_aD,getLastAttacker,2, +func_110145_l,dismountEntity,2,Moves the entity to a position out of the way of its mount. +func_110146_f,updateDistance,2, +func_110147_ax,applyEntityAttributes,2, +func_110148_a,getEntityAttribute,2, +func_110149_m,setAbsorptionAmount,2, +func_110159_bB,updateLeashedState,2,"Applies logic related to leashes, for example dragging the entity or breaking the leash." +func_110160_i,clearLeashed,2,Removes the leash from this entity +func_110162_b,setLeashedToEntity,2,Sets the entity to be leashed to. +func_110163_bv,enablePersistence,2,Enable the Entity persistence +func_110164_bC,allowLeashing,2, +func_110165_bF,recreateLeash,2, +func_110166_bE,getLeashedToEntity,2, +func_110167_bD,getLeashed,2, +func_110173_bK,isWithinHomeDistanceCurrentPosition,2, +func_110174_bM,getMaximumHomeDistance,2, +func_110175_bO,hasHome,2,Returns whether a home area is defined for this entity. +func_110177_bN,detachHome,2, +func_110182_bF,isAttacking,0, +func_110195_a,addGrowth,2,"""Adds the value of the parameter times 20 to the age of this entity. If the entity is an adult (if the entity's age is greater than 0), it will have no effect.""" +func_110198_t,increaseTemper,2, +func_110199_f,openGUI,2, +func_110200_cJ,canMate,2,"Return true if the horse entity ready to mate. (no rider, not riding, tame, adult, not steril...)" +func_110201_q,getMouthOpennessAngle,0, +func_110202_bQ,getHorseVariant,2, +func_110203_cN,getModifiedMovementSpeed,2,Returns randomized movement speed +func_110204_cc,isEatingHaystack,2, +func_110205_ce,isBreeding,2, +func_110206_u,setJumpPower,2, +func_110207_m,setChested,2, +func_110208_b,setHorseWatchableBoolean,2, +func_110209_cd,isRearing,2, +func_110212_cp,getVariantTexturePaths,0, +func_110214_p,setHorseType,2, +func_110215_cj,getHorseJumpStrength,2, +func_110216_r,spawnHorseParticles,0,"""Spawns particles for the horse entity. par1 tells whether to spawn hearts. If it is false, it spawns smoke.""" +func_110217_cl,getAngrySoundName,2, +func_110218_cm,getMaxTemper,2, +func_110219_q,setRearing,2, +func_110220_cK,makeHorseRear,2, +func_110221_n,setHasReproduced,2, +func_110222_cv,isSterile,2,Return true if the horse entity is sterile (Undead || Mule) +func_110223_p,getRearingAmount,0, +func_110224_ci,dropChests,2, +func_110225_cC,getChestSize,2,Returns number of slots depending horse type +func_110226_cD,initHorseChest,2, +func_110227_p,setEatingHaystack,2, +func_110228_bR,isAdultHorse,2, +func_110229_cs,canCarryChest,2,Return true if the horse entity can carry a chest. +func_110230_cF,resetTexturePrefix,2, +func_110231_cz,makeHorseRearWithSound,2, +func_110232_cE,updateHorseSlots,2,Updates the items in the saddle and armor slots of the horse's inventory. +func_110233_w,getHorseWatchableBoolean,2, +func_110234_j,setHorseTamed,2, +func_110235_q,setHorseVariant,2, +func_110237_h,mountTo,2, +func_110238_s,setTemper,2, +func_110240_a,dropItemsInChest,2, +func_110241_cb,getHorseArmorIndexSynced,2,"Returns type of armor from DataWatcher (0 = iron, 1 = gold, 2 = diamond)" +func_110242_l,setBreeding,2, +func_110243_cf,getHasReproduced,2, +func_110244_cA,dropChestItems,2, +func_110245_cM,getModifiedJumpStrength,2,Returns randomized jump strength +func_110246_bZ,isHorseJumping,2, +func_110247_cG,setHorseTexturePaths,0, +func_110248_bS,isTame,2, +func_110249_cI,openHorseMouth,2, +func_110250_a,getClosestHorse,2, +func_110251_o,setHorseSaddled,2, +func_110252_cg,getTemper,2, +func_110254_bY,getHorseSize,2, +func_110255_k,setHorseJumping,2, +func_110256_cu,isUndead,2,"Used to know if the horse can be leashed, if he can mate, or if we can interact with him" +func_110257_ck,isHorseSaddled,2, +func_110258_o,getGrassEatingAmount,0, +func_110259_cr,canWearArmor,2,Return true if the horse entity can wear an armor +func_110260_d,getHorseArmorIndex,2,"0 = iron, 1 = gold, 2 = diamond" +func_110261_ca,isChested,2, +func_110262_ch,prepareChunkForSpawn,2, +func_110263_g,setTamedBy,2, +func_110264_co,getHorseTexture,0, +func_110265_bP,getHorseType,2,"Returns the horse type. 0 = Normal, 1 = Donkey, 2 = Mule, 3 = Undead Horse, 4 = Skeleton Horse" +func_110267_cL,getModifiedMaxHealth,2,Returns randomized max health +func_110297_a_,verifySellingItem,2,"Notifies the merchant of a possible merchantrecipe being fulfilled or not. Usually, this is just a sound byte being played depending if the suggested itemstack is not null." +func_110298_a,displayGUIHorse,2, +func_110303_q,getLocationCape,0, +func_110304_a,getDownloadImageSkin,0, +func_110306_p,getLocationSkin,0,Returns true if the player instance has an associated skin. +func_110311_f,getLocationSkin,0,Returns true if the username has an associated skin. +func_110317_t,isRidingHorse,0, +func_110318_g,sendHorseJump,0, +func_110319_bJ,getHorseJumpPower,0, +func_110326_a,setRecordPlaying,0, +func_110430_a,setEntityActionState,2, +func_110432_I,getSession,0, +func_110434_K,getTextureManager,0, +func_110436_a,refreshResources,0, +func_110437_J,getProxy,0, +func_110438_M,getResourcePackRepository,0, +func_110441_Q,updateDisplayMode,0, +func_110442_L,getResourceManager,0, +func_110454_ao,getServerProxy,2, +func_110455_j,getOpPermissionLevel,2, +func_110462_b,getPackFormat,0, +func_110468_c,getFrameIndex,0, +func_110469_d,getFrameTime,0, +func_110470_b,frameHasTime,0, +func_110471_a,getFrameHeight,0, +func_110472_a,getFrameTimeSingle,0, +func_110473_c,getFrameCount,0, +func_110474_b,getFrameWidth,0, +func_110479_a,getTextureBlur,0, +func_110480_b,getTextureClamp,0, +func_110483_a,getSectionName,0,The name of this section type as it appears in JSON. +func_110492_a,parseAnimationFrame,0, +func_110495_a,hasNoTime,0, +func_110496_c,getFrameIndex,0, +func_110497_b,getFrameTime,0, +func_110503_a,parseMetadataSection,0, +func_110504_a,registerMetadataSectionType,0, +func_110505_a,getGson,0,Returns a Gson instance with type adapters registered for metadata sections. +func_110514_c,getResourcePack,0, +func_110515_d,getResourcePackName,0, +func_110516_a,updateResourcePack,0, +func_110517_b,closeResourcePack,0, +func_110518_a,bindTexturePackIcon,0, +func_110519_e,getTexturePackDescription,0, +func_110526_a,getMetadata,0, +func_110527_b,getInputStream,0, +func_110528_c,hasMetadata,0, +func_110536_a,getResource,0, +func_110537_b,getLocationMcmeta,0, +func_110538_a,addResourcePack,0, +func_110541_a,reloadResources,0, +func_110542_a,registerReloadListener,0, +func_110543_a,clearResources,0, +func_110544_b,notifyReloadListeners,0, +func_110545_a,reloadResourcePack,0, +func_110549_a,onResourceManagerReload,0, +func_110550_d,tick,0, +func_110551_a,loadTexture,0, +func_110552_b,getGlTextureId,0, +func_110564_a,updateDynamicTexture,0, +func_110565_c,getTextureData,0, +func_110569_e,initMissingImage,0, +func_110571_b,loadTextureAtlas,0, +func_110572_b,getAtlasSprite,0, +func_110577_a,bindTexture,0, +func_110578_a,getDynamicTextureLocation,0, +func_110579_a,loadTexture,0, +func_110580_a,loadTickableTexture,0, +func_110581_b,getTexture,0, +func_110586_a,getPackImage,0, +func_110587_b,getResourceDomains,0, +func_110589_b,resourceExists,0, +func_110590_a,getInputStream,0, +func_110591_a,getInputStreamByName,0, +func_110592_c,locationToName,0, +func_110593_b,hasResourceName,0, +func_110594_c,logNameNotLowercase,0, +func_110595_a,getRelativeName,0, +func_110596_a,readMetadata,0, +func_110599_c,getResourcePackZipFile,0, +func_110605_c,getResourceStream,0, +func_110609_b,getRepositoryEntriesAll,0, +func_110611_a,updateRepositoryEntriesAll,0, +func_110612_e,getDirResourcepacks,0, +func_110613_c,getRepositoryEntries,0, +func_110614_g,getResourcePackFiles,0, +func_110616_f,fixDirResourcepacks,0, +func_110623_a,getResourcePath,2, +func_110624_b,getResourceDomain,0, +func_110646_a,getTextWithoutFormattingCodes,2,"Returns a copy of the given string, with formatting codes stripped away." +func_110647_a,getOSType,0, +func_110682_a,setBoxRotation,0,Sets the rotations for a ModelRenderer in the ModelHorse class. +func_110683_a,updateHorseRotation,0,Fixes and offsets a rotation in the ModelHorse class. +func_110738_j,isRidingHorse,0,"Checks if the player is riding a horse, used to chose the GUI to open" +func_110775_a,getEntityTexture,0,Returns the location of an entity's texture. Doesn't seem to be called unless you call Render.bindEntityTexture. +func_110776_a,bindTexture,0, +func_110827_b,renderLeash,0, +func_110828_a,interpolateValue,0,Gets the value between start and end according to pct +func_110934_a,addSprite,0, +func_110935_a,getCurrentWidth,0, +func_110936_b,getCurrentHeight,0, +func_110966_b,setIconWidth,0, +func_110967_i,getOriginY,0,"Returns the Y position of this icon on its texture sheet, in pixels." +func_110968_a,setFramesTextureData,0, +func_110969_c,setIconHeight,0, +func_110970_k,getFrameCount,0, +func_110971_a,initSprite,0, +func_110985_a,updateAnaglyph,0, +func_110986_a,readImageData,0, +func_110987_a,uploadTextureImage,0, +func_110988_a,uploadTexture,0, +func_110989_a,uploadTextureImageAllocate,0, +func_110990_a,copyToBuffer,0, +func_110991_a,allocateTexture,0, +func_110993_a,uploadTextureImageSubImpl,0, +func_110994_a,copyToBufferPos,0, +func_110995_a,uploadTextureImageSub,0, +func_110996_a,glGenTextures,0, +func_110997_a,setTextureClamped,0, +func_111108_a,getAttributeUnlocalizedName,2, +func_111109_a,clampValue,2, +func_111110_b,getDefaultValue,2, +func_111111_c,getShouldWatch,2, +func_111112_a,setShouldWatch,2, +func_111116_f,getDescription,2, +func_111117_a,setDescription,2, +func_111121_a,applyModifier,2, +func_111123_a,getAttribute,2,Get the Attribute this is an instance of +func_111124_b,removeModifier,2, +func_111125_b,getBaseValue,2, +func_111126_e,getAttributeValue,2, +func_111127_a,getModifier,2,"Returns attribute modifier, if any, by the given UUID" +func_111128_a,setBaseValue,2, +func_111129_g,computeValue,2, +func_111130_a,getModifiersByOperation,2, +func_111131_f,flagForUpdate,2, +func_111145_d,getWatchableObjectFloat,2, +func_111146_a,getAllAttributes,2, +func_111147_b,applyAttributeModifiers,2, +func_111148_a,removeAttributeModifiers,2, +func_111150_b,registerAttribute,2,"Registers an attribute with this AttributeMap, returns a modifiable AttributeInstance associated with this map" +func_111151_a,getAttributeInstance,2, +func_111152_a,getAttributeInstanceByName,2, +func_111160_c,getWatchedAttributes,2, +func_111161_b,getAttributeInstanceSet,2, +func_111164_d,getAmount,2, +func_111165_e,isSaved,2,@see #isSaved +func_111166_b,getName,2, +func_111167_a,getID,2, +func_111168_a,setSaved,2,@see #isSaved +func_111169_c,getOperation,2, +func_111175_f,getTargetDistance,2, +func_111183_a,getAttributeModifierAmount,2, +func_111184_a,registerPotionAttributeModifier,2,Used by potions to register the attribute they modify. +func_111185_a,applyAttributesModifiersToEntity,2, +func_111186_k,getAttributeModifierMap,0, +func_111187_a,removeAttributesModifiersFromEntity,2, +func_111190_b,sendMetadataToAllAssociatedPlayers,2,"Sends the entity metadata (DataWatcher) and attributes to all players tracking this entity, including the entity itself if a player." +func_111194_a,processChunk,2,This method currently only increases chunk inhabited time. Extension is possible in next versions +func_111196_a,increaseInhabitedTime,2,Increases chunk inhabited time every 8000 ticks +func_111205_h,getItemAttributeModifiers,2,"Gets a map of item attribute modifiers, used by ItemSword to increase hit damage." +func_111206_d,getByNameOrId,2,"Tries to get an Item by it's name (e.g. minecraft:apple) or a String representation of a numerical ID. If both fail, null is returned." +func_111207_a,itemInteractionForEntity,2,"Returns true if the item can be used on the given entity, e.g. shears on sheep." +func_111225_m,getRelevantEnchantmentTypes,0,Returns the enchantment types relevant to this tab +func_111226_a,hasRelevantEnchantmentType,0, +func_111229_a,setRelevantEnchantmentTypes,2,Sets the enchantment types for populating this tab with enchanting books +func_111238_b,canBeHovered,0,"Actualy only call when we want to render the white square effect over the slots. Return always True, except for the armor slot of the Donkey/Mule (we can't interact with the Undead and Skeleton horses)" +func_111257_a,writeBaseAttributeMapToNBT,2,"Creates an NBTTagList from a BaseAttributeMap, including all its AttributeInstances" +func_111258_a,applyModifiersToAttributeInstance,2, +func_111259_a,readAttributeModifierFromNBT,2,Creates an AttributeModifier from an NBTTagCompound +func_111261_a,writeAttributeInstanceToNBT,2,"Creates an NBTTagCompound from an AttributeInstance, including its AttributeModifiers" +func_111262_a,writeAttributeModifierToNBT,2,Creates an NBTTagCompound from an AttributeModifier +func_111269_d,getPathSearchRange,2,Gets the maximum distance that the path finding will search in. +func_111270_a,union,2, +func_111271_a,getUnicodePageLocation,0, +func_111272_d,readFontTexture,0, +func_111282_a,interactWithEntity,2, +func_111283_C,getAttributeModifiers,2,Gets the attribute modifiers for this ItemStack.\nWill check for an NBT tag list containing modifiers for the stack. +func_111285_a,getUsername,0, +func_111286_b,getSessionID,0, +func_120011_ar,setGuiEnabled,1, +func_120016_a,createServerGui,1,Creates the server GUI and sets it visible for the user. +func_120018_d,getLogComponent,1, +func_120019_b,getStatsComponent,1,Generates new StatsComponent and returns it. +func_120020_c,getPlayerListComponent,1,Generates new PlayerListComponent and returns it. +func_130001_d,getCurrentMoonPhaseFactor,2,"gets the current fullness of the moon expressed as a float between 1.0 and 0.0, in steps of .25" +func_130002_c,interactFirst,2,First layer of player interaction +func_130010_a,getOriginX,0,"Returns the X position of this icon on its texture sheet, in pixels." +func_130011_c,setLastAttacker,2, +func_130014_f_,getEntityWorld,2,"Get the world, if available. <b>{@code null} is not allowed!</b> If you are not an entity in the world, return the overworld" +func_130071_aq,getCurrentTimeMillis,2, +func_130072_d,getAnimationFrame,0, +func_130073_e,getFrameIndexSet,0, +func_130077_b,getPackName,0, +func_130098_m,hasAnimationMetadata,0, +func_130099_d,allocateFrameTextureData,0, +func_130102_n,resetSprite,0, +func_130103_l,clearFramesTextureData,0, +func_130105_g,getMinecraftStartTimeMillis,2,Returns the saved value of System#currentTimeMillis when the game started +func_135016_M,getLanguageManager,0, +func_135018_a,getLanguages,0, +func_135021_a,loadLocaleData,0, +func_135022_a,loadLocaleDataFiles,0,"For each domain $D and language $L, attempts to load the resource $D:lang/$L.lang" +func_135023_a,formatMessage,0,"Calls String.format(translateKey(key), params)" +func_135024_b,checkUnicode,0, +func_135025_a,isUnicode,0, +func_135026_c,translateKeyPrivate,0,"Returns the translation, or the key itself if the key could not be translated." +func_135028_a,loadLocaleData,0,Loads the locale data for the list of resources. +func_135034_a,getLanguageCode,0, +func_135035_b,isBidirectional,0, +func_135040_d,getLanguages,0, +func_135041_c,getCurrentLanguage,0, +func_135042_a,isCurrentLocaleUnicode,0, +func_135043_a,parseLanguageMetadata,0, +func_135044_b,isCurrentLanguageBidirectional,0, +func_135045_a,setCurrentLanguage,0, +func_135051_a,setLocale,0, +func_135052_a,format,0,"format(a, b) is equivalent to String.format(translate(a), b). Args: translationKey, params..." +func_135055_a,getResourceDomains,0, +func_135056_b,getAllResources,0, +func_135058_a,getPackMetadata,0, +func_135063_a,replaceWith,0,Replaces all the current instance's translations with the ones that are passed in. +func_135064_c,tryTranslateKey,2,Tries to look up a translation for the given key; spits back the key if no result was found. +func_135074_t,clearCustomName,2,Clear any custom name set for this ItemStack +func_140005_i,switchToRealms,0, +func_142008_O,shouldSetPosAfterLoading,2, +func_142012_a,isOnTeam,2,Returns true if the entity is on a specific team. +func_142013_aG,getLastAttackerTime,2, +func_142014_c,isOnSameTeam,2, +func_142015_aE,getRevengeTimer,2, +func_142018_a,shouldAttackEntity,2, +func_142021_k,getClientBrand,0, +func_142049_d,removeAllModifiers,0, +func_142053_d,formatString,2, +func_142054_a,isSameTeam,2,Same as == +func_143004_u,markPlayerActive,2, +func_143006_e,setPlayerIdleTimeout,2, +func_143007_ar,getMaxPlayerIdleMinutes,2, +func_143009_a,readStructureBaseNBT,2,"Reads and sets structure base data (boundingbox, {@link net.minecraft.world.gen.structure.StructureComponent#coordBaseMode coordBase} and {@link net.minecraft.world.gen.structure.StructureComponent#componentType componentType})" +func_143010_b,createStructureBaseNBT,2,"Writes structure base data (id, boundingbox, {@link net.minecraft.world.gen.structure.StructureComponent#coordBaseMode coordBase} and {@link net.minecraft.world.gen.structure.StructureComponent#componentType componentType}) to new NBTTagCompound and returns it." +func_143011_b,readStructureFromNBT,2,(abstract) Helper method to read subclass data from NBT +func_143012_a,writeStructureToNBT,2,(abstract) Helper method to write subclass data to NBT +func_143016_a,registerVillagePieces,2, +func_143017_b,readFromNBT,2, +func_143018_f,getChunkPosZ,2, +func_143019_e,getChunkPosX,2, +func_143020_a,readStructureComponentsFromNBT,2, +func_143021_a,writeStructureComponentsToNBT,2, +func_143022_a,writeToNBT,2, +func_143025_a,getStructureName,2, +func_143026_a,setStructureStart,2, +func_143027_a,initializeStructureData,2, +func_143031_a,registerStructureComponent,2, +func_143032_b,getStructureComponent,2, +func_143033_a,getStructureStartName,2, +func_143034_b,registerStructure,2, +func_143035_a,getStructureStart,2, +func_143036_a,getStructureComponentName,2, +func_143041_a,getTagCompound,2, +func_143042_b,formatChunkCoords,2, +func_143043_a,writeInstance,2,"Writes the NBT tag of an instance of this structure type to the internal NBT tag, using the chunkcoordinates as the key" +func_143045_a,registerScatteredFeaturePieces,2, +func_143046_a,registerStrongholdPieces,2, +func_143048_a,registerStructurePieces,2, +func_143049_a,registerNetherFortressPieces,2, +func_145747_a,addChatMessage,2,Send a chat message to the CommandSender +func_145748_c_,getDisplayName,2,Get the formatted ChatComponent that will be used for the sender's username in chat +func_145749_h,getLastOutput,2,Returns the lastOutput. +func_145750_b,setLastOutput,2, +func_145752_a,setCommand,2,Sets the command. +func_145753_i,getCommand,2,Returns the command of the command block. +func_145754_b,setName,2, +func_145755_a,trigger,2, +func_145756_e,updateCommand,2, +func_145758_a,writeDataToNBT,2,Stores data to NBT format. +func_145759_b,readDataFromNBT,2,Reads NBT formatting and stored data into variables. +func_145760_g,getSuccessCount,2,returns the successCount int. +func_145769_d,setEntityId,2, +func_145770_h,isInRangeToRender3d,0, +func_145771_j,pushOutOfBlocks,2, +func_145773_az,doesEntityNotTriggerPressurePlate,2,Return whether this entity should NOT trigger a pressure plate or a tripwire. +func_145775_I,doBlockCollisions,2, +func_145776_H,getSwimSound,2, +func_145777_O,getSplashSound,2, +func_145778_a,dropItemWithOffset,2, +func_145779_a,dropItem,2, +func_145781_i,onDataWatcherUpdate,2, +func_145782_y,getEntityId,2, +func_145797_a,setOwner,2, +func_145798_i,getOwner,2, +func_145799_b,setThrower,2, +func_145800_j,getThrower,2, +func_145806_a,setHurtEntities,2, +func_145807_e,getWorldObj,0, +func_145818_k_,hasCustomName,2,Returns true if this thing is named +func_145822_e,getCommandBlockLogic,2, +func_145826_a,addMapping,2,Adds a new two-way mapping between the class and its string name in both hashmaps. +func_145827_c,createAndLoadEntity,2,Creates a new entity and loads its data from the specified NBT. +func_145828_a,addInfoToCrashReport,2, +func_145829_t,validate,2,validates a tile entity +func_145830_o,hasWorldObj,2,Returns true if the worldObj isn't null. +func_145831_w,getWorld,2,Returns the worldObj for this tileEntity. +func_145832_p,getBlockMetadata,2, +func_145833_n,getMaxRenderDistanceSquared,0, +func_145834_a,setWorldObj,2,Sets the worldObj for this tileEntity. +func_145835_a,getDistanceSq,0,Returns the square of the distance between this entity and the passed in coordinates. +func_145836_u,updateContainingBlockInfo,2, +func_145837_r,isInvalid,2, +func_145838_q,getBlockType,2,Gets the block type at the location of this entity (client-only). +func_145839_a,readFromNBT,2, +func_145841_b,writeToNBT,2, +func_145842_c,receiveClientEvent,2, +func_145843_s,invalidate,2,invalidates a tile entity +func_145844_m,getDescriptionPacket,2,Allows for a specialized description packet to be created. This is often used to sync tile entity data from the server to the client easily. For example this is used by signs to synchronise the text to be displayed. +func_145856_a,getRecord,2, +func_145857_a,setRecord,2, +func_145860_a,getProgress,2,Get interpolated progress value (between lastProgress and progress) given the fractional time between ticks as an argument +func_145863_a,launchWithSlimeBlock,2, +func_145866_f,clearPistonTileEntity,2,"removes a piston's tile entity (and if the piston is moving, stops it)" +func_145867_d,shouldPistonHeadBeRendered,0, +func_145868_b,isExtending,2,Returns true if a piston is extending +func_145877_a,changePitch,2,change pitch by -> (currentPitch + 1) % 25 +func_145881_a,getSpawnerBaseLogic,2, +func_145883_k,transferItemsOut,2, +func_145884_b,getHopperInventory,2,Returns the IInventory for the specified hopper +func_145886_a,setCustomName,2, +func_145887_i,updateHopper,2, +func_145888_j,isOnTransferCooldown,2, +func_145891_a,captureDroppedItems,2, +func_145893_b,getInventoryAtPosition,2,Returns the IInventory (if applicable) of the TileEntity at the specified position +func_145894_a,canCombine,2, +func_145895_l,getInventoryForHopperTransfer,2,Returns the IInventory that this hopper is pointing into +func_145896_c,setTransferCooldown,2, +func_145898_a,putDropInInventoryAllSlots,2,Attempts to place the passed EntityItem's stack into the inventory using as many slots as possible. Returns false if the stackSize of the drop was not depleted. +func_145903_a,setSkullRotation,2, +func_145904_a,getSkullType,2, +func_145906_b,getSkullRotation,0, +func_145911_b,getPlayer,2, +func_145912_a,setPlayer,2, +func_145913_a,setEditable,0,Sets the sign's isEditable flag to the specified parameter. +func_145914_a,getIsEditable,2, +func_145920_a,setCustomName,2, +func_145934_k,canBrew,2, +func_145936_c,getPotionResult,2,The result of brewing a potion of the specified damage value with an ingredient itemstack. +func_145937_a,setName,2, +func_145940_l,brewPotions,2, +func_145948_k,canSmelt,2,"Returns true if the furnace can smelt an item, i.e. has a source item, destination stack isn't full, etc." +func_145949_j,smeltItem,2,Turn one item from the furnace source stack into the appropriate smelted item in the furnace result stack +func_145950_i,isBurning,2,Furnace isBurning +func_145951_a,setCustomInventoryName,2, +func_145952_a,getItemBurnTime,2,"Returns the number of ticks that the supplied fuel item will keep the furnace burning, or 0 if the item isn't fuel" +func_145954_b,isItemFuel,2, +func_145964_a,setFlowerPotData,2, +func_145965_a,getFlowerPotItem,2, +func_145966_b,getFlowerPotData,2, +func_145969_a,openChest,2, +func_145970_b,closeChest,2, +func_145971_a,canBeUsed,2, +func_145976_a,setCustomName,2, +func_145979_i,checkForAdjacentChests,2,Performs the check for adjacent chests to determine if this chest is double or not. +func_145980_j,getChestType,2, +func_145993_a,getCommandBlockLogic,2, +func_145995_a,setOutputSignal,2, +func_145996_a,getOutputSignal,2, +func_145999_a,setName,2, +func_146000_x,addEffectsToPlayers,2, +func_146002_i,shouldBeamRender,0, +func_146003_y,updateSegmentColors,2, +func_146017_i,getDispenseSlot,2, +func_146018_a,setCustomName,2, +func_146019_a,addItemStack,2,Add the given ItemStack to this Dispenser. Return the Slot the Item was placed in or -1 if no free slot is available. +func_146023_a,getStrVsBlock,2, +func_146024_c,getInventorySlotContainItemAndDamage,0, +func_146025_b,canHeldItemHarvest,2, +func_146026_a,consumeInventoryItem,2,"removed one item of specified Item from inventory (if it is in a stack, the stack size will reduce with 1)" +func_146028_b,hasItem,2,Checks if a specified Item is inside the inventory +func_146029_c,getInventorySlotContainItem,2, +func_146030_a,setCurrentItem,0, +func_146031_a,setChestTileEntity,2, +func_146033_f,getFishingResult,2, +func_146034_e,handleHookRetraction,2, +func_146035_c,handleHookCasting,2, +func_146065_b,dropItemOrSelf,2, +func_146066_aG,canDropLoot,2,Entity won't drop items or experience points if this returns false +func_146067_o,getFallSoundString,2, +func_146068_u,getDropItem,2, +func_146069_a,multiplySize,2,Multiplies the height and width by the provided float. +func_146070_a,setBreakDoorsAItask,2,Sets or removes EntityAIBreakDoor task +func_146071_k,setChildSize,2,sets the size of the entity to be half of its current size if true. +func_146072_bX,isBreakDoorsTaskSet,2, +func_146077_cc,explode,2,Creates an explosion as determined by this creeper's power and explosion radius. +func_146078_ca,hasIgnited,2, +func_146079_cb,ignite,2, +func_146082_f,setInLove,2, +func_146083_cb,getPlayerInLove,2, +func_146085_a,isArmorItem,2,Returns true if given item is horse armor +func_146086_d,setHorseArmorStack,2,Set horse armor stack (for example: new ItemStack(Items.iron_horse_armor)) +func_146094_a,getUUID,2,Gets a players UUID given their GameProfie +func_146095_a,openEditCommandBlock,2, +func_146097_a,dropItem,2, +func_146099_a,canHarvestBlock,2,Checks if the player has the ability to harvest a block (checks current inventory item for a tool if necessary) +func_146103_bH,getGameProfile,2,Returns the GameProfile for this player +func_146105_b,addChatComponentMessage,2, +func_146107_m,getStatFileWriter,0, +func_146110_a,drawModalRectWithCustomSizedTexture,0,"Draws a textured rectangle at z = 0. Args: x, y, u, v, width, height, textureWidth, textureHeight" +func_146111_b,drawButtonForegroundLayer,0, +func_146112_a,drawButton,0,Draws this button to the screen. +func_146113_a,playPressSound,0, +func_146114_a,getHoverState,0,"Returns 0 if the button is disabled, 1 if the mouse is NOT hovering over this button and 2 if it IS hovering over this button." +func_146115_a,isMouseOver,0,Whether the mouse cursor is currently over the button. +func_146116_c,mousePressed,0,Returns true if the mouse has been pressed on this control. Equivalent of MouseListener.mousePressed(MouseEvent e). +func_146117_b,getButtonWidth,0, +func_146118_a,mouseReleased,0,Fired when the mouse button is released. Equivalent of MouseListener.mouseReleased(MouseEvent e). +func_146119_b,mouseDragged,0,Fired when the mouse button is dragged. Equivalent of MouseListener.mouseDragged(MouseEvent e). +func_146136_c,returnEnumOptions,0, +func_146158_b,getChatGUI,0,"returns a pointer to the persistant Chat GUI, containing all previous chat messages and such" +func_146159_a,drawLabel,0, +func_146160_b,drawLabelBackground,0, +func_146175_b,deleteFromCursor,0,"delete the selected text, otherwsie deletes characters from either side of the cursor. params: delete num" +func_146176_q,getVisible,0,returns true if this textbox is visible +func_146177_a,deleteWords,0,Deletes the specified number of words starting at the cursor position. Negative numbers will delete words left of the cursor. +func_146178_a,updateCursorCounter,0,Increments the cursor counter +func_146179_b,getText,0,Returns the contents of the textbox +func_146180_a,setText,0,Sets the text of the textbox +func_146181_i,getEnableBackgroundDrawing,0,get enable drawing background and outline +func_146182_d,moveCursorBy,0,Moves the text cursor by a specified number of characters and clears the selection +func_146183_a,getNthWordFromPos,0,"gets the position of the nth word. N may be negative, then it looks backwards. params: N, position" +func_146184_c,setEnabled,0, +func_146185_a,setEnableBackgroundDrawing,0,enable drawing background and outline +func_146186_n,getSelectionEnd,0,"the side of the selection that is not the cursor, may be the same as the cursor" +func_146187_c,getNthWordFromCursor,0,"see @getNthNextWordFromPos() params: N, position" +func_146188_c,drawCursorVertical,0,draws the vertical line cursor in the textbox +func_146189_e,setVisible,0,Sets whether or not this textbox is visible +func_146190_e,setCursorPosition,0,sets the position of the cursor to the provided index +func_146191_b,writeText,0,"replaces selected text, or inserts text at the position on the cursor" +func_146192_a,mouseClicked,0,"Args: x, y, buttonClicked" +func_146193_g,setTextColor,0,Sets the text colour for this textbox (disabled text will not use this colour) +func_146194_f,drawTextBox,0,Draws the textbox +func_146195_b,setFocused,0,Sets focus to this gui element +func_146196_d,setCursorPositionZero,0,sets the cursors position to the beginning +func_146198_h,getCursorPosition,0,returns the current position of the cursor +func_146199_i,setSelectionPos,0,Sets the position of the selection anchor (i.e. position the selection was started at) +func_146200_o,getWidth,0,returns the width of the textbox depending on if background drawing is enabled +func_146201_a,textboxKeyTyped,0,Call this method from your GuiScreen to process the keys into the textbox +func_146202_e,setCursorPositionEnd,0,sets the cursors position to after the text +func_146203_f,setMaxStringLength,0, +func_146204_h,setDisabledTextColour,0, +func_146205_d,setCanLoseFocus,0,if true the textbox can lose focus by clicking elsewhere on the screen +func_146206_l,isFocused,0,Getter for the focused field +func_146207_c,getSelectedText,0,returns the text between the cursor and selectionEnd +func_146208_g,getMaxStringLength,0,returns the maximum number of character that can be contained in this textbox +func_146227_a,printChatMessage,0, +func_146228_f,getChatWidth,0, +func_146229_b,scroll,0,Scrolls the chat by the given number of lines.\n \n@param amount The amount to scroll +func_146230_a,drawChat,0, +func_146231_a,clearChatMessages,0,Clears the chat. +func_146232_i,getLineCount,0, +func_146233_a,calculateChatboxWidth,0, +func_146234_a,printChatMessageWithOptionalDeletion,0,"prints the ChatComponent to Chat. If the ID is not 0, deletes an existing Chat Line of that ID from the GUI" +func_146236_a,getChatComponent,0,Gets the chat component under the mouse\n \n@param mouseX The x position of the mouse\n@param mouseY The y position of the mouse +func_146237_a,setChatLine,0, +func_146238_c,getSentMessages,0,Gets the list of messages previously sent through the chat GUI +func_146239_a,addToSentMessages,0,"Adds this string to the list of sent messages, for recall using the up/down arrow keys\n \n@param message The message to add in the sendMessage List" +func_146240_d,resetScroll,0,"Resets the chat scroll (executed when the GUI is closed, among others)" +func_146241_e,getChatOpen,0,Returns true if the chat GUI is open +func_146242_c,deleteChatLine,0,finds and deletes a Chat line by ID\n \n@param id The ChatLine's id to delete +func_146243_b,calculateChatboxHeight,0, +func_146244_h,getChatScale,0,Returns the chatscale from mc.gameSettings.chatScale +func_146245_b,refreshChat,0, +func_146246_g,getChatHeight,0, +func_146254_a,updateAchievementWindow,0, +func_146255_b,displayUnformattedAchievement,0, +func_146256_a,displayAchievement,0, +func_146257_b,clearAchievements,0, +func_146258_c,updateAchievementWindowScale,0, +func_146269_k,handleInput,0,Delegates mouse and keyboard input. +func_146270_b,drawWorldBackground,0, +func_146271_m,isCtrlKeyDown,0,Returns true if either windows ctrl key is down or if either mac meta key is down +func_146272_n,isShiftKeyDown,0,Returns true if either shift key is down +func_146273_a,mouseClickMove,0,"Called when a mouse button is pressed and the mouse is moved around. Parameters are : mouseX, mouseY, lastButtonClicked & timeSinceMouseClick." +func_146274_d,handleMouseInput,0,Handles mouse input. +func_146275_d,setClipboardString,0,Stores the given string in the system clipboard +func_146276_q_,drawDefaultBackground,0,Draws either a gradient over the background screen (when it exists) or a flat gradient over background.png +func_146277_j,getClipboardString,0,Returns a string stored in the system clipboard. +func_146278_c,drawBackground,0,Draws the background (i is always 0 as of 1.2.2) +func_146279_a,drawCreativeTabHoveringText,0,"Draws the text when mouse is over creative inventory tab. Params: current creative tab to be checked, current mouse x position, current mouse y position." +func_146280_a,setWorldAndResolution,0,Causes the screen to lay out its subcomponents again. This is the equivalent of the Java call Container.validate() +func_146281_b,onGuiClosed,0,Called when the screen is unloaded. Used to disable keyboard repeat events +func_146282_l,handleKeyboardInput,0,Handles keyboard input. +func_146283_a,drawHoveringText,0,Draws a List of strings as a tooltip. Every entry is drawn on a seperate line. +func_146284_a,actionPerformed,0,Called by the controls from the buttonList when activated. (Mouse pressed for buttons) +func_146285_a,renderToolTip,0, +func_146286_b,mouseReleased,0,"Called when a mouse button is released. Args : mouseX, mouseY, releaseButton" +func_146314_g,calcSaveDirName,0,Determine a save-directory name from the world name +func_146315_i,toggleMoreWorldOptions,0,"Toggles between initial world-creation display, and ""more options"" display.\nCalled when user clicks ""More World Options..."" or ""Done"" (same button, different labels depending on current display)." +func_146316_a,showMoreWorldOptions,0,"Shows additional world-creation options if toggle is true, otherwise shows main world-creation elements" +func_146317_a,getUncollidingSaveDirName,0,"Ensures that a proposed directory name doesn't collide with existing names.\nReturns the name, possibly modified to avoid collisions.\n \n@param saveLoader used to check against existing names\n@param name the name to check, and possibly adjust (via the method's return)" +func_146318_a,recreateFromExistingWorld,0,"Set the initial values of a new world to create, from the values from an existing world.\n \nCalled after construction when a user selects the ""Recreate"" button.\n \n@param original The world we're copying from" +func_146319_h,updateDisplayState,0,Sets displayed GUI elements according to the current settings state +func_146350_a,setButtonDelay,0,Sets the number of ticks to wait before enabling the buttons. +func_146358_g,disableSecurityWarning,0, +func_146359_e,copyLinkToClipboard,0,Copies the link to the system clipboard. +func_146367_a,connect,0, +func_146402_a,getSentHistory,0,"input is relative and is applied directly to the sentHistoryCursor so -1 is the previous message, 1 is the next message from the current cursor position" +func_146404_p_,autocompletePlayerNames,0, +func_146405_a,sendAutocompleteRequest,0, +func_146406_a,onAutocompleteResponse,0, +func_146418_g,wakeFromSleep,0, +func_146456_p,pageGetCurrent,0,Returns the entire text of the current page as determined by currPage +func_146457_a,pageSetCurrent,0,Sets the text of the current page as determined by currPage +func_146459_b,pageInsertIntoCurrent,0,"Processes any text getting inserted into the current page, enforcing the page size limit" +func_146460_c,keyTypedInTitle,0,Processes keystrokes when editing the title of a book +func_146461_i,addNewPage,0, +func_146462_a,sendBookToServer,0, +func_146463_b,keyTypedInBook,0,Processes keystrokes when editing the text of a book +func_146464_h,updateButtons,0, +func_146504_a,getSoundVolume,0, +func_146509_g,doneLoading,0, +func_146521_a,drawStatsScreen,0, +func_146527_c,drawSprite,0,Draws a sprite from assets/textures/gui/container/stats_icons.png +func_146531_b,drawButtonBackground,0,Draws a gray box that serves as a button background. +func_146541_h,createButtons,0, +func_146552_b,drawAchievementScreen,0, +func_146553_h,drawTitle,0, +func_146574_g,sendRespawnPacket,0, +func_146575_b,drawWinGameScreen,0, +func_146586_a,setDoneWorking,0, +func_146618_g,addWorldSelectionButtons,0, +func_146627_h,loadLevelList,0,Load the existing world saves for display +func_146789_i,getOldServerPinger,0, +func_146790_a,selectServer,0, +func_146791_a,connectToServer,0, +func_146792_q,refreshServerList,0, +func_146793_a,setHoveringText,0, +func_146794_g,createButtons,0, +func_146795_p,getServerList,0, +func_146796_h,connectToSelected,0, +func_146961_a,hasResourcePackEntry,0, +func_146962_b,getListContaining,0,"Returns the list containing the resource pack entry, returns the selected list if it is selected, otherwise returns the available list" +func_146963_h,getSelectedResourcePacks,0,Returns a list containing the selected resource packs +func_146964_g,getAvailableResourcePacks,0,Returns a list containing the available resource packs +func_146975_c,getSlotAtPosition,0,Returns the slot at the given coordinates or null if there is none. +func_146976_a,drawGuiContainerBackgroundLayer,0,"Args : renderPartialTicks, mouseX, mouseY" +func_146977_a,drawSlot,0, +func_146978_c,isPointInRegion,0,"Test if the 2D point is in a rectangle (relative to the GUI). Args : rectX, rectY, rectWidth, rectHeight, pointX, pointY" +func_146979_b,drawGuiContainerForegroundLayer,0,"Draw the foreground layer for the GuiContainer (everything in front of the items). Args : mouseX, mouseY" +func_146980_g,updateDragSplitting,0, +func_146981_a,isMouseOverSlot,0,"Returns if the passed mouse position is over the specified slot. Args : slot, mouseX, mouseY" +func_146982_a,drawItemStack,0,"Render an ItemStack. Args : stack, x, y, format" +func_146983_a,checkHotbarKeys,0,"This function is what controls the hotbar shortcut check when you press a number key when hovering a stack. Args : keyCode, Returns true if a Hotbar key is pressed, else false" +func_146984_a,handleMouseClick,0,Called when the mouse is clicked over a slot or outside the gui. +func_147035_g,getMerchant,0, +func_147044_g,drawActivePotionEffects,0,Display the potion effects list +func_147046_a,drawEntityOnScreen,0,"Draws the entity to the screen. Args: xPos, yPos, scale, mouseX, mouseY, entityLiving" +func_147050_b,setCurrentCreativeTab,0, +func_147052_b,renderCreativeInventoryHoveringText,0,"Renders the creative inventory hovering text if mouse is over it. Returns true if did render or false otherwise. Params: current creative tab to be checked, current mouse x position, current mouse y position." +func_147053_i,updateCreativeSearch,0, +func_147055_p,needsScrollBars,0,returns (if you are not on the inventoryTab) and (the flag isn't set) and (you have more than 1 page of items) +func_147056_g,getSelectedTabIndex,0, +func_147090_g,renameItem,0, +func_147096_v,getChatVisibility,2, +func_147097_b,sendTileEntityUpdate,2, +func_147098_j,updateBiomesExplored,2,Updates all biomes that have been explored by this player and triggers Adventuring Time if player qualifies. +func_147099_x,getStatFile,2,Gets the stats file for reading achievements +func_147100_a,handleClientSettings,2, +func_147104_D,getCurrentServerData,0, +func_147107_h,isFramerateLimitBelowMax,0, +func_147108_a,displayGuiScreen,0,Sets the argument GuiScreen as the main (topmost visible) screen. +func_147109_W,getAmbientMusicType,0, +func_147110_a,getFramebuffer,0, +func_147111_S,isJava64bit,0, +func_147112_ai,middleClickMouse,0,Called when user clicked he's mouse middle button (pick block) +func_147113_T,isGamePaused,0, +func_147114_u,getNetHandler,0, +func_147115_a,sendClickBlockToController,0, +func_147116_af,clickMouse,0, +func_147117_R,getTextureMapBlocks,0, +func_147118_V,getSoundHandler,0, +func_147119_ah,updateFramebufferSize,0, +func_147121_ag,rightClickMouse,0,Called when user clicked he's mouse right button (place) +func_147122_X,isJvm64bit,0, +func_147130_as,getMinecraftSessionService,2, +func_147132_au,refreshStatusNextTick,2, +func_147133_T,getResourcePackUrl,2, +func_147134_at,getServerStatusResponse,2, +func_147135_j,getDifficulty,2,Get the server's difficulty +func_147136_ar,isAnnouncingPlayerAchievements,2, +func_147137_ag,getNetworkSystem,2, +func_147138_a,addFaviconToStatusResponse,2, +func_147139_a,setDifficultyForAllWorlds,2, +func_147149_a,saveToFile,2,Saves this CrashReport to the given file and returns a value indicating whether we were successful at doing so. +func_147152_a,getStackTrace,2, +func_147154_a,getCategory,0, +func_147155_a,getCategoryName,0, +func_147156_b,getCategoryId,0, +func_147176_a,getChatComponentFromNthArg,2, +func_147178_a,getChatComponentFromNthArg,2, +func_147179_f,getItemByText,2,"Gets the Item specified by the given text string. First checks the item registry, then tries by parsing the string as an integer ID (deprecated). Warns the sender if we matched by parsing the ID. Throws if the item wasn't found. Returns the item if it was found." +func_147180_g,getBlockByText,2,"Gets the Block specified by the given text string. First checks the block registry, then tries by parsing the string as an integer ID (deprecated). Warns the sender if we matched by parsing the ID. Throws if the block wasn't found. Returns the block if it was found." +func_147183_a,getTeam,2, +func_147185_d,addTeam,2, +func_147186_g,listTeams,2, +func_147187_n,resetPlayers,2, +func_147188_j,emptyTeam,2, +func_147189_a,getObjective,2, +func_147190_h,joinTeam,2, +func_147191_h,removeObjective,2, +func_147192_d,getScoreboard,2, +func_147193_c,addObjective,2, +func_147194_f,removeTeam,2, +func_147195_l,listPlayers,2, +func_147196_d,listObjectives,2, +func_147197_m,setPlayer,2, +func_147198_k,setObjectiveDisplay,2, +func_147199_i,leaveTeam,2, +func_147200_e,setTeamOption,2, +func_147203_d,getWittyComment,2,Get a random witty comment +func_147204_b,getProfileResults,2,Get the profiling results from the last profile +func_147205_a,saveProfileResults,2,Save the profiling results from the last profile +func_147223_a,pingPendingNetworks,0, +func_147224_a,ping,0, +func_147225_b,tryCompatibilityPing,0, +func_147226_b,clearPendingNetworks,0, +func_147231_a,onDisconnect,2,"Invoked when disconnecting, the parameter is a ChatComponent describing the reason for termination" +func_147234_a,handleBlockChange,2,Updates the block and metadata and generates a blockupdate (and notify the clients) +func_147235_a,handleSpawnObject,2,Spawns an instance of the objecttype indicated by the packet and sets its position and momentum +func_147236_a,handleEntityStatus,2,"Invokes the entities' handleUpdateHealth method which is implemented in LivingBase (hurt/death), MinecartMobSpawner (spawn delay), FireworkRocket & MinecartTNT (explosion), IronGolem (throwing,...), Witch (spawn particles), Zombie (villager transformation), Animal (breeding mode particles), Horse (breeding/smoke particles), Sheep (...), Tameable (...), Villager (particles for breeding mode, angry and happy), Wolf (...)" +func_147237_a,handleSpawnPlayer,2,"Handles the creation of a nearby player entity, sets the position and held item" +func_147238_a,handleDestroyEntities,2,"Locally eliminates the entities. Invoked by the server when the items are in fact destroyed, or the player is no longer registered as required to monitor them. The latter happens when distance between the player and item increases beyond a certain treshold (typically the viewing distance)" +func_147239_a,handleConfirmTransaction,2,Verifies that the server and client are synchronized with respect to the inventory/container opened by the player and confirms if it is the case. +func_147240_a,handleCustomPayload,2,"Handles packets that have room for a channel specification. Vanilla implemented channels are ""MC|TrList"" to acquire a MerchantRecipeList trades for a villager merchant, ""MC|Brand"" which sets the server brand? on the player instance and finally ""MC|RPack"" which the server uses to communicate the identifier of the default server resourcepack for the client to load." +func_147241_a,handleWindowItems,2,Handles the placement of a specified ItemStack in a specified container/inventory slot +func_147242_a,handleEntityEquipment,2, +func_147243_a,handleEntityAttach,2, +func_147244_a,handleEntityVelocity,2,Sets the velocity of the specified entity to the specified value +func_147245_a,handleWindowProperty,2,Sets the progressbar of the opened window to the specified value +func_147246_a,handleCollectItem,2, +func_147247_a,handleTeams,2,"Updates a team managed by the scoreboard: Create/Remove the team registration, Register/Remove the player-team-memberships, Set team displayname/prefix/suffix and/or whether friendly fire is enabled" +func_147248_a,handleUpdateSign,2,Updates a specified sign with the specified text lines +func_147249_a,handleUpdateHealth,2, +func_147250_a,handleUpdateScore,2,Either updates the score with a specified value or removes the score for an objective +func_147251_a,handleChat,2,Prints a chatmessage in the chat GUI +func_147252_a,handleChangeGameState,2, +func_147253_a,handleDisconnect,2,Closes the network channel +func_147254_a,handleDisplayScoreboard,2,"Removes or sets the ScoreObjective to be displayed at a particular scoreboard position (list, sidebar, below name)" +func_147255_a,handleSoundEffect,2, +func_147256_a,handlePlayerListItem,2, +func_147257_a,handleHeldItemChange,2,Updates which hotbar slot of the player is currently selected +func_147258_a,handlePlayerPosLook,2,"Handles changes in player positioning and rotation such as when travelling to a new dimension, (re)spawning, mounting horses etc. Seems to immediately reply to the server with the clients post-processing perspective on the player positioning" +func_147259_a,handleEntityMovement,2,"Updates the specified entity's position by the specified relative moment and absolute rotation. Note that subclassing of the packet allows for the specification of a subset of this data (e.g. only rel. position, abs. rotation or both)." +func_147260_a,handleEntityEffect,2, +func_147261_a,handleBlockAction,2,"Triggers Block.onBlockEventReceived, which is implemented in BlockPistonBase for extension/retraction, BlockNote for setting the instrument (including audiovisual feedback) and in BlockContainer to set the number of players accessing a (Ender)Chest" +func_147262_a,handleRemoveEntityEffect,2, +func_147263_a,handleChunkData,2,"Updates the specified chunk with the supplied data, marks it for re-rendering and lighting recalculation" +func_147264_a,handleMaps,2,Updates the worlds MapStorage with the specified MapData for the specified map-identifier and invokes a MapItemRenderer for it +func_147265_a,handleOpenWindow,2,"Displays a GUI by ID. In order starting from id 0: Chest, Workbench, Furnace, Dispenser, Enchanting table, Brewing stand, Villager merchant, Beacon, Anvil, Hopper, Dropper, Horse" +func_147266_a,handleSetSlot,2,Handles pickin up an ItemStack or dropping one in your inventory or an open (non-creative) container +func_147267_a,handleEntityHeadLook,2,"Updates the direction in which the specified entity is looking, normally this head rotation is independent of the rotation of the entity itself" +func_147268_a,handleSignEditorOpen,2,Creates a sign in the specified location if it didn't exist and opens the GUI to edit its text +func_147269_a,handleMapChunkBulk,2, +func_147270_a,handlePlayerAbilities,2, +func_147271_a,handleSpawnPosition,2, +func_147272_a,handleKeepAlive,2, +func_147273_a,handleUpdateTileEntity,2,"Updates the NBTTagCompound metadata of instances of the following entitytypes: Mob spawners, command blocks, beacons, skulls, flowerpot" +func_147274_a,handleTabComplete,2,Displays the available command-completion options the server knows of +func_147275_a,handleEntityTeleport,2,Updates an entity's position and rotation as specified by the packet +func_147276_a,handleCloseWindow,2,Resets the ItemStack held in hand and closes the window that is opened +func_147277_a,handleEffect,2, +func_147278_a,handleUseBed,2,"Retrieves the player identified by the packet, puts him to sleep if possible (and flags whether all players are asleep)" +func_147279_a,handleAnimation,2,"Renders a specified animation: Waking up a player, a living entity swinging its currently held item, being hurt or receiving a critical hit by normal or magical means" +func_147280_a,handleRespawn,2, +func_147281_a,handleSpawnMob,2,"Spawns the mob entity at the specified location, with the specified rotation, momentum and type. Updates the entities Datawatchers with the entity metadata specified in the packet" +func_147282_a,handleJoinGame,2,"Registers some server properties (gametype,hardcore-mode,terraintype,difficulty,player limit), creates a new WorldClient and sets the player initial dimension" +func_147283_a,handleExplosion,2,"Initiates a new explosion (sound, particles, drop spawn) for the affected blocks indicated by the packet." +func_147284_a,handleEntityMetadata,2,Invoked when the server registers new proximate objects in your watchlist or when objects in your watchlist have changed -> Registers any changes locally +func_147285_a,handleTimeUpdate,2, +func_147286_a,handleSpawnExperienceOrb,2,Spawns an experience orb and sets its value (amount of XP) +func_147287_a,handleMultiBlockChange,2,"Received from the servers PlayerManager if between 1 and 64 blocks in a chunk are changed. If only one block requires an update, the server sends S23PacketBlockChange and if 64 or more blocks are changed, the server sends S21PacketChunkData" +func_147288_a,handleSpawnPainting,2,Handles the spawning of a painting object +func_147289_a,handleParticles,2,Spawns a specified number of particles at the specified location with a randomized displacement according to specified bounds +func_147290_a,handleEntityProperties,2,"Updates en entity's attributes and their respective modifiers, which are used for speed bonusses (player sprinting, animals fleeing, baby speed), weapon/tool attackDamage, hostiles followRange randomization, zombie maxHealth and knockback resistance as well as reinforcement spawning chance." +func_147291_a,handleScoreboardObjective,2,"May create a scoreboard objective, remove an objective from the scoreboard or update an objectives' displayname" +func_147292_a,handleSpawnGlobalEntity,2,Handles globally visible entities. Used in vanilla for lightning bolts +func_147293_a,handleStatistics,2,Updates the players statistics or achievements +func_147294_a,handleBlockBreakAnim,2,Updates all registered IWorldAccess instances with destroyBlockInWorldPartially +func_147295_a,handleSetExperience,2, +func_147296_c,cleanup,0,Clears the WorldClient instance associated with this NetHandlerPlayClient +func_147297_a,addToSendQueue,0, +func_147298_b,getNetworkManager,0,Returns this the NetworkManager instance registered with this NetworkHandlerPlayClient +func_147311_a,processPing,2, +func_147312_a,processServerQuery,2, +func_147315_a,processEncryptionResponse,2, +func_147316_a,processLoginStart,2, +func_147317_d,getConnectionInfo,2, +func_147322_a,closeConnection,2, +func_147326_c,tryAcceptPlayer,2, +func_147338_a,processEnchantItem,2,"Enchants the item identified by the packet given some convoluted conditions (matching window, which should/shouldn't be in use?)" +func_147339_a,processConfirmTransaction,2,Received in response to the server requesting to confirm that the client-side open container matches the servers' after a mismatched container-slot manipulation. It will unlock the player's ability to manipulate the container contents +func_147340_a,processUseEntity,2,"Processes interactions ((un)leashing, opening command block GUI) and attacks on an entity with players currently equipped item" +func_147341_a,processTabComplete,2,Retrieves possible tab completions for the requested command string and sends them to the client +func_147342_a,processClientStatus,2,"Processes the client status updates: respawn attempt from player, opening statistics or achievements, or acquiring 'open inventory' achievement" +func_147343_a,processUpdateSign,2, +func_147344_a,processCreativeInventoryAction,2,Update the server with an ItemStack in a slot. +func_147345_a,processPlayerDigging,2,"Processes the player initiating/stopping digging on a particular spot, as well as a player dropping items?. (0: initiated, 1: reinitiated, 2? , 3-4 drop item (respectively without or with player control), 5: stopped; x,y,z, side clicked on;)" +func_147346_a,processPlayerBlockPlacement,2,"Processes block placement and block activation (anvil, furnace, etc.)" +func_147347_a,processPlayer,2,Processes clients perspective on player positioning and/or orientation +func_147348_a,processPlayerAbilities,2,Processes a player starting/stopping flying +func_147349_a,processVanilla250Packet,2,Synchronizes serverside and clientside book contents and signing +func_147351_a,processClickWindow,2,Executes a container/inventory slot manipulation as indicated by the packet. Sends the serverside result if they didn't match the indicated result and prevents further manipulation by the player until he confirms that it has the same open container/inventory +func_147352_a,processClientSettings,2,"Updates serverside copy of client settings: language, render distance, chat visibility, chat colours, difficulty, and whether to show the cape" +func_147353_a,processKeepAlive,2,Updates a players' ping statistics +func_147354_a,processChatMessage,2,Process chat messages (broadcast back to clients) and commands (executes) +func_147355_a,processHeldItemChange,2,Updates which quickbar slot is selected +func_147356_a,processCloseWindow,2,Processes the client closing windows (container) +func_147357_a,processEntityAction,2,"Processes a range of action-types: sneaking, sprinting, waking from sleep, opening the inventory or setting jump height of the horse the player is riding" +func_147358_a,processInput,2,"Processes player movement input. Includes walking, strafing, jumping, sneaking; excludes riding and toggling flying/sprinting" +func_147359_a,sendPacket,2, +func_147360_c,kickPlayerFromServer,2,Kick a player from the server with a reason +func_147361_d,handleSlashCommand,2,Handle commands that start with a / +func_147362_b,getNetworkManager,2, +func_147363_d,currentTimeMillis,2, +func_147364_a,setPlayerLocation,2, +func_147383_a,processHandshake,2,"There are two recognized intentions for initiating a handshake: logging in and acquiring server status. The NetworkManager's protocol will be reconfigured according to the specified intention, although a login-intention must pass a versioncheck or receive a disconnect otherwise" +func_147388_a,handleDisconnect,2, +func_147389_a,handleEncryptionRequest,2, +func_147390_a,handleLoginSuccess,2, +func_147391_c,getSessionService,0, +func_147397_a,handleServerInfo,2, +func_147398_a,handlePong,2, +func_147407_a,setBase64EncodedIconData,0, +func_147409_e,getBase64EncodedIconData,0,"Returns the base-64 encoded representation of the server's icon, or null if not available" +func_147442_i,setThunderStrength,0,Sets the strength of the thunder. +func_147447_a,rayTraceBlocks,2,"Performs a raycast against all blocks in the world. Args : Vec1, Vec2, stopOnLiquid, ignoreBlockWithoutBoundingBox, returnLastUncollidableBlock" +func_147448_a,addTileEntities,2, +func_147456_g,updateBlocks,2, +func_147457_a,markTileEntityForRemoval,2,Adds the specified TileEntity to the pending removal list. +func_147458_c,markBlockRangeForRenderUpdate,2, +func_147461_a,getCollisionBoxes,2, +func_147467_a,playMoodSoundAndCheckLight,2, +func_147470_e,isFlammableWithin,2, +func_147485_a,fireBlockEvent,2, +func_147486_a,getTileEntitiesIn,2,Returns all the tile entities located between the given coordinates +func_147488_Z,sendQueuedBlockEvents,2, +func_147497_a,setRendererDispatcher,0, +func_147498_b,getFontRenderer,0, +func_147499_a,bindTexture,0, +func_147517_a,renderMob,0,Render the mob inside the mob spawner. +func_147543_a,setWorld,0, +func_147546_a,getSpecialRendererByClass,0, +func_147547_b,getSpecialRenderer,0, +func_147548_a,getFontRenderer,0, +func_147549_a,renderTileEntityAt,0,Render this TileEntity at a given set of coordinates +func_147585_a,markBlockRangeForRenderUpdate,2,"On the client, re-renders all blocks in this range, inclusive. On the server, does nothing. Args: min x, min y, min z, max x, max y, max z" +func_147604_a,setFramebufferColor,0, +func_147605_b,createFramebuffer,0, +func_147606_d,unbindFramebufferTexture,0, +func_147607_a,setFramebufferFilter,0, +func_147608_a,deleteFramebuffer,0, +func_147609_e,unbindFramebuffer,0, +func_147610_a,bindFramebuffer,0, +func_147611_b,checkFramebufferComplete,0, +func_147612_c,bindFramebufferTexture,0, +func_147613_a,createBindFramebuffer,0, +func_147614_f,framebufferClear,0, +func_147615_c,framebufferRender,0, +func_147631_c,deleteGlTexture,0, +func_147633_a,setMipmapLevels,0, +func_147634_a,completeResourceLocation,0, +func_147640_e,checkTextureUploaded,0, +func_147641_a,setBufferedImage,0, +func_147645_c,deleteTexture,0, +func_147647_b,bidiReorder,0,Apply Unicode Bidirectional Algorithm to string and return a new possibly reordered string for visual rendering. +func_147649_g,getXPosF,0, +func_147650_b,getSoundLocation,0, +func_147651_i,getZPosF,0, +func_147652_d,getRepeatDelay,0, +func_147653_e,getVolume,0, +func_147654_h,getYPosF,0, +func_147655_f,getPitch,0, +func_147656_j,getAttenuationType,0, +func_147657_c,canRepeat,0, +func_147667_k,isDonePlaying,0, +func_147673_a,create,0, +func_147674_a,create,0, +func_147675_a,create,0, +func_147680_a,getSound,0, +func_147681_a,playDelayedSound,0,Plays the sound in n ticks +func_147682_a,playSound,0,Play a sound +func_147683_b,stopSound,0, +func_147684_a,setSoundLevel,0, +func_147685_d,unloadSounds,0, +func_147686_a,getRandomSoundFromCategories,0,Returns a random sound from one or more categories +func_147687_e,resumeSounds,0, +func_147689_b,pauseSounds,0, +func_147690_c,stopSounds,0, +func_147691_a,setListener,0, +func_147692_c,isSoundPlaying,0, +func_147693_a,loadSoundResource,0, +func_147701_i,getMapItemRenderer,0, +func_147702_a,isShaderActive,0, +func_147704_a,updateShaderGroupSize,0, +func_147705_c,activateNextShader,0, +func_147706_e,getShaderGroup,0, +func_147778_a,getAoBrightness,0,Get ambient occlusion brightness +func_147906_a,renderLivingLabel,0,Renders an entity's name above its head +func_147936_a,renderEntityStatic,0, +func_147937_a,renderEntitySimple,0, +func_147939_a,doRenderEntity,0, +func_147940_a,renderEntityWithPosYaw,0, +func_147942_a,deleteTexture,0, +func_147943_a,blendColors,0, +func_147944_a,blendColorComponent,0, +func_147947_a,uploadTextureSub,0, +func_147949_a,generateMipmapData,0, +func_147951_b,setTextureBlurred,0, +func_147953_a,processPixelValues,0, +func_147954_b,setTextureBlurMipmap,0, +func_147955_a,uploadTextureMipmap,0, +func_147962_a,getFrameTextureData,0, +func_147963_d,generateMipmaps,0, +func_147965_a,getFrameTextureData,0, +func_147969_b,getMipmapDimension,0, +func_147984_b,getShaderUniformOrDefault,0,"gets a shader uniform for the name given. if not found, returns a default not-null value" +func_147985_d,markDirty,0, +func_147986_h,getProgram,0, +func_147987_b,parseUniform,0, +func_147988_a,deleteShader,0, +func_147989_e,getVertexShaderLoader,0, +func_147990_i,setupUniforms,0,goes through the parsed uniforms and samplers and connects them to their GL counterparts. +func_147991_a,getShaderUniform,0,gets a shader uniform for the name given. null if not found. +func_147992_a,addSamplerTexture,0,"adds a shader sampler texture. if it already exists, replaces it." +func_147993_b,endShader,0, +func_147994_f,getFragmentShaderLoader,0, +func_147995_c,useShader,0, +func_147996_a,parseSampler,0, +func_148017_a,getFramebuffer,0, +func_148018_a,loadShaderGroup,0, +func_148020_a,addFramebuffer,0, +func_148021_a,deleteShaderGroup,0, +func_148022_b,getShaderGroupName,0, +func_148023_a,addShader,0, +func_148024_c,resetProjectionMatrix,0, +func_148026_a,createBindFramebuffers,0, +func_148027_a,initTarget,0, +func_148028_c,initUniform,0, +func_148040_d,preLoadShader,0, +func_148041_a,addAuxFramebuffer,0, +func_148042_a,loadShader,0, +func_148043_c,getShaderManager,0, +func_148044_b,deleteShader,0, +func_148045_a,setProjectionMatrix,0, +func_148054_b,deleteShader,0, +func_148055_a,getShaderFilename,0, +func_148056_a,attachShader,0, +func_148057_a,loadShader,0, +func_148062_a,getShaderName,0, +func_148063_b,getShaderExtension,0, +func_148064_d,getLoadedShaders,0,gets a map of loaded shaders for the ShaderType. +func_148065_c,getShaderMode,0, +func_148074_b,getStaticShaderLinkHelper,0, +func_148075_b,linkProgram,0, +func_148076_a,setNewStaticShaderLinkHelper,0, +func_148077_a,deleteShader,0, +func_148078_c,createProgram,0, +func_148081_a,set,0, +func_148082_k,uploadFloatMatrix,0, +func_148083_a,set,0, +func_148084_b,setUniformLocation,0, +func_148085_a,parseType,0, +func_148086_a,getShaderName,0, +func_148087_a,set,0, +func_148088_a,set,0, +func_148089_j,uploadFloat,0, +func_148090_a,set,0, +func_148091_i,uploadInt,0, +func_148093_b,upload,0, +func_148094_a,set,0, +func_148095_a,set,0, +func_148096_h,markDirty,0, +func_148097_a,set,0, +func_148120_b,drawSelectionBox,0,Draws the selection box around the selected slot element. +func_148121_k,bindAmountScrolled,0,Stop the thing from scrolling out of bounds +func_148122_a,setDimensions,0, +func_148123_a,drawBackground,0, +func_148124_c,getSlotIndexFromScreenCoords,0, +func_148125_i,getEnabled,0, +func_148127_b,getSize,0, +func_148128_a,drawScreen,0, +func_148129_a,drawListHeader,0,Handles drawing a list's header row. +func_148130_a,setShowSelectionBox,0, +func_148131_a,isSelected,0,Returns true if the element passed in is currently selected +func_148133_a,setHasListHeader,0,"Sets hasListHeader and headerHeight. Params: hasListHeader, headerHeight. If hasListHeader is false headerHeight is set to 0." +func_148134_d,registerScrollButtons,0,Registers the IDs that can be used for the scrollbar's up/down buttons. +func_148136_c,overlayBackground,0,Overlays the background to hide scrolled items +func_148137_d,getScrollBarX,0, +func_148138_e,getContentHeight,0,Return the height of the content being scrolled +func_148139_c,getListWidth,0,Gets the width of the list +func_148140_g,setSlotXBoundsFromLeft,0,"Sets the left and right bounds of the slot. Param is the left bound, right is calculated as left + width." +func_148141_e,isMouseYWithinSlotBounds,0, +func_148143_b,setEnabled,0, +func_148144_a,elementClicked,0,"The element in the slot that was clicked, boolean for whether it was double clicked or not" +func_148145_f,scrollBy,0,"Scrolls the slot by the given amount. A positive value scrolls down, and a negative value scrolls up." +func_148146_j,getSlotHeight,0, +func_148147_a,actionPerformed,0, +func_148148_g,getAmountScrolled,0,Returns the amountScrolled field as an integer. +func_148179_a,mouseClicked,0, +func_148180_b,getListEntry,0,Gets the IGuiListEntry object for the given index +func_148181_b,mouseReleased,0, +func_148192_c,setSelectedSlotIndex,0, +func_148201_l,getList,0, +func_148202_k,getListHeader,0, +func_148236_a,updateMapTexture,0,Updates a map {@link net.minecraft.client.gui.MapItemRenderer.Instance#mapTexture texture} +func_148237_a,render,0,Renders map and players to it +func_148246_a,updateMapTexture,0,Updates a map texture +func_148248_b,getMapRendererInstance,0,Returns {@link net.minecraft.client.gui.MapItemRenderer.Instance MapItemRenderer.Instance} with given map data +func_148249_a,clearLoadedMaps,0,Clears the currently loaded maps and removes their corresponding textures +func_148250_a,renderMap,0, +func_148254_d,getToken,0, +func_148255_b,getPlayerID,0, +func_148256_e,getProfile,0, +func_148259_a,saveScreenshot,0,"Saves a screenshot in the game directory with the given file name (or null to generate a time-stamped name). Args: gameDirectory, fileName, requestedWidthInPixels, requestedHeightInPixels, frameBuffer" +func_148260_a,saveScreenshot,0,"Saves a screenshot in the game directory with a time-stamped filename. Args: gameDirectory, requestedWidthInPixels, requestedHeightInPixels, frameBuffer" +func_148262_d,denormalizeValue,0, +func_148263_a,setValueMax,0, +func_148264_f,snapToStep,0, +func_148266_c,normalizeValue,0, +func_148267_f,getValueMax,0, +func_148268_e,snapToStepClamp,0, +func_148277_b,mouseReleased,0,"Fired when the mouse button is released. Arguments: index, x, y, mouseEvent, relativeX, relativeY" +func_148278_a,mousePressed,0,Returns true if the mouse has been pressed on this control. +func_148289_a,getLanServer,0, +func_148296_a,getServerData,0, +func_148297_b,prepareServerIcon,0, +func_148329_a,scrollTo,0,Updates the gui slots ItemStack's based on scroll position. +func_148334_a,generateNewRandomName,0,Randomly generates a new name built up of 3 or 4 randomly selected words. +func_148335_a,reseedRandomGenerator,0,Resets the underlying random number generator using a given seed. +func_148527_a,setRepositories,0, +func_148529_f,clearResourcePack,0, +func_148530_e,getResourcePackInstance,0,Getter for the IResourcePack instance associated with this ResourcePackRepository +func_148535_c,getListMipmaps,0, +func_148537_a,sendPacketToAllPlayersInDimension,2, +func_148539_a,sendChatMsg,2,Sends the given string to every player as chat message. +func_148540_a,sendPacketToAllPlayers,2, +func_148541_a,sendToAllNear,2,"params: x,y,z,r,dimension. The packet is sent to all players within r radius of x,y,z (r^2>x^2+y^2+z^2)" +func_148542_a,allowUserToConnect,2,"checks ban-lists, then white-lists, then space for the server. Returns null on success, or an error message" +func_148543_a,sendToAllNearExcept,2,"params: srcPlayer,x,y,z,r,dimension. The packet is not sent to the srcPlayer, but all other players within the search radius" +func_148544_a,sendChatMsgImpl,2, +func_148545_a,createPlayerForUser,2,also checks for multiple logins across servers +func_148552_f,isStreaming,0, +func_148553_a,setSoundEntryVolume,0, +func_148554_a,setSoundEntryWeight,0, +func_148555_d,getSoundEntryWeight,0, +func_148556_a,getSoundEntryName,0, +func_148557_a,setStreaming,0, +func_148558_b,getSoundEntryVolume,0, +func_148559_b,setSoundEntryPitch,0, +func_148560_c,getSoundEntryPitch,0, +func_148561_a,setSoundEntryName,0, +func_148562_a,setSoundEntryType,0, +func_148563_e,getSoundEntryType,0, +func_148570_a,getSoundList,0, +func_148571_a,setSoundCategory,0, +func_148572_a,setReplaceExisting,0, +func_148573_c,getSoundCategory,0, +func_148574_b,canReplaceExisting,0, +func_148580_a,getType,0, +func_148586_a,getTypeInt,0, +func_148594_a,getNormalizedVolume,0,"Normalizes volume level from parameters. Range [0.0, 1.0]" +func_148595_a,getSoundCategoryVolume,0,"Returns the sound level (between 0.0 and 1.0) for a category, but 1.0 for the master sound category" +func_148596_a,reloadSoundSystem,0, +func_148597_a,isSoundPlaying,0,Returns true if the sound is playing or still within time +func_148599_a,playDelayedSound,0,Adds a sound to play in n tick +func_148601_a,setSoundCategoryVolume,0,Adjusts volume for currently playing sounds in this category +func_148602_b,stopSound,0, +func_148604_f,resumeAllSounds,0,Resumes playing all currently playing sounds (after pauseAllSounds) +func_148605_d,updateAllSounds,0, +func_148606_a,getNormalizedPitch,0,"Normalizes pitch from parameters and clamps to [0.5, 2.0]" +func_148608_i,loadSoundSystem,0,"Tries to add the paulscode library and the relevant codecs. If it fails, the master volume will be set to zero." +func_148610_e,pauseAllSounds,0,Pauses all currently playing sounds +func_148611_c,playSound,0, +func_148612_a,getURLForSoundResource,0, +func_148613_b,unloadSoundSystem,0,Cleans up the Sound System +func_148614_c,stopAllSounds,0,Stops all currently playing sounds +func_148615_a,setListener,0,Sets the listener of sounds +func_148633_c,getMaxDelay,0,Returns the maximum delay between playing music of this type. +func_148634_b,getMinDelay,0,Returns the minimum delay between playing music of this type. +func_148635_a,getMusicLocation,0, +func_148647_b,setVolume,0, +func_148648_d,isStreamingSound,0, +func_148649_c,getVolume,0, +func_148650_b,getPitch,0, +func_148651_a,setPitch,0, +func_148652_a,getSoundPoolEntryLocation,0, +func_148720_g,cloneEntry,0, +func_148721_a,getWeight,0, +func_148727_a,addSoundToEventPool,0, +func_148728_d,getSoundCategory,0, +func_148729_c,getSoundEventLocation,0, +func_148740_a,createUnderlyingMap,2,Creates the Map we will use to map keys to their registered values. +func_148741_d,containsKey,2,Does this registry contain an entry for the given key? +func_148742_b,getKeys,2,Gets all the keys recognized by this registry. +func_148745_a,getByValue,2, +func_148746_a,put,2, +func_148747_b,get,2, +func_148754_a,getObjectById,2,Gets the object identified by the given ID. +func_148757_b,getIDForObject,2,Gets the integer ID we use to identify the given object. +func_148762_a,registerSound,0, +func_148763_c,clearMap,0,Reset the underlying sound map (Called on resource manager reload) +func_148821_a,glBlendFunc,0, +func_148822_b,isFramebufferEnabled,0, +func_148833_a,processPacket,2,Passes this Packet on to the NetHandler for processing. +func_148837_a,readPacketData,2,Reads the raw packet data from the data stream. +func_148840_b,writePacketData,2,Writes the raw packet data to the data stream. +func_148845_c,getBreakerId,0, +func_148846_g,getProgress,0, +func_148853_f,getTileEntityType,0, +func_148857_g,getNbtCompound,0, +func_148864_h,getData2,0,pitch data for noteblocks +func_148868_c,getBlockType,0, +func_148869_g,getData1,0,instrument data for noteblocks +func_148889_c,getWindowId,0, +func_148890_d,getActionNumber,0, +func_148897_h,getEntityId,0, +func_148898_f,getSlotCount,0, +func_148900_g,hasSlots,0, +func_148901_c,getWindowId,0, +func_148902_e,getGuiId,0, +func_148910_d,getItemStacks,0, +func_148915_c,getChatComponent,0, +func_148916_d,isChat,2, +func_148928_d,getY,0, +func_148930_g,getPitch,0, +func_148931_f,getYaw,0, +func_148932_c,getX,0, +func_148933_e,getZ,0, +func_148941_i,getYaw,0, +func_148942_f,getX,0, +func_148943_d,getEntityID,0, +func_148945_j,getPitch,0, +func_148946_h,getZ,0, +func_148947_k,getCurrentItemID,0, +func_148949_g,getY,0, +func_148961_h,getTitle,0, +func_148965_c,getEntityID,0, +func_148977_d,getAnimationType,0, +func_148978_c,getEntityID,0, +func_148982_f,getZ,0, +func_148983_e,getY,0, +func_148984_d,getX,0, +func_148985_c,getEntityID,0, +func_148986_g,getXPValue,0, +func_148993_l,getType,0, +func_148994_f,getZ,0, +func_148995_b,setY,2, +func_148996_a,setX,2, +func_148997_d,getX,0, +func_148998_e,getY,0, +func_148999_i,getSpeedZ,0, +func_149000_e,setSpeedY,2, +func_149001_c,getEntityID,0, +func_149003_d,setSpeedX,2, +func_149004_h,getSpeedY,0, +func_149005_c,setZ,2, +func_149006_k,getYaw,0, +func_149007_f,setSpeedZ,2, +func_149008_j,getPitch,0, +func_149010_g,getSpeedX,0, +func_149023_f,getX,0, +func_149024_d,getEntityID,0, +func_149025_e,getEntityType,0, +func_149026_i,getVelocityX,0, +func_149028_l,getYaw,0, +func_149029_h,getZ,0, +func_149030_m,getPitch,0, +func_149031_k,getVelocityZ,0, +func_149032_n,getHeadPitch,0, +func_149033_j,getVelocityY,0, +func_149034_g,getY,0, +func_149065_a,getEntity,0, +func_149075_d,getEffectId,0, +func_149076_c,getEntityId,0, +func_149080_f,getWorldType,0, +func_149081_d,getDifficulty,0, +func_149082_c,getDimensionID,0, +func_149083_e,getGameType,0, +func_149091_a,getPlayer,0, +func_149098_c,getEntityIDs,0, +func_149101_g,getFlySpeed,0, +func_149102_b,setFlying,2, +func_149103_f,isCreativeMode,2, +func_149104_a,setFlySpeed,2, +func_149105_e,isAllowFlying,2, +func_149106_d,isFlying,2, +func_149107_h,getWalkSpeed,0, +func_149108_a,setInvulnerable,2, +func_149109_c,setAllowFlying,2, +func_149110_b,setWalkSpeed,2, +func_149111_d,setCreativeMode,2, +func_149112_c,isInvulnerable,2, +func_149138_c,getGameState,0, +func_149143_g,getY,0, +func_149145_h,getZ,0, +func_149146_i,getStrength,0, +func_149148_f,getX,0, +func_149150_j,getAffectedBlockPositions,0, +func_149160_c,getOpCode,0, +func_149161_a,getEntity,0, +func_149165_c,getReason,0, +func_149169_c,getChannelName,0, +func_149180_e,getVarValue,0, +func_149181_d,getVarIndex,0, +func_149182_c,getWindowId,0, +func_149188_c,getMapId,0, +func_149192_g,getDifficulty,0, +func_149193_h,getMaxPlayers,0, +func_149194_f,getDimension,0, +func_149195_d,isHardcoreMode,0, +func_149196_i,getWorldType,0, +func_149197_c,getEntityId,0, +func_149198_e,getGameType,0, +func_149207_d,getX,0, +func_149208_g,getVolume,0, +func_149209_h,getPitch,0, +func_149210_f,getZ,0, +func_149211_e,getY,0, +func_149212_c,getSoundName,0, +func_149220_d,getXCoordinate,0,Gets the x coordinate to spawn the particle. +func_149221_g,getXOffset,0,Gets the x coordinate offset for the particle. The particle may use the offset for particle spread. +func_149222_k,getParticleCount,0,Gets the amount of particles to spawn +func_149223_i,getZOffset,0,Gets the z coordinate offset for the particle. The particle may use the offset for particle spread. +func_149224_h,getYOffset,0,Gets the y coordinate offset for the particle. The particle may use the offset for particle spread. +func_149225_f,getZCoordinate,0,Gets the z coordinate to spawn the particle. +func_149226_e,getYCoordinate,0,Gets the y coordinate to spawn the particle. +func_149227_j,getParticleSpeed,0,Gets the speed of the particle animation (used in client side rendering). +func_149241_e,getSoundData,0, +func_149242_d,getSoundType,0, +func_149244_c,isSoundServerwide,0, +func_149253_b,getChunkZ,0, +func_149254_d,getChunkCount,0, +func_149255_a,getChunkX,0, +func_149256_c,getChunkBytes,0, +func_149271_f,getChunkZ,0, +func_149272_d,getExtractedDataBytes,0, +func_149273_e,getChunkX,0, +func_149276_g,getExtractedSize,0, +func_149289_c,getClientTime,2, +func_149294_c,getResponse,0, +func_149299_b,getVerifyToken,2, +func_149300_a,getSecretKey,2, +func_149304_c,getProfile,2, +func_149306_d,getDisplayName,0, +func_149307_h,getAction,0, +func_149308_i,getFriendlyFlags,0, +func_149309_f,getSuffix,0, +func_149310_g,getPlayers,0, +func_149311_e,getPrefix,0, +func_149312_c,getName,0, +func_149321_d,getObjectiveName,0, +func_149323_e,getScoreValue,0, +func_149324_c,getPlayerName,0, +func_149330_d,getFoodLevel,0, +func_149331_e,getSaturationLevel,0, +func_149332_c,getHealth,0, +func_149353_d,getEntityID,0, +func_149354_c,getCollectedItemEntityID,0, +func_149365_d,getWorldTime,0, +func_149366_c,getTotalWorldTime,0, +func_149375_d,getEntityId,0, +func_149380_c,getYaw,0, +func_149381_a,getEntity,0, +func_149385_c,getHeldItemHotbarIndex,0, +func_149388_e,getEquipmentSlot,0, +func_149389_d,getEntityID,0, +func_149390_c,getItemStack,0, +func_149395_e,getLevel,0, +func_149396_d,getTotalExperience,0, +func_149402_e,getVehicleEntityId,0, +func_149403_d,getEntityId,0, +func_149404_c,getLeash,0, +func_149409_f,getMotionZ,0, +func_149410_e,getMotionY,0, +func_149411_d,getMotionX,0, +func_149412_c,getEntityID,0, +func_149419_c,getMessage,2, +func_149426_d,getEntityId,0, +func_149427_e,getEffectId,0, +func_149428_f,getAmplifier,0, +func_149435_c,getStatus,2, +func_149439_c,getMessage,2, +func_149442_c,getEntityId,0, +func_149446_f,getZ,0, +func_149447_h,getPitch,0, +func_149448_e,getY,0, +func_149449_d,getX,0, +func_149450_g,getYaw,0, +func_149451_c,getEntityId,0, +func_149460_c,getKey,2, +func_149462_g,getYaw,2, +func_149463_k,getRotating,2, +func_149464_c,getPositionX,2, +func_149465_i,isOnGround,2, +func_149466_j,isMoving,2, +func_149467_d,getPositionY,2, +func_149469_a,setMoving,2, +func_149470_h,getPitch,2, +func_149472_e,getPositionZ,2, +func_149483_b,setFlying,2, +func_149484_f,isCreativeMode,2, +func_149485_a,setFlySpeed,2, +func_149486_e,isAllowFlying,2, +func_149488_d,isFlying,2, +func_149490_a,setInvulnerable,2, +func_149491_c,setAllowFlying,2, +func_149492_b,setWalkSpeed,2, +func_149493_d,setCreativeMode,2, +func_149494_c,isInvulnerable,2, +func_149512_e,getAuxData,2, +func_149520_f,isColorsEnabled,2, +func_149521_d,getModelPartFlags,2, +func_149523_e,getChatVisibility,2, +func_149524_c,getLang,2, +func_149532_c,getWindowId,2, +func_149533_d,getUid,2, +func_149537_d,getButton,2, +func_149539_c,getWindowId,2, +func_149542_h,getMode,2, +func_149543_e,getUsedButton,2, +func_149544_d,getSlotId,2, +func_149546_g,getClickedItem,2, +func_149547_f,getActionNumber,2, +func_149548_c,getWindowId,2, +func_149559_c,getChannelName,2, +func_149564_a,getEntityFromWorld,2, +func_149565_c,getAction,2, +func_149568_f,getPlacedBlockDirection,2, +func_149569_i,getPlacedBlockOffsetY,2,Returns the offset from yPosition where the actual click took place. +func_149573_h,getPlacedBlockOffsetX,2,Returns the offset from xPosition where the actual click took place. +func_149574_g,getStack,2, +func_149575_j,getPlacedBlockOffsetZ,2,Returns the offset from zPosition where the actual click took place. +func_149594_c,getRequestedState,2, +func_149595_d,getProtocolVersion,2, +func_149607_e,getVerifyToken,0, +func_149608_d,getPublicKey,0, +func_149609_c,getServerId,0, +func_149614_c,getSlotId,2, +func_149616_d,getForwardSpeed,2, +func_149617_f,isSneaking,2, +func_149618_e,isJumping,2, +func_149620_c,getStrafeSpeed,2, +func_149625_d,getStack,2, +func_149627_c,getSlotId,2, +func_149634_a,getBlockFromItem,2, +func_149635_D,getBlockColor,0, +func_149637_q,isBlockNormalCube,2,Indicate if a material is a normal solid opaque cube +func_149638_a,getExplosionResistance,2,Returns how much this block can resist explosions from the passed in entity. +func_149645_b,getRenderType,2,"The type of render function called. 3 for standard block models, 2 for TESR's, 1 for liquids, -1 is no render" +func_149647_a,setCreativeTab,2, +func_149648_K,isFlowerPot,0,Returns true only if block is flowerPot +func_149649_H,disableStats,2, +func_149652_G,getEnableStats,2,Return the state of blocks statistics flags - if the block is counted for mined and placed. +func_149653_t,getTickRandomly,2,Returns whether or not this block is of a type that needs random ticking. Called for ref-counting purposes by ExtendedBlockStorage in order to broadly cull a chunk from the random chunk update list for efficiency's sake. +func_149654_a,isVecInsideYZBounds,2,Checks if a vector is within the Y and Z bounds of the block. +func_149656_h,getMobilityFlag,2, +func_149659_a,canDropFromExplosion,2,Return whether this block can drop from an explosion. +func_149661_c,isVecInsideXYBounds,2,Checks if a vector is within the X and Y bounds of the block. +func_149662_c,isOpaqueCube,2,Used to determine ambient occlusion and culling when rebuilding chunks for render +func_149663_c,setUnlocalizedName,2, +func_149665_z,getBlockBoundsMinY,2,returns the block bounderies minY value +func_149666_a,getSubBlocks,0,"returns a list of blocks with the same ID, but different meta (eg: wood returns 4 blocks)" +func_149667_c,isAssociatedBlock,2, +func_149669_A,getBlockBoundsMaxY,2,returns the block bounderies maxY value +func_149671_p,registerBlocks,2, +func_149672_a,setStepSound,2,Sets the footstep sound for the block. Returns the object for convenience in constructing. +func_149675_a,setTickRandomly,2,Sets whether this block type will receive random update ticks +func_149676_a,setBlockBounds,2, +func_149679_a,quantityDroppedWithBonus,2,Get the quantity dropped based on the given fortune level +func_149680_a,isEqualTo,2, +func_149682_b,getIdFromBlock,2, +func_149683_g,setBlockBoundsForItemRender,2,Sets the block's bounds for rendering it as an item +func_149684_b,getBlockFromName,2, +func_149685_I,getAmbientOcclusionLightValue,0,Returns the default ambient occlusion value based on block opacity +func_149686_d,isFullCube,2, +func_149687_b,isVecInsideXZBounds,2,Checks if a vector is within the X and Z bounds of the block. +func_149688_o,getMaterial,2,Get a material of block +func_149693_C,getBlockBoundsMaxZ,2,returns the block bounderies maxZ value +func_149698_L,requiresUpdates,2, +func_149700_E,canSilkHarvest,2, +func_149703_v,isCollidable,2,"Returns if this block is collidable (only used by Fire). Args: x, y, z" +func_149704_x,getBlockBoundsMinX,2,returns the block bounderies minX value +func_149706_B,getBlockBoundsMinZ,2,returns the block bounderies minZ value +func_149708_J,getCreativeTabToDisplayOn,0,Returns the CreativeTab to display the given block on. +func_149710_n,getUseNeighborBrightness,2,Should block use the brightest neighbor light value as its own +func_149711_c,setHardness,2,Sets how many hits it takes to break a block. +func_149713_g,setLightOpacity,2,Sets how much light is blocked going through this block. Returns the object for convenience in constructing. +func_149715_a,setLightLevel,2,Sets the light value that the block emits. Returns resulting block instance for constructing convenience. Args: level +func_149716_u,hasTileEntity,2, +func_149717_k,getLightOpacity,2, +func_149721_r,isNormalCube,2,"Used for nearly all game logic (non-rendering) purposes. Use Forge-provided isNormalCube(IBlockAccess, BlockPos) instead." +func_149722_s,setBlockUnbreakable,2, +func_149729_e,getBlockById,2, +func_149730_j,isFullBlock,2, +func_149732_F,getLocalizedName,2,Gets the localized name of this block. Used for the statistics page. +func_149738_a,tickRate,2,How many world ticks before ticking +func_149739_a,getUnlocalizedName,2,"Returns the unlocalized name of the block with ""tile."" appended to the front." +func_149740_M,hasComparatorInputOverride,2, +func_149744_f,canProvidePower,2,Can this block provide power. Only wire currently seems to have this change based on its state. +func_149745_a,quantityDropped,2,Returns the quantity of items to drop on block destruction. +func_149750_m,getLightValue,2, +func_149751_l,isTranslucent,0,Used in the renderer to apply ambient occlusion +func_149752_b,setResistance,2,Sets the the blocks resistance to explosions. Returns the object for convenience in constructing. +func_149753_y,getBlockBoundsMaxX,2,returns the block bounderies maxX value +func_149801_b,getLiquidHeightPercent,2,"Returns the percentage of the liquid block that is air, based on the given flow decay of the liquid" +func_149829_a,onStartFalling,2, +func_149843_e,init,2, +func_149854_a,canPlaceBlockOn,2,"is the block grass, dirt or farmland" +func_149865_P,getCrop,2, +func_149866_i,getSeed,2, +func_149907_e,isAssociated,2, +func_149908_a,canPowerSide,2, +func_149909_d,isRedstoneRepeaterBlockID,2, +func_149915_a,createNewTileEntity,2,Returns a new instance of a block's tile entity class. Called on placing the block. +func_149917_c,isEnabled,2,"Get's the hopper's active status from the 8-bit of the metadata. Note that the metadata stores whether the block is powered, so this returns true when that bit is 0." +func_149928_a,canNotContain,2, +func_149937_b,getFacing,2,Get the facing of a dispenser with the given metadata +func_149939_a,getDispensePosition,2,Get the position where the dispenser at the given Coordinates should dispense to. +func_149940_a,getBehavior,2, +func_149978_e,setBedBounds,2, +func_150002_b,getUnlocalizedName,2,Returns the slab block name with the type associated with it +func_150003_a,isSlab,0, +func_150011_b,setBoundBasedOnMeta,2, +func_150089_b,setBlockBoundsFromMeta,2, +func_150093_a,canPlaceOn,2, +func_150098_a,canPaneConnectToBlock,2, +func_150119_a,isValidSupportBlock,2, +func_150122_b,setGraphicsLevel,0,"Pass true to draw this block using fancy graphics, or false for fast graphics." +func_150148_a,isBlockStairs,2,Checks if a block is stairs +func_150154_b,getBoundsForLayers,2, +func_150206_m,createDeepCopy,2,Creates a deep copy of this style. No changes to this instance or its parent style will be reflected in the copy. +func_150209_a,setChatHoverEvent,2,Sets the event that should be run when text of this ChatStyle is hovered over. +func_150210_i,getChatHoverEvent,2,The effective chat hover event. +func_150215_a,getColor,2,Gets the effective color of this ChatStyle. +func_150217_b,setItalic,2,"Sets whether or not text of this ChatStyle should be italicized. Set to false if, e.g., the parent style is italicized and you want to override that for this style." +func_150218_j,getFormattingCode,0,"Gets the equivalent text formatting code for this style, without the initial section sign (U+00A7) character." +func_150221_a,setParentStyle,2,"Sets the fallback ChatStyle to use if this ChatStyle does not override some value. Without a parent, obvious defaults are used (bold: false, underlined: false, etc)." +func_150223_b,getBold,2,Whether or not text of this ChatStyle should be in bold. +func_150224_n,getParent,2,Gets the immediate parent of this ChatStyle. +func_150225_c,setStrikethrough,2,"Sets whether or not to format text of this ChatStyle using strikethrough. Set to false if, e.g., the parent style uses strikethrough and you want to override that for this style." +func_150227_a,setBold,2,"Sets whether or not text of this ChatStyle should be in bold. Set to false if, e.g., the parent style is bold and you want text of this style to be unbolded." +func_150228_d,setUnderlined,2,"Sets whether or not text of this ChatStyle should be underlined. Set to false if, e.g., the parent style is underlined and you want to override that for this style." +func_150229_g,isEmpty,2,Whether or not this style is empty (inherits everything from the parent). +func_150232_l,createShallowCopy,2,"Creates a shallow copy of this style. Changes to this instance's values will not be reflected in the copy, but changes to the parent style's values WILL be reflected in both this instance and the copy, wherever either does not override a value." +func_150233_f,getObfuscated,2,Whether or not text of this ChatStyle should be obfuscated. +func_150234_e,getUnderlined,2,Whether or not text of this ChatStyle should be underlined. +func_150235_h,getChatClickEvent,2,The effective chat click event. +func_150236_d,getStrikethrough,2,Whether or not to format text of this ChatStyle using strikethrough. +func_150237_e,setObfuscated,2,"Sets whether or not text of this ChatStyle should be obfuscated. Set to false if, e.g., the parent style is obfuscated and you want to override that for this style." +func_150238_a,setColor,2,Sets the color for this ChatStyle to the given value. Only use color values for this; set other values using the specific methods. +func_150241_a,setChatClickEvent,2,Sets the event that should be run when text of this ChatStyle is clicked on. +func_150242_c,getItalic,2,Whether or not text of this ChatStyle should be italicized. +func_150253_a,getSiblings,2,Gets the sibling components of this one. +func_150254_d,getFormattedText,0,"Gets the text of this component, with formatting codes added for rendering." +func_150255_a,setChatStyle,2, +func_150256_b,getChatStyle,2, +func_150257_a,appendSibling,2,Appends the given component to the end of this one. +func_150258_a,appendText,2,Appends the given text to the end of this component. +func_150259_f,createCopy,2,"Creates a copy of this component. Almost a deep copy, except the style is shallow-copied." +func_150260_c,getUnformattedText,2,"Get the text of this component, <em>and all child components</em>, with all special formatting codes removed." +func_150261_e,getUnformattedTextForChat,2,"Gets the text of this component, without any special formatting codes added, for chat. TODO: why is this two different methods?" +func_150262_a,createDeepCopyIterator,2,"Creates an iterator that iterates over the given components, returning deep copies of each component in turn so that the properties of the returned objects will remain externally consistent after being returned." +func_150265_g,getChatComponentText_TextValue,2,Gets the text value of this ChatComponentText. TODO: what are getUnformattedText and getUnformattedTextForChat missing that made someone decide to create a third equivalent method that only ChatComponentText can implement? +func_150268_i,getKey,2, +func_150269_b,initializeFromFormat,2,"initializes our children from a format string, using the format args to fill in the placeholder variables." +func_150270_g,ensureInitialized,2,ensures that our children are initialized from the most recent string translation mapping. +func_150271_j,getFormatArgs,2, +func_150272_a,getFormatArgumentAsComponent,2, +func_150284_a,createNewByType,2,Creates a new NBTBase object that corresponds with the passed in id. +func_150285_a_,getString,2, +func_150286_g,getDouble,2, +func_150287_d,getInt,2, +func_150288_h,getFloat,2, +func_150289_e,getShort,2, +func_150290_f,getByte,2, +func_150291_c,getLong,2, +func_150292_c,getByteArray,2, +func_150295_c,getTagList,2,"Gets the NBTTagList object with the given name. Args: name, NBTBase type" +func_150296_c,getKeySet,2,Gets a set with the names of the keys in the tag compound. +func_150297_b,hasKey,2, +func_150298_a,writeEntry,2, +func_150299_b,getTagId,2,Gets the ID byte for the given tag key +func_150302_c,getIntArray,2, +func_150303_d,getTagType,2, +func_150304_a,set,2,Set the given index to the given tag +func_150305_b,getCompoundTagAt,2,Retrieves the NBTTagCompound at the specified index in the list +func_150306_c,getIntArrayAt,2, +func_150307_f,getStringTagAt,2,Retrieves the tag String value at the specified index in the list +func_150308_e,getFloatAt,2, +func_150309_d,getDoubleAt,2, +func_150489_a,parse,2,Parses the JSON string contained in this object.\n@return an {@link NBTBase} which can be safely cast to the type represented by this class. +func_150494_d,getFrequency,2, +func_150495_a,getBreakSound,2,Get the breaking sound for the Block +func_150496_b,getPlaceSound,2, +func_150497_c,getVolume,2, +func_150498_e,getStepSound,2, +func_150503_a,decipher,2, +func_150504_a,cipher,2, +func_150510_c,getLastUpdateTimeInMilliseconds,2,"Gets the time, in milliseconds since epoch, that this instance was last updated" +func_150513_a,genDecorations,2, +func_150559_j,isSnowyBiome,2, +func_150561_m,getTempCategory,2, +func_150562_l,getBiomeClass,2, +func_150565_n,getBiomeGenArray,2, +func_150566_k,createMutation,2,Creates a mutated version of the biome and places it into the biomeList with an index equal to the original plus 128 +func_150567_a,genBigTreeChance,2, +func_150568_d,getBiome,2,"return the biome specified by biomeID, or 0 (ocean) if out of bounds" +func_150569_a,isEqualTo,2,returns true if the biome specified is equal to this biome +func_150570_a,setHeight,2, +func_150633_b,mutateHills,2,this creates a mutation specific to Hills biomes +func_150650_a,countAdjacentRails,2,Counts the number of rails adjacent to this rail. +func_150663_a,writeTag,2, +func_150668_b,getValue,2,"Gets the value to perform the action on when this event is raised. For example, if the action is ""open URL"", this would be the URL to open." +func_150669_a,getAction,2,Gets the action to perform when this event is raised. +func_150672_a,getValueByCanonicalName,2,Gets a value by its canonical name. +func_150673_b,getCanonicalName,2,"Gets the canonical name for this action (e.g., ""run_command"")" +func_150674_a,shouldAllowInChat,2,Indicates whether this event can be run from chat text. +func_150684_a,getValueByCanonicalName,2,Gets a value by its canonical name. +func_150685_b,getCanonicalName,2,"Gets the canonical name for this action (e.g., ""show_achievement"")" +func_150686_a,shouldAllowInChat,2,Indicates whether this event can be run from chat text. +func_150695_a,serializeChatStyle,2, +func_150696_a,componentToJson,2, +func_150699_a,jsonToComponent,2, +func_150701_a,getAction,2,Gets the action to perform when this event is raised. +func_150702_b,getValue,2,"Gets the value to perform the action on when this event is raised. For example, if the action is ""show item"", this would be the item to show." +func_150707_a,setEnchantable,2, +func_150708_a,getItemStack,2, +func_150709_a,setMaxDamagePercent,2, +func_150718_a,closeChannel,2,"Closes the channel, the parameter can be used for an exit message (not certain how it gets sent)" +func_150719_a,setNetHandler,2,"Sets the NetHandler for this NetworkManager, no checks are made if this handler is suitable for the particular connection state (protocol)" +func_150721_g,disableAutoRead,2,Switches the channel to manual reading modus +func_150722_a,provideLocalClient,0,Prepares a clientside NetworkManager: establishes a connection to the socket supplied and configures the channel pipeline. Returns the newly created instance. +func_150723_a,setConnectionState,2,Sets the new connection state and registers which packets this channel may send and receive +func_150724_d,isChannelOpen,2,"Returns true if this NetworkManager has an active channel, false otherwise" +func_150727_a,enableEncryption,2,Adds an encoder+decoder to the channel pipeline. The parameter is the secret key used for encrypted communication +func_150729_e,getNetHandler,2,Gets the current handler for processing packets +func_150730_f,getExitMessage,2,"If this channel is closed, returns the exit message, null otherwise." +func_150731_c,isLocalChannel,2,True if this NetworkManager uses a memory connection (single player game). False may imply both an active TCP connection or simply no active connection at all +func_150732_b,dispatchPacket,2,"Will commit the packet to the channel. If the current thread 'owns' the channel it will write and flush the packet, otherwise it will add a task for the channel eventloop thread to do that." +func_150733_h,flushOutboundQueue,2,Will iterate through the outboundPacketQueue and dispatch all Packets +func_150752_a,getFromPacket,2, +func_150759_c,getId,2, +func_150760_a,getById,2, +func_150775_a,attenuate,2,"Reduces the baseHeight by 20%, and the variation intensity by 40%, and returns the resulting Height object" +func_150786_a,writeNBTTagCompoundToBuffer,2,Writes a compressed NBTTagCompound to this buffer +func_150787_b,writeVarIntToBuffer,2,Writes a compressed int to the buffer. The smallest number of bytes to fit the passed int will be written. Of each such byte only 7 bits will be used to describe the actual value since its most significant bit dictates whether the next byte is part of that same int. Micro-optimization for int values that are expected to have values below 128. +func_150788_a,writeItemStackToBuffer,2,"Writes the ItemStack's ID (short), then size (byte), then damage. (short)" +func_150789_c,readStringFromBuffer,2,Reads a string from this buffer. Expected parameter is maximum allowed string length. Will throw IOException if string length exceeds this value! +func_150790_a,getVarIntSize,2,Calculates the number of bytes required to fit the supplied int (0-5) if it were to be read/written using readVarIntFromBuffer or writeVarIntToBuffer +func_150791_c,readItemStackFromBuffer,2,Reads an ItemStack from this buffer +func_150792_a,readVarIntFromBuffer,2,Reads a compressed int from the buffer. To do so it maximally reads 5 byte-sized chunks whose most significant bit dictates whether another byte should be read. +func_150793_b,readNBTTagCompoundFromBuffer,2,Reads a compressed NBTTagCompound from this buffer +func_150802_k,isPopulated,2, +func_150803_c,recheckGaps,2, +func_150808_b,getBlockLightOpacity,2, +func_150810_a,getBlock0,2,Returns the block corresponding to the given coordinates inside a chunk. +func_150813_a,addTileEntity,2, +func_150819_a,getBlockByExtId,2,"Returns the block for a location in a chunk, with the extended ID merged from a byte array and a NibbleArray to form a full 12-bit block ID." +func_150826_b,translateToFallback,2,Translates a Stat name using the fallback (hardcoded en_US) locale. Looks like it's only intended to be used if translateToLocal fails. +func_150827_a,getLastTranslationUpdateTimeInMilliseconds,2,"Gets the time, in milliseconds since epoch, that the translation mapping was last updated" +func_150835_j,getBlockTileEntity,2, +func_150869_b,matchEntitiesToChatComponent,2, +func_150871_b,increaseStat,2, +func_150873_a,unlockAchievement,2,Triggers the logging of an achievement and attempts to announce to server +func_150880_a,dumpJson,2, +func_150881_a,parseJson,2, +func_150882_a,readStatFile,2, +func_150883_b,saveStatFile,2, +func_150884_b,sendAchievements,2, +func_150891_b,getIdFromItem,2, +func_150892_m,isPotionIngredient,2, +func_150893_a,getStrVsBlock,2, +func_150895_a,getSubItems,0,"returns a list of items with the same ID, but different meta (eg: dye returns 16 items)" +func_150896_i,getPotionEffect,2, +func_150897_b,canHarvestBlock,2,Check whether this Item can harvest the given Block +func_150898_a,getItemFromBlock,2, +func_150899_d,getItemById,2, +func_150900_l,registerItems,2, +func_150902_a,addExplosionInfo,0, +func_150903_a,getExplosionTag,0, +func_150905_g,getHealAmount,2, +func_150906_h,getSaturationModifier,2, +func_150910_a,fillBucket,2, +func_150911_c,createMapDataPacket,2, +func_150912_a,loadMapData,0, +func_150913_i,getToolMaterial,2, +func_150926_b,getRecord,0,Return the record item corresponding to the given name. +func_150927_i,getRecordNameLocal,0, +func_150930_a,isNBTValid,2,"this method returns true if the book's NBT Tag List ""pages"" is valid" +func_150931_i,getDamageVsEntity,2,Returns the amount of damage this item will deal. One heart of damage is equal to 2 damage points. +func_150932_j,getToolMaterialName,2,Return the name for this tool's material. +func_150943_a,setSubtypeNames,2, +func_150951_e,getStatName,2, +func_150952_k,getCriteria,2,1.8.9 +func_150955_j,createChatComponent,2,1.8.9 +func_150967_d,getUncookedSaturationModifier,2,Gets the saturation modifier to apply to the heal amount when the player eats the uncooked version of this fish. +func_150970_e,getCookedHealAmount,2,Gets the amount that eating the cooked version of this fish should heal the player. +func_150972_b,getUnlocalizedName,2,"Gets the value that this fish type uses to replace ""XYZ"" in: ""fish.XYZ.raw"" / ""fish.XYZ.cooked"" for the unlocalized name and ""fish_XYZ_raw"" / ""fish_XYZ_cooked"" for the icon string." +func_150973_i,canCook,2,"Gets a value indicating whether this type of fish has ""raw"" and ""cooked"" variants." +func_150974_a,byMetadata,2,"Gets the corresponding FishType value for the given item damage value of an ItemStack, defaulting to COD for unrecognized damage values." +func_150975_c,getUncookedHealAmount,2,Gets the amount that eating the uncooked version of this fish should heal the player. +func_150976_a,getMetadata,2,Gets the item damage value on an ItemStack that represents this fish type +func_150977_f,getCookedSaturationModifier,2,Gets the saturation modifier to apply to the heal amount when the player eats the cooked version of this fish. +func_150978_a,byItemStack,2,"Gets the FishType that corresponds to the given ItemStack, defaulting to COD if the given ItemStack does not actually contain a fish." +func_150995_f,getRepairItem,2, +func_150996_a,setItem,2, +func_150997_a,getStrVsBlock,2, +func_150998_b,canHarvestBlock,2,Check whether the given Block can be harvested using this ItemStack. +func_151000_E,getChatComponent,2,Get a ChatComponent for this Item's display name that shows this Item on hover +func_151001_c,setStackDisplayName,2, +func_151003_a,getSerializableElement,2,Gets the JsonElement that can be serialized. +func_151176_b,getStatEntityKilledBy,2, +func_151177_a,getOneShotStat,2, +func_151178_a,init,2, +func_151179_e,initItemDepleteStats,2, +func_151180_a,mergeStatBases,2,Merge {@link StatBase} object references for similar blocks +func_151181_c,initMiningStats,2, +func_151182_a,getStatKillEntity,2, +func_151187_b,getJsonSerializableValue,2,Gets the JsonSerializable value stored in this tuple. +func_151188_a,setIntegerValue,2,Sets this tuple's integer value to the given value. +func_151189_a,getIntegerValue,2,Gets the integer value stored in this tuple. +func_151190_a,setJsonSerializableValue,2,Sets this tuple's JsonSerializable value to the given value. +func_151200_h,getString,2,Gets the string value of the field on the JsonObject with the given name. +func_151201_f,isJsonPrimitive,0,"Does the given JsonObject contain a field with the given name whose type is primitive (String, Java primitive, or Java primitive wrapper)?" +func_151202_d,isJsonArray,2,Does the given JsonObject contain an array field with the given name? +func_151203_m,getInt,2,Gets the integer value of the field on the JsonObject with the given name. +func_151204_g,hasField,2,Does the given JsonObject contain a field with the given name? +func_151205_a,isString,0,Does the given JsonObject contain a string field with the given name? +func_151206_a,getString,2,Gets the string value of the given JsonElement. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. +func_151207_m,getJsonArray,2,Gets the given JsonElement as a JsonArray. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. +func_151208_a,getInt,2,"Gets the integer value of the field on the JsonObject with the given name, or the given default value if the field is missing." +func_151209_a,getBoolean,2,"Gets the boolean value of the field on the JsonObject with the given name, or the given default value if the field is missing." +func_151210_l,getJsonObject,2,Gets the given JsonElement as a JsonObject. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. +func_151211_a,isString,0,Is the given JsonElement a string? +func_151212_i,getBoolean,0,Gets the boolean value of the field on the JsonObject with the given name. +func_151213_a,getJsonArray,0,"Gets the JsonArray field on the JsonObject with the given name, or the given default value if the field is missing." +func_151214_t,getJsonArray,2,Gets the JsonArray field on the JsonObject with the given name. +func_151215_f,getInt,2,Gets the integer value of the given JsonElement. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. +func_151216_b,getBoolean,2,Gets the boolean value of the given JsonElement. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. +func_151217_k,getFloat,0,Gets the float value of the field on the JsonObject with the given name. +func_151218_a,getJsonObject,0,"Gets the JsonObject field on the JsonObject with the given name, or the given default value if the field is missing." +func_151219_a,getString,0,"Gets the string value of the field on the JsonObject with the given name, or the given default value if the field is missing." +func_151220_d,getFloat,2,Gets the float value of the given JsonElement. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. +func_151221_a,getFloat,2,"Gets the float value of the field on the JsonObject with the given name, or the given default value if the field is missing." +func_151222_d,toString,2,"Gets a human-readable description of the given JsonElement's type. For example: ""a number (4)""" +func_151225_a,post,2,Sends a POST to the given URL +func_151226_a,postMap,2,Sends a POST to the given URL using the map as the POST args +func_151229_a,createNetCipherInstance,2,Creates an Cipher instance using the AES/CFB8/NoPadding algorithm. Used for protocol encryption. +func_151235_d,isPowerOfTwo,2,"Is the given value a power of two? (1, 2, 4, 8, 16, ...)" +func_151236_b,roundUpToPowerOfTwo,2,Returns the input value rounded up to the next highest power of two. +func_151237_a,clamp_double,2, +func_151238_b,denormalizeClamp,2, +func_151239_c,calculateLogBaseTwo,2,"Efficiently calculates the floor of the base-2 log of an integer value. This is effectively the index of the highest bit that is set. For example, if the number in binary is 0...100101, this will return 5." +func_151240_a,randomFloatClamp,2, +func_151241_e,calculateLogBaseTwoDeBruijn,2,"Uses a B(2, 5) De Bruijn sequence and a lookup table to efficiently calculate the log-base-two of the given value. Optimized for cases where the input value is a power-of-two. If the input value is not a power-of-two, then subtract 1 from the return value." +func_151243_f,getIconItemDamage,0, +func_151244_d,getIconItemStack,0, +func_151246_b,isNullOrEmpty,2,Returns a value indicating whether the given string is null or empty. +func_151247_a,sendToAllTrackingEntity,2, +func_151251_a,sendToAllPlayersWatchingChunk,2, +func_151252_a,sendTileToAllPlayersWatchingChunk,2, +func_151253_a,flagChunkForUpdate,2, +func_151255_a,getStringBuffer,2, +func_151256_a,writeAndFlush,2, +func_151259_a,sendPacketToTrackedPlayers,2,Send the given packet to all players tracking this entity. +func_151260_c,createSpawnPacket,2,Creates a spawn packet for the entity managed by this entry. +func_151265_a,addLanEndpoint,2,Adds a channel that listens on publicly accessible network ports +func_151267_d,getServer,2, +func_151268_b,terminateEndpoints,2,Shuts down all open endpoints (with immediate effect?) +func_151269_c,networkTick,2,"Will try to process the packets received by each NetworkManager, gracefully manage processing failures and cleans up dead connections" +func_151270_a,addLocalEndpoint,0,Adds a channel that listens locally +func_151303_a,getName,2, +func_151304_b,getProtocol,2, +func_151315_a,setServerDescription,2, +func_151316_d,getFavicon,2, +func_151317_a,getServerDescription,2, +func_151318_b,getPlayerCountData,2, +func_151319_a,setPlayerCountData,2, +func_151320_a,setFavicon,2, +func_151321_a,setProtocolVersionInfo,2, +func_151322_c,getProtocolVersionInfo,2, +func_151330_a,setPlayers,2, +func_151331_c,getPlayers,2, +func_151332_a,getMaxPlayers,2, +func_151333_b,getOnlinePlayerCount,2, +func_151337_f,getBlock,2, +func_151338_e,getEventParameter,2, +func_151339_d,getEventID,2,Get the Event ID (different for each BlockID) +func_151351_a,getBlock,2, +func_151353_a,registerDispenserBehaviors,2, +func_151354_b,register,2,"Registers blocks, items, stats, etc." +func_151357_h,showWorldInfoNotice,0,returns true if selecting this worldtype from the customize menu should display the generator.[worldtype].info message +func_151358_j,setNotificationData,2,enables the display of generator.[worldtype].info message on the customize world menu +func_151359_c,getTranslatedInfo,0,Gets the translation key for the info text for this world type. +func_151367_b,onUserHurt,2,Whenever an entity that has this enchantment on one of its associated items is damaged this method will be called. +func_151368_a,onEntityDamaged,2,Called whenever a mob is damaged with an item that has this enchantment on it. +func_151384_a,applyThornEnchantments,2, +func_151385_b,applyArthropodEnchantments,2, +func_151386_g,getLuckOfSeaModifier,2,Returns the level of the 'Luck Of The Sea' enchantment. +func_151387_h,getLureModifier,2,Returns the level of the 'Lure' enchantment on the players held item. +func_151390_b,readFromBuf,0, +func_151391_a,writeToBuf,2, +func_151392_a,addPlayerToTeam,2,Adds a player to the given team +func_151393_a,addSmeltingRecipeForBlock,2,"Adds a smelting recipe, where the input item is an instance of Block." +func_151394_a,addSmeltingRecipe,2,Adds a smelting recipe using an ItemStack as the input for the recipe. +func_151395_a,getSmeltingResult,2,Returns the smelting result of an item. +func_151396_a,addSmelting,2,Adds a smelting recipe using an Item as the input item. +func_151397_a,compareItemStacks,2,Compares two itemstacks to ensure that they are the same. This checks both the item and the metadata of the item. +func_151398_b,getSmeltingExperience,2, +func_151426_a,getEnumChatVisibility,2, +func_151428_a,getChatVisibility,2, +func_151429_b,getResourceKey,0, +func_151438_a,getSoundLevel,0, +func_151439_a,setSoundLevel,0, +func_151440_a,setOptionKeyBinding,0,Sets a key binding and then saves all settings.\n \n@param key The key that the option will be set\n@param keyCode The option (keycode) to set. +func_151461_a,getChatComponent,0, +func_151462_b,setKeyCode,0, +func_151463_i,getKeyCode,0, +func_151464_g,getKeyDescription,0, +func_151466_e,getKeyCategory,0, +func_151467_c,getKeybinds,0, +func_151468_f,isPressed,0,Returns true on the initial key press. For continuous querying use {@link isKeyDown()}. Should be used in key events. +func_151469_h,getKeyCodeDefault,0, +func_151470_d,isKeyDown,0,Returns true if the key is pressed (used for continuous querying). Should be used in tickers. +func_151475_a,setAttributeModifiers,2, +func_151498_a,isStairOrSlab,2,True if the block is a stair block or a slab block +func_151499_f,getEatingGrassTimer,2,Number of ticks since the entity started to eat grass +func_151507_a,writeWatchedListToPacketBuffer,2,"Writes the list of watched objects (entity attribute of type {byte, short, int, float, string, ItemStack, ChunkCoordinates}) to the specified PacketBuffer" +func_151508_b,readWatchedListFromPacketBuffer,2,"Reads a list of watched objects (entity attribute of type {byte, short, int, float, string, ItemStack, ChunkCoordinates}) from the supplied PacketBuffer" +func_151509_a,writeTo,2, +func_151510_a,writeWatchableObjectToPacketBuffer,2,"Writes a watchable object (entity attribute of type {byte, short, int, float, string, ItemStack, ChunkCoordinates}) to the specified PacketBuffer" +func_151517_h,isDamageAbsolute,2,Whether or not the damage ignores modification by potion effects or enchantments. +func_151518_m,setDamageIsAbsolute,2,"Sets a value indicating whether the damage is absolute (ignores modification by potion effects or enchantments), and also clears out hunger damage." +func_151519_b,getDeathMessage,2,Gets the death message that is displayed when the player dies\n \n@param entityLivingBaseIn The EntityLivingBase that died +func_151521_b,getDeathMessage,2, +func_151522_h,getDamageSrcDisplayName,2, +func_151523_a,getDifficultyEnum,2, +func_151525_a,getDifficultyId,2, +func_151526_b,getDifficultyResourceKey,2, +func_151535_h,toNBTTagIntArray,2, +func_151536_b,getLayerMaterialBlock,2, +func_151555_a,getMetadataWithOffset,2,"Returns the direction-shifted metadata for blocks that require orientation, e.g. doors, stairs, ladders." +func_151565_r,getMaterialMapColor,2,Retrieves the color index of the block. This is is the same color used by vanilla maps to represent this block. +func_151616_a,biomesEqualOrMesaPlateau,2, +func_151617_b,selectModeOrRandom,2,"returns the most frequently occurring number of the set, or a random number from those provided" +func_151618_b,isBiomeOceanic,2,returns true if the biomeId is one of the various ocean biomes. +func_151619_a,selectRandom,2,selects a random integer from a set of provided integers +func_151624_d,getIntsHeatIce,2, +func_151625_e,getIntsSpecial,2, +func_151626_c,getIntsCoolWarm,2, +func_151634_b,canBiomesBeNeighbors,2,"Returns if two biomes can logically be neighbors. If one is hot and the other cold, for example, it returns false." +func_151635_b,replaceBiomeEdge,2,Creates a border around a biome. +func_151636_a,replaceBiomeEdgeIfNecessary,2,"Creates a border around a biome if necessary, e.g. A transition from hot to cold climates would otherwise occur." +func_151643_b,getMapColor,0, +func_151685_b,getRepairItem,2,Get a main crafting component of this Armor Material (example is Items.iron_ingot) +func_151686_a,addStats,2, +func_152104_k,isEmpty,2, +func_152105_l,isFull,2, +func_152106_a,setPlayerProfile,2, +func_152107_a,setType,2, +func_152108_a,getPlayerProfile,2, +func_152109_d,updatePlayerProfile,2, +func_152111_bt,sendEnterCombat,2,Sends an ENTER_COMBAT packet to the client +func_152112_bu,sendEndCombat,2,Sends an END_COMBAT packet to the client +func_152113_b,getOwnerId,2, +func_152114_e,isOwner,2, +func_152115_b,setOwnerId,2, +func_152116_bZ,isChickenJockey,2,Determines if this chicken is a jokey with a zombie riding it. +func_152117_i,setChickenJockey,2,Sets whether this chicken is a jockey or not. +func_152119_ch,getOwnerId,2,Gets the horse's owner +func_152120_b,setOwnerId,2, +func_152122_n,hasPlayerInfo,0,Checks if this instance of AbstractClientPlayer has any associated player data. +func_152123_o,hasSkin,0,Returns true if the player has an associated skin. +func_152125_a,drawScaledCustomSizeModalRect,0,"Draws a scaled, textured, tiled modal rect at z = 0. This method isn't used anywhere in vanilla code." +func_152129_a,makeDeleteWorldYesNo,0,"Generate a GuiYesNo asking for confirmation to delete a world\n \nCalled when user selects the ""Delete"" button.\n \n@param selectWorld A reference back to the GuiSelectWorld spawning the GuiYesNo\n@param name The name of the world selected for deletion\n@param id An arbitrary integer passed back to selectWorld's confirmClicked method" +func_152339_d,removeEntity,2,Sends a packet to the player to remove an entity. +func_152340_a,readImageToBuffer,0, +func_152342_ad,getSkinManager,0, +func_152343_a,addScheduledTask,0, +func_152344_a,addScheduledTask,2, +func_152345_ab,isCallingFromMinecraftThread,2, +func_152346_Z,getTwitchStream,0, +func_152347_ac,getSessionService,0, +func_152348_aa,dispatchKeypresses,0, +func_152349_b,isUnicode,0, +func_152357_F,getGameProfiles,2,Returns an array of the GameProfiles of all the connected players +func_152358_ax,getPlayerProfileCache,2, +func_152359_aw,getGameProfileRepository,2, +func_152361_a,setConfigManager,2, +func_152368_aE,convertFiles,1, +func_152369_aG,sleepFiveSeconds,1, +func_152372_a,notifyOperators,2,Send an informative message to the server operators +func_152373_a,notifyOperators,2, +func_152374_a,notifyOperators,2, +func_152376_a,calcDamageByCreature,2,Calculates the additional damage that will be dealt by an item with this enchantment. This alternative to calcModifierDamage is sensitive to the targets EnumCreatureAttribute. +func_152377_a,getModifierForCreature,2, +func_152378_a,getPlayerEntityByUUID,2, +func_152379_p,getRenderDistanceChunks,2, +func_152421_a,setSessionType,0, +func_152428_f,getSessionType,0,Returns either 'legacy' or 'mojang' whether the account is migrated or not +func_152430_c,renderStreamIndicator,0, +func_152433_a,loadTextureFromServer,0, +func_152436_a,render,0, +func_152437_a,render,0, +func_152439_a,updateStreamAlpha,0, +func_152446_a,read,2, +func_152447_a,readType,2, +func_152448_b,readKey,2, +func_152449_a,readNBT,2, +func_152450_a,read,2,Tracks the reading of the given amount of bits(!) +func_152456_a,read,2,"Reads the given DataInput, constructs, and returns an NBTTagCompound with the data from the DataInput" +func_152459_a,readGameProfileFromNBT,2,Reads and returns a GameProfile that has been saved to the passed in NBTTagCompound +func_152506_a,getOfflineProfile,2, +func_152583_a,copyFrom,0, +func_152584_a,setResourceMode,0, +func_152586_b,getResourceMode,0, +func_152589_a,getMotd,0, +func_152596_g,canSendCommands,2, +func_152597_c,removePlayerFromWhitelist,2, +func_152598_l,getWhitelistedPlayerNames,2, +func_152599_k,getWhitelistedPlayers,2, +func_152600_g,getAllProfiles,2, +func_152601_d,addWhitelistedPlayer,2, +func_152602_a,getPlayerStatsFile,2, +func_152603_m,getOppedPlayers,2, +func_152604_a,setGameType,0, +func_152605_a,addOp,2, +func_152606_n,getOppedPlayerNames,2, +func_152607_e,canJoin,2, +func_152608_h,getBannedPlayers,2, +func_152610_b,removeOp,2, +func_152611_a,setViewDistance,2, +func_152612_a,getPlayerByUsername,2, +func_152617_w,saveUserBanList,1, +func_152618_v,saveIpBanList,1, +func_152619_x,loadIpBanList,1, +func_152620_y,loadUserBansList,1, +func_152621_a,hasPlayerInstance,2, +func_152622_a,setPlayerViewRadius,2, +func_152634_a,skinAvailable,0, +func_152640_f,getValue,2, +func_152641_a,onSerialization,2, +func_152643_b,constructProfile,2, +func_152644_a,getPermissionLevel,2,"Gets the permission level of the user, as defined in the ""level"" attribute of the ops.json file" +func_152646_b,gameProfileFromJsonObject,2, +func_152647_b,getIPFromJson,2, +func_152648_b,toGameProfile,2,Convert a {@linkplain com.google.gson.JsonObject JsonObject} into a {@linkplain com.mojang.authlib.GameProfile}. The json object must have {@code uuid} and {@code name} attributes or {@code null} will be returned. +func_152649_a,addEntry,2,Add an entry to this cache +func_152650_a,getGameProfile,2,"Get a GameProfile given the MinecraftServer and the player's username. \n\n The UUID of the GameProfile will <b>not</b> be null. If the server is offline, a UUID based on the hash of the username will be used." +func_152651_a,addEntry,2,Add an entry to this cache +func_152652_a,getProfileByUUID,2,Get a player's {@link GameProfile} given their UUID +func_152653_b,getByUUID,2,Get a {@link ProfileEntry} by UUID +func_152654_a,getUsernames,2,Get an array of the usernames that are cached in this cache +func_152655_a,getGameProfileForUsername,2,Get a player's GameProfile given their username. Mojang's server's will be contacted if the entry is not cached locally. +func_152656_a,getEntriesWithLimit,2,Get the {@link PlayerProfileCache.ProfileEntry entries} of this cache with a given limit +func_152657_b,load,2,Load the cached profiles from disk +func_152658_c,save,2,Save the cached profiles to disk +func_152668_a,getGameProfile,2,Get the player's GameProfile +func_152670_b,getExpirationDate,2,Get the date that this entry will expire +func_152678_f,writeChanges,2, +func_152679_g,readSavedFile,1, +func_152680_h,removeExpired,2,Removes expired bans from the list. See {@link BanEntry#hasBanExpired} +func_152681_a,getObjectKey,2,Gets the key value for the given object +func_152682_a,createEntry,2, +func_152683_b,getEntry,2, +func_152684_c,removeEntry,2, +func_152685_a,getKeys,2, +func_152686_a,setLanServer,2, +func_152687_a,addEntry,2,Adds an entry to the list +func_152688_e,getValues,2, +func_152689_b,isLanServer,2, +func_152690_d,isEmpty,1, +func_152691_c,getSaveFile,1, +func_152692_d,hasEntry,2, +func_152700_a,getGameProfileFromName,2,Gets the GameProfile of based on the provided username. +func_152702_a,isBanned,2, +func_152703_a,isUsernameBanned,2, +func_152705_a,isWhitelisted,1,Returns true if the profile is in the whitelist. +func_152706_a,getBannedProfile,2,"Gets the GameProfile for the UserListBanEntry with the specified username, if present" +func_152707_c,addressToString,2, +func_152708_a,isBanned,2, +func_152709_b,getBanEntry,2, +func_152710_d,convertWhitelist,1, +func_152711_b,mkdir,1, +func_152712_b,hasUnconvertableFiles,1, +func_152713_b,parseDate,1, +func_152714_a,tryConvert,1, +func_152715_c,hasUnconvertablePlayerFiles,1, +func_152717_a,lookupNames,2, +func_152718_c,convertOplist,1, +func_152719_a,getStringUUIDFromName,2, +func_152721_a,readFile,1, +func_152722_b,convertIpBanlist,1, +func_152723_a,convertSaveFiles,1, +func_152724_a,convertUserBanlist,1, +func_152725_d,getPlayersDirectory,1, +func_152727_c,backupConverted,1, +func_152753_a,fromJson,2, +func_152754_s,getJsonObject,0, +func_152755_a,get,0,Send a GET request to the given URL. +func_152764_a,parsePass,0, +func_152765_a,parseGroup,0, +func_152766_h,addOSData,2,Add OS data into the snooper +func_152767_b,addStatToSnooper,2, +func_152768_a,addClientStat,2, +func_152780_c,getInputStreamAssets,0, +func_152782_a,getResourceMap,0, +func_152788_a,loadSkinFromCache,0, +func_152789_a,loadSkin,0,"May download the skin if its not in the cache, can be passed a SkinManager#SkinAvailableCallback for handling" +func_152790_a,loadProfileTextures,0, +func_152792_a,loadSkin,0,Used in the Skull renderer to fetch a skin. May download the skin if it's not in the cache +func_152805_a,getPackDescription,0, +func_152816_j,getStreamInfo,0, +func_152819_E,stopBroadcasting,0, +func_152820_d,logError,0,Log an error\n \n@param error The error to log +func_152824_a,setIngestServer,0,Set a new IngestServer\n \n@param ingestServerSet The new IngestServer +func_152825_o,isIngestTesting,0, +func_152826_z,getPixelFormat,0,Return the PixelFormat +func_152829_a,setRecordingDeviceVolume,0, +func_152830_D,requestCommercial,0, +func_152832_e,logWarning,0,Log an warning\n \n@param warning The warning to log +func_152833_s,getIngestServer,0,Return the IngestServer's instance +func_152837_b,setPlaybackDeviceVolume,0, +func_152839_p,isBroadcastPaused,0, +func_152841_a,setBroadcastListener,0,Set a new BroadcastListener\n \n@param broadcastListenerIn The BroadcastListener to set +func_152843_l,getChannelInfo,0, +func_152844_x,getStreamTime,0,Return the stream time +func_152846_a,captureFramebuffer,0,caputres the current framebuffer +func_152850_m,isBroadcasting,0, +func_152852_P,getErrorCode,0, +func_152855_t,getIngestList,0,Return the IngestList +func_152856_w,isReady,0, +func_152857_n,isReadyToBroadcast,0, +func_152859_b,submitStreamFrame,0,passes the framebuffer on to the video stream\n \n@param frame The FrameBuffer tu submit +func_152910_a,muteMicrophone,0,mutes or unmutes the microphone based on the boolean parameter passed into the method +func_152914_u,stopBroadcasting,0, +func_152915_s,updateStreamVolume,0, +func_152916_q,pause,0,pauses a stream +func_152919_o,isPaused,0, +func_152923_i,shutdownStream,0,Shuts down a steam +func_152924_m,isReadyToBroadcast,0, +func_152931_p,requestCommercial,0, +func_152933_r,unpause,0,unpauses a stream +func_152934_n,isBroadcasting,0, +func_152946_b,formatStreamKbps,0, +func_152947_c,formatStreamBps,0, +func_152948_a,formatStreamFps,0, +func_153157_c,glGetShaderi,0, +func_153158_d,glGetShaderInfoLog,0, +func_153159_d,glUniform4,0, +func_153160_c,glUniformMatrix4,0, +func_153161_d,glUseProgram,0, +func_153162_d,glUniform4,0, +func_153163_f,glUniform1i,0, +func_153164_b,glGetAttribLocation,0, +func_153165_e,glGenFramebuffers,0,"Calls the appropriate glGenFramebuffers method and returns the newly created fbo, or returns -1 if not supported." +func_153166_e,glGetProgramInfoLog,0, +func_153167_i,glCheckFramebufferStatus,0, +func_153168_a,glUniform1,0, +func_153169_a,glShaderSource,0, +func_153170_c,glCompileShader,0, +func_153171_g,glBindFramebuffer,0, +func_153172_c,getLogText,0, +func_153173_a,glUniformMatrix2,0, +func_153174_h,glDeleteFramebuffers,0, +func_153175_a,glGetProgrami,0, +func_153176_h,glBindRenderbuffer,0, +func_153177_b,glUniform2,0, +func_153178_b,glAttachShader,0, +func_153179_f,glLinkProgram,0, +func_153180_a,glDeleteShader,0, +func_153181_a,glUniform1,0, +func_153182_b,glUniform2,0, +func_153183_d,glCreateProgram,0, +func_153184_g,glDeleteRenderbuffers,0, +func_153185_f,glGenRenderbuffers,0, +func_153186_a,glRenderbufferStorage,0, +func_153187_e,glDeleteProgram,0, +func_153188_a,glFramebufferTexture2D,0, +func_153189_b,glUniformMatrix3,0, +func_153190_b,glFramebufferRenderbuffer,0, +func_153191_c,glUniform3,0, +func_153192_c,glUniform3,0, +func_153193_b,areShadersSupported,0, +func_153194_a,glGetUniformLocation,0, +func_153195_b,glCreateShader,0,creates a shader with the given mode and returns the GL id. params: mode +func_154311_a,setText,0, +func_154313_b,setEnabled,0, +func_154314_d,getId,0, +func_154315_e,getEnabled,0, +func_154316_f,getPositionY,0, +func_154317_g,getRealmsButton,0, +func_154331_x,getLastActiveTime,2, +func_154333_a,getName,0,Returns the name of the save format. +func_154334_a,isConvertible,0, +func_154335_d,isNewLevelIdAcceptable,0, +func_154336_c,getSizeOnDisk,0, +func_154337_m,getMouseX,0, +func_154338_k,getWidth,0, +func_154339_l,getMouseY,0, +func_154346_a,hasAcceptedEULA,1, +func_154347_a,loadEULAFile,1, +func_154348_b,createEULAFile,1, +func_154354_b,roundUp,2, +func_174791_d,getPositionVector,2,"Get the position vector. <b>{@code null} is not allowed!</b> If you are not an entity in the world, return 0.0D, 0.0D, 0.0D" +func_174792_t_,sendCommandFeedback,2,Returns true if the command sender should be sent feedback about executed commands +func_174793_f,getCommandSenderEntity,2,Returns the entity associated with the command sender. MAY BE NULL! +func_174794_a,setCommandStat,2, +func_174805_g,setAlwaysRenderNameTag,2, +func_174806_f,getVectorForRotation,2,Creates a Vec3 using the pitch and yaw of the entities rotation. +func_174807_aT,getCommandStats,2, +func_174808_Z,createRunningParticles,2, +func_174809_b,isLiquidPresentInAABB,2,Determines if a liquid is present within the specified AxisAlignedBB. +func_174810_b,setSilent,2,When set to true the entity will not play sounds. +func_174811_aO,getHorizontalFacing,2, +func_174812_G,onKillCommand,2,Called by the /kill command. +func_174813_aQ,getEntityBoundingBox,2, +func_174814_R,isSilent,2,@return True if this entity will not play sounds +func_174815_a,applyEnchantments,2, +func_174816_a,verifyExplosion,2, +func_174817_o,setCommandStats,2,Set the CommandResultStats from the entity +func_174818_b,getDistanceSq,2, +func_174819_aU,getNBTTagCompound,2, +func_174820_d,replaceItemInInventory,2, +func_174821_h,setOutsideBorder,2, +func_174822_a,rayTrace,0, +func_174823_aP,getHoverEvent,2, +func_174824_e,getPositionEyes,0, +func_174825_a,interactAt,2,New version of interactWith that includes vector information on where precisely the player targeted. +func_174826_a,setEntityBoundingBox,2, +func_174827_a,isSpectatedByPlayer,2, +func_174828_a,moveToBlockPosAndAngles,2, +func_174829_m,resetPositionToBB,2,Resets the entity's position to the center (planar) and bottom (vertical) points of its bounding box. +func_174830_Y,spawnRunningParticles,2,Attempts to create sprinting particles if the entity is sprinting and not in water. +func_174831_c,getDistanceSqToCenter,2, +func_174832_aS,isOutsideBorder,2, +func_174833_aM,getAlwaysRenderNameTag,2, +func_174834_g,clientUpdateEntityNBT,0,Called when client receives entity's NBTTagCompound from server. +func_174838_j,getAlpha,0, +func_174846_a,setBlockPos,0,Sets the position of the block that this particle came from. Used for calculating texture and color multiplier. +func_174856_o,updateBoundingBox,2,Updates the entity bounding box based on current facing +func_174857_n,getHangingPosition,2, +func_174859_a,updateFacingWithBoundingBox,2,Updates facing and bounding box based on it +func_174862_a,createKnot,2, +func_174863_b,getKnotForPosition,2, +func_174864_a,setDisplayedItemWithUpdate,2, +func_174867_a,setPickupDelay,2, +func_174868_q,setNoPickupDelay,2, +func_174869_p,setDefaultPickupDelay,2, +func_174871_r,setInfinitePickupDelay,2, +func_174872_o,getAge,0, +func_174873_u,setNoDespawn,2, +func_174874_s,cannotPickup,2, +func_174875_k,getGuiID,2, +func_174876_a,createContainer,2, +func_174877_v,getPos,2, +func_174878_a,setPos,2, +func_174880_d,getStats,2, +func_174882_b,executeCommand,2, +func_174884_b,updateGameprofile,2, +func_174885_b,setField,2, +func_174886_c,closeInventory,2, +func_174887_a_,getField,2, +func_174888_l,clear,2, +func_174889_b,openInventory,2, +func_174890_g,getFieldCount,2, +func_174891_i,getLockCode,2, +func_174892_a,setLockCode,2, +func_174893_q_,isLocked,2, +func_174897_t,getDisplayTile,2, +func_174898_m,getMaximumSpeed,2,Get's the maximum speed for a minecart +func_174903_a,isBurning,0, +func_174904_a,getCookTime,2, +func_174907_n,getBeamSegments,0, +func_174908_m,updateBeacon,2, +func_174911_a,getAdjacentChest,2, +func_174912_b,isChestAt,2, +func_174914_o,mayTransfer,2, +func_174915_a,pullItemFromSlot,2,Pulls from the specified slot in the inventory and places in any available slot in the hopper. Returns true if the entire stack was moved +func_174916_c,insertStack,2,Insert the specified stack to the specified inventory and return any leftover items +func_174917_b,isInventoryEmpty,2,Returns false if the specified IInventory contains any items +func_174918_a,putStackInInventoryAllSlots,2,"Attempts to place the passed stack in the inventory, using as many slots as required. Returns leftover items" +func_174919_a,isInventoryFull,2,Returns false if the inventory has any room to place items in +func_174920_a,canInsertItemInSlot,2,Can this hopper insert the specified item from the specified slot on the specified side? +func_174921_b,canExtractItemFromSlot,2,Can this hopper extract the specified item from the specified slot on the specified side? +func_174922_i,getWidth,2, +func_174923_h,getHeight,2, +func_174925_a,clearMatchingItems,2,"Removes matching items from the inventory.\n@param itemIn The item to match, null ignores.\n@param metadataIn The metadata to match, -1 ignores.\n@param removeCount The number of items to remove. If less than 1, removes all matching items.\n@param itemNBT The NBT data to match, null ignores.\n@return The number of items removed from the inventory." +func_174926_d,getOffsetZ,0, +func_174927_b,getPistonState,2, +func_174928_c,getOffsetY,0, +func_174929_b,getOffsetX,0, +func_174930_e,getFacing,2, +func_174935_a,restoreLastBlurMipmap,0, +func_174936_b,setBlurMipmap,0, +func_174937_a,setBlurMipmapDirect,0, +func_174942_a,registerSprite,0, +func_174943_a,loadSprites,0, +func_174944_f,getMissingSprite,0, +func_174951_a,getMissingModel,0, +func_174952_b,getTextureMap,0, +func_174953_a,getModel,0, +func_174954_c,getBlockModelShapes,0, +func_174959_b,notifyLightSet,2, +func_174960_a,markBlockForUpdate,2, +func_174961_a,playRecord,2, +func_174962_a,getViewVector,0, +func_174963_q,generateStars,0, +func_174964_o,generateSky2,0, +func_174965_a,cleanupDamagedBlocks,0, +func_174966_b,makeEntityOutlineShader,0,Creates the entity outline shader to be stored in RenderGlobal.entityOutlineShader +func_174967_a,updateChunks,0, +func_174968_a,renderSky,0, +func_174969_t,postRenderDamagedBlocks,0, +func_174970_a,setupTerrain,0, +func_174971_n,updateDestroyBlockIcons,0, +func_174972_a,spawnParticle,0, +func_174974_b,spawnEntityFX,0, +func_174975_c,renderEntityOutlineFramebuffer,0, +func_174976_a,renderSky,0, +func_174977_a,renderBlockLayer,0, +func_174978_c,getVisibleFacings,0, +func_174979_m,setDisplayListEntitiesDirty,0, +func_174980_p,generateSky,0, +func_174981_a,drawBlockDamageTexture,0, +func_174982_a,renderBlockLayer,0, +func_174983_a,isPositionInRenderChunk,0, +func_174984_a,fixTerrainFrustum,0, +func_174985_d,isRenderEntityOutlines,0, +func_174986_e,stopChunkUpdates,0, +func_175016_a,renderBlockBrightness,0, +func_175017_a,getBakedModel,0, +func_175018_a,renderBlock,0, +func_175019_b,getBlockModelRenderer,0, +func_175020_a,renderBlockDamage,0, +func_175021_a,isRenderTypeChest,0, +func_175022_a,getModelFromBlockState,0, +func_175023_a,getBlockModelShapes,0, +func_175029_a,registerBlock,0, +func_175030_a,renderItemOverlays,0, +func_175031_a,registerBlock,0, +func_175032_a,renderQuads,0, +func_175033_a,renderQuad,0, +func_175035_a,renderModel,0, +func_175036_a,renderModel,0, +func_175037_a,getItemModelMesher,0, +func_175038_a,putQuadNormal,0, +func_175039_a,isNotRenderingEffectsInGUI,0,False when the renderer is rendering the item's effects into a GUI\n \n@param isNot If the renderer is not rendering the effects in a GUI +func_175040_a,renderItemModelTransform,0, +func_175041_b,registerItems,0, +func_175042_a,renderItemIntoGUI,0, +func_175045_a,renderModel,0, +func_175046_c,preTransform,0, +func_175047_a,registerItem,0, +func_175048_a,registerItem,0, +func_175049_a,renderItemModelForEntity,0, +func_175050_a,shouldRenderItemIn3D,0, +func_175063_a,drawStringWithShadow,0,Draws the specified string with a shadow. +func_175064_b,getColorCode,0, +func_175065_a,drawString,0,Draws the specified string. +func_175066_a,loadEntityShader,0,What shader to use when spectating this entity +func_175067_i,renderWorldDirections,0, +func_175068_a,renderWorldPass,0, +func_175069_a,loadShader,0, +func_175070_n,isDrawBlockOutline,0, +func_175071_c,switchUseShader,0, +func_175072_h,disableLightmap,0, +func_175085_a,getSoundMap,0, +func_175086_a,handleResourcePackStatus,2, +func_175087_a,handleAnimation,2, +func_175088_a,handleSpectate,2, +func_175089_a,setPlayerLocation,2, +func_175093_a,handleWorldBorder,2, +func_175094_a,handleCamera,2, +func_175095_a,handleResourcePack,2, +func_175096_a,handlePlayerListHeaderFooter,2, +func_175097_a,handleEntityNBT,2, +func_175098_a,handleCombatEvent,2, +func_175099_a,handleTitle,2, +func_175100_a,handleSetCompressionLevel,2, +func_175101_a,handleServerDifficulty,2, +func_175102_a,getPlayerInfo,0, +func_175104_a,getPlayerInfo,0,Gets the client's description information about another player on the server. +func_175105_e,getGameProfile,0, +func_175106_d,getPlayerInfoMap,0, +func_175108_a,triggerNote,2, +func_175109_g,initializeBannerData,0,Establishes all of the basic properties for the banner. This will also apply the data from the tile entities nbt tag compounds. +func_175110_d,getColorList,0,Retrieves the list of colors for this tile entity. The banner data will be initialized/refreshed before this happens. +func_175111_b,getBaseColor,2, +func_175112_a,setItemValues,2, +func_175113_c,getPatterns,2,Retrieves the amount of patterns stored on an ItemStack. If the tag does not exist this value will be 0. +func_175114_c,getPatternList,0,Retrieves the list of patterns for this tile entity. The banner data will be initialized/refreshed before this happens. +func_175115_b,getBaseColor,2, +func_175116_e,getPatternResourceLocation,0, +func_175117_e,removeBannerData,2,Removes all the banner related data from a provided instance of ItemStack. +func_175124_c,getCommandResultStats,2, +func_175131_l,getBlock,2, +func_175133_bi,resetPotionEffectMetadata,2,Resets the potion effect color and ambience metadata values +func_175134_bD,getJumpUpwardsMotion,2, +func_175135_B,updatePotionMetadata,2,"Clears potion metadata values if the entity has no potion effects. Otherwise, updates potion effect color, ambience, and invisibility metadata values" +func_175136_bO,markPotionsDirty,2, +func_175138_ci,getXPSeed,2, +func_175140_cp,hasReducedDebug,0,"Whether the ""reducedDebugInfo"" option is active for this player." +func_175141_a,openEditSign,2, +func_175142_cm,isAllowEdit,2, +func_175143_p,isInBed,2, +func_175144_cb,isUser,0,"returns true if this is an EntityPlayerSP, or the logged in player." +func_175146_a,canOpen,2,Check whether this player can open an inventory locked with the given LockCode. +func_175147_b,getOfflineUUID,2, +func_175148_a,isWearing,0, +func_175149_v,isSpectator,2,Returns true if the player is in spectator mode. +func_175150_k,setReducedDebug,0, +func_175151_a,canPlayerEdit,2, +func_175154_l,getSkinType,0, +func_175155_b,getPlayerInfo,0, +func_175156_o,getFovModifier,0, +func_175158_f,setClientBrand,0, +func_175159_q,closeScreenAndDropStack,0, +func_175160_A,isCurrentViewEntity,0, +func_175161_p,onUpdateWalkingPlayer,0,called every tick when the player is on foot. Performs all the things that normally happen during movement. +func_175162_d,isOpenBlockSpace,0,Returns true if the block at the given BlockPos and the block above it are NOT full cubes. +func_175163_u,sendHorseInventory,0, +func_175173_a,sendAllWindowProperties,2, +func_175174_a,drawTexturedModalRect,0,Draws a textured rectangle using the texture currently bound to the TextureManager +func_175175_a,drawTexturedModalRect,0,Draws a texture rectangle using the texture currently bound to the TextureManager +func_175176_b,renderExpBar,0, +func_175177_a,setDefaultTitlesTimes,0,Set the differents times for the titles to their default values +func_175178_a,displayTitle,0, +func_175179_f,getFontRenderer,0, +func_175180_a,renderGameOverlay,0, +func_175181_h,getTabList,0, +func_175183_b,showCrosshair,0, +func_175184_a,renderHotbarItem,0, +func_175185_b,renderDemo,0, +func_175186_a,renderHorseJumpBar,0, +func_175187_g,getSpectatorGui,0, +func_175188_a,setRecordPlaying,0, +func_175203_a,setCentered,0,Sets the Label to be centered +func_175205_a,setValidator,0, +func_175206_d,getId,0, +func_175211_a,setWidth,0, +func_175213_c,buildDisplayString,0,Builds the localized display string for this GuiListButton +func_175221_e,getDisplayString,0, +func_175232_g,getHeight,0, +func_175236_d,isReducedDebug,0, +func_175237_a,renderDebugInfo,0, +func_175238_c,getDebugInfoRight,0, +func_175239_b,renderDebugInfoRight,0, +func_175240_a,bytesToMb,0, +func_175243_a,getPlayerName,0,Returns the name that should be renderd for the player supplied +func_175244_b,setHeader,0, +func_175245_a,drawPing,0, +func_175246_a,updatePlayerList,0,"Called by GuiIngame to update the information stored in the playerlist, does not actually render the list, however." +func_175247_a,drawScoreboardValues,0, +func_175248_a,setFooter,0, +func_175249_a,renderPlayerlist,0,"Renders the playerlist, its background, headers and footers." +func_175263_a,renderSelectedItem,0, +func_175264_a,renderTooltip,0, +func_175272_a,handleComponentHover,0,Draws the hover event specified by the given chat component\n \n@param component The IChatComponent to render\n@param x The x position where to render\n@param y The y position where to render +func_175273_b,onResize,0,Called when the GUI is resized in order to update the world and the resolution\n \n@param w The width of the screen\n@param h The height of the screen +func_175274_a,setText,0,Sets the text of the chat +func_175275_f,sendChatMessage,0,Used to add chat messages to the client's GuiChat. +func_175276_a,handleComponentClick,0,Executes the click event specified by the given chat component\n \n@param component The ChatComponent to check for click +func_175277_d,isKeyComboCtrlX,0, +func_175278_g,isKeyComboCtrlA,0, +func_175279_e,isKeyComboCtrlV,0, +func_175280_f,isKeyComboCtrlC,0, +func_175281_b,sendChatMessage,0, +func_175282_a,openWebLink,0, +func_175283_s,isAltKeyDown,0,Returns true if either alt key is down +func_175288_g,markChanged,0,Marks the selected resource packs list as changed to trigger a resource reload when the screen is closed +func_175299_g,canSelectCurWorldType,0,"Returns whether the currently-selected world type is actually acceptable for selection\nUsed to hide the ""debug"" world type unless the shift key is depressed." +func_175318_a,getText,0, +func_175320_a,onTick,0, +func_175378_g,updateActivePotionEffects,0, +func_175381_h,getCookProgressScaled,0, +func_175382_i,getBurnLeftScaled,0, +func_175396_E,getTabListDisplayName,2,"Returns null which indicates the tab list should just display the player's name, return a different value to display the specified text instead of the player's name" +func_175397_a,loadResourcePack,2, +func_175398_C,getSpectatingEntity,2, +func_175399_e,setSpectatingEntity,2, +func_175400_cq,canPlayersAttack,2,Returns if other players can attack this player +func_175402_q,getShowArms,2, +func_175403_w,getLeftLegRotation,0, +func_175404_u,getLeftArmRotation,0, +func_175405_c,setLeftArmRotation,2, +func_175406_a,damageArmorStand,2, +func_175407_x,getRightLegRotation,0, +func_175408_t,getBodyRotation,2, +func_175409_C,dropContents,2, +func_175410_n,isSmall,2, +func_175411_v,getRightArmRotation,0, +func_175412_z,playParticles,2, +func_175413_k,setShowArms,2, +func_175414_r,hasNoBasePlate,2, +func_175415_a,setHeadRotation,2, +func_175416_h,writePoseToNBT,2,Saves the pose to an NBTTagCompound. +func_175417_e,setLeftLegRotation,2, +func_175418_s,getHeadRotation,2, +func_175419_y,readPoseFromNBT,2, +func_175420_a,setSmall,2, +func_175421_A,dropBlock,2, +func_175423_p,hasNoGravity,2, +func_175424_b,setBodyRotation,2, +func_175425_j,setNoGravity,2, +func_175426_l,setNoBasePlate,2, +func_175427_f,setRightLegRotation,2, +func_175428_d,setRightArmRotation,2, +func_175445_a,updateEquipmentIfNeeded,2,Tests if this entity should pickup a weapon or an armor. Entity drops current weapon or armor if the new one is better. +func_175446_cd,isAIDisabled,2,Get whether this Entity's AI is disabled +func_175447_b,getNewNavigator,2,Returns new PathNavigateGround instance +func_175449_a,setHomePosAndDistance,2,Sets home position and max distance for it +func_175453_cd,getFireballStrength,2, +func_175454_a,setAttacking,2, +func_175456_n,applyEntityAI,2, +func_175457_ck,isAngry,2, +func_175461_cl,isElder,2, +func_175463_b,setTargetedEntity,2, +func_175465_cm,setElder,0, +func_175466_co,getTargetedEntity,2, +func_175467_a,setElder,2,Sets this Guardian to be an elder or not. +func_175468_a,isSyncedFlagSet,2,Returns true if given flag is set +func_175473_a,setSyncedFlag,2,"Sets a flag state ""on/off"" on both sides (client/server) by using DataWatcher" +func_175474_cn,hasTargetedEntity,2, +func_175489_ck,getHeldBlockState,2,Gets this enderman's held block state +func_175490_a,setHeldBlockState,2,Sets this enderman's held block state +func_175495_n,isSpawnedByPlayer,2, +func_175496_a,setSpawnedByPlayer,2,Sets if this mob was spawned by a player or not. +func_175499_a,generatePortal,2,Generate the portal when the dragon dies +func_175500_n,onGrowingAdult,2,"This is called when Entity's growing age timer reaches 0 (negative values are considered as a child, positive as an adult)" +func_175505_a,consumeItemFromStack,2,Decreases ItemStack size by one +func_175509_cj,getFleeceColor,2,Gets the wool color of this sheep. +func_175510_a,getRandomSheepColor,2,"Chooses a ""vanilla"" sheep color based on the provided random." +func_175511_a,getDyeColorMixFromParents,2,Attempts to mix both parent sheep to come up with a mixed dye color. +func_175512_b,setFleeceColor,2,Sets the wool color of this sheep +func_175513_a,getDyeRgb,2, +func_175515_b,setMovementSpeed,2, +func_175516_ck,getJumpingSound,2, +func_175519_a,setJumping,2, +func_175522_a,setMoveType,2, +func_175524_b,doMovementAction,2, +func_175525_a,isRabbitBreedingItem,2, +func_175528_cn,createEatingParticles,2, +func_175529_r,setRabbitType,2, +func_175530_ct,updateMoveTypeDuration,2, +func_175531_cl,getRabbitType,2, +func_175532_cm,getMoveTypeDuration,2,Returns duration of the current {@link net.minecraft.entity.passive.EntityRabbit.EnumMoveType move type} +func_175533_a,calculateRotationYaw,2, +func_175534_cv,isCarrotEaten,2,Returns true if {@link net.minecraft.entity.passive.EntityRabbit#carrotTicks carrotTicks} has reached zero +func_175544_ck,setupTamedAI,2, +func_175546_cu,getCollarColor,2, +func_175547_a,setCollarColor,2, +func_175549_o,setIsWillingToMate,2, +func_175550_n,getIsWillingToMate,2,Returns current or updated value of {@link #isWillingToMate} +func_175551_co,getVillagerInventory,2, +func_175552_ct,setAdditionalAItasks,2, +func_175554_cu,populateBuyingList,2, +func_175555_cq,canAbondonItems,2,Used by {@link net.minecraft.entity.ai.EntityAIVillagerInteract EntityAIVillagerInteract} to check if the villager can give some items from an inventory to another villager. +func_175556_cs,isFarmItemInInventory,2,"Returns true if villager has seeds, potatoes or carrots in inventory" +func_175558_a,canVillagerPickupItem,2, +func_175559_s,hasEnoughItems,2,Returns true if villager has enough items in inventory +func_175569_a,isDateAroundHalloween,2, +func_175570_h,getInstance,1, +func_175571_m,shouldTrackOutput,2, +func_175572_n,getCommandResultStats,2, +func_175573_a,setTrackOutput,2, +func_175574_a,tryOpenEditCommandBlock,2, +func_175576_a,getEntityFromUuid,2, +func_175577_aI,getNetworkCompressionTreshold,2,"The compression treshold. If the packet is larger than the specified amount of bytes, it will be compressed" +func_175578_N,isAnvilFileSet,2, +func_175579_a,isBlockProtected,2, +func_175580_aG,getMaxWorldSize,2, +func_175581_ab,getResourcePackHash,2, +func_175582_h,createNewCommandManager,2, +func_175583_aK,getServerThread,1, +func_175584_a,setResourcePackFromWorld,2, +func_175585_v,setInstance,0, +func_175586_a,callFromMainThread,2, +func_175587_aJ,getCurrentTime,1, +func_175592_a,setStaticInstance,0, +func_175593_aQ,getMaxTickTime,1, +func_175594_ao,setWindowIcon,0, +func_175595_al,initStream,0, +func_175596_ai,getSessionInfo,0, +func_175597_ag,getItemRenderer,0, +func_175598_ae,getRenderManager,0, +func_175599_af,getRenderItem,0, +func_175600_c,getVersion,0, +func_175601_h,updateDisplay,0, +func_175602_ab,getBlockRendererDispatcher,0, +func_175603_A,scheduleResourcesRefresh,0, +func_175604_i,checkWindowResize,0, +func_175605_an,setInitialDisplayMode,0, +func_175606_aa,getRenderViewEntity,0, +func_175607_a,setRenderViewEntity,0, +func_175608_ak,registerMetadataSerializers,0, +func_175609_am,createDisplay,0, +func_175610_ah,getDebugFPS,0, +func_175623_d,isAirBlock,2,"Checks to see if an air block exists at the provided location. Note that this only checks to see if the blocks material is set to air, meaning it is possible for non-vanilla blocks to still pass this check." +func_175624_G,getWorldType,2, +func_175625_s,getTileEntity,2, +func_175626_b,getCombinedLight,0, +func_175627_a,getStrongPower,2, +func_175628_b,getLightFor,0, +func_175629_a,getLightForExt,0, +func_175630_e,getPositionIndex,0, +func_175631_c,getBlockStateRaw,0, +func_175636_b,isAnyPlayerWithinRangeAt,2, +func_175637_a,forceBlockUpdateTick,2, +func_175638_a,getRawLight,2,gets the light level at the supplied position +func_175639_b,isAreaLoaded,2, +func_175640_z,isBlockPowered,2, +func_175641_c,addBlockEvent,2, +func_175642_b,getLightFor,2, +func_175643_b,init,2, +func_175644_a,getEntities,2, +func_175645_m,getHeight,2,"Returns the position at this x, z coordinate in the chunk with y set to the value from the height map." +func_175646_b,markChunkDirty,2, +func_175647_a,getEntitiesWithinAABB,2, +func_175648_a,isAreaLoaded,2, +func_175649_E,getDifficultyForLocation,2, +func_175650_b,loadEntities,2, +func_175651_c,getRedstonePower,2, +func_175652_B,setSpawnPoint,2, +func_175653_a,setLightFor,2, +func_175654_a,updateBlockTick,2, +func_175655_b,destroyBlock,2,"Sets a block to air, but also plays the sound and particles and can spawn drops" +func_175656_a,setBlockState,2,Convenience method to update the block on both the client and server +func_175657_ab,getSkylightSubtracted,2, +func_175658_ac,getLastLightningBolt,0, +func_175659_aa,getDifficulty,2, +func_175660_a,isBlockModifiable,2, +func_175661_b,getPlayers,2, +func_175662_w,canBlockFreezeNoWater,2, +func_175663_a,isAreaLoaded,2, +func_175664_x,checkLight,2, +func_175665_u,isBlockFullCube,2, +func_175666_e,updateComparatorOutputLevel,2, +func_175667_e,isBlockLoaded,2, +func_175668_a,isBlockLoaded,2, +func_175669_a,playBroadcastSound,2, +func_175670_e,canBlockFreeze,2,Checks to see if a given block is both water and cold enough to freeze. +func_175671_l,getLightFromNeighbors,2, +func_175672_r,getTopSolidOrLiquidBlock,2,"Finds the highest block on the x and z coordinate that is solid or liquid, and returns its y coord." +func_175673_a,isInsideBorder,2, +func_175674_a,getEntitiesInAABBexcluding,2,"Gets all entities within the specified AABB excluding the one passed into it. Args: entityToExclude, aabb, predicate" +func_175675_v,canBlockFreezeWater,2, +func_175676_y,getStrongPower,2,"Returns the single highest strong power out of all directions using getStrongPower(BlockPos, EnumFacing)" +func_175677_d,isBlockNormalCube,2,"Checks if a block's material is opaque, and that it takes up a full cube" +func_175678_i,canSeeSky,2, +func_175679_n,notifyLightSet,2, +func_175680_a,isChunkLoaded,2, +func_175681_c,unloadEntities,2, +func_175682_a,spawnParticle,0, +func_175683_a,doesBlockHaveSolidTopSurface,2, +func_175684_a,scheduleUpdate,2, +func_175685_c,notifyNeighborsOfStateChange,2, +func_175686_ad,isFindingSpawnPoint,2, +func_175687_A,isBlockIndirectlyGettingPowered,2,Checks if the specified block or its neighbors are powered by a neighboring block. Used by blocks like TNT and Doors. +func_175688_a,spawnParticle,2, +func_175689_h,markBlockForUpdate,2, +func_175690_a,setTileEntity,2, +func_175691_a,isBlockTickPending,2, +func_175692_b,setSkylightSubtracted,2, +func_175693_T,getMapStorage,2, +func_175694_M,getSpawnPoint,2,Gets the spawn point in the world +func_175695_a,notifyNeighborsOfStateExcept,2, +func_175696_F,isWater,2, +func_175697_a,isAreaLoaded,2, +func_175698_g,setBlockToAir,2, +func_175699_k,getLight,2, +func_175700_a,addTileEntity,2, +func_175701_a,isValid,2,Check if the given BlockPos has valid coordinates +func_175702_c,setLastLightningBolt,2, +func_175703_c,getGroundAboveSeaLevel,2, +func_175704_b,markBlockRangeForRenderUpdate,2, +func_175705_a,getLightFromNeighborsFor,0, +func_175706_a,isAreaLoaded,2, +func_175707_a,isAreaLoaded,2, +func_175708_f,canSnowAt,2,Checks to see if a given block can accumulate snow from it snowing +func_175709_b,isSidePowered,2, +func_175710_j,canBlockSeeSky,2, +func_175711_a,isAreaLoaded,2, +func_175713_t,removeTileEntity,2, +func_175714_ae,getVillageCollection,2, +func_175715_c,sendBlockBreakProgress,2, +func_175716_a,canBlockBePlaced,2, +func_175717_a,playRecord,2, +func_175718_b,playAuxSFX,2, +func_175719_a,extinguishFire,2,Attempts to extinguish a fire +func_175720_a,spawnParticle,2, +func_175721_c,getLight,2, +func_175722_b,notifyNeighborsRespectDebug,2, +func_175723_af,getWorldBorder,2, +func_175724_o,getLightBrightness,2, +func_175725_q,getPrecipitationHeight,2, +func_175726_f,getChunkFromBlockCoords,2, +func_175727_C,isRainingAt,2,Check if precipitation is currently happening at a position +func_175731_a,playSoundAtPos,0,Plays a sound at the specified position.\n \n@param pos The position where to play the sound\n@param soundName The name of the sound to play\n@param volume The volume of the sound\n@param pitch The pitch of the sound\n@param distanceDelay True if the sound is delayed over distance +func_175732_a,canCreatureTypeSpawnHere,2, +func_175733_a,getEntityFromUuid,2, +func_175734_a,getSpawnListEntryForTypeAt,2, +func_175735_ai,canSpawnAnimals,2, +func_175736_a,adjustPosToNearbyEntity,2, +func_175737_aj,setDebugWorldSettings,2, +func_175738_ah,canSpawnNPCs,2, +func_175739_a,spawnParticle,2,Spawns the desired particle and sends the necessary packets to the relevant connected players. +func_175746_b,getColorIndex,2,Returns the numerical color index that represents this formatting +func_175750_a,addBlockInfo,2, +func_175755_a,parseInt,2, +func_175756_a,parseDouble,2, +func_175757_a,parseBlockPos,2, +func_175758_e,getEntityName,2,"Attempts to retrieve an entity's name, first assuming that the entity is a player, and then exhausting all other possibilities." +func_175759_a,getEntity,2, +func_175760_a,parseLong,2, +func_175761_b,parseDouble,2, +func_175762_a,getListOfStringsMatchingLastWord,2, +func_175764_a,parseInt,2, +func_175765_c,parseDouble,2, +func_175766_b,parseLong,2, +func_175767_a,parseCoordinate,2, +func_175768_b,getEntity,2, +func_175769_b,parseDouble,2, +func_175770_a,parseCoordinate,2, +func_175772_d,getWorldBorder,2, +func_175783_e,getSlotForShortcut,2, +func_175784_d,getUsernames,2, +func_175786_a,tryExecute,2, +func_175792_a,generate,2, +func_175794_a,generateStructure,2, +func_175796_a,isPositionInStructure,2, +func_175799_b,getScatteredFeatureSpawnList,2,Gets the scattered feature spawn list +func_175804_a,fillWithBlocks,2,Fill the given area with the selected blocks +func_175806_a,generateDispenserContents,2, +func_175807_a,getBlockStateFromPos,2, +func_175808_b,replaceAirAndLiquidDownwards,2,Replaces air and liquid from given position downwards. Stops when hitting anything else than air or liquid +func_175809_a,randomlyPlaceBlock,2, +func_175810_a,placeDoorCurrentPosition,2,Places door on given position +func_175811_a,setBlockState,2, +func_175897_a,getComponentToAddBoundingBox,2,Create a bounding box with the specified dimensions and rotate it. Used to project a possible new component Bounding Box - to check if it would cut anything already spawned +func_175898_b,isVecInside,2,Checks if given Vec3i is inside of StructureBoundingBox +func_175900_c,getLayerMaterial,2, +func_175903_a,setBlockAndNotifyAdequately,2, +func_175914_a,setGeneratedBlock,2, +func_175935_b,getGreatestDistance,2,Returns the absolute greatest distance in the BlockPos object. +func_175936_a,checkBlockLine,2,"Checks a line of blocks in the world from the first coordinate to triplet to the second, returning the distance (in blocks) before a non-air, non-leaf block is encountered and/or the end is encountered." +func_175939_d,generateLeafNodeBases,2,Generates additional wood blocks to fill out the bases of different leaf nodes that would otherwise degrade. +func_175940_a,generateLeafNode,2,Generates the leaves surrounding an individual entry in the leafNodes list. +func_175941_b,generateLeaves,2,Generates the leaf portion of the tree as specified by the leafNodes list. +func_175942_c,generateTrunk,2,Places the trunk for the big tree that is being generated. Able to generate double-sized trunks by changing a field that is always 1 to 2. +func_175970_a,registerOceanMonumentPieces,2, +func_176052_a,getMapPacket,2, +func_176053_a,updateMapData,2, +func_176054_a,calculateMapCenter,2, +func_176055_c,checkDoorExistence,2,"returns the VillageDoorInfo if it exists in any village or in the newDoor list, otherwise returns null" +func_176056_a,getNearestVillage,2, +func_176057_e,positionInList,2, +func_176058_f,isWoodDoor,2, +func_176059_d,addToNewDoorsList,2, +func_176060_a,addToVillagerPositionList,2, +func_176061_a,countBlocksCanSeeSky,2,Check five blocks in the direction. The centerPos will not be checked. +func_176062_a,fileNameForProvider,2, +func_176071_a,glBufferData,0, +func_176072_g,glBindBuffer,0, +func_176073_e,glGenBuffers,0, +func_176074_g,glDeleteBuffers,0, +func_176075_f,useVbo,0, +func_176101_a,getPacket,2, +func_176102_a,update,2, +func_176118_b,setBorderLerpTarget,2,Sets the border lerp target +func_176119_g,setHardcore,2, +func_176120_C,getBorderCenterX,2,Returns the border center X position +func_176121_c,setAllowCommands,2, +func_176122_j,setBorderWarningDistance,2,Sets the border warning distance +func_176123_z,isDifficultyLocked,2, +func_176124_d,getBorderCenterX,2,Sets the border center X position +func_176125_f,setBorderDamagePerBlock,2,Sets the border damage per block +func_176126_D,getBorderCenterZ,2,Returns the border center Z position +func_176127_a,populateFromWorldSettings,2, +func_176128_f,setMapFeaturesEnabled,2, +func_176129_e,setBorderSafeZone,2,Sets the border safe zone +func_176130_y,getDifficulty,2, +func_176131_J,getBorderWarningDistance,2,Returns the border warning distance +func_176132_G,getBorderLerpTarget,2,Returns the border lerp target +func_176133_A,getCleanWeatherTime,2, +func_176134_F,getBorderLerpTime,2,Returns the border lerp time +func_176135_e,setBorderLerpTime,2,Sets the border lerp time +func_176136_k,setBorderWarningTime,2,Sets the border warning time +func_176137_E,getBorderSize,2, +func_176138_H,getBorderSafeZone,2,Returns the border safe zone +func_176139_K,getBorderWarningTime,2,Returns the border warning time +func_176140_I,getBorderDamagePerBlock,2,Returns the border damage per block +func_176141_c,getBorderCenterZ,2,Sets the border center Z position +func_176142_i,setCleanWeatherTime,2, +func_176143_a,setSpawn,2, +func_176144_a,setDifficulty,2, +func_176145_a,setBorderSize,2,Sets the border size +func_176159_a,openPoint,2,Returns a mapped point or creates and adds one +func_176160_a,getPathPointToCoords,2,Returns PathPoint for given coordinates +func_176161_a,getPathPointTo,2,Returns given entity's position as PathPoint +func_176162_a,initProcessor,2, +func_176163_a,postProcess,2,This method is called when all nodes have been processed and PathEntity is created.\n {@link net.minecraft.world.pathfinder.WalkNodeProcessor WalkNodeProcessor} uses this to change its field {@link net.minecraft.world.pathfinder.WalkNodeProcessor#avoidsWater avoidsWater} +func_176164_a,findPathOptions,2, +func_176171_a,getSafePoint,2,Returns a point that the entity can safely move to +func_176172_b,setBreakDoors,2, +func_176173_e,getAvoidsWater,2, +func_176174_d,getCanSwim,2, +func_176175_a,setEnterDoors,2, +func_176176_c,setAvoidsWater,2, +func_176177_a,getVerticalOffset,2,"Checks if an entity collides with blocks at a position.\nReturns 1 if clear, 0 for colliding with any solid block, -1 for water(if avoids water),\n-2 for lava, -3 for fence and wall, -4 for closed trapdoor, 2 if otherwise clear except for open trapdoor or water(if not avoiding)" +func_176178_d,setCanSwim,2, +func_176179_b,getEnterDoors,2, +func_176185_a,getSafePoint,2,Returns a point that the entity can safely move to +func_176187_a,addToPath,2,Adds a path from start to end and returns the whole path +func_176188_a,createEntityPathTo,2,Creates a path from one entity to another within a minimum distance +func_176189_a,createEntityPathTo,2,Internal implementation of creating a path from an entity to a point +func_176193_a,canReplace,2, +func_176194_O,getBlockState,2, +func_176195_g,getBlockHardness,2, +func_176196_c,canPlaceBlockAt,2, +func_176197_a,modifyAcceleration,2, +func_176198_a,canPlaceBlockOnSide,2,Check whether this Block can be placed on the given side +func_176199_a,onEntityCollidedWithBlock,2,Triggered whenever an entity collides with this block (enters into the block) +func_176200_f,isReplaceable,2,Whether this Block can be replaced directly by other blocks (true for e.g. tall grass) +func_176201_c,getMetaFromState,2,Convert the BlockState into the correct metadata value +func_176202_d,colorMultiplier,0, +func_176203_a,getStateFromMeta,2,Convert the given metadata into a BlockState for this Block +func_176204_a,onNeighborBlockChange,2,Called when a neighboring block changes. +func_176205_b,isPassable,2, +func_176206_d,onBlockDestroyedByPlayer,2,Called when a player destroys this Block +func_176207_c,getMixedBrightnessForBlock,0, +func_176208_a,onBlockHarvested,2, +func_176209_a,canCollideCheck,2, +func_176210_f,getStateId,2,"Get a unique ID for the given BlockState, containing both BlockID and metadata" +func_176211_b,getStrongPower,2, +func_176212_b,isBlockSolid,2,Whether this Block is solid on the given Side +func_176213_c,onBlockAdded,2, +func_176214_u,isVisuallyOpaque,2, +func_176215_a,registerBlock,2, +func_176216_a,onLanded,2,Called when an Entity lands on this Block. This method *must* update motionY because the entity will not do that on its own +func_176217_b,getStateForEntityRender,0,"Possibly modify the given BlockState before rendering it on an Entity (Minecarts, Endermen, ...)" +func_176218_Q,getOffsetType,0,Get the OffsetType for this Block. Determines if the model is rendered slightly offset. +func_176219_a,registerBlock,2, +func_176220_d,getStateById,2,Get a BlockState by it's ID (see getStateId) +func_176221_a,getActualState,2,"Get the actual Block state of this Block at the given position. This applies properties not visible in the metadata, such as fence connections." +func_176222_j,getDamageValue,2,Gets the meta to use for the Pick Block ItemStack result +func_176223_P,getDefaultState,2, +func_176224_k,fillWithRain,2,"Called similar to random ticks, but only when it is raining." +func_176225_a,shouldSideBeRendered,0, +func_176226_b,dropBlockAsItem,2,Spawn this Block's drops into the World as EntityItems +func_176232_d,getSaplingDropChance,2, +func_176233_b,getWoodType,2, +func_176234_a,dropApple,2, +func_176235_d,destroy,2, +func_176253_e,canConnectTo,2, +func_176261_e,checkForDrop,2, +func_176267_a,getPropertyFor,2, +func_176268_d,getNumGrownFaces,2, +func_176269_e,recheckGrownSides,2, +func_176281_b,getFacing,2, +func_176282_a,getMetaForFacing,2, +func_176286_e,notifyHook,2, +func_176287_c,isConnectedTo,2, +func_176288_d,updateState,2, +func_176302_a,isSameStair,2,Check whether there is a stair block at the given position and it has the same properties as the given BlockState +func_176303_e,setBaseCollisionBounds,2,Set the block bounds as the collision bounds for the stairs at the given position +func_176311_e,tryAbsorb,2, +func_176312_d,absorb,2, +func_176314_e,checkAndDropBlock,2, +func_176316_e,checkForMove,2, +func_176317_b,getFacing,2, +func_176318_b,shouldBeExtended,2, +func_176319_a,doMove,2, +func_176322_b,getFacing,2, +func_176323_e,applyCoreBounds,2, +func_176324_d,applyHeadBounds,2, +func_176328_e,checkForDrop,2, +func_176329_d,canBlockStay,2, +func_176337_b,colorMultiplier,0, +func_176338_e,updateSurroundingRedstone,2, +func_176340_e,canConnectUpwardsTo,2, +func_176341_c,getAttachPosition,2, +func_176342_a,getMaxCurrentStrength,2, +func_176343_a,canConnectTo,2, +func_176344_d,notifyWireNeighborsOfStateChange,2,"Calls World.notifyNeighborsOfStateChange() for all neighboring blocks, but only if the given block is a redstone wire." +func_176345_a,calculateCurrentChanges,2, +func_176346_d,canConnectUpwardsTo,2, +func_176352_d,activate,2, +func_176353_e,checkForDrop,2, +func_176354_d,canBlockStay,2, +func_176357_a,getMetadataForFacing,2, +func_176361_a,getFlowingBlock,2, +func_176362_e,getLevel,2, +func_176363_b,getStaticBlock,2, +func_176364_g,shouldRenderSides,0, +func_176365_e,checkForMixing,2, +func_176366_f,getEffectiveFlowDecay,2, +func_176368_m,getCanBlockBurn,2, +func_176369_e,isSurroundingBlockFlammable,2, +func_176370_f,updateLiquid,2, +func_176371_a,checkAdjacentBlock,2, +func_176372_g,isBlocked,2, +func_176373_h,canFlowInto,2, +func_176375_a,tryFlowInto,2, +func_176376_e,getPossibleFlowDirections,2,This method returns a Set of EnumFacing +func_176377_d,canContainSilverfish,2, +func_176381_b,canBlockStay,2, +func_176388_T,getGolemPattern,2, +func_176389_S,getGolemBasePattern,2, +func_176390_d,canDispenserPlace,2, +func_176391_l,getSnowmanPattern,2, +func_176392_j,getSnowmanBasePattern,2, +func_176397_f,calculateInputStrength,2, +func_176398_g,updateState,2, +func_176399_m,getTickDelay,2, +func_176400_h,notifyNeighbors,2, +func_176401_c,getPowerOnSide,2, +func_176402_i,isFacingTowardsRepeater,2, +func_176403_d,getDelay,2, +func_176404_e,shouldBePowered,2, +func_176405_b,isLocked,2, +func_176406_l,isPowered,2, +func_176407_c,getPowerOnSides,2, +func_176408_a,getActiveSignal,2, +func_176409_d,canBlockStay,2, +func_176414_j,getWitherBasePattern,2, +func_176415_b,canDispenserPlace,2, +func_176416_l,getWitherPattern,2, +func_176422_e,getTileEntity,2, +func_176423_a,newTileEntity,2, +func_176424_a,getBoundingBox,2, +func_176427_e,updateState,2, +func_176428_b,getFacing,2, +func_176431_a,insertRecord,2, +func_176433_b,getInstrument,2, +func_176438_e,setDefaultDirection,2, +func_176439_d,dispense,2, +func_176442_d,getTileEntity,2, +func_176445_e,setDefaultFacing,2, +func_176446_a,setState,2, +func_176450_d,updateColorAsync,2, +func_176453_o,isOcelotSittingOnChest,2, +func_176454_e,isDoubleChest,2, +func_176455_e,checkForSurroundingChests,2, +func_176456_n,isBelowSolidBlock,2, +func_176457_m,isBlocked,2, +func_176458_f,correctFacing,2, +func_176460_j,calculateOutput,2, +func_176461_a,findItemFrame,2, +func_176462_k,onStateChange,2, +func_176468_a,getSafeExitLocation,2,Returns a safe BlockPos to disembark the bed +func_176469_d,hasRoomForPlayer,2, +func_176470_e,getPlayerInBed,2, +func_176473_a,canGrow,2,Whether this IGrowable can grow +func_176474_b,grow,2, +func_176475_e,checkAndDropBlock,2, +func_176476_e,generateTree,2, +func_176477_a,isTypeAt,2,Check whether the given BlockPos has a Sapling of the given type +func_176478_d,grow,2, +func_176481_j,getSeedItem,2, +func_176482_g,growStem,2, +func_176485_d,generateBigMushroom,2, +func_176487_g,grow,2, +func_176489_b,onHarvest,2, +func_176490_e,getVariant,2, +func_176491_a,placeAt,2, +func_176494_l,getTypeProperty,2, +func_176495_j,getBlockType,2,Get the Type of this flower (Yellow/Red) +func_176499_e,canBlockStay,2, +func_176500_f,dropBlock,2, +func_176502_a_,onEndFalling,2, +func_176503_e,checkFallable,2, +func_176509_j,getItem,2, +func_176510_b,removeHalfBit,2, +func_176511_f,getFacing,2, +func_176512_a,toggleDoor,2, +func_176513_j,isHingeLeft,2, +func_176514_f,isOpen,2, +func_176515_e,combineMetadata,2, +func_176516_g,isOpen,2, +func_176517_h,getFacing,2, +func_176518_i,isTop,2, +func_176524_e,canConnectTo,2, +func_176529_d,hasCrops,2, +func_176530_e,hasWater,2, +func_176532_c,getFlammability,2, +func_176533_e,canNeighborCatchFire,2, +func_176534_d,getEncouragement,2, +func_176535_e,canCatchFire,2,Checks if the block can be caught on fire +func_176536_a,catchOnFire,2, +func_176537_d,canDie,2, +func_176538_m,getNeighborEncouragement,2, +func_176549_a,getMetaForAxis,2, +func_176551_l,getVariantProperty,2, +func_176552_j,isDouble,2, +func_176553_a,getVariant,2, +func_176560_l,getShapeProperty,2, +func_176561_b,onNeighborChangedInternal,2, +func_176562_d,isRailBlock,2, +func_176563_d,isRailBlock,2, +func_176570_e,updatePoweredState,2, +func_176571_a,findMinecarts,2, +func_176572_a,getDectectionBox,2, +func_176575_a,setRedstoneStrength,2, +func_176576_e,getRedstoneStrength,2, +func_176577_m,canBePlacedOn,2, +func_176578_d,updateNeighbors,2,Notify block and block below of changes +func_176582_b,notifyNeighbors,2, +func_176583_e,checkForDrop,2, +func_176586_d,canBlockStay,2, +func_176588_d,canBlockStay,2, +func_176590_a,setWaterLevel,2, +func_176592_e,onNeighborChangeInternal,2, +func_176593_f,checkForDrop,2, +func_176594_d,canPlaceOn,2, +func_176595_b,canPlaceAt,2, +func_176597_g,shouldBeOff,2, +func_176598_a,isBurnedOut,2, +func_176602_a,setLocationNameClock,0, +func_176603_b,setLocationNameCompass,0, +func_176604_a,makeAtlasSprite,0, +func_176610_l,getName,2, +func_176612_a,getMetadata,2, +func_176613_a,byMetadata,2, +func_176614_c,getUnlocalizedName,2, +func_176624_a,getMetadata,2, +func_176625_a,byMetadata,2, +func_176627_c,getUnlocalizedName,2, +func_176642_a,getMetadata,2,Returns the EnumType's metadata value. +func_176643_a,byMetadata,2,Returns an EnumType for the BlockState from a metadata value. +func_176644_c,getUnlocalizedName,2, +func_176657_a,getMetadata,2, +func_176659_c,getUnlocalizedName,2, +func_176660_a,byMetadata,2, +func_176673_a,byMetadata,2,Returns the matching EnumType for the given metadata. +func_176675_a,getMetadata,2, +func_176676_c,getUnlocalizedName,2, +func_176685_d,getUnlocalizedName,2, +func_176686_a,byMetadata,2, +func_176687_c,getMapColor,2, +func_176688_a,getMetadata,2, +func_176716_d,getPlane,2,"Get this Axis' Plane (VERTICAL for Y, HORIZONTAL for X and Z)" +func_176717_a,byName,0,Get the axis specified by the given name +func_176719_a,getName2,2,Like getName but doesn't override the method from Enum. +func_176720_b,isVertical,2,If this Axis is on the vertical plane (Only true for Y) +func_176722_c,isHorizontal,2,If this Axis is on the horizontal plane (true for X and Z) +func_176730_m,getDirectionVec,0,Get a normalized Vector that points in the direction of this Facing. +func_176731_b,getHorizontal,2,Get a Facing by it's horizontal index (0-3). The order is S-W-N-E. +func_176732_a,rotateAround,0,"Rotate this Facing around the given axis clockwise. If this facing cannot be rotated around the given axis, returns this facing without rotating." +func_176733_a,fromAngle,2,"Get the Facing corresponding to the given angle (0-360). An angle of 0 is SOUTH, an angle of 90 would be WEST." +func_176734_d,getOpposite,2,Get the opposite Facing (e.g. DOWN => UP) +func_176735_f,rotateYCCW,2,Rotate this Facing around the Y axis counter-clockwise (NORTH => WEST => SOUTH => EAST => NORTH) +func_176736_b,getHorizontalIndex,2,Get the index of this horizontal facing (0-3). The order is S-W-N-E +func_176737_a,getFacingFromVector,0, +func_176738_p,rotateZ,0,Rotate this Facing around the Z axis (EAST => DOWN => WEST => UP => EAST) +func_176739_a,byName,0,Get the facing specified by the given name +func_176740_k,getAxis,2, +func_176741_a,random,2,Choose a random Facing using the given Random +func_176742_j,getName2,2,"Same as getName, but does not override the method from Enum." +func_176743_c,getAxisDirection,2,Get the AxisDirection of this Facing. +func_176744_n,rotateX,0,Rotate this Facing around the X axis (NORTH => DOWN => SOUTH => UP => NORTH) +func_176745_a,getIndex,2,Get the Index of this Facing (0-5). The order is D-U-N-S-W-E +func_176746_e,rotateY,2,Rotate this Facing around the Y axis clockwise (NORTH => EAST => SOUTH => WEST => NORTH) +func_176762_d,getUnlocalizedName,2, +func_176764_b,byMetadata,2, +func_176765_a,getMetadata,2, +func_176766_a,byDyeDamage,2, +func_176767_b,getDyeDamage,2, +func_176768_e,getMapColor,2, +func_176794_a,byMetadata,2, +func_176796_a,getMetadata,2, +func_176807_a,getMetadata,2, +func_176809_c,getUnlocalizedName,2, +func_176810_a,byMetadata,2, +func_176825_a,byMetadata,2, +func_176827_a,getMetadata,2, +func_176828_c,getUnlocalizedName,2, +func_176837_a,byMetadata,2, +func_176839_a,getMetadata,2, +func_176840_c,getUnlocalizedName,2, +func_176852_c,getFacing,2, +func_176853_a,byMetadata,2, +func_176855_a,getMetadata,2, +func_176856_a,forFacings,2, +func_176870_a,fromFacingAxis,2, +func_176878_a,forModelBlock,2, +func_176879_a,byMetadata,2, +func_176881_a,getMetadata,2, +func_176882_c,getUnlocalizedName,2, +func_176883_d,getModelBlock,2, +func_176895_a,byMetadata,2, +func_176896_a,getMetadata,2, +func_176915_a,getMetadata,2, +func_176916_a,byMetadata,2, +func_176918_c,getUnlocalizedName,2, +func_176924_a,byMetadata,2, +func_176925_a,getMetadata,2, +func_176927_c,getUnlocalizedName,2, +func_176936_a,getMeta,2, +func_176938_a,byMetadata,2, +func_176939_c,getUnlocalizedName,2, +func_176963_d,getUnlocalizedName,2, +func_176964_a,getBlockType,2, +func_176966_a,getTypes,0,"Get all FlowerTypes that are applicable for the given Flower block (""yellow"", ""red"")" +func_176967_a,getType,2,Get the given FlowerType from BlockType & metadata +func_176968_b,getMeta,2, +func_177015_a,getMetadata,2, +func_177016_a,byMetadata,2, +func_177018_c,isAscending,2, +func_177044_a,getMeta,2, +func_177045_a,byMetadata,2, +func_177053_a,readBufferedImage,0, +func_177054_c,anaglyphColor,0, +func_177059_a,registerSprites,0, +func_177064_a,toByteArray,0, +func_177066_a,getFramebufferRaw,0, +func_177067_a,renderName,0, +func_177068_d,getRenderManager,0, +func_177069_a,renderOffsetLivingLabel,0, +func_177070_b,canRenderName,0, +func_177071_a,shouldRender,0, +func_177086_a,setRenderOutlines,0, +func_177087_b,getMainModel,0, +func_177088_c,setScoreTeamColor,0, +func_177089_b,removeLayer,0, +func_177090_c,setDoRenderBrightness,0, +func_177091_f,unsetBrightness,0, +func_177092_a,setBrightness,0, +func_177093_a,renderLayers,0, +func_177094_a,addLayer,0, +func_177105_a,setLightmap,0, +func_177137_d,setModelVisibilities,0, +func_177138_b,renderRightArm,0, +func_177139_c,renderLeftArm,0, +func_177141_a,doRenderLayer,0, +func_177142_b,shouldCombineTextures,0, +func_177175_a,getArmorModel,0, +func_177176_a,getCurrentArmor,0, +func_177177_a,initArmor,0, +func_177178_a,getArmorResource,0, +func_177179_a,setModelPartVisible,0, +func_177180_b,isSlotForLeggings,0, +func_177181_a,getArmorResource,0, +func_177182_a,renderLayer,0, +func_177183_a,renderGlint,0, +func_177194_a,setModelVisible,0, +func_177219_e,isInterpolate,0, +func_177221_b,getSpawnerPosition,2, +func_177222_d,getMobRotation,0, +func_177223_e,getPrevMobRotation,0, +func_177226_a,withProperty,2,Get a version of this BlockState with the given Property now set to the given value +func_177227_a,getPropertyNames,2,Get the names of all properties defined for this BlockState +func_177228_b,getProperties,2,Get all properties of this BlockState. The returned Map maps from properties (IProperty) to the respective current value. +func_177229_b,getValue,2,Get the value of the given Property for this BlockState +func_177230_c,getBlock,2, +func_177231_a,cycleProperty,2,"Create a version of this BlockState with the given property cycled to the next value in order. If the property was at the highest possible value, it is set to the lowest one instead." +func_177232_a,cyclePropertyValue,2,Helper method for cycleProperty. +func_177235_a,buildPropertyValueTable,2, +func_177236_b,getPropertiesWithValue,2,Create a new version of this.properties with the given property now set to the given value +func_177240_d,getResourcePackName,0, +func_177241_a,getResourceLocation,0, +func_177245_a,getInputStream,0, +func_177252_d,getBlocksToDestroy,2,Returns an List<BlockPos> of all the blocks that are being destroyed by the piston. +func_177253_a,canMove,2, +func_177254_c,getBlocksToMove,2,Returns a List<BlockPos> of all the blocks that are being moved by the piston. +func_177262_a,incrementHeight,2, +func_177263_b,getColors,2,Returns RGB (0 to 1.0) colors of this beam segment +func_177264_c,getHeight,0, +func_177267_c,getCraftingLayers,2,Retrieves the string array which represents the associated crafting recipe for this banner effect. The first object in the array is the top layer while the second is middle and third is last. +func_177268_a,getPatternByID,0,Retrieves an instance of a banner pattern by its short string id. +func_177269_e,hasCraftingStack,2,Checks to see if this pattern has a specific ItemStack associated with it's crafting. +func_177270_d,hasValidCrafting,2,"Checks to see if this pattern has a valid crafting stack, or if the top crafting layer is not null." +func_177271_a,getPatternName,0,Retrieves the name used to represent this pattern. +func_177272_f,getCraftingStack,2,Retrieves the ItemStack associated with the crafting of this pattern. +func_177273_b,getPatternID,2,Retrieves the short string used to represent this pattern. +func_177319_a,setResourcePackInstance,0, +func_177332_b,getSkinType,0,Retrieves the type of skin that a player is using. The Alex model is slim while the Steve model is default. +func_177333_c,isSlimSkin,0,Checks if a players skin model is slim or the default. The Alex model is slime while the Steve model is default. +func_177334_a,getDefaultSkin,0,Retrieves the default skin for this player. Depending on the model used this will be Alex or Steve. +func_177335_a,getDefaultSkinLegacy,0,"Returns the default skind for versions prior to 1.8, which is always the Steve texture." +func_177338_f,getNextOffset,0, +func_177339_a,clear,0, +func_177340_e,getColorOffset,0, +func_177341_i,hasPosition,0, +func_177342_c,getNormalOffset,0, +func_177343_g,getElements,0, +func_177344_b,getUvOffsetById,0, +func_177345_h,getElementCount,0, +func_177346_d,hasColor,0, +func_177347_a,hasUvOffset,0, +func_177348_c,getElement,0, +func_177350_b,hasNormal,0, +func_177358_a,drawArrays,0, +func_177359_a,bindBuffer,0, +func_177361_b,unbindBuffer,0, +func_177362_c,deleteGlBuffers,0, +func_177367_b,getType,0, +func_177368_f,getSize,0, +func_177369_e,getIndex,0, +func_177370_d,getElementCount,0, +func_177374_g,isPositionElement,0, +func_177375_c,getUsage,0, +func_177384_a,getDisplayName,0, +func_177395_a,getSize,0, +func_177396_b,getDisplayName,0, +func_177397_c,getGlConstant,0, +func_177409_g,setHasEntities,2, +func_177410_o,isLoaded,2, +func_177411_a,getBiome,2, +func_177412_p,getWorld,2, +func_177413_a,getLightFor,2, +func_177414_a,getEntitiesWithinAABBForEntity,2,Fills the given list of all entities that intersect within the given bounding box that aren't the passed entity. +func_177415_c,setInhabitedTime,2, +func_177416_w,getInhabitedTime,2, +func_177417_c,setChunkLoaded,0, +func_177418_c,getBlockMetadata,2, +func_177419_t,isTerrainPopulated,2, +func_177420_a,setHeightMap,2, +func_177421_e,setLightPopulated,2, +func_177422_i,createNewTileEntity,2, +func_177423_u,isLightPopulated,2, +func_177424_a,getTileEntity,2, +func_177425_e,removeTileEntity,2, +func_177426_a,addTileEntity,2, +func_177427_f,setModified,2, +func_177428_a,getBlock,2, +func_177429_s,getEntityLists,2, +func_177430_a,getEntitiesOfTypeWithinAAAB,2,Gets all entities that can be assigned to the specified class. +func_177431_a,setLightFor,2, +func_177432_b,setLastSaveTime,2, +func_177433_f,getHeight,2, +func_177434_r,getTileEntityMap,2, +func_177435_g,getBlockState,2, +func_177436_a,setBlockState,2, +func_177437_b,getBlockLightOpacity,2, +func_177438_a,getBlock,2, +func_177439_a,fillChunk,0,Initialize this chunk with new binary data. +func_177440_h,getPrecipitationHeight,2, +func_177442_v,getLowestHeight,2, +func_177443_a,getLightSubtracted,2, +func_177444_d,canSeeSky,2, +func_177445_q,getHeightMap,2, +func_177446_d,setTerrainPopulated,2, +func_177451_a,getPlayerByUUID,2,Get's the EntityPlayerMP object representing the player with the UUID. +func_177452_b,sendMessageToTeamOrEvryPlayer,2, +func_177453_a,sendMessageToAllTeamMembers,2, +func_177458_a,getPossibleCreatures,2, +func_177459_a,provideChunk,2, +func_177460_a,populateChunk,2, +func_177478_c,getNibbleIndex,2, +func_177479_b,isLowerNibble,2, +func_177480_a,getFromIndex,2, +func_177481_a,getData,2, +func_177482_a,setIndex,2, +func_177483_b,getCoordinateIndex,2, +func_177484_a,set,2, +func_177485_a,get,2, +func_177486_a,setData,2, +func_177487_g,getData,2, +func_177495_o,getHasNoSky,2, +func_177496_h,getSpawnCoordinate,2, +func_177497_p,getLightBrightnessTable,2, +func_177498_l,getInternalNameSuffix,2, +func_177499_m,getWorldChunkManager,2, +func_177500_n,doesWaterVaporize,2, +func_177501_r,getWorldBorder,2, +func_177502_q,getDimensionId,2,Gets the dimension of the provider +func_177507_b,getTileEntity,2, +func_177508_d,getPos,2, +func_177509_a,getBlockState,2, +func_177510_a,hasState,2, +func_177516_a,splitObjectName,2,"Splits an object name (such as minecraft:apple) into the domain and path parts and returns these as an array of length 2. If no colon is present in the passed value the returned array will contain {null, toSplit}." +func_177517_b,parsePathString,0, +func_177518_c,getVariant,0, +func_177520_a,rotateVertex,0, +func_177521_b,combineXY,0, +func_177523_a,rotateFace,0, +func_177524_a,getModelRotation,0, +func_177525_a,getMatrix4d,0, +func_177550_a,getGeneralQuads,0, +func_177551_a,getFaceQuads,0, +func_177552_f,getItemCameraTransforms,0, +func_177553_d,isBuiltInRenderer,0, +func_177554_e,getParticleTexture,0, +func_177555_b,isAmbientOcclusion,0, +func_177556_c,isGui3d,0, +func_177564_a,getAlternativeModel,0, +func_177569_a,registerVariant,0, +func_177570_a,setupModelRegistry,0, +func_177571_k,getItemsTextureLocations,0, +func_177572_j,loadSprites,0, +func_177573_e,getParentPath,0, +func_177574_i,loadModels,0, +func_177575_g,getVariantsTextureLocations,0, +func_177576_f,getParentLocation,0, +func_177577_b,loadVariantItemModels,0, +func_177578_a,bakeModel,0, +func_177580_d,getModelLocation,0, +func_177581_b,hasItemModel,0, +func_177582_d,makeItemModel,0, +func_177583_a,getItemLocation,0, +func_177584_b,getBlockStateLocation,0, +func_177585_a,getTextureLocations,0, +func_177586_a,getModelBlockDefinition,0, +func_177587_c,isCustomRenderer,0, +func_177588_f,bakeBlockModels,0, +func_177589_a,makeBakedQuad,0, +func_177590_d,loadItemModels,0, +func_177591_a,loadVariants,0, +func_177592_e,registerVariantNames,0, +func_177593_l,bakeItemModels,0, +func_177594_c,loadModel,0, +func_177595_c,loadVariantModels,0, +func_177596_a,getVariantNames,0, +func_177597_h,loadModelsCheck,0, +func_177619_a,getValidStates,2, +func_177620_e,getAllowedValues,2, +func_177621_b,getBaseState,2, +func_177622_c,getBlock,2, +func_177623_d,getProperties,2, +func_177630_a,generateChestContents,2, +func_177631_a,generateDispenserContents,2, +func_177635_a,getCountQuads,0, +func_177637_a,where,2, +func_177638_a,forBlock,2, +func_177642_a,forBlock,2, +func_177645_b,makeBakedModel,0, +func_177646_a,setTexture,0, +func_177647_a,addGeneralBreakingFours,0, +func_177648_a,addGeneralQuad,0, +func_177649_a,addFaceBreakingFours,0, +func_177650_a,addFaceQuad,0, +func_177657_d,checkMissingPredicates,2, +func_177658_c,makePredicateArray,2, +func_177659_a,aisle,2, +func_177660_a,start,2, +func_177661_b,build,2, +func_177662_a,where,2, +func_177668_c,getThumb,2, +func_177669_b,getFinger,2, +func_177670_a,translateOffset,2, +func_177675_b,first,0, +func_177676_a,build,0, +func_177677_a,add,0, +func_177681_a,match,2,"Calculates whether the given world position matches the pattern. Warning, fairly heavy function. @return a BlockPattern.PatternHelper if found, null otherwise." +func_177682_a,checkPatternAt,2,checks that the given pattern & rotation is at the block co-ordinates. +func_177683_a,translateOffset,2,"Offsets the position of pos in the direction of finger and thumb facing by offset amounts, follows the right-hand rule for cross products (finger, thumb, palm) @return A new BlockPos offset in the facing directions" +func_177684_c,getPalmLength,2, +func_177685_b,getThumbLength,2, +func_177690_b,onWarningDistanceChanged,2, +func_177691_a,onWarningTimeChanged,2, +func_177692_a,onTransitionStarted,2, +func_177693_a,onCenterChanged,2, +func_177694_a,onSizeChanged,2, +func_177695_c,onDamageBufferChanged,2, +func_177696_b,onDamageAmountChanged,2, +func_177699_b,getValueClass,2,The class of the values of this property +func_177700_c,getAllowedValues,2, +func_177701_a,getName,2, +func_177702_a,getName,2,Get the name for the given value. +func_177706_a,create,2,Create a new PropertyEnum with the specified values +func_177707_a,create,2,Create a new PropertyEnum with the specified values +func_177708_a,create,2,Create a new PropertyEnum with all Enum constants of the given class that match the given Predicate. +func_177709_a,create,2,Create a new PropertyEnum with all Enum constants of the given class. +func_177712_a,create,2,Create a new PropertyDirection with all directions that match the given Predicate +func_177713_a,create,2,Create a new PropertyDirection for the given direction values +func_177714_a,create,2,Create a new PropertyDirection with the given name +func_177716_a,create,2, +func_177719_a,create,2, +func_177721_g,getCenterZ,2, +func_177722_l,getSize,2, +func_177723_b,setWarningTime,2, +func_177724_b,setDamageBuffer,2, +func_177725_a,setSize,2, +func_177726_b,minX,2, +func_177727_n,getDamageAmount,2, +func_177728_d,maxX,2, +func_177729_b,getClosestDistance,2, +func_177730_a,contains,2, +func_177731_f,getCenterX,2, +func_177732_i,getTimeUntilTarget,2, +func_177733_e,maxZ,2, +func_177734_a,getStatus,2, +func_177735_k,getListeners,2, +func_177736_c,minZ,2, +func_177737_a,addListener,2, +func_177738_a,setTransition,2, +func_177739_c,setCenter,2, +func_177740_p,getWarningTime,2, +func_177741_h,getDiameter,2, +func_177742_m,getDamageBuffer,2, +func_177743_a,contains,2, +func_177744_c,setDamageAmount,2, +func_177745_a,getClosestDistance,2, +func_177746_a,contains,2, +func_177747_c,setWarningDistance,2, +func_177748_q,getWarningDistance,2, +func_177749_o,getResizeSpeed,0, +func_177750_a,setTransition,2, +func_177751_j,getTargetSize,2, +func_177766_a,getID,0,"Returns an integer that represents the state of the world border. Growing, Shrinking and Stationary all have unique values." +func_177774_c,getNameForObject,2,Gets the name we use to identify the given object. +func_177775_a,register,2, +func_177776_a,validateKey,2,validates that this registry's key is non-null +func_177855_a,setBlockState,2, +func_177856_a,getBlockState,2, +func_177857_a,setBlockState,2, +func_177858_a,getBlockState,2, +func_177865_a,jsonToFactory,2, +func_177951_i,distanceSq,2,Calculate squared distance to the given Vector +func_177952_p,getZ,2,Get the Z coordinate +func_177954_c,distanceSq,2,Calculate squared distance to the given coordinates +func_177955_d,crossProduct,2,Calculate the cross product of this and the given Vector +func_177956_o,getY,2,Get the Y coordinate +func_177957_d,distanceSqToCenter,2,"Compute square of distance from point x, y, z to center of this Block" +func_177958_n,getX,2,Get the X coordinate +func_177963_a,add,2,Add the given coordinates to the coordinates of this BlockPos +func_177964_d,north,2,Offset this BlockPos n blocks in northern direction +func_177965_g,east,2,Offset this BlockPos n blocks in eastern direction +func_177967_a,offset,2,Offsets this BlockPos n blocks in the given direction +func_177968_d,south,2,Offset this BlockPos 1 block in southern direction +func_177969_a,fromLong,2,Create a BlockPos from a serialized long value (created by toLong) +func_177970_e,south,2,Offset this BlockPos n blocks in southern direction +func_177971_a,add,2,Add the given Vector to this BlockPos +func_177972_a,offset,2,Offset this BlockPos 1 block in the given direction +func_177973_b,subtract,2,Subtract the given Vector from this BlockPos +func_177974_f,east,2,Offset this BlockPos 1 block in eastern direction +func_177975_b,getAllInBoxMutable,2,"Like getAllInBox but reuses a single MutableBlockPos instead. If this method is used, the resulting BlockPos instances can only be used inside the iteration loop." +func_177976_e,west,2,Offset this BlockPos 1 block in western direction +func_177977_b,down,2,Offset this BlockPos 1 block down +func_177978_c,north,2,Offset this BlockPos 1 block in northern direction +func_177979_c,down,2,Offset this BlockPos n blocks down +func_177980_a,getAllInBox,2,Create an Iterable that returns all positions in the box specified by the given corners +func_177981_b,up,2,Offset this BlockPos n blocks up +func_177982_a,add,2,Add the given coordinates to the coordinates of this BlockPos +func_177984_a,up,2,Offset this BlockPos 1 block up +func_177985_f,west,2,Offset this BlockPos n blocks in western direction +func_177986_g,toLong,2,Serialize this BlockPos into a long value +func_178001_a,renderChunkLayer,0, +func_178002_a,addRenderChunk,0, +func_178003_a,preRenderChunk,0, +func_178004_a,initialize,0, +func_178010_a,setupArrayPointers,0, +func_178011_a,setSelected,0, +func_178012_a,drawTextureAt,0, +func_178038_a,framebufferRenderExt,0, +func_178039_p,handleMouseInput,0, +func_178047_f,getMouseY,0, +func_178048_e,getWidth,0, +func_178049_g,getMouseX,0, +func_178080_a,register,0, +func_178081_c,getIndex,0, +func_178082_a,getParticleIcon,0, +func_178083_a,getModelManager,0, +func_178084_b,getMetadata,0, +func_178085_b,rebuildCache,0, +func_178086_a,register,0, +func_178087_a,getParticleIcon,0, +func_178088_b,getItemModel,0, +func_178089_a,getItemModel,0, +func_178095_a,renderPlayerArm,0,Render the player's arm\n \n@param equipProgress The progress of equiping the item\n@param swingProgress The swing movement progression +func_178096_b,transformFirstPersonItem,0,Performs transformations prior to the rendering of a held item in first person. +func_178097_a,renderItemMap,0, +func_178098_a,doBowTransformations,0,Translate and rotate the render to look like holding a bow\n \n@param partialTicks Partial ticks +func_178099_a,renderItem,0, +func_178100_c,getMapAngleFromPitch,0,Return the angle to render the Map\n \n@param pitch The player's pitch +func_178101_a,rotateArroundXAndY,0,Rotate the render around X and Y\n \n@param angleY The angle for the rotation arround Y +func_178102_b,renderPlayerArms,0, +func_178103_d,doBlockTransformations,0,Translate and rotate the render for holding a block +func_178104_a,performDrinking,0,Perform the drinking animation movement\n \n@param partialTicks Partials ticks +func_178105_d,doItemUsedTransformations,0,Rotate and translate render to show item consumption\n \n@param swingProgress The swing movement progress +func_178106_b,renderLeftArm,0, +func_178107_a,isBlockTranslucent,0,Returns true if given block is translucent +func_178108_a,renderBlockInHand,0,Render the block in the player's hand\n \n@param partialTicks Partial ticks\n@param atlas The TextureAtlasSprite to render +func_178109_a,setLightMapFromPlayer,0,Set the OpenGL LightMapTextureCoords based on the AbstractClientPlayer +func_178110_a,rotateWithPlayerRotations,0,Rotate the render according to the player's yaw and pitch +func_178113_a,getModelLocation,0, +func_178119_d,registerAllBlocks,0, +func_178120_a,getBlockStateMapper,0, +func_178121_a,registerBlockWithStateMapper,0, +func_178122_a,getTexture,0, +func_178123_a,registerBuiltInBlocks,0, +func_178124_c,reloadModels,0, +func_178125_b,getModelForState,0, +func_178126_b,getModelManager,0, +func_178130_a,putStateModelLocations,0, +func_178131_a,getPropertyString,0, +func_178132_a,getModelResourceLocation,0, +func_178144_a,calcRedstone,2,"Like the version that takes an inventory. If the given TileEntity is not an Inventory, 0 is returned instead." +func_178147_e,getLapisAmount,0, +func_178158_a,createRenderChunks,0, +func_178159_a,setCountChunksXYZ,0, +func_178160_a,deleteGlResources,0, +func_178161_a,getRenderChunk,0, +func_178162_a,markBlocksForUpdate,0, +func_178163_a,updateChunkPositions,0, +func_178170_b,getItemStackLimit,2, +func_178171_c,getSlotTexture,0, +func_178173_c_,isBucket,2, +func_178175_a,renderChestBrightness,0, +func_178176_a,getInstance,0, +func_178178_a,setVertexBuffer,0, +func_178180_c,getWorldRenderer,0, +func_178181_a,getInstance,0, +func_178184_a,getVertexTranslations,0, +func_178203_a,getVertexBrightness,0, +func_178204_a,updateVertexBrightness,0, +func_178209_a,getVertexData,0, +func_178210_d,getFace,0, +func_178211_c,getTintIndex,0, +func_178212_b,hasTintIndex,0, +func_178216_a,remapVert,0, +func_178217_e,remapQuad,0, +func_178235_a,setDefaultUvs,0, +func_178236_a,getFaceUvs,0, +func_178247_d,parsePositionTo,0, +func_178248_a,parseEnumFacing,0, +func_178249_e,parsePositionFrom,0, +func_178250_a,parseFacesCheck,0, +func_178251_a,parsePosition,0, +func_178252_c,parseAxis,0, +func_178253_b,parseFaces,0, +func_178255_b,parseAngle,0, +func_178256_a,parseRotation,0, +func_178258_b,renderModelStandard,0, +func_178259_a,renderModel,0, +func_178260_a,renderModelStandardQuads,0, +func_178261_a,fillQuadBounds,0, +func_178262_a,renderModelBrightnessColor,0, +func_178263_a,renderModelAmbientOcclusionQuads,0, +func_178264_a,renderModelBrightnessColorQuads,0, +func_178265_a,renderModelAmbientOcclusion,0, +func_178266_a,renderModelBrightness,0, +func_178267_a,renderModel,0, +func_178268_a,initAtlasSprites,0, +func_178269_a,getFluidHeight,0, +func_178270_a,renderFluid,0, +func_178273_a,getNeighbourInfo,0, +func_178291_a,parseRotation,0, +func_178292_b,parseUV,0, +func_178294_a,deserialize,0, +func_178295_k,hasParent,0, +func_178298_a,getElements,0, +func_178299_a,getParentFromMap,0, +func_178300_b,isTexturePresent,0, +func_178302_a,resolveTextureName,0, +func_178303_d,isResolved,0, +func_178304_d,startsWithHash,0, +func_178305_e,getParentLocation,0, +func_178307_a,deserialize,0, +func_178308_c,resolveTextureName,0, +func_178309_b,isAmbientOcclusion,0, +func_178310_f,getRootModel,0, +func_178311_c,isGui3d,0, +func_178312_b,checkModelHierarchy,0, +func_178325_a,getModelElements,0, +func_178326_c,getParent,0, +func_178328_a,getAmbientOcclusionEnabled,0, +func_178329_b,getTextures,0, +func_178330_b,getVariants,0, +func_178331_a,parseFromReader,0, +func_178334_a,parseVariantsList,0, +func_178335_a,parseVariants,0, +func_178337_a,parseTintIndex,0, +func_178339_c,parseCullFace,0, +func_178340_b,parseTexture,0, +func_178349_a,setUvs,0, +func_178358_a,parseVector3f,0, +func_178367_a,getFacing,0,Gets the direction of the block's facing. +func_178392_a,makeItemModel,0, +func_178401_a,lockVertexUv,0, +func_178402_a,fillVertexData,0, +func_178403_a,getPositionsDiv16,0, +func_178404_a,storeVertexData,0, +func_178405_a,makeQuadVertexData,0, +func_178406_a,rotateScale,0, +func_178407_a,rotatePart,0, +func_178408_a,applyFacing,0, +func_178409_a,lockUv,0, +func_178410_a,getFacingFromVertexData,0, +func_178411_a,getMatrixIdentity,0, +func_178412_b,getFaceBrightness,0, +func_178413_a,getFaceShadeColor,0, +func_178414_a,makeBakedQuad,0, +func_178415_a,rotateVertex,0, +func_178420_b,getVariants,0, +func_178424_b,parseModel,0, +func_178426_a,makeModelLocation,0, +func_178427_c,parseWeight,0, +func_178428_a,parseRotation,0, +func_178429_d,parseUvLock,0, +func_178430_d,getWeight,0, +func_178431_a,getModelLocation,0, +func_178432_b,getRotation,0, +func_178433_c,isUvLocked,0, +func_178439_a,withSuffix,0, +func_178440_a,withName,0, +func_178441_a,build,0, +func_178442_a,ignore,0,"Add properties that will not be used to compute all possible states of a block, used for block rendering to ignore some property that does not alter block's appearance" +func_178446_a,putAllStateModelLocations,0, +func_178447_a,registerBlockStateMapper,0, +func_178448_a,registerBuiltInBlocks,0, +func_178459_a,getWorld,0, +func_178469_a,renderTileEntityAt,0, +func_178470_a,cacheActiveRenderInfo,0, +func_178473_b,freeRenderBuilder,0, +func_178474_a,processTask,0, +func_178475_b,getRegionRenderCacheBuilder,0, +func_178485_b,getTileEntities,0, +func_178486_a,setLayerUsed,0, +func_178487_c,getState,0, +func_178488_a,setVisibility,0, +func_178489_a,isEmpty,0, +func_178490_a,addTileEntity,0, +func_178491_b,isLayerEmpty,0, +func_178492_d,isLayerStarted,0, +func_178493_c,setLayerStarted,0, +func_178494_a,setState,0, +func_178495_a,isVisible,0, +func_178503_a,uploadChunk,0, +func_178504_a,getDebugInfo,0, +func_178505_b,updateChunkNow,0, +func_178506_a,uploadVertexBuffer,0, +func_178507_a,updateChunkLater,0, +func_178509_c,updateTransparencyLater,0, +func_178510_a,uploadDisplayList,0, +func_178511_d,getNextChunkUpdate,0, +func_178512_a,freeRenderBuilder,0, +func_178513_e,clearChunkUpdates,0, +func_178514_b,stopChunkUpdates,0, +func_178515_c,allocateRenderBuilder,0, +func_178516_a,runChunkUploads,0, +func_178535_a,setStatus,0, +func_178536_b,getRenderChunk,0, +func_178537_h,isFinished,0, +func_178538_g,getType,0, +func_178539_a,addFinishRunnable,0, +func_178540_f,getLock,0, +func_178541_a,setRegionRenderCacheBuilder,0, +func_178542_e,finish,0, +func_178543_a,setCompiledChunk,0, +func_178544_c,getCompiledChunk,0, +func_178545_d,getRegionRenderCacheBuilder,0, +func_178546_a,getStatus,0, +func_178565_b,getVertexBufferByLayer,0, +func_178566_a,deleteGlResources,0, +func_178567_n,initModelviewMatrix,0, +func_178568_j,getPosition,0, +func_178569_m,isNeedsUpdate,0, +func_178570_a,resortTransparency,0, +func_178571_g,getCompiledChunk,0, +func_178572_f,multModelviewMatrix,0, +func_178573_a,preRenderBlocks,0, +func_178574_d,makeCompileTaskChunk,0, +func_178575_a,setNeedsUpdate,0, +func_178576_a,setPosition,0, +func_178577_a,setFrameIndex,0, +func_178578_b,finishCompileTask,0, +func_178579_c,getLockCompileTask,0, +func_178580_a,setCompiledChunk,0, +func_178581_b,rebuildChunk,0, +func_178582_e,makeCompileTaskTransparency,0, +func_178584_a,postRenderBlocks,0, +func_178585_h,stopCompileTask,0, +func_178600_a,getDisplayList,0, +func_178602_a,makeRenderChunk,0, +func_178605_a,getIndex,0, +func_178607_a,computeVisibility,0, +func_178608_c,getIndex,0, +func_178618_a,setAllVisible,0, +func_178619_a,setVisible,0, +func_178620_a,setManyVisible,0, +func_178621_a,isVisible,0, +func_178624_a,dot,0, +func_178627_a,isRenderShadow,0, +func_178628_a,setRenderPosition,0, +func_178629_b,setDebugBoundingBox,0, +func_178630_b,renderWitherSkull,0, +func_178631_a,setPlayerViewY,0, +func_178632_c,setRenderOutlines,0, +func_178633_a,setRenderShadow,0, +func_178634_b,isDebugBoundingBox,0, +func_178635_a,shouldRender,0, +func_178664_z_,getSpectatorName,0, +func_178685_a,copyModelAngles,0,"Copies the angles from one object to another. This is used when objects should stay aligned with each other, like the hair over a players head." +func_178686_a,setModelAttributes,0, +func_178687_a,renderBanner,0,Renders the banner model in. +func_178691_a,setRotationOffset,0, +func_178718_a,postRenderArm,0, +func_178719_a,setInvisible,0, +func_178725_a,renderRightArm,0, +func_178726_b,renderLeftArm,0, +func_178727_b,renderDeadmau5Head,0, +func_178728_c,renderCape,0, +func_178765_a,draw,0,Draw this primitve. This is typically called only once as the generated drawing instructions are saved by the renderer and reused later. +func_178766_e,getRenderType,2, +func_178767_a,setRenderType,2, +func_178769_a,addBox,0, +func_178770_i,getNameTagVisibility,2, +func_178771_j,getDeathMessageVisibility,2, +func_178772_a,setNameTagVisibility,2, +func_178773_b,setDeathMessageVisibility,2, +func_178774_a,setChatFormat,2, +func_178775_l,getChatFormat,2, +func_178779_a,getThreadedIOInstance,2,Retrieves an instance of the threadedFileIOBase. +func_178780_a,render,0, +func_178781_a,fromBounds,2,"returns an AABB with corners x1, y1, z1 and x2, y2, z2" +func_178782_a,getBlockPos,2, +func_178785_b,rotateYaw,2, +func_178786_a,subtract,2, +func_178787_e,add,2, +func_178788_d,subtract,2, +func_178789_a,rotatePitch,2, +func_178790_c,getRenderType,2, +func_178803_d,getRotationZ,0, +func_178804_a,getPosition,0, +func_178805_e,getRotationYZ,0, +func_178806_a,projectViewFromEntity,0, +func_178807_f,getRotationXY,0, +func_178808_b,getRotationX,0, +func_178809_c,getRotationXZ,0, +func_178815_a,setLocked,2, +func_178816_g,isLocked,2, +func_178819_b,entityHasObjective,2,Returns if the entity has the given ScoreObjective +func_178821_h,getDisplaySlotStrings,2, +func_178822_d,removeObjectiveFromEntity,2,Remove the given ScoreObjective for the given Entity name. +func_178837_g,getLocationSkin,0, +func_178838_a,setResponseTime,0, +func_178839_a,setGameType,0, +func_178841_j,loadPlayerTextures,0, +func_178845_a,getGameProfile,0,Returns the GameProfile for the player represented by this NetworkPlayerInfo instance +func_178848_b,getGameType,0, +func_178850_i,getPlayerTeam,0, +func_178851_f,getSkinType,0, +func_178853_c,getResponseTime,0, +func_178854_k,getDisplayName,0, +func_178856_e,hasLocationSkin,0, +func_178859_a,setDisplayName,0, +func_178861_h,getLocationCape,0, +func_178874_a,deleteDisplayLists,0, +func_178876_d,getModelParts,0, +func_178877_a,switchModelPartEnabled,0, +func_178878_a,setModelPartEnabled,0, +func_178887_k,isSpectatorMode,0, +func_178888_a,onPlayerDestroyBlock,0,Called when a player completes the destruction of a block +func_178889_l,getCurrentGameType,0, +func_178890_a,onPlayerRightClick,0, +func_178891_a,clickBlockCreative,0, +func_178893_a,isHittingPosition,0, +func_178894_a,isPlayerRightClickingOnEntity,0,Return true when the player rightclick on an entity\n \n@param player The player's instance\n@param entityIn The entity clicked\n@param movingObject The object clicked +func_178902_a,getEntityFX,0, +func_178908_a,splitText,0, +func_178922_a,updateEffectLayer,0, +func_178923_d,tickParticle,0, +func_178924_a,moveToLayer,0, +func_178925_a,updateEffectAlphaLayer,0, +func_178926_a,emitParticleAtEntity,0, +func_178927_a,spawnEffectParticle,0,"Spawns the relevant particle according to the particle id.\n \n@param xCoord X position of the particle\n@param yCoord Y position of the particle\n@param zCoord Z position of the particle\n@param xSpeed X speed of the particle\n@param ySpeed Y speed of the particle\n@param zSpeed Z speed of the particle\n@param parameters Parameters for the particle (color for redstone, ...)" +func_178928_b,moveToAlphaLayer,0, +func_178929_a,registerParticle,0, +func_178930_c,registerVanillaParticles,0, +func_178931_c,moveToNoAlphaLayer,0, +func_178962_a,putBrightness4,0, +func_178965_a,reset,0, +func_178966_f,getByteBuffer,0, +func_178968_d,putColor4,0, +func_178969_c,setTranslation,0, +func_178972_a,putColorRGBA,0, +func_178973_g,getVertexFormat,0, +func_178975_e,putNormal,0, +func_178977_d,finishDrawing,0, +func_178978_a,putColorMultiplier,0, +func_178979_i,getDrawMode,0, +func_178981_a,addVertexData,0, +func_178987_a,putPosition,0, +func_178988_b,putColor,0, +func_178989_h,getVertexCount,0, +func_178990_f,putColorRGB_F4,0, +func_178993_a,setVertexState,0, +func_178994_b,putColorRGB_F,0, +func_179013_a,getRawBuffer,0, +func_179014_c,getVertexCount,0, +func_179016_d,getVertexFormat,0, +func_179022_a,renderByItem,0, +func_179025_a,getVertexInformation,0, +func_179027_a,getFacing,0, +func_179038_a,getWorldRendererByLayer,0, +func_179039_a,getWorldRendererByLayerId,0, +func_179082_a,clearColor,0, +func_179083_b,viewport,0, +func_179084_k,disableBlend,0, +func_179085_a,enableLight,0, +func_179086_m,clear,0, +func_179087_a,enableTexGenCoord,0, +func_179088_q,enablePolygonOffset,0, +func_179089_o,enableCull,0, +func_179090_x,disableTexture2D,0, +func_179091_B,enableRescaleNormal,0, +func_179092_a,alphaFunc,0, +func_179093_d,setFog,0, +func_179094_E,pushMatrix,0, +func_179095_a,setFogDensity,0, +func_179096_D,loadIdentity,0, +func_179097_i,disableDepth,0, +func_179098_w,enableTexture2D,0, +func_179099_b,popAttrib,0, +func_179100_b,disableTexGenCoord,0, +func_179101_C,disableRescaleNormal,0, +func_179102_b,setFogStart,0, +func_179103_j,shadeModel,0, +func_179104_a,colorMaterial,0, +func_179105_a,texGen,0, +func_179106_n,disableFog,0, +func_179107_e,cullFace,0, +func_179108_z,enableNormalize,0, +func_179109_b,translate,0, +func_179110_a,multMatrix,0, +func_179111_a,getFloat,0, +func_179112_b,blendFunc,0, +func_179113_r,disablePolygonOffset,0, +func_179114_b,rotate,0, +func_179115_u,enableColorLogic,0, +func_179116_f,colorLogicOp,0, +func_179117_G,resetColor,0, +func_179118_c,disableAlpha,0, +func_179119_h,disableColorMaterial,0, +func_179120_a,tryBlendFuncSeparate,0, +func_179121_F,popMatrix,0, +func_179122_b,disableLight,0, +func_179123_a,pushAttrib,0, +func_179124_c,color,0, +func_179125_c,texGenCoord,0, +func_179126_j,enableDepth,0, +func_179127_m,enableFog,0, +func_179128_n,matrixMode,0, +func_179129_p,disableCull,0, +func_179130_a,ortho,0, +func_179131_c,color,0, +func_179132_a,depthMask,0, +func_179133_A,disableNormalize,0, +func_179134_v,disableColorLogic,0, +func_179135_a,colorMask,0, +func_179136_a,doPolygonOffset,0, +func_179137_b,translate,0, +func_179138_g,setActiveTexture,0, +func_179139_a,scale,0, +func_179140_f,disableLighting,0, +func_179141_d,enableAlpha,0, +func_179142_g,enableColorMaterial,0, +func_179143_c,depthFunc,0, +func_179144_i,bindTexture,0, +func_179145_e,enableLighting,0, +func_179146_y,generateTexture,0, +func_179147_l,enableBlend,0, +func_179148_o,callList,0, +func_179149_a,texGen,0, +func_179150_h,deleteTexture,0, +func_179151_a,clearDepth,0, +func_179152_a,scale,0, +func_179153_c,setFogEnd,0, +func_179198_a,setDisabled,0, +func_179199_a,setState,0, +func_179200_b,setEnabled,0, +func_179214_a,registerItemBlock,2,Register the given Item as the ItemBlock for the given Block. +func_179215_a,updateItemStackNBT,2,Called when an ItemStack with NBT data is read to potentially that ItemStack's NBT data +func_179216_c,registerItemBlock,2,Register a default ItemBlock for the given Block. +func_179217_a,registerItem,2, +func_179218_a,onBlockDestroyed,2,"Called when a Block is destroyed using this Item. Return true to trigger the ""Use Item"" statistic." +func_179219_a,registerItem,2, +func_179221_a,applyRandomRotations,2, +func_179222_a,canPlaceBlockOnSide,0, +func_179223_d,getBlock,2, +func_179224_a,setTileEntityNBT,2, +func_179225_h,getBaseColor,2, +func_179229_a,resolveContents,2, +func_179230_h,getGeneration,2,Gets the generation of the book (how many times it has been cloned) +func_179232_a,useHoe,2, +func_179233_a,createEntity,2, +func_179234_a,applyBonemeal,2, +func_179235_a,placeDoor,2, +func_179237_a,merge,2,"Merges this NBTTagCompound with the given compound. Any sub-compounds are merged using the same methods, other types of tags are overwritten from the given compound." +func_179238_g,get,2,Get the tag at the given position +func_179242_c,getName,0, +func_179244_a,getPacket,2, +func_179245_a,registerPacket,2, +func_179246_a,getPacketId,2, +func_179249_a,writeEnumValue,2, +func_179250_a,writeByteArray,2, +func_179251_a,readByteArray,2, +func_179252_a,writeUuid,2, +func_179253_g,readUuid,2, +func_179254_b,writeVarLong,2, +func_179255_a,writeBlockPos,2, +func_179256_a,writeChatComponent,2, +func_179257_a,readEnumValue,2, +func_179258_d,readChatComponent,2, +func_179259_c,readBlockPos,2, +func_179260_f,readVarLong,2, +func_179280_b,load,2, +func_179281_c,getValue,2, +func_179288_a,sendPacket,2, +func_179289_a,setCompressionTreshold,2, +func_179290_a,sendPacket,2, +func_179291_h,hasNoChannel,2, +func_179292_f,getIsencrypted,0, +func_179293_l,checkDisconnected,2, +func_179299_a,setCompressionTreshold,2, +func_179303_a,setCompressionTreshold,2, +func_179318_a,cartesianProduct,2,Create the cartesian product. This method returns an Iterable of arrays of type clazz. +func_179319_b,createArray,2, +func_179321_a,cartesianProduct,2,"Like cartesianProduct(Class, Iterable) but returns an Iterable of Lists instead." +func_179322_b,toArray,2,Create a new Array of type clazz with the contents of the given Iterable +func_179323_b,arraysAsLists,2,Convert an Iterable of Arrays (Object[]) to an Iterable of Lists +func_179327_a,getPartMask,0, +func_179328_b,getPartId,0, +func_179329_c,getPartName,0, +func_179342_a,getParticleFromId,2,Gets the relative EnumParticleTypes by id. +func_179343_f,hasArguments,2, +func_179344_e,getShouldIgnoreRange,2, +func_179345_d,getArgumentCount,2, +func_179346_b,getParticleName,2, +func_179348_c,getParticleID,2, +func_179349_a,getParticleNames,2, +func_179399_a,populateMap,2,Populate the given Map with the given keys and values. +func_179400_b,createMap,2,Create a Map from the given keys and values. This method creates a LinkedHashMap. +func_179401_a,modifyMerchantRecipeList,2,Affects the given MerchantRecipeList to possibly add or remove MerchantRecipes. +func_179412_a,getPrice,2, +func_179413_d,getZ,2,Gets the Z axis rotation +func_179414_a,writeToNBT,2, +func_179415_b,getX,2,Gets the X axis rotation +func_179416_c,getY,2,Gets the Y axis rotation +func_179422_b,endOfData,2,Called when no more data is available in this Iterator. +func_179431_f,maxTargetRange,2,Return the max target range of the entiity (16 by default) +func_179438_f,getFollowRange,2, +func_179445_a,isSuitableTarget,2,A static method used to see if an entity is a suitable target through a number of checks. +func_179446_a,setEntityAttackTarget,2, +func_179479_b,setExecutionChance,2,Changes task random possibility for execution +func_179480_f,makeUpdate,2,Makes task to bypass chance +func_179487_f,getIsAboveDestination,2, +func_179488_a,shouldMoveTo,2,Return true to set given position as destination +func_179489_g,searchForDestination,2,"Searches and sets new destination block and returns true if a suitable block (specified in {@link net.minecraft.entity.ai.EntityAIMoveToBlock#shouldMoveTo(World, BlockPos) EntityAIMoveToBlock#shouldMoveTo(World, BlockPos)}) can be found." +func_179506_a,getBlockDoor,2, +func_179516_a,facings,2,All EnumFacing values for this Plane +func_179518_a,random,2,Choose a random Facing from this Plane using the given Random +func_179524_a,getOffset,2,"Get the offset for this AxisDirection. 1 for POSITIVE, -1 for NEGATIVE" +func_179532_b,getRemainingItems,2, +func_179534_a,addRecipes,2,Adds the banner recipes to the CraftingManager. +func_179543_a,getSubCompound,2,Get an NBTTagCompound from this stack's NBT data. +func_179544_c,canDestroy,2, +func_179545_c,areItemsEqual,2,Compares Item and damage value of the two stacks +func_179546_a,onItemUse,2,"Called when the player uses this ItemStack on a Block (right-click). Places blocks, etc. (Legacy name: tryPlaceItemIntoWorld)" +func_179547_d,canPlaceOn,2, +func_179548_a,onBlockDestroyed,2,Called when a Block is destroyed using this ItemStack +func_179549_c,getIsItemStackEqual,0, +func_179554_a,getRegisteredItem,2, +func_179634_c,getTypeNames,2,Returns the names of all possible Result Types. +func_179635_a,getTypeByName,2,Retrieves the Type indicated by the supplied name string. +func_179636_a,getTypeID,2,Retrieves the integer ID of the result type. +func_179637_b,getTypeName,2,Retrieves the name of the type. +func_179647_f,getNamePredicates,2, +func_179648_b,getXpLevelPredicates,2, +func_179649_c,getGamemodePredicates,2, +func_179652_a,matchOneEntity,2,Returns one entity of the given class that matches the given at-token. Returns null if more than one entity matches. +func_179653_a,parseIntWithDefault,2, +func_179654_a,getWorlds,2,Returns the worlds to match the entities in for the specified command sender and token. This returns the sender's world if the selector specifies a location or all currently loaded worlds on the server if not. +func_179655_b,isEntityTypeValid,2,Checks to make sure that the specified type is valid +func_179656_b,matchEntities,2,Returns all entities of the given class that matches the given at-token in a list. +func_179657_e,getScorePredicates,2, +func_179659_d,getTeamPredicates,2, +func_179660_a,filterResults,2,Filters the results based on the paramaters of the selector +func_179662_g,getRotationsPredicates,2, +func_179667_a,setScoreBoardStat,2,Set a stat in the scoreboard\n \n@param entityID The username of the player or the UUID of an Entity\n@param objectiveName The name of the Objective +func_179668_a,readStatsFromNBT,2, +func_179669_a,removeScoreBoardStat,2,Remove a stat from the scoreboard +func_179670_b,writeStatsToNBT,2, +func_179671_a,addAllStats,2,Add all stats in the CommandResultStats +func_179672_a,setCommandStatScore,2,Set the score on the ScoreBoard\n \n@param scorePoint The score to set to the score board +func_179677_a,checkForStuck,2,"Checks if entity haven't been moved when last checked and if so, clears current {@link net.minecraft.pathfinding.PathEntity}" +func_179678_a,setHeightRequirement,2,Sets vertical space requirement for path +func_179679_a,getPathFinder,2, +func_179680_a,getPathToPos,2,Returns path to given BlockPos +func_179683_a,isSafeToStandAt,2,"Returns true when an entity could stand at a position, including solid blocks under the entire entity." +func_179684_h,getCanSwim,2, +func_179685_e,setAvoidSun,2, +func_179686_g,getEnterDoors,2, +func_179687_p,getPathablePosY,2,Gets the safe pathing Y position for the entity depending on if it can path swim or not +func_179688_b,setBreakDoors,2, +func_179689_e,getAvoidsWater,2, +func_179690_a,setAvoidsWater,2, +func_179691_c,setEnterDoors,2, +func_179692_b,isPositionClear,2,Returns true if an entity does not collide with any solid blocks at the position. +func_179693_d,setCanSwim,2, +func_179697_g,getOnGround,0, +func_179700_a,getHeader,0, +func_179701_b,getFooter,0, +func_179704_a,getPos,0, +func_179709_b,getTargetBlock,2, +func_179712_b,getHitVec,2, +func_179714_b,getFacing,2, +func_179715_a,getPosition,2, +func_179722_a,getPosition,2, +func_179724_a,getPosition,2, +func_179727_a,getEntity,2, +func_179730_a,getProfile,0, +func_179731_a,getCompressionTreshold,0, +func_179734_a,setMapdataTo,0,Sets new MapData from the packet to given MapData param +func_179742_g,getOnGround,0, +func_179744_h,isReducedDebugInfo,0, +func_179746_d,getSoundPos,0, +func_179748_k,getParticleArgs,0,Gets the particle arguments. Some particles rely on block and/or item ids and sometimes metadata ids to color or texture the particle. +func_179749_a,getParticleType,0, +func_179750_b,isLongDistance,0, +func_179754_d,getChunkSize,0, +func_179756_a,getExtractedData,2, +func_179760_a,getThreshold,0, +func_179763_a,getTagCompound,0, +func_179764_a,getEntity,0, +func_179767_a,getEntries,0, +func_179768_b,getAction,0, +func_179777_a,getSignPosition,0, +func_179780_a,getEntity,0, +func_179783_a,getURL,0, +func_179784_b,getHash,0, +func_179798_a,getBedPosition,0, +func_179800_a,getSpawnPos,0, +func_179803_e,getFadeOutTime,0, +func_179804_d,getDisplayTime,0, +func_179805_b,getMessage,0, +func_179806_c,getFadeInTime,0, +func_179807_a,getType,0, +func_179813_h,getColor,0, +func_179814_i,getNameTagVisibility,0, +func_179819_c,getPlayer,0, +func_179821_b,getPosition,0, +func_179823_a,getPos,0, +func_179825_a,getBlockPosition,0, +func_179827_b,getBlockPosition,0, +func_179830_a,isDifficultyLocked,0, +func_179831_b,getDifficulty,0, +func_179836_c,getFacing,0, +func_179837_b,getPosition,0, +func_179840_c,getWindowTitle,0, +func_179841_c,getType,0,"Returns the id of the area to display the text, 2 for above the action bar, anything else currently for the chat window" +func_179844_a,getChangedBlocks,0, +func_179846_b,getDistanceToInsideBlockSq,2, +func_179847_f,getInsideOffsetX,2, +func_179848_a,getDistanceToDoorBlockSq,2, +func_179851_i,getIsDetachedFromVillageFlag,2, +func_179852_d,getDoorBlockPos,2, +func_179853_a,setIsDetachedFromVillageFlag,2, +func_179854_a,getFaceDirection,2, +func_179855_g,getInsideOffsetZ,2, +func_179856_e,getInsideBlockPos,2, +func_179860_f,isWoodDoor,2, +func_179863_c,getDoorInfo,2,Returns {@link net.minecraft.village.VillageDoorInfo VillageDoorInfo} from given block position +func_179864_e,getExistedDoor,2,"if door not existed in this village, null will be returned" +func_179865_b,getNearestDoor,2, +func_179868_d,redirectOutputToLog,2,redirect standard streams to logger +func_179869_a,isRegistered,2,Is Bootstrap registration already done? +func_179870_a,printToSYSOUT,0, +func_179882_a,logString,2, +func_179885_a,getLongProperty,1, +func_179917_d,getX,2, +func_179918_f,getZ,2, +func_179919_e,getY,2, +func_179921_a,setSpeed,2, +func_179926_b,isNotColliding,2,Checks if entity bounding box is not colliding with terrain +func_179960_c,getGameMode,2, +func_179961_d,getDisplayName,2, +func_179962_a,getProfile,2, +func_179963_b,getPing,2, +func_179969_a,byName,2, +func_179971_a,getNames,2, +func_179985_a,processComponent,2, +func_179986_j,getInsertion,2,Get the text to be inserted into Chat when the component is shift-clicked +func_179989_a,setInsertion,2,Set a text to be inserted into Chat when the component is shift-clicked +func_179992_g,getSelector,2,"Gets the selector of this component, in plain text." +func_179994_h,getObjective,2, +func_179995_g,getName,2, +func_179997_b,setValue,2,Sets the value displayed instead of the real score. +func_180031_a,checkThreadAndEnqueue,2,"Handles pumping inbound packets across threads by checking whether the current thread is actually the main thread for the side in question. If not, then the packet is pumped into the handler queue in the main thread so that it can be handled synchronously by the recipient, it then throws an exception to terminate the current packet handler thread." +func_180038_a,byNetworkID,2, +func_180039_a,getNetworkID,2, +func_180040_b,getName,2, +func_180067_c,getIsJumping,2, +func_180072_a,getSpeed,2, +func_180075_c,getDuration,2, +func_180088_c,getBlockState,2, +func_180090_a,getPos,2, +func_180109_a,getPlacementForEntity,2, +func_180115_h,getWatchableObjectRotations,2, +func_180122_a,getIDFromString,0,Returns the ID assigned to it's string representation +func_180123_a,isStringEntityName,2, +func_180124_b,getEntityNameList,2, +func_180125_b,isStringValidEntityName,2, +func_180135_h,getFighter,2,Returns EntityLivingBase assigned for this CombatTracker +func_180136_u,isCreativePlayer,2, +func_180138_v,setIsThornsDamage,2,Sets this EntityDamageSource as originating from Thorns armor +func_180139_w,getIsThornsDamage,2, +func_180142_b,getPotionFromResourceLocation,2, +func_180154_f,getIsShowParticles,2, +func_180157_a,toNBT,2, +func_180158_b,fromNBT,2, +func_180159_b,getLock,2, +func_180160_a,isEmpty,2, +func_180166_a,getRandomItem,2, +func_180168_b,getAdditionalDifficulty,0, +func_180169_a,calculateAdditionalDifficulty,2, +func_180170_c,getClampedAdditionalDifficulty,2, +func_180173_a,spawnItemStack,2, +func_180174_a,dropInventoryItems,2, +func_180175_a,dropInventoryItems,2, +func_180176_a,dropInventoryItems,2, +func_180179_a,reset,0, +func_180182_a,getRandomUuid,2, +func_180184_b,normalizeAngle,0, +func_180185_a,epsilonEquals,0, +func_180186_a,getPositionRandom,0, +func_180187_c,getCoordinateRandom,0, +func_180192_a,downloadResourcePack,0, +func_180199_c,isBoolean,0, +func_180213_a,createLookup,2, +func_180215_b,getByClass,2, +func_180235_c,removeBlock,2,Removes a block and triggers the appropriate events +func_180236_a,activateBlockOrUseItem,2,"Activate the clicked on block, otherwise use the held item." +func_180237_b,tryHarvestBlock,2,Attempts to harvest a block +func_180238_e,cancelDestroyingBlock,2,Stops the block breaking process +func_180239_c,survivalOrAdventure,2, +func_180244_a,markBlockForUpdate,2, +func_180246_b,getPosition,0, +func_180248_a,scheduleHalt,1, +func_180254_e,getType,2, +func_180255_c,getInt,2, +func_180262_a,addGameRule,2, +func_180263_c,getInt,2, +func_180264_a,areSameType,2, +func_180266_a,placeInPortal,2, +func_180267_a,canCreatureTypeSpawnAtLocation,2, +func_180276_a,getBiomeFromBiomeList,2, +func_180277_d,createMutatedBiome,2, +func_180283_a,getColorAtPos,0, +func_180285_a,getColorAtPos,0, +func_180286_a,getGrassColorAtPos,0, +func_180287_b,getFoliageColorAtPos,0, +func_180288_c,getWaterColorAtPos,0, +func_180292_a,decorate,2, +func_180300_a,getBiomeGenerator,2, +func_180302_a,addRecipe,2,Adds an IRecipe to the list of crafting recipes. +func_180305_b,getEnchantmentByLocation,2,Retrieves an enchantment by using its location name. +func_180306_c,getEnchantmentById,2,Retrieves an Enchantment from the enchantmentsList +func_180318_b,getDepthStriderModifier,2,Returns the level of the Depth Strider enchantment. +func_180319_a,getRespiration,2,Returns the 'Water Breathing' modifier of enchantments on player equipped armors. +func_180320_f,getMaxTradeUses,2, +func_180321_e,getToolUses,2, +func_180322_j,getRewardsExp,2, +func_180328_a,getPosition,2, +func_180330_f,getZEnd,2,Get the last world Z coordinate that belongs to this Chunk +func_180331_a,getBlock,2,Get the World coordinates of the Block with the given Chunk coordinates relative to this chunk +func_180332_e,getXEnd,2,Get the last world X coordinate that belongs to this Chunk +func_180333_d,getZStart,2,Get the first world Z coordinate that belongs to this Chunk +func_180334_c,getXStart,2,Get the first world X coordinate that belongs to this Chunk +func_180342_d,clearAffectedBlockPositions,2, +func_180343_e,getAffectedBlockPositions,2, +func_180346_a,getBlock,2, +func_180359_a,hasRailAt,2, +func_180362_b,getBlockState,2, +func_180374_a,hasModifier,2, +func_180383_a,getRegisteredBlock,2,Returns the Block in the blockRegistry with the specified name.\n \n@param blockName The block's name to register +func_180421_g,getLookPosZ,2, +func_180422_f,getLookPosY,2, +func_180423_e,getLookPosX,2, +func_180424_b,getIsLooking,2, +func_180425_c,getPosition,2,"Get the position in the world. <b>{@code null} is not allowed!</b> If you are not an entity in the world, return the coordinates 0, 0, 0" +func_180426_a,setPositionAndRotation2,0, +func_180427_aV,isImmuneToExplosions,2, +func_180428_a,getExplosionResistance,2,Explosion resistance of a block relative to this entity +func_180429_a,playStepSound,2, +func_180430_e,fall,2, +func_180431_b,isEntityInvulnerable,2, +func_180432_n,copyDataFromOld,2,Prepares this entity in new dimension by copying NBT data from entity in old dimension +func_180433_a,updateFallState,2, +func_180434_a,renderParticle,0,Renders the particle +func_180435_a,setParticleIcon,0,Sets the particle's icon. +func_180436_i,enableLightmap,0, +func_180437_a,renderCloudsCheck,0, +func_180438_a,getNightVisionBrightness,0, +func_180439_a,playAuxSFX,2, +func_180440_a,broadcastSound,2, +func_180441_b,sendBlockBreakProgress,2, +func_180442_a,spawnParticle,2, +func_180443_s,preRenderDamagedBlocks,0, +func_180444_a,renderStars,0, +func_180445_c,renderCloudsFancy,0, +func_180446_a,renderEntities,0, +func_180447_b,renderClouds,0, +func_180448_r,renderSkyEnd,0, +func_180449_a,renderWorldBorder,0, +func_180450_b,renderItemAndEffectIntoGUI,0, +func_180451_a,renderEffect,0, +func_180452_a,setupGuiTransform,0, +func_180453_a,renderItemOverlayIntoGUI,0,Renders the stack size and/or damage bar for the given ItemStack. +func_180454_a,renderItem,0, +func_180455_b,renderString,0,"Render single line string by setting GL color, current (posX,posY), and calling renderStringAtPos()" +func_180456_s,getMinecartType,2, +func_180457_u,getDefaultDisplayTile,2, +func_180458_a,getMinecart,2, +func_180459_n,moveDerailedMinecart,2,Moves a minecart that is not attached to a rail +func_180461_b,canExtractItem,2,"Returns true if automation can extract the given item in the given slot from the given side. Args: slot, item, side" +func_180462_a,canInsertItem,2,"Returns true if automation can insert the given item in the given slot from the given side. Args: slot, item, side" +func_180463_a,getSlotsForFace,2, +func_180464_a,handleEnableCompression,2, +func_180465_a,moveTowards,2, +func_180466_bG,handleJumpLava,2, +func_180467_a,getBedSpawnLocation,2,Return null if bed is invalid +func_180468_a,displayGui,2, +func_180469_a,trySleep,2, +func_180470_cg,getBedLocation,2, +func_180471_a,getToolDigEfficiency,2,Block hardness will be further counted in net/minecraft/block/Block.getPlayerRelativeBlockHardness +func_180472_a,displayVillagerTradeGui,2, +func_180473_a,setSpawnPoint,2, +func_180474_b,renderPortal,0, +func_180475_a,renderScoreboard,0, +func_180476_e,renderPumpkinOverlay,0, +func_180477_d,renderPlayerStats,0, +func_180478_c,renderStreamIndicator,0, +func_180479_a,renderTooltip,0, +func_180480_a,renderVignette,0,Renders a Vignette arount the entire screen that changes with light level.\n \n@param lightLevel The current brightness\n@param scaledRes The current resolution of the game +func_180481_a,setEquipmentBasedOnDifficulty,2,Gives armor or weapon for entity based on given DifficultyInstance +func_180482_a,onInitialSpawn,2,"Called only once on an entity when first time spawned, via egg, mob spawner, natural spawning etc, but not called when entity is reloaded from nbt. Mainly used for initializing attributes and inventory" +func_180483_b,setEnchantmentBasedOnDifficulty,2,Enchants Entity's current equipments based on given DifficultyInstance +func_180484_a,getBlockPathWeight,2, +func_180485_d,isWithinHomeDistanceFromPosition,2, +func_180486_cf,getHomePosition,2, +func_180487_n,getParticleType,2, +func_180489_a,spawnParticles,0, +func_180494_b,getBiomeGenForCoords,2, +func_180495_p,getBlockState,2, +func_180496_d,notifyBlockOfStateChange,2, +func_180497_b,scheduleBlockUpdate,2, +func_180498_a,playAuxSFXAtEntity,2, +func_180499_a,getStrongholdPos,2, +func_180500_c,checkLightFor,2, +func_180501_a,setBlockState,2,"Sets the block state at a given location. Flag 1 will cause a block update. Flag 2 will send the change to clients (you almost always want this). Flag 4 prevents the block from being re-rendered, if this is a client world. Flags can be added together." +func_180502_D,isBlockinHighHumidity,2, +func_180503_b,invalidateRegionAndSetBlock,0, +func_180504_m,getSpawnCoordinate,2,Returns null for anything other than the End +func_180505_a,spawnParticle,2,Spawns the desired particle and sends the necessary packets to the relevant connected players. +func_180506_a,getTabCompletions,2, +func_180507_a_,setResourcePack,2, +func_180509_L,getTwitchDetails,0, +func_180510_a,drawSplashScreen,0, +func_180511_b,clickBlock,0,Called when the player is hitting a block with an item. +func_180512_c,onPlayerDamageBlock,0, +func_180513_a,getStrongholdGen,2, +func_180514_a,recreateStructures,2, +func_180517_a,replaceBlocksForBiome,2,"Possibly reshapes the biome if appropriate for the biome type, and replaces some stone with things like dirt, grass, gravel, ice" +func_180518_a,setBlocksInChunk,2,"Generates a bare-bones chunk of nothing but stone or ocean blocks, formed, but featureless." +func_180521_a,skinAvailable,0, +func_180522_a,getCoordinateInfo,2, +func_180523_a,addBlockInfo,2, +func_180524_a,getTabCompletionOptions,2,Get a list of possible completion options for when the TAB key is pressed. This can be a list of commands if no command is specified or a partial command is specified. It could also be a list of arguments for the command that is specified.\n \n@param sender The command sender who is requesting tab completion results.\n@param input The input that was passed when the TAB key was pressed.\n@param pos The block pos that the players mouse is over. <b>Could be null!</b> +func_180525_a,addTabCompletionOptions,2,Return a list of options when the user types TAB +func_180526_a,parseDouble,2, +func_180527_d,parseBoolean,2, +func_180528_a,parseInt,2, +func_180529_a,buildString,2,Builds a string starting at startPos +func_180530_a,join,2, +func_180531_e,getDifficultyFromCommand,2, +func_180532_a,addBlockHitEffects,0,Adds block hit particles for the specified block +func_180533_a,addBlockDestroyEffects,0, +func_180534_a,renderRightArm,0, +func_180535_a,renderTileEntityAt,0, +func_180543_a,renderSkull,0, +func_180546_a,renderTileEntity,0, +func_180547_a,normalize,0, +func_180548_c,bindEntityTexture,0, +func_180549_a,renderShadowBlock,0, +func_180565_e,unsetScoreTeamColor,0, +func_180574_a,drawRechargeRay,0,Draws the ray from the dragon to it's crystal +func_180597_a,cacheActiveRenderInfo,0, +func_180598_a,loadSprite,0, +func_180599_n,updateAnimationInterpolated,0, +func_180600_a,allocateTextureImpl,0, +func_180601_a,downloadResourcePack,0, +func_180608_a,getCenter,2, +func_180609_b,addDoorsAround,2, +func_180610_a,isValidDragMode,2, +func_180613_a,spawnNewEntity,2, +func_180614_a,onItemUse,2,Called when a Block is right-clicked with this Item +func_180615_a,tryPlace,2, +func_180616_a,tryPlaceContainedLiquid,2, +func_180617_a,spawnBonemealParticles,0, +func_180618_a,attachToFence,2, +func_180619_a,getCenterBlock,2,Get the coordinates of the Block in the center of this chunk with the given Y coordinate +func_180620_b,placeInExistingPortal,2, +func_180621_a,getRandomChunkPosition,2, +func_180622_a,genTerrainBlocks,2, +func_180623_a,pickRandomFlower,2, +func_180624_a,decorate,2, +func_180625_c,getFoliageColorAtPos,0, +func_180626_a,getFloatTemperature,2,Gets a floating point representation of this biome's temperature +func_180627_b,getGrassColorAtPos,0, +func_180628_b,generateBiomeTerrain,2,"Given x, z coordinates, we count down all the y positions starting at 255 and working our way down. When we hit a non-air block, we replace it with this.topBlock (default grass, descendants may set otherwise), and then a relatively shallow layer of blocks of type this.fillerBlock (default dirt). A random set of blocks below y == 5 (but always including y == 0) is replaced with bedrock.\n \nIf we don't hit non-air until somewhat below sea level, we top with gravel and fill down with stone.\n \nIf this.fillerBlock is red sand, we replace some of that with red sandstone." +func_180630_a,findBiomePosition,2, +func_180631_a,getBiomeGenerator,2,Returns the biome generator +func_180632_j,setDefaultState,2, +func_180633_a,onBlockPlacedBy,2,"Called by ItemBlocks after a block is set in the world, to allow post-place logic" +func_180634_a,onEntityCollidedWithBlock,2,Called When an Entity Collided with the Block +func_180635_a,spawnAsEntity,2,Spawns the given ItemStack as an EntityItem into the World at the given position +func_180636_a,collisionRayTrace,2,Ray traces through the blocks collision from start vector to end vector returning a ray trace hit. +func_180637_b,dropXpOnBlockBreak,2,Spawns the given amount of experience into the World as XP orb entities +func_180638_a,addCollisionBoxesToList,2,Add all collision boxes of this Block to the list that intersect with the given mask. +func_180639_a,onBlockActivated,2, +func_180640_a,getCollisionBoundingBox,2, +func_180641_l,getComparatorInputOverride,2, +func_180642_a,onBlockPlaced,2,"Called by ItemBlocks just before a block is actually set in the world, to allow for adjustments to the IBlockstate" +func_180643_i,createStackedBlock,2, +func_180644_h,getRenderColor,0, +func_180645_a,randomTick,2,"Called randomly when setTickRandomly is set to true (used by e.g. crops to grow, etc.)" +func_180646_a,getSelectedBoundingBox,0, +func_180647_a,getPlayerRelativeBlockHardness,2,Get the hardness of this Block relative to the ability of the given player +func_180648_a,onBlockEventReceived,2,Called on both Client and Server when World#addBlockEvent is called +func_180649_a,onBlockClicked,2, +func_180650_b,updateTick,2, +func_180651_a,damageDropped,2,Gets the metadata of the item this Block can drop. This method is called when the block gets destroyed. It returns the metadata of the dropped item based on the old metadata of the block. +func_180652_a,onBlockDestroyedByExplosion,2,Called when this Block is destroyed by an Explosion +func_180653_a,dropBlockAsItemWithChance,2,Spawns this Block's drops into the World as EntityItems. +func_180654_a,setBlockBoundsBasedOnState,2, +func_180655_c,randomDisplayTick,0, +func_180656_a,getWeakPower,2, +func_180657_a,harvestBlock,2, +func_180658_a,onFallenUpon,2,Block's chance to react to a living entity falling on it. +func_180659_g,getMapColor,2,Get the MapColor for this Block and the given BlockState +func_180660_a,getItemDropped,2,Get the Item that this Block should drop when harvested. +func_180661_e,createBlockState,2, +func_180662_a,colorMultiplier,0, +func_180663_b,breakBlock,2, +func_180664_k,getBlockLayer,0, +func_180665_b,getItem,0, +func_180666_a,updateState,2,Updates the pressure plate when stepped on +func_180667_a,getSensitiveAABB,2,Returns the cubic AABB inset by 1/8 on all sides +func_180668_d,setBlockBoundsBasedOnState0,2, +func_180669_e,computeRedstoneStrength,2, +func_180670_a,canUseBonemeal,2, +func_180671_f,canBlockStay,2, +func_180672_a,getGrowthChance,2, +func_180673_e,trySpawnGolem,2, +func_180674_e,getPoweredState,2, +func_180675_k,getUnpoweredState,2, +func_180676_d,getLockableContainer,2, +func_180677_d,updatePower,2, +func_180678_e,dropRecord,2, +func_180679_a,checkWitherSpawn,2, +func_180680_f,checkForArrows,2, +func_180681_d,updateBlockBounds,2, +func_180682_b,eatCake,2, +func_180683_d,checkFall,2, +func_180684_e,teleport,2, +func_180685_d,canFallInto,2, +func_180686_a,setFireInfo,2, +func_180687_h,getFlowVector,2, +func_180688_d,triggerMixEffects,2, +func_180689_a,getFlowDirection,0, +func_180690_f,placeStaticBlock,2, +func_180691_e,spawnParticles,2, +func_180692_a,explode,2, +func_180693_d,setBounds,2, +func_180695_a,getFacingFromEntity,2, +func_180696_a,canPush,2, +func_180697_b,findRailAt,2, +func_180699_d,getBlockPos,2, +func_180701_a,recursiveGenerate,2,Recursively called by generate() +func_180706_b,getClosestStrongholdPos,2, +func_180708_a,writeGameProfile,2,Writes a GameProfile to an NBTTagCompound. +func_180709_b,generate,2, +func_180710_a,setPlantType,2, +func_180713_a,getTagFromJson,2, +func_180714_a,writeString,2, +func_180717_f,getCenter,2, +func_180728_a,getBlockState,0, +func_180735_b,getBufferData,0, +func_180751_d,getScoreAction,0, +func_180753_b,getLines,0, +func_180755_e,getDuration,0, +func_180760_b,getBufferData,2, +func_180762_c,getStatus,2, +func_180764_b,getAction,2, +func_180768_b,getLines,2, +func_180776_a,getBoundingBoxCenter,2, +func_180777_a,randomlyRareFillWithBlocks,2, +func_180778_a,generateChestContents,2, +func_180780_a,getBlockState,2, +func_180781_a,initializeAllBiomeGenerators,2, +func_180782_a,createEntityPathTo,2,Creates a path from an entity to a specified location within a minimum distance +func_180783_e,setDifficultyLocked,2, +func_180784_a,onBlockClicked,2,"If not creative, it calls sendBlockBreakProgress until the block is broken first. tryHarvestBlock can also be the result of this call." +func_180785_a,blockRemoving,2, +func_180786_a,getBlockAtEntityViewpoint,0, +func_180790_a,drawEntry,0, +func_180791_a,drawSlot,0, +func_180793_a,affectEntity,2, +func_180798_a,renderDebugInfoLeft,0, +func_180799_ab,isInLava,2, +func_181012_aH,getTeleportDirection,2, +func_181013_g,setRenderYawOffset,2,Set the render yaw offset\n \n@param offset The render yaw offset +func_181015_d,setPortal,2,"Marks the entity as being inside a portal, activating teleportation logic in onEntityUpdate() in the following tick(s).\n \n@param pos The postion of the portal that the entity is in" +func_181020_a,setBaseColorAndPatterns,2, +func_181021_d,getPatterns,2, +func_181022_b,stopUseShader,0, +func_181023_a,updateTileEntities,0, +func_181026_s,hasMarker,2,"Gets whether the armor stand has marker enabled. If true, the armor stand's bounding box is set to zero and cannot be interacted with." +func_181027_m,setMarker,2,"Marker defines where if true, the size is 0 and will not be rendered or intractable." +func_181029_i,resetPlayersOverlayFooterHeader,0,Reset the GuiPlayerTabOverlay's message header and footer +func_181030_a,resetFooterHeader,0, +func_181033_a,canDestroyBlock,2, +func_181034_q,shouldBroadcastRconToOps,2,Get if RCON command events should be broadcast to ops +func_181035_ah,shouldUseNativeTransport,2,Get if native transport should be used. Native transport means linux server performance improvements and optimized packet sending/receiving on linux +func_181036_a,pickBlockWithNBT,0,"Return an ItemStack with the NBTTag of the TileEntity (""Owner"" if the block is a skull)\n \n@param itemIn The item from the block picked\n@param meta Metadata of the item\n@param tileEntityIn TileEntity of the block picked" +func_181037_M,getProfileProperties,0,Return the player's GameProfile properties +func_181040_m,getIsHittingBlock,0,Return isHittingBlock +func_181041_d,isOnLAN,0,Return true if the server is a LAN server +func_181055_a,forceTileEntityRender,0,If true the {@link TileEntitySpecialRenderer} will always be rendered while the player is in the render bounding box {@link TileEntity#getRenderBoundingBox()} and his squared distance with the {@link TileEntity} is smaller than {@link TileEntity#getMaxRenderDistanceSquared()}. +func_181057_v,getPlayerList,2, +func_181070_c,getMapColor,2,The color which represents this entry on a map. +func_181076_a,getFacingFromAxis,2, +func_181079_c,set,2,Set the values +func_181086_a,isInvalidNeighbor,2, +func_181087_e,hasInvalidNeighbor,2, +func_181117_a,getPos,2,Return the BlockPos of the Pattern +func_181124_a,createNetworkManagerAndConnect,0,Create a new NetworkManager from the server host and connect it to the server\n \n@param address The address of the server\n@param serverPort The server port\n@param useNativeTransport True if the client use the native transport system +func_181147_e,shouldRenderClouds,0,Return true if the clouds should be rendered +func_181148_f,isUsingNativeTransport,0,Return true if the client connect to a server using the native transport system +func_181157_b,initializeClassLookup,2, +func_181159_b,atan2,2, +func_181168_c,getPotionLocations,2, +func_181535_r,getMusicTicker,0,Return the musicTicker's instance +func_181536_a,draw,0,Draw with the WorldRenderer\n \n@param posX X position for the render\n@param posY Y position for the render\n@param texU X position for the texture\n@param texV Y position for the texture\n@param width Width of the render\n@param height Height of the render\n@param red The red component of the render's color\n@param green The green component of the render's color\n@param blue The blue component of the render's color\n@param alpha The alpha component of the render's color +func_181537_a,setConnectedToRealms,0,Set if the player is connected to a realms server\n \n@param isConnected The value that set if the player is connected to a realms server or not +func_181538_aA,getCurrentAction,0,Return the current action's name +func_181539_aj,getFrameTimer,0,Return the FrameTimer's instance +func_181540_al,isConnectedToRealms,0,Return true if the player is connected to a realms server +func_181544_b,setSeaLevel,2,Warning this value may not be respected in all cases as it is still hardcoded in many places. +func_181545_F,getSeaLevel,2, +func_181551_a,renderSelectedItem,0, +func_181552_c,getFrameColor,0, +func_181553_a,blendColors,0, +func_181554_e,renderLagometer,0, +func_181559_a,renderChar,0,Render the given char +func_181560_a,updateCameraAndRender,0, +func_181561_a,drawSelectionBoundingBox,0, +func_181562_a,getRenderChunkOffset,0,"Returns RenderChunk offset from given RenderChunk in given direction, or null if it can't be seen by player at given BlockPos." +func_181563_a,drawOutlinedBoundingBox,0, +func_181564_a,renderItem,0, +func_181565_a,draw,0,Draw with the WorldRenderer\n \n@param renderer The WorldRenderer's instance\n@param x X position where the render begin\n@param y Y position where the render begin\n@param width The width of the render\n@param height The height of the render\n@param red Red component of the color\n@param green Green component of the color\n@param blue Blue component of the color\n@param alpha Alpha component of the color +func_181617_a,runTask,2,"Run a task and return the result, catching any execution exceptions and logging them to the specified logger" +func_181623_g,canSpawnInBlock,2,Return true if an entity can be spawned inside the block (used to get the player's bed spawn location) +func_181656_b,hasNaN,0, +func_181662_b,pos,0, +func_181663_c,normal,0, +func_181664_j,getBufferSize,0, +func_181665_a,getDistanceSq,0, +func_181666_a,color,0, +func_181667_k,nextVertexFormatIndex,0, +func_181668_a,begin,0, +func_181669_b,color,0, +func_181670_b,growBuffer,0, +func_181671_a,lightmap,0, +func_181672_a,getVertexState,0, +func_181673_a,tex,0, +func_181674_a,sortVertexData,0, +func_181675_d,endVertex,0, +func_181679_a,draw,0, +func_181681_a,getTransform,0, +func_181682_g,getAllTransforms,0, +func_181688_b,getTransform,0, +func_181689_a,applyTransform,0, +func_181701_a,getBlockPosOffset16,0, +func_181719_f,getIntegerSize,0, +func_181720_d,getOffset,0, +func_181721_a,addElement,0, +func_181722_a,bufferData,0, +func_181743_a,addForClass,2, +func_181746_c,getFrames,0,Return the array of frames +func_181747_a,addFrame,0,Add a frame at the next index in the array frames\n \n@param runningTime The game's uptime in nanoseconds +func_181748_a,getLagometerValue,0,Return a value from time and multiplier to display the lagometer\n \n@param time The time corresponding to the frame\n@param multiplier Use to multiply +func_181749_a,getLastIndex,0,Return the last index used when 240 frames have been set +func_181750_b,getIndex,0,Return the index of the next frame in the array +func_181751_b,parseIndex,0,Change 240 to 0\n \n@param rawIndex The index to parse +func_181756_a,getInteger,0,"Get an Integer from the cache if it exists, otherwise return {@code Integer.valueOf()}" +func_181758_c,hsvToRGB,0, +func_183002_r,shouldBroadcastConsoleToOps,2,Get if console command events should be broadcast to ops +func_183005_a,isThereOneNegativeScale,0,Return true if only one scale is negative\n \n@param itemTranformVec The ItemTransformVec3f instance +func_183023_f,bypassesPlayerLimit,2, +func_183024_b,bypassesPlayerLimit,2, +func_183026_b,bypassesPlayerLimit,2, +func_183028_i,deleteOldServerResourcesPacks,0,"Keep only the 10 most recent resources packs, delete the others" +func_183029_j,getCpu,0, +func_183500_a,setGuiSize,0,Set the gui to the specified width and height\n \n@param w The width of the screen\n@param h The height of the screen +func_70000_a,addServerStatsToSnooper,2, +func_70001_b,addServerTypeToSnooper,2, +func_70002_Q,isSnooperEnabled,2,Returns whether snooping is enabled or not. +func_70003_b,canCommandSenderUseCommand,2,"Returns {@code true} if the CommandSender is allowed to execute the command, {@code false} if not" +func_70005_c_,getName,2,Get the name of this object. For players this returns their username +func_70007_b,resetLog,1,Clears the RCon log +func_70008_c,getLogContents,1,Gets the contents of the RCon log +func_70011_f,getDistance,2,"Gets the distance to the position. Args: x, y, z" +func_70012_b,setLocationAndAngles,2,Sets the location and Yaw/Pitch of an entity in the world +func_70013_c,getBrightness,2,Gets how bright this entity is. +func_70014_b,writeEntityToNBT,2,(abstract) Protected helper method to write subclass entity data to NBT. +func_70015_d,setFire,2,"Sets entity to burn for x amount of seconds, cannot lower amount of existing fire." +func_70016_h,setVelocity,0,"Sets the velocity to the args. Args: x, y, z" +func_70018_K,setBeenAttacked,2,Sets that this entity has been attacked. +func_70019_c,setEating,2, +func_70020_e,readFromNBT,2,Reads the entity from NBT (calls an abstract helper method to read specialized data) +func_70021_al,getParts,2,Return the Entity parts making up this Entity (currently only for dragons) +func_70022_Q,getEntityString,2,Returns the string that identifies this Entity's class +func_70024_g,addVelocity,2,"Adds to the current velocity of the entity. Args: x, y, z" +func_70026_G,isWet,2,Checks if this entity is either in water or on an open air block in rain (used in wolves). +func_70027_ad,isBurning,2,Returns true if the entity is on fire. Used by render to add the fire effect on rendering. +func_70028_i,isEntityEqual,2,Returns true if Entity argument is equal to this Entity +func_70029_a,setWorld,2,Sets the reference to the World object. +func_70030_z,onEntityUpdate,2,Gets called every tick from main Entity class +func_70031_b,setSprinting,2,Set sprinting switch for Entity. +func_70032_d,getDistanceToEntity,2,Returns the distance to the entity. Args: entity +func_70033_W,getYOffset,2,Returns the Y Offset of this entity. +func_70034_d,setRotationYawHead,2,Sets the head's yaw rotation of the entity. +func_70035_c,getInventory,2,returns the inventory of this entity (only used in EntityPlayerMP it seems) +func_70037_a,readEntityFromNBT,2,(abstract) Protected helper method to read subclass entity data from NBT. +func_70038_c,isOffsetPositionInLiquid,2,"Checks if the offset position from the entity's current position is inside of liquid. Args: x, y, z" +func_70039_c,writeToNBTOptional,2,"Either write this entity to the NBT tag given and return true, or return false without doing anything. If this returns false the entity is not saved on disk. Ridden entities return false here as they are saved with their rider." +func_70040_Z,getLookVec,2,returns a (normalized) vector of where this entity is looking +func_70041_e_,canTriggerWalking,2,returns if this entity triggers Block.onEntityWalking on the blocks they walk on. used for spiders and wolves to prevent them from trampling crops +func_70042_X,getMountedYOffset,2,Returns the Y offset from the entity's position for any entity riding this one. +func_70043_V,updateRiderPosition,2, +func_70044_A,setOnFireFromLava,2,Called whenever the entity is walking inside of lava. +func_70045_F,isImmuneToFire,2, +func_70046_E,getCollisionBoundingBox,2,Returns the collision bounding box for this entity +func_70047_e,getEyeHeight,2, +func_70049_a,newFloatNBTList,2,Returns a new NBTTagList filled with the specified floats +func_70050_g,setAir,2, +func_70051_ag,isSprinting,2,Get if the Entity is sprinting. +func_70052_a,setFlag,2,"Enable or disable a entity flag, see getEntityFlag to read the know flags." +func_70055_a,isInsideOfMaterial,2,Checks if the current block the entity is within of the specified material type +func_70057_ab,performHurtAnimation,0,Setups the entity to do the hurt animation. Only used by packets in multiplayer. +func_70058_J,isNotColliding,2,Checks that the entity is not colliding with any blocks / liquids +func_70060_a,moveFlying,2,Used in both water and by flying objects +func_70062_b,setCurrentItemOrArmor,2,"Sets the held item, or an armor slot. Slot 0 is held item. Slot 1-4 is armor. Params: Item, slot" +func_70065_x,preparePlayerToSpawn,0,Keeps moving the entity up so it isn't colliding with blocks and other requirements for this entity to be spawned (only actually used on players though its also on Entity) +func_70066_B,extinguish,2,Removes fire from entity. +func_70067_L,canBeCollidedWith,2,Returns true if other Entities should be prevented from moving through this Entity. +func_70068_e,getDistanceSqToEntity,2,Returns the squared distance to the entity. Args: entity +func_70070_b,getBrightnessForRender,0, +func_70071_h_,onUpdate,2,Called to update the entity's position/logic. +func_70072_I,handleWaterMovement,2,Returns if this entity is in water and will end up adding the waters velocity to the entity +func_70074_a,onKillEntity,2,This method gets called when the entity kills another one. +func_70075_an,canAttackWithItem,2,"If returns false, the item will not inflict any damage against entities." +func_70076_C,kill,2,sets the dead flag. Used when you fall off the bottom of the world. +func_70077_a,onStruckByLightning,2,Called when a lightning bolt hits the entity. +func_70078_a,mountEntity,2,"Called when a player mounts an entity. e.g. mounts a pig, mounts a boat." +func_70079_am,getRotationYawHead,2, +func_70080_a,setPositionAndRotation,2,Sets the entity's position and rotation. +func_70081_e,dealFireDamage,2,Will deal the specified amount of damage to the entity if the entity isn't immune to fire damage. Args: amountDamage +func_70082_c,setAngles,0,Adds 15% to the entity's yaw and subtracts 15% from the pitch. Clamps pitch from -90 to 90. Both arguments in degrees. +func_70083_f,getFlag,2,Returns true if the flag is active for the entity. Known flags: 0) is burning; 1) is sneaking; 2) is riding something; 3) is sprinting; 4) is eating +func_70084_c,addToPlayerScore,2,"Adds a value to the player score. Currently not actually used and the entity passed in does nothing. Args: entity, scoreToAdd" +func_70085_c,interact,2,"Called when a player interacts with a mob. e.g. gets milk from a cow, gets into the saddle on a pig." +func_70086_ai,getAir,2, +func_70087_a,newDoubleNBTList,2,creates a NBT list from the array of doubles passed to this function +func_70088_a,entityInit,2, +func_70089_S,isEntityAlive,2,Checks whether target entity is alive. +func_70090_H,isInWater,2,Checks if this entity is inside water (if inWater field is true as a result of handleWaterMovement() returning true) +func_70091_d,moveEntity,2,"Tries to moves the entity by the passed in displacement. Args: x, y, z" +func_70092_e,getDistanceSq,2,"Gets the squared distance to the position. Args: x, y, z" +func_70093_af,isSneaking,2,Returns if this entity is sneaking. +func_70094_T,isEntityInsideOpaqueBlock,2,Checks if this entity is inside of an opaque block +func_70095_a,setSneaking,2,Sets the sneaking flag. +func_70096_w,getDataWatcher,2, +func_70097_a,attackEntityFrom,2,Called when the entity is attacked. +func_70098_U,updateRidden,2,Handles updating while being ridden by an entity +func_70099_a,entityDropItem,2,Drops an item at the position of the entity. +func_70100_b_,onCollideWithPlayer,2,Called by a player entity when they collide with an entity +func_70101_b,setRotation,2,"Sets the rotation of the entity. Args: yaw, pitch (both in degrees)" +func_70103_a,handleStatusUpdate,0, +func_70104_M,canBePushed,2,Returns true if this entity should push and be pushed by other entities when colliding. +func_70105_a,setSize,2,"Sets the width and height of the entity. Args: width, height" +func_70106_y,setDead,2,Will get destroyed next tick. +func_70107_b,setPosition,2,"Sets the x,y,z of the entity from the given parameters. Also seems to set up a bounding box." +func_70108_f,applyEntityCollision,2,Applies a velocity to each of the entities pushing them away from each other. Args: entity +func_70109_d,writeToNBT,2,Save the entity to NBT (calls an abstract helper method to write extra data) +func_70110_aj,setInWeb,2,Sets the Entity inside a web block. +func_70111_Y,getCollisionBorderSize,2, +func_70112_a,isInRangeToRenderDist,0,Checks if the entity is in range to render by using the past in distance and comparing it to its average edge length * 64 * renderDistanceWeight Args: distance +func_70113_ah,isEating,0, +func_70114_g,getCollisionBox,2,"Returns a boundingBox used to collide the entity with other entities and blocks. This enables the entity to be pushable on contact, like boats or minecarts." +func_70115_ae,isRiding,2,"Returns true if the entity is riding another entity, used by render to rotate the legs to be in 'sit' position for players." +func_70182_d,getVelocity,2, +func_70183_g,getInaccuracy,2, +func_70184_a,onImpact,2,Called when this EntityThrowable hits a block or entity. +func_70185_h,getGravityVelocity,2,Gets the amount of gravity to apply to the thrown entity with each tick. +func_70186_c,setThrowableHeading,2,"Similar to setArrowHeading, it's point the throwable entity to a x, y, z direction." +func_70196_i,getPotionDamage,2,Returns the damage value of the thrown potion that this EntityPotion represents. +func_70227_a,onImpact,2,Called when this EntityFireball hits a block or entity. +func_70239_b,setDamage,2, +func_70240_a,setKnockbackStrength,2,Sets the amount of knockback the arrow applies when it hits a mob. +func_70241_g,getIsCritical,2,Whether the arrow has a stream of critical hit particles flying behind it. +func_70242_d,getDamage,2, +func_70243_d,setIsCritical,2,Whether the arrow has a stream of critical hit particles flying behind it. +func_70265_b,setTimeSinceHit,2,Sets the time to count down from since the last time entity was hit. +func_70266_a,setDamageTaken,2,Sets the damage taken from the last hit. +func_70267_i,getForwardDirection,2,Gets the forward direction of the entity. +func_70268_h,getTimeSinceHit,2,Gets the time since the last hit. +func_70269_c,setForwardDirection,2,Sets the forward direction of the entity. +func_70270_d,setIsBoatEmpty,0,true if no player in boat +func_70271_g,getDamageTaken,2,Gets the damage taken from the last hit. +func_70288_d,setAgeToCreativeDespawnTime,2,sets the age of the item so that it'll despawn one minute after it has been dropped (instead of five). Used when items are dropped from players in creative mode +func_70289_a,combineItems,2,Tries to merge this item with the item passed as the parameter. Returns true if successful. Either this item or the other item will be removed from the world. +func_70296_d,markDirty,2,"For tile entities, ensures the chunk containing the tile entity is saved to disk later - the game won't think it hasn't changed and skip it." +func_70297_j_,getInventoryStackLimit,2,"Returns the maximum stack size for a inventory slot. Seems to always be 64, possibly will be extended." +func_70298_a,decrStackSize,2,Removes up to a specified number of items from an inventory slot and returns them in a new stack. +func_70299_a,setInventorySlotContents,2,Sets the given item stack to the specified slot in the inventory (can be crafting or armor sections). +func_70300_a,isUseableByPlayer,2,Do not make give this method the name canInteractWith because it clashes with Container +func_70301_a,getStackInSlot,2,Returns the stack in the given slot. +func_70302_i_,getSizeInventory,2,Returns the number of slots in the inventory. +func_70304_b,removeStackFromSlot,2,Removes a stack from the given slot and returns it. +func_70429_k,decrementAnimations,2,Decrement the number of animations remaining. Only called on client side. This is used to handle the animation of receiving a block. +func_70430_l,getTotalArmorValue,2,"Based on the damage values and maximum damage values of each armor item, returns the current armor value." +func_70431_c,hasItemStack,2,Returns true if the specified ItemStack exists in the inventory. +func_70432_d,storeItemStack,2,stores an itemstack in the users inventory +func_70436_m,dropAllItems,2,Drop all armor and main inventory items. +func_70437_b,setItemStack,2,"Set the stack helds by mouse, used in GUI/Container" +func_70440_f,armorItemInSlot,2,returns a player armor item (as itemstack) contained in specified armor slot.\n \n@param slotIn the slot index requested +func_70441_a,addItemStackToInventory,2,"Adds the item stack to the inventory, returns false if it is impossible." +func_70442_a,writeToNBT,2,"Writes the inventory out as a list of compound tags. This is where the slot indices are used (+100 for armor, +80 for crafting).\n \n@param nbtTagListIn List to append tags to" +func_70443_b,readFromNBT,2,Reads from the given tag list and fills the slots in the inventory with the correct items.\n \n@param nbtTagListIn tagList to read from +func_70445_o,getItemStack,2,"Stack helds by mouse, used in GUI and Containers" +func_70447_i,getFirstEmptyStack,2,Returns the first item stack that is empty. +func_70448_g,getCurrentItem,2,Returns the item stack currently held by the player. +func_70449_g,damageArmor,2,Damages armor in each slot by the specified amount. +func_70451_h,getHotbarSize,2,Get the size of the player hotbar inventory +func_70452_e,storePartialItemStack,2,This function stores as many items of an ItemStack as possible in a matching slot and returns the quantity of left over items. +func_70453_c,changeCurrentItem,0,"Switch the current item to the next one or the previous one\n \n@param direction Direction to switch (1, 0, -1). 1 (any > 0) to select item left of current (decreasing currentItem index), -1 (any < 0) to select item right of current (increasing currentItem index). 0 has no effect." +func_70455_b,copyInventory,2,Copy the ItemStack contents from another InventoryPlayer instance +func_70463_b,getStackInRowAndColumn,2,"Returns the itemstack in the slot specified (Top left is 0, 0). Args: row, column" +func_70468_h,getCurrentRecipe,2, +func_70469_d,inventoryResetNeededOnSlotChange,2,"if par1 slot has changed, does resetRecipeAndSlots need to be called?" +func_70470_g,resetRecipeAndSlots,2, +func_70471_c,setCurrentRecipeIndex,2, +func_70486_a,loadInventoryFromNBT,2, +func_70487_g,saveInventoryToNBT,2, +func_70491_i,getDamage,2,Gets the current amount of damage the minecart has taken. Decreases over time. The cart breaks when this is over 40. +func_70492_c,setDamage,2,Sets the current amount of damage the minecart has taken. Decreases over time. The cart breaks when this is over 40. +func_70493_k,getRollingDirection,2,Gets the rolling direction the cart rolls while being attacked. Can be 1 or -1. +func_70494_i,setRollingDirection,2,Sets the rolling direction the cart rolls while being attacked. Can be 1 or -1. +func_70496_j,getRollingAmplitude,2,Gets the rolling amplitude the cart rolls while being attacked. +func_70497_h,setRollingAmplitude,2,Sets the rolling amplitude the cart rolls while being attacked. +func_70515_d,explode,2, +func_70518_d,onValidSurface,2,checks to make sure painting can be placed there +func_70526_d,getXpValue,2,Returns the XP value of this XP orb. +func_70527_a,getXPSplit,2,Get a fragment of the maximum experience points value for the supplied value of experience points value. +func_70528_g,getTextureByXP,0,Returns a number from 1 to 10 based on how much XP this orb is worth. This is used by RenderXPOrb to determine what texture to use. +func_70534_d,getRedColorF,0, +func_70535_g,getBlueColorF,0, +func_70536_a,setParticleTextureIndex,0,Public method to set private field particleTextureIndex. +func_70537_b,getFXLayer,0, +func_70538_b,setRBGColorF,0, +func_70541_f,multipleParticleScaleBy,0, +func_70542_f,getGreenColorF,0, +func_70543_e,multiplyVelocity,0, +func_70589_b,setBaseSpellTextureIndex,0,Sets the base spell texture index +func_70599_aP,getSoundVolume,2,Returns the volume for the sounds this mob makes. +func_70601_bi,getCanSpawnHere,2,Checks if the entity's current position is a valid location to spawn this entity. +func_70603_bj,getRenderSizeModifier,0,Returns render size modifier +func_70604_c,setRevengeTarget,2, +func_70605_aq,getMoveHelper,2, +func_70606_j,setHealth,2, +func_70608_bn,isPlayerSleeping,2,Returns whether player is sleeping or not +func_70609_aI,onDeathUpdate,2,"handles entity death timer, experience orb and particle creation" +func_70610_aX,isMovementBlocked,2,Dead and sleeping entities cannot move +func_70612_e,moveEntityWithHeading,2,"Moves the entity based on the specified heading. Args: strafe, forward" +func_70613_aW,isServerWorld,2,Returns whether the entity is in a server world +func_70615_aA,eatGrassBonus,2,This function applies the benefits of growing back wool and faster growing up to the acting entity. (This function is used in the AIEatGrass) +func_70617_f_,isOnLadder,2,"returns true if this entity is by a ladder, false otherwise" +func_70618_n,removePotionEffectClient,0,Remove the speified potion effect from this entity. +func_70619_bc,updateAITasks,2, +func_70621_aR,getHurtSound,2,Returns the sound this mob makes when it is hurt. +func_70623_bb,despawnEntity,2,Makes the entity despawn if requirements are reached +func_70624_b,setAttackTarget,2,Sets the active target the Task system uses for tracking +func_70625_a,faceEntity,2,Changes pitch and yaw so that the entity calling the function is facing the entity provided as an argument. +func_70626_be,updateEntityActionState,2, +func_70627_aG,getTalkInterval,2,"Get number of ticks, at least during which the living entity will be silent." +func_70628_a,dropFewItems,2,Drop 0-2 items of this living's type\n \n@param wasRecentlyHit true if this this entity was recently hit by appropriate entity (generally only if player or tameable)\n@param lootingModifier level of enchanment to be applied to this drop +func_70629_bd,updateAITick,2,"main AI tick function, replaces updateEntityActionState" +func_70631_g_,isChild,2,"If Animal, checks if the age timer is negative" +func_70632_aY,isBlocking,2, +func_70634_a,setPositionAndUpdate,2,Sets the position of the entity and updates the 'last' variables +func_70635_at,getEntitySenses,2,returns the EntitySenses Object for the EntityLiving +func_70636_d,onLivingUpdate,2,"Called frequently so the entity can update its state every tick as required. For example, zombies and skeletons use this to react to sunlight and start to burn." +func_70637_d,setJumping,2, +func_70638_az,getAttackTarget,2,Gets the active target the Task system uses for tracking +func_70639_aQ,getLivingSound,2,Returns the sound this mob makes while it's alive. +func_70641_bl,getMaxSpawnedInChunk,2,Will return how many at most can spawn in a chunk at once. +func_70642_aH,playLivingSound,2,Plays living's sound at its position +func_70643_av,getAITarget,2, +func_70644_a,isPotionActive,2, +func_70645_a,onDeath,2,Called when the mob's health reaches 0. +func_70646_bf,getVerticalFaceSpeed,2,The speed it takes to move the entityliving's rotationPitch through the faceEntity method. This is only currently use in wolves. +func_70647_i,getSoundPitch,2,Gets the pitch of living sounds in living entities. +func_70648_aU,canBreatheUnderwater,2, +func_70650_aV,isAIEnabled,2,Returns true if the newer Entity AI code should be run +func_70651_bq,getActivePotionEffects,2, +func_70652_k,attackEntityAsMob,2, +func_70653_a,knockBack,2,knocks back this entity +func_70654_ax,getAge,2, +func_70655_b,applyArmorCalculations,2,"Reduces damage, depending on armor" +func_70656_aK,spawnExplosionParticle,2,Spawns an explosion particle around the Entity's location +func_70657_f,setMoveForward,2, +func_70658_aO,getTotalArmorValue,2,Returns the current armor value as determined by a call to InventoryPlayer.getTotalArmorValue +func_70659_e,setAIMoveSpeed,2,set the movespeed used for the new AI system +func_70660_b,getActivePotionEffect,2,"returns the PotionEffect for the supplied Potion if it is active, null otherwise." +func_70661_as,getNavigator,2, +func_70662_br,isEntityUndead,2,Returns true if this entity is undead. +func_70663_b,updateRotation,2,"Arguments: current rotation, intended rotation, max increment." +func_70664_aZ,jump,2,Causes this entity to do an upwards motion (jumping). +func_70665_d,damageEntity,2,Deals damage to the entity. If its a EntityPlayer then will take damage from the armor first and then health second with the reduced value. Args: damageAmount +func_70668_bt,getCreatureAttribute,2,Get this Entity's EnumCreatureAttribute +func_70669_a,renderBrokenItemStack,2,Renders broken item particles using the given ItemStack +func_70670_a,onNewPotionEffect,2, +func_70671_ap,getLookHelper,2, +func_70672_c,applyPotionDamageCalculations,2,"Reduces damage, depending on potions" +func_70673_aS,getDeathSound,2,Returns the sound this mob makes on death. +func_70674_bp,clearActivePotions,2, +func_70675_k,damageArmor,2, +func_70676_i,getLook,2,interpolated look vector +func_70678_g,getSwingProgress,0,Returns where in the swing animation the living entity is (from 0 to 1). Args: partialTickTime +func_70679_bo,updatePotionEffects,2, +func_70681_au,getRNG,2, +func_70682_h,decreaseAirSupply,2,Decrements the entity's air supply when underwater +func_70683_ar,getJumpHelper,2, +func_70684_aJ,isPlayer,2,Only use is to identify if class is an instance of player for experience dropping +func_70685_l,canEntityBeSeen,2,returns true if the entity provided in the argument can be seen. (Raytrace) +func_70686_a,canAttackClass,2,Returns true if this entity can attack entities of the specified class. +func_70687_e,isPotionApplicable,2, +func_70688_c,onFinishedPotionEffect,2, +func_70689_ay,getAIMoveSpeed,2,the movespeed used for the new AI system +func_70690_d,addPotionEffect,2,adds a PotionEffect to the entity +func_70691_i,heal,2,Heal living entity (param: amount of half-hearts) +func_70692_ba,canDespawn,2,"Determines if an entity can be despawned, used on idle far away entities" +func_70693_a,getExperiencePoints,2,Get the experience points the entity currently has. +func_70694_bm,getHeldItem,2,"Returns the item that this EntityLiving is holding, if any." +func_70695_b,onChangedPotionEffect,2, +func_70781_l,hasPath,2,"if the entity got a PathEntity it returns true, else false" +func_70799_a,setSlimeSize,2, +func_70800_m,canDamagePlayer,2,Indicates weather the slime is able to damage the player (based upon the slime's size) +func_70802_j,createInstance,2, +func_70803_o,getJumpSound,2,Returns the name of the sound played when the slime jumps. +func_70804_p,makesSoundOnLand,2,Returns true if the slime makes a sound when it lands after a jump (based upon the slime's size) +func_70805_n,getAttackStrength,2,"Gets the amount of damage dealt to the player when ""attacked"" by the slime." +func_70806_k,getJumpDelay,2,Gets the amount of time the slime needs to wait between jumps. +func_70807_r,makesSoundOnJump,2,Returns true if the slime makes a sound when it jumps (based upon the slime's size) +func_70808_l,alterSquishAmount,2, +func_70809_q,getSlimeSize,2,Returns the size of the slime. +func_70814_o,isValidLightLevel,2,Checks to make sure the light is not too bright where the mob is spawning +func_70816_c,teleportToEntity,2,Teleport the enderman to another entity +func_70819_e,setScreaming,2, +func_70820_n,teleportRandomly,2,Teleport the enderman to a random nearby position +func_70821_d,shouldAttackPlayer,2,Checks to see if this enderman should be attacking this player +func_70823_r,isScreaming,2, +func_70825_j,teleportTo,2,Teleport the enderman +func_70829_a,setCreeperState,2,"Sets the state of creeper, -1 to idle and 1 to be 'in fuse'" +func_70830_n,getPowered,2,Returns true if the creeper is powered by a lightning bolt. +func_70831_j,getCreeperFlashIntensity,0,Params: (Float)Render tick. Returns the intensity of the creeper's flash when it is ignited. +func_70832_p,getCreeperState,2,"Returns the current state of creeper, -1 is idle, 1 is 'in fuse'" +func_70835_c,becomeAngryAt,2,Causes this PigZombie to become angry at the supplied Entity (which will be a player). +func_70839_e,setBesideClimbableBlock,2,"Updates the WatchableObject (Byte) created in entityInit(), setting it to 0x01 if par1 is true or 0x00 if it is false." +func_70841_p,isBesideClimbableBlock,2,Returns true if the WatchableObject (Byte) is 0x01 otherwise returns false. The WatchableObject is updated using setBesideClimableBlock. +func_70844_e,setOnFire,2, +func_70849_f,setPlayerCreated,2, +func_70850_q,isPlayerCreated,2, +func_70851_e,setHoldingRose,2, +func_70852_n,getVillage,2, +func_70853_p,getHoldRoseTick,2, +func_70854_o,getAttackTimer,0, +func_70873_a,setGrowingAge,2,"The age value may be negative or positive or zero. If it's negative, it get's incremented on each tick, if it's positive, it get's decremented each tick. With a negative value the Entity is considered a child." +func_70874_b,getGrowingAge,2,"The age value may be negative or positive or zero. If it's negative, it get's incremented on each tick, if it's positive, it get's decremented each tick. Don't confuse this with EntityLiving.getAge. With a negative value the Entity is considered a child." +func_70875_t,resetInLove,2, +func_70877_b,isBreedingItem,2,"Checks if the parameter is an item which this animal can be fed to breed it (wheat, carrots or seeds depending on the animal type)" +func_70878_b,canMateWith,2,Returns true if the mob is currently able to mate with the specified mob. +func_70880_s,isInLove,2,Returns if the entity is currently in 'love mode'. +func_70890_k,getHeadRotationAngleX,0, +func_70892_o,getSheared,2,returns true if a sheeps wool has been sheared +func_70893_e,setSheared,2,make a sheep sheared if set to true +func_70894_j,getHeadRotationPointY,0, +func_70900_e,setSaddled,2,Set or remove the saddle of the pig. +func_70901_n,getSaddled,2,Returns true if the pig is saddled. +func_70902_q,getOwner,2, +func_70903_f,setTamed,2, +func_70904_g,setSitting,2, +func_70906_o,isSitting,2, +func_70907_r,getAISit,2,Returns the AITask responsible of the sit logic +func_70908_e,playTameEffect,2,"Play the taming effect, will either be hearts or smoke depending on status" +func_70909_n,isTamed,2, +func_70912_b,setTameSkin,2, +func_70913_u,getTameSkin,2, +func_70915_j,getShadingWhileWet,0,Used when calculating the amount of shading to apply while the wolf is wet. +func_70916_h,setAngry,2,Sets whether this wolf is angry or not. +func_70917_k,getInterestedAngle,0, +func_70918_i,setBegging,2, +func_70919_bu,isAngry,2,Determines whether this wolf is angry or not. +func_70920_v,getTailRotation,0, +func_70921_u,isWolfWet,0,True if the wolf is wet +func_70922_bv,isBegging,2, +func_70923_f,getShakeAngle,0, +func_70930_a,setRecipes,0, +func_70931_l_,getCustomer,2, +func_70932_a_,setCustomer,2, +func_70933_a,useRecipe,2, +func_70934_b,getRecipes,2, +func_70938_b,setProfession,2, +func_70939_f,setPlaying,2, +func_70940_q,isTrading,2, +func_70941_o,isMating,2, +func_70945_p,isPlaying,2, +func_70946_n,getProfession,2, +func_70947_e,setMating,2, +func_70965_a,attackEntityFromPart,2, +func_70967_k,setNewTarget,2,Sets a new target for the flight AI. It can be a random coordinate or a nearby player. +func_70969_j,updateDragonEnderCrystal,2,Updates the state of the enderdragon's current endercrystal. +func_70970_a,collideWithEntities,2,Pushes all entities inside the list away from the enderdragon. +func_70971_b,attackEntitiesInList,2,"Attacks all entities inside this list, dealing 5 hearts of damage." +func_70972_a,destroyBlocksInAABB,2,Destroys all blocks that aren't associated with 'The End' inside the given bounding box. +func_70973_b,simplifyAngle,2,Simplifies the value of a number by adding/subtracting 180 to the point that the number is between -180 and 180. +func_70974_a,getMovementOffsets,2,"Returns a double[3] array with movement offsets, used to calculate trailing tail/neck positions. [0] = yaw offset, [1] = y offset, [2] = unused, always 0. Parameters: buffer index offset, partial ticks." +func_70996_bM,shouldHeal,2,Checks if the player's health is not full and not zero. +func_70998_m,interactWith,2, +func_70999_a,wakeUpPlayer,2,Wake up the player if they're sleeping. +func_71000_j,addMovementStat,2,"Adds a value to a movement statistic field - like run, walk, swin or climb." +func_71001_a,onItemPickup,2,"Called whenever an item is picked up from walking over it. Args: pickedUpEntity, stackSize" +func_71004_bE,respawnPlayer,0, +func_71005_bN,getInventoryEnderChest,2,Returns the InventoryEnderChest of this player. +func_71007_a,displayGUIChest,2,Displays the GUI for interacting with a chest inventory. Args: chestInventory +func_71008_a,setItemInUse,2,"sets the itemInUse when the use item button is clicked. Args: itemstack, int maxItemUseDuration" +func_71009_b,onCriticalHit,2,Called when the player performs a critical hit on the Entity. Args: entity that was hit critically +func_71010_c,updateItemUse,2,Plays sounds and makes particles for item in use state +func_71011_bu,getItemInUse,0,returns the ItemStack containing the itemInUse +func_71012_a,joinEntityItemWithWorld,2,Joins the passed in entity item with the world. Args: entityItem +func_71013_b,removeExperienceLevel,2, +func_71015_k,addMountedMovementStat,2,"Adds a value to a mounted movement statistic field - by minecart, boat, or pig." +func_71016_p,sendPlayerAbilities,2,Sends the player's abilities to the server (if there is one). +func_71019_a,dropPlayerItemWithRandomChoice,2,"Args: itemstack, flag" +func_71020_j,addExhaustion,2,increases exhaustion level by supplied amount +func_71023_q,addExperience,2,Add experience points to player. +func_71024_bL,getFoodStats,2,Returns the player's FoodStats object. +func_71026_bH,isPlayerFullyAsleep,2,Returns whether or not the player is asleep and the screen has fully faded. +func_71027_c,travelToDimension,2,Teleports the entity to another dimension. Params: Dimension number to teleport to +func_71028_bD,destroyCurrentEquippedItem,2,Destroys the currently equipped item from the player's inventory. +func_71029_a,triggerAchievement,2,Will trigger the specified trigger. +func_71033_a,setGameType,2,Sets the player's game mode and sends it to them. +func_71034_by,stopUsingItem,2, +func_71036_o,onItemUseFinish,2,"Used for when item use count runs out, ie: eating completed" +func_71037_bA,getScore,2, +func_71038_i,swingItem,2,Swings the item the player is holding. +func_71039_bw,isUsingItem,2,"Checks if the entity is currently using an item (e.g., bow, food, sword) by holding down the useItemButton" +func_71040_bB,dropOneItem,2,Called when player presses the drop item key +func_71041_bz,clearItemInUse,2, +func_71043_e,canEat,2, +func_71044_o,collideWithPlayer,2, +func_71045_bC,getCurrentEquippedItem,2,Returns the currently being used item by the player. +func_71047_c,onEnchantmentCritical,2, +func_71048_c,displayGUIBook,2,Displays the GUI for interacting with a book. +func_71049_a,clonePlayer,2,Copies the values from the given player into this player if boolean par2 is true. Always clones Ender Chest Inventory. +func_71050_bK,xpBarCap,2,"This method returns the cap amount of experience that the experience bar can hold. With each level, the experience cap on the player's experience bar is raised by 10." +func_71051_bG,getBedOrientationInDegrees,0,Returns the orientation of the bed in degrees. +func_71052_bv,getItemInUseCount,0,Returns the item in use count +func_71053_j,closeScreen,2,set current crafting inventory back to the 2x2 square +func_71057_bx,getItemInUseDuration,0,gets the duration for how long the current itemInUse has been in use +func_71059_n,attackTargetEntityWithCurrentItem,2,Attacks for the player the targeted entity with the currently equipped item. The equipped item has hitEntity called on it. Args: targetEntity +func_71060_bI,getSleepTimer,0, +func_71061_d_,resetHeight,2,sets the players height back to normal after doing things like sleeping and dieing +func_71064_a,addStat,2,Adds a value to a statistic field. +func_71110_a,updateCraftingInventory,2,update the crafting window inventory with the items in the list +func_71111_a,sendSlotContents,2,"Sends the contents of an inventory slot to the client-side Container. This doesn't have to match the actual contents of that slot. Args: Container, slot number, slot contents" +func_71112_a,sendProgressBarUpdate,2,"Sends two ints to the client-side Container. Used for furnace burning time, smelting progress, brewing progress, and enchanting level. Normally the first int identifies which variable to update, and the second contains the new value. Both are truncated to shorts in non-local SMP." +func_71113_k,updateHeldItem,2,updates item held by mouse +func_71114_r,getPlayerIP,2,Gets the player's IP address. Used in /banip. +func_71116_b,addSelfToInternalCraftingInventory,2, +func_71117_bO,getNextWindowId,2,get the next window id to use +func_71118_n,setPlayerHealthUpdated,2,"this function is called when a players inventory is sent to him, lastHealth is updated on any dimension transitions, then reset." +func_71120_a,sendContainerToPlayer,2, +func_71121_q,getServerForPlayer,2, +func_71122_b,handleFalling,2,process player falling based on movement packet +func_71123_m,mountEntityAndWakeUp,2, +func_71124_b,getEquipmentInSlot,2,0: Tool in Hand; 1-4: Armor +func_71127_g,onUpdateEntity,2, +func_71128_l,closeContainer,2,Closes the container the player currently has open. +func_71150_b,setPlayerSPHealth,0,Updates health locally. +func_71152_a,setXPStats,0,"Sets the current XP, total XP, and level number." +func_71165_d,sendChatMessage,0,Sends a chat message from the player. Args: chatMessage +func_71187_D,getCommandManager,2, +func_71188_g,setAllowPvp,2, +func_71189_e,setHostname,1, +func_71190_q,updateTimeLightAndEntities,2, +func_71191_d,setBuildLimit,2, +func_71192_d,setUserMessage,2,"Typically ""menu.convertingLevel"", ""menu.loadingLevel"" or others." +func_71193_K,allowSpawnMonsters,2, +func_71194_c,canCreateBonusChest,2, +func_71195_b_,getUserMessage,0, +func_71197_b,startServer,2,Initialises the server and starts it. +func_71198_k,logDebug,1,"If isDebuggingEnabled(), logs the message with a level of INFO." +func_71199_h,isHardcore,2,Defaults to false. +func_71200_ad,serverIsInRunLoop,0, +func_71201_j,logSevere,1,Logs the error message with a level of SEVERE. +func_71203_ab,getConfigurationManager,2, +func_71204_b,setDemo,2,Sets whether this is a demo or not. +func_71205_p,setMOTD,2, +func_71206_a,shareToLAN,2,"On dedicated does nothing. On integrated, sets commandsAllowedForAll, gameType and allows external connections." +func_71207_Z,getBuildLimit,2, +func_71208_b,setServerPort,1, +func_71209_f,getFile,2,Returns a File object from the specified string. +func_71211_k,getServerHostname,1,"""getHostname"" is already taken, but both return the hostname." +func_71213_z,getAllUsernames,2,Returns an array of the usernames of all the connected players. +func_71214_G,getServerOwner,2,Returns the username of the server owner (for integrated servers) +func_71215_F,getServerPort,1,Gets serverPort. +func_71216_a_,outputPercentRemaining,2,Used to display a percent remaining given text and the percentage. +func_71217_p,tick,2,Main function called by run() every loop. +func_71218_a,worldServerForDimension,2,Gets the worldServer by the given dimension. +func_71219_W,isPVPEnabled,2, +func_71220_V,getCanSpawnNPCs,2, +func_71221_J,getWorldName,0, +func_71222_d,initialWorldChunkLoad,2, +func_71223_ag,enableProfiling,2, +func_71224_l,setServerOwner,2,Sets the username of the owner of this server (in the case of an integrated server) +func_71225_e,canStructuresSpawn,2, +func_71228_a,finalTick,2,Called on exit from the main run() loop. +func_71229_d,setOnlineMode,2, +func_71230_b,addServerInfoToCrashReport,2,"Adds the server info, including from theWorldServer, to the crash report." +func_71231_X,isFlightAllowed,2, +func_71233_x,getCurrentPlayerCount,2,Returns the number of players currently on the server. +func_71234_u,getPort,1,"Never used, but ""getServerPort"" is already taken." +func_71235_a,setGameType,2,Sets the game type for all worlds. +func_71236_h,logWarning,2,Logs the message with a level of WARN. +func_71237_c,convertMapIfNeeded,2, +func_71238_n,getDataDirectory,2, +func_71239_B,isDebuggingEnabled,1,"Returns true if debugging is enabled, false otherwise." +func_71240_o,systemExitNow,2,"Directly calls System.exit(0), instantly killing the program." +func_71241_aa,isServerStopped,2, +func_71242_L,isDemo,2,Gets whether this is a demo or not. +func_71243_i,clearCurrentTask,2,Set current task to null and set its percentage to 0. +func_71244_g,logInfo,1,Logs the message with a level of INFO. +func_71245_h,setAllowFlight,2, +func_71246_n,setWorldName,0, +func_71247_a,loadAllWorlds,2, +func_71249_w,getMinecraftVersion,2,Returns the server's Minecraft version as string. +func_71250_E,getKeyPair,2,Gets KeyPair instanced in MinecraftServer. +func_71251_e,setCanSpawnAnimals,2, +func_71252_i,handleRConCommand,1,Handle a command received by an RCon instance +func_71253_a,setKeyPair,2, +func_71254_M,getActiveAnvilConverter,2, +func_71255_r,getAllowNether,2, +func_71256_s,startServerThread,2, +func_71257_f,setCanSpawnNPCs,2, +func_71258_A,getPlugins,1,"Used by RCon's Query in the form of ""MajorServerMod 1.2.3: MyPlugin 1.3; AnotherPlugin 2.1; AndSoForth 1.0""." +func_71259_af,getTickCounter,2, +func_71260_j,stopServer,2,Saves all necessary data as preparation for stopping the server. +func_71261_m,setFolderName,2, +func_71262_S,isDedicatedServer,2, +func_71263_m,initiateShutdown,2,"Sets the serverRunning variable to false, in order to get the server to shut down." +func_71264_H,isSinglePlayer,2, +func_71265_f,getGameType,2, +func_71266_T,isServerInOnlineMode,2, +func_71267_a,saveAllWorlds,2,par1 indicates if a log message should be output. +func_71268_U,getCanSpawnAnimals,2, +func_71270_I,getFolderName,2, +func_71272_O,deleteWorldAndStopServer,2,WARNING : directly calls getActiveAnvilConverter().deleteWorldDirectory(theWorldServer[0].getSaveHandler().getWorldDirectoryName()); +func_71273_Y,getMOTD,2, +func_71274_v,getMotd,1,Returns the server message of the day +func_71275_y,getMaxPlayers,2,Returns the maximum number of players allowed on the server. +func_71276_C,getServer,2,Gets mcServer. +func_71277_t,getHostname,1,Returns the server's hostname. +func_71278_l,isServerRunning,2, +func_71279_ae,getGuiEnabled,2, +func_71326_a,saveProperties,1,Saves all of the server properties to the properties file. +func_71327_a,getIntProperty,1,"Gets an integer property. If it does not exist, set it to the specified value." +func_71328_a,setProperty,1,Saves an Object with the given property name. +func_71329_c,getSettingsFilename,1,Returns the filename where server properties are stored +func_71330_a,getStringProperty,1,"Gets a string property. If it does not exist, set it to the specified value." +func_71331_a,addPendingCommand,1, +func_71332_a,getBooleanProperty,1,"Gets a boolean property. If it does not exist, set it to the specified value." +func_71333_ah,executePendingCommands,1, +func_71344_c,getPublic,0,Returns true if this integrated server is open to LAN +func_71351_a,setServerData,0,Set the current ServerData instance. +func_71352_k,toggleFullscreen,0,Toggles fullscreen mode. +func_71353_a,loadWorld,0,par2Str is displayed on the loading screen to the user unloads the current world first +func_71354_a,setDimensionAndSpawnPlayer,0, +func_71355_q,isDemo,0,Gets whether this is a demo or not. +func_71356_B,isSingleplayer,0,"Returns true if there is only one player playing, and the current server is the integrated one." +func_71359_d,getSaveLoader,0,Returns the save loader that is currently being used +func_71361_d,checkGLError,0,"Checks for an OpenGL error. If there is one, prints the error ID and error string." +func_71363_D,stopIntegratedServer,0, +func_71364_i,setIngameNotInFocus,0,"Resets the player keystate, disables the ingame focus, and ungrabs the mouse cursor." +func_71366_a,displayDebugInfo,0,Parameter appears to be unused +func_71369_N,getGLMaximumTextureSize,0,Used in the usage snooper. +func_71370_a,resize,0,Called to resize the current screen. +func_71371_a,launchIntegratedServer,0,"Arguments: World foldername, World ingame name, WorldSettings" +func_71372_G,isFullScreen,0,Returns whether we're in full screen or not. +func_71375_t,isFancyGraphicsEnabled,0, +func_71377_b,displayCrashReport,0,Wrapper around displayCrashReportInternal +func_71378_E,getPlayerUsageSnooper,0,Returns the PlayerUsageSnooper instance. +func_71379_u,isAmbientOcclusionEnabled,0,Returns if ambient occlusion is enabled +func_71381_h,setIngameFocus,0,Will set the focus to ingame if the Minecraft window is the active with focus. Also clears any GUI screen currently displayed +func_71382_s,isGuiEnabled,0, +func_71383_b,updateDebugProfilerName,0,Update debugProfilerName in response to number keys in debug screen +func_71384_a,startGame,0,"Starts the game: initializes the canvas, the title, the settings, etcetera." +func_71385_j,displayInGameMenu,0,Displays the ingame menu +func_71386_F,getSystemTime,0,Gets the system time in milliseconds. +func_71387_A,isIntegratedServerRunning,0, +func_71389_H,startTimerHackThread,0, +func_71396_d,addGraphicsAndWorldToCrashReport,0,"adds core server Info (GL version , Texture pack, isModded, type), and the worldInfo to the crash report" +func_71398_f,freeMemory,0, +func_71400_g,shutdown,0,Called when the window is closing. Sets 'running' to false which allows the game loop to exit cleanly. +func_71401_C,getIntegratedServer,0,Returns the currently running integrated server +func_71403_a,loadWorld,0,unloads the current world first +func_71404_a,crashed,0, +func_71405_e,shutdownMinecraftApplet,0,"Shuts down the minecraft applet by stopping the resource downloads, and clearing up GL stuff; called when the application (or web page) is exited." +func_71407_l,runTick,0,Runs the current tick. +func_71410_x,getMinecraft,0,Return the singleton Minecraft instance for the game +func_71411_J,runGameLoop,0,Called repeatedly from run() +func_71497_f,getFile,0,Gets the file this crash report is saved into. +func_71498_d,getCauseStackTraceOrString,2,"Gets the stack trace of the Throwable that caused this crash report, or if that fails, the cause .toString()." +func_71499_a,addCrashSectionThrowable,2,Adds a Crashreport section with the given name with the given Throwable +func_71500_a,addCrashSectionCallable,2,Adds a Crashreport section with the given name with the value set to the result of the given Callable; +func_71501_a,getDescription,2,Returns the description of the Crash Report. +func_71502_e,getCompleteReport,2,"Gets the complete report with headers, stack trace, and different sections as a string." +func_71503_h,getWittyComment,2,Gets a random witty comment for inclusion in this CrashReport +func_71504_g,populateEnvironment,2,Populates this crash report with initial information about the running server and operating system / java environment +func_71505_b,getCrashCause,2,Returns the Throwable object that is the cause for the crash and Crash Report. +func_71506_a,getSectionsInStringBuilder,2,Gets the various sections of the crash report into the given StringBuilder +func_71507_a,addCrashSection,2,Adds a Crashreport section with the given name with the given value (convered .toString()) +func_71514_a,getCommandAliases,2,Get a list of aliases for this command. <b>Never return null!</b> +func_71515_b,processCommand,2,Callback when the command is invoked +func_71517_b,getCommandName,2,Gets the name of the command +func_71518_a,getCommandUsage,2,Gets the usage string for the command. +func_71519_b,canCommandSenderUseCommand,2,Returns true if the given command sender is allowed to use this command. +func_71521_c,getCommandSenderAsPlayer,2,Returns the given ICommandSender as a EntityPlayer or throw an exception. +func_71523_a,doesStringStartWith,2,Returns true if the given substring is exactly equal to the start of the given string (case insensitive). +func_71527_a,joinNiceString,2,"Creates a linguistic series joining the input objects together. Examples: 1) {} --> """", 2) {""Steve""} --> ""Steve"", 3) {""Steve"", ""Phil""} --> ""Steve and Phil"", 4) {""Steve"", ""Phil"", ""Mark""} --> ""Steve, Phil and Mark""" +func_71529_a,setAdminCommander,2,Sets the static IAdminCommander. +func_71530_a,getListOfStringsMatchingLastWord,2,Returns a List of strings (chosen from the given strings) which the last word in the given string array is a beginning-match for. (Tab completion). +func_71534_d,getSortedPossibleCommands,2,Returns a sorted list of all possible commands for the given ICommandSender. +func_71535_c,getCommands,2, +func_71536_c,getPlayers,2, +func_71538_c,getListOfPlayerUsernames,2,Returns String array containing all player usernames in the server. +func_71539_b,getGameModeFromCommand,2,Gets the Game Mode specified in the command. +func_71541_a,setGameType,2, +func_71542_c,getAllUsernames,2, +func_71552_a,setTime,2,Set the time in the server object. +func_71553_b,addTime,2,Adds (or removes) time in the server object. +func_71554_c,toggleDownfall,2,Toggle rain and enable thundering. +func_71555_a,getCommands,2,Get a Map of all the name to command pairs stored in this command manager. +func_71556_a,executeCommand,2,"Attempt to execute a command. This method should return the number of times that the command was executed. If the command does not exist or if the player does not have permission, 0 will be returned. A number greater than 1 can be returned if a player selector is used.\n \n@param sender The person who executed the command. This could be an EntityPlayer, RCon Source, Command Block, etc.\n@param rawCommand The raw arguments that were passed. This includes the command name." +func_71557_a,getPossibleCommands,2,Get a list of commands that the given command sender has access to execute.\n \n@param sender The command sender +func_71559_a,dropFirstString,2,creates a new array and sets elements 0..n-2 to be 0..n-1 of the input (n elements) +func_71560_a,registerCommand,2,adds the command and any aliases it has to the internal map of available commands +func_71565_a,filterAllowedCharacters,2,Filter string by only keeping those characters for which isAllowedCharacter() returns true. +func_71566_a,isAllowedCharacter,2, +func_71575_a,getCrashReport,2,Gets the CrashReport wrapped by this exception. +func_72314_b,expand,2,"Returns a bounding box expanded by the specified vector (if negative numbers are given it will shrink). Args: x, y, z" +func_72315_c,isVecInXZ,2,Checks if the specified vector is within the XZ dimensions of the bounding box. Args: Vec3D +func_72316_a,calculateXOffset,2,"if instance and the argument bounding boxes overlap in the Y and Z dimensions, calculate the offset between them in the X dimension. return var2 if the bounding boxes do not overlap or if var2 is closer to 0 then the calculated offset. Otherwise return the calculated offset." +func_72317_d,offset,2,"Offsets the current bounding box by the specified coordinates. Args: x, y, z" +func_72318_a,isVecInside,2,Returns if the supplied Vec3D is completely inside the bounding box +func_72319_d,isVecInXY,2,Checks if the specified vector is within the XY dimensions of the bounding box. Args: Vec3D +func_72320_b,getAverageEdgeLength,2,Returns the average length of the edges of the bounding box. +func_72321_a,addCoord,2,"Adds the coordinates to the bounding box extending it if the point lies outside the current ranges. Args: x, y, z" +func_72322_c,calculateZOffset,2,"if instance and the argument bounding boxes overlap in the Y and X dimensions, calculate the offset between them in the Z dimension. return var2 if the bounding boxes do not overlap or if var2 is closer to 0 then the calculated offset. Otherwise return the calculated offset." +func_72323_b,calculateYOffset,2,"if instance and the argument bounding boxes overlap in the X and Z dimensions, calculate the offset between them in the Y dimension. return var2 if the bounding boxes do not overlap or if var2 is closer to 0 then the calculated offset. Otherwise return the calculated offset." +func_72326_a,intersectsWith,2,Returns whether the given bounding box intersects with this one. Args: axisAlignedBB +func_72327_a,calculateIntercept,2, +func_72331_e,contract,2,Returns a bounding box that is inset by the specified amounts +func_72333_b,isVecInYZ,2,Checks if the specified vector is within the YZ dimensions of the bounding box. Args: Vec3D +func_72352_l,getMaxPlayers,2,Returns the maximum number of players allowed on the server. +func_72354_b,updateTimeAndWeatherForPlayer,2,Updates the time and weather for the given player to those of the given world +func_72355_a,initializeConnectionToPlayer,2, +func_72356_a,transferPlayerToDimension,2,moves provided player from overworld to nether or vice versa +func_72358_d,serverUpdateMountedMovingPlayer,2,"using player's dimension, update their movement when in a vehicle (e.g. cart, boat)" +func_72362_j,loadWhiteList,2,"Either does nothing, or calls readWhiteList." +func_72363_f,getBannedIPs,2, +func_72364_a,setPlayerManager,2,Sets the NBT manager to the one for the WorldServer given. +func_72365_p,getServerInstance,2, +func_72367_e,playerLoggedOut,2,Called when a player disconnects from the game. Writes player data to disk and removes them from the world. +func_72368_a,recreatePlayerEntity,2,Called on respawn +func_72369_d,getAllUsernames,2,Returns an array of the usernames of all the connected players. +func_72371_a,setWhiteListEnabled,2, +func_72372_a,getEntityViewDistance,2, +func_72373_m,getAvailablePlayerDat,2,Returns an array of usernames for which player.dat exists for. +func_72374_b,onTick,2,self explanitory +func_72375_a,preparePlayer,2, +func_72377_c,playerLoggedIn,2,Called when a player successfully logs in. Reads player data from disk and inserts the player into the world. +func_72378_q,getHostPlayerData,2,"On integrated servers, returns the host's player data to be written to level.dat." +func_72380_a,readPlayerDataFromFile,2,called during player login. reads the player information from disk. +func_72381_a,setPlayerGameTypeBasedOnOther,2, +func_72382_j,getPlayersMatchingAddress,2, +func_72383_n,isWhiteListEnabled,1, +func_72385_f,syncPlayerInventory,2,sends the players inventory to himself +func_72387_b,setCommandsAllowedForAll,0,Sets whether all players are allowed to use commands (cheats) on the server. +func_72389_g,saveAllPlayerData,2,Saves all of the players' current states. +func_72391_b,writePlayerData,2,also stores the NBTTags if this is an intergratedPlayerList +func_72392_r,removeAllPlayers,2,"Kicks everyone with ""Server closed"" as reason." +func_72394_k,getCurrentPlayerCount,2,Returns the number of players currently on the server. +func_72395_o,getViewDistance,2,Gets the View Distance. +func_72417_t,loadOpsList,1, +func_72418_v,readWhiteList,1, +func_72419_u,saveOpsList,1, +func_72421_w,saveWhiteList,1, +func_72429_b,getIntermediateWithXValue,2,"Returns a new vector with x value equal to the second parameter, along the line between this vector and the passed in vector, or null if not possible." +func_72430_b,dotProduct,2, +func_72431_c,crossProduct,0,Returns a new vector with the result of this vector x the specified vector. +func_72432_b,normalize,2,Normalizes the vector to a length of 1 (except if it is the zero vector) +func_72433_c,lengthVector,2,Returns the length of the vector. +func_72434_d,getIntermediateWithZValue,2,"Returns a new vector with z value equal to the second parameter, along the line between this vector and the passed in vector, or null if not possible." +func_72435_c,getIntermediateWithYValue,2,"Returns a new vector with y value equal to the second parameter, along the line between this vector and the passed in vector, or null if not possible." +func_72436_e,squareDistanceTo,2,The square of the Euclidean distance between this and the specified vector. +func_72438_d,distanceTo,0,"Euclidean distance between this and the specified vector, returned as double." +func_72441_c,addVector,2,"Adds the specified x,y,z vector components to this vector and returns the resulting vector. Does not change this vector." +func_72444_a,subtractReverse,0,Returns a new vector with the result of the specified vector minus this. +func_72591_c,getRequestId,1,Returns the request ID provided by the client. +func_72592_a,getRandomChallenge,1,Returns the random challenge number assigned to this auth +func_72593_a,hasExpired,1,"Returns true if the auth's creation timestamp is less than the given time, otherwise false" +func_72594_b,getChallengeValue,1,Returns the auth challenge value +func_72601_a,registerSocket,1,Registers a DatagramSocket with this thread +func_72602_a,startThread,1,Creates a new Thread object from this class and starts running +func_72603_d,getNumberOfPlayers,1,Returns the number of players on the server +func_72604_a,closeSocket,1,Closes the specified DatagramSocket +func_72605_a,closeServerSocket_do,1,Closes the specified ServerSocket +func_72606_c,logWarning,1,Log warning message +func_72607_a,logDebug,1,Log debug message +func_72608_b,closeServerSocket,1,Closes the specified ServerSocket +func_72609_b,logInfo,1,Log information message +func_72610_d,logSevere,1,Log severe error message +func_72611_e,closeAllSockets,1,Closes all of the opened sockets +func_72612_a,closeAllSockets_do,1,Closes all of the opened sockets +func_72613_c,isRunning,1,"Returns true if the Thread is running, false otherwise" +func_72620_a,sendResponsePacket,1,Sends a byte array as a DatagramPacket response to the client who sent the given DatagramPacket +func_72621_a,parseIncomingPacket,1,"Parses an incoming DatagramPacket, returning true if the packet was valid" +func_72622_d,sendAuthChallenge,1,Sends an auth challenge DatagramPacket to the client and adds the client to the queryClients map +func_72623_a,stopWithException,1,Stops the query server and reports the given Exception +func_72624_b,createQueryResponse,1,Creates a query response as a byte array for the specified query DatagramPacket +func_72625_a,getRequestID,1,Returns the request ID provided by the authorized client +func_72626_g,initQuerySystem,1,Initializes the query system by binding it to a port +func_72627_c,verifyClientAuth,1,"Returns true if the client has a valid auth, otherwise false" +func_72628_f,cleanQueryClientsMap,1,Removes all clients whose auth is no longer valid +func_72645_g,cleanClientThreadsMap,1,Cleans up the clientThreads map by removing client Threads that are not running +func_72646_f,initClientThreadList,1, +func_72653_g,closeSocket,1,Closes the client socket +func_72654_a,sendResponse,1,Sends the given response message to the client +func_72655_a,sendMultipacketResponse,1,Splits the response message into individual packets and sends each one +func_72656_f,sendLoginFailedResponse,1,Sends the standard RCon 'authorization failed' response packet +func_72661_a,getBytesAsString,1,Read a null-terminated string from the given byte array +func_72662_b,getRemainingBytesAsLEInt,1,Read 4 bytes from the +func_72663_a,getByteAsHexString,1,Returns a String representation of the byte in hexadecimal format +func_72664_c,getBytesAsBEint,1,Read 4 bytes from the given array in big-endian format and return them as an int +func_72665_b,getBytesAsLEInt,1,Read 4 bytes from the given array in little-endian format and return them as an int +func_72667_a,writeInt,1,Writes the given int to the output stream +func_72668_a,writeShort,1,Writes the given short to the output stream +func_72669_b,reset,1,Resets the byte array output. +func_72670_a,writeByteArray,1,Writes the given byte array to the output stream +func_72671_a,writeString,1,Writes the given String to the output stream +func_72672_a,toByteArray,1,Returns the contents of the output stream as a byte array +func_72683_a,addPlayer,2,Adds an EntityPlayerMP to the PlayerManager and to all player instances within player visibility +func_72684_a,overlaps,2,"Determine if two rectangles centered at the given points overlap for the provided radius. Arguments: x1, z1, x2, z2, radius." +func_72685_d,updateMountedMovingPlayer,2,"update chunks around a player being moved by server logic (e.g. cart, boat)" +func_72686_a,getFurthestViewableBlock,2,Get the furthest viewable block given player's view distance +func_72688_a,getWorldServer,2,Returns the WorldServer associated with this PlayerManager +func_72690_a,getPlayerInstance,2,passi n the chunk x and y and a flag as to whether or not the instance should be made if it doesnt exist +func_72691_b,filterChunkLoadQueue,2,Removes all chunks from the given player's chunk load queue that are not in viewing range of the player. +func_72693_b,updatePlayerInstances,2,updates all the player instances that need to be updated +func_72694_a,isPlayerWatchingChunk,2, +func_72695_c,removePlayer,2,Removes an EntityPlayerMP from the PlayerManager. +func_72703_a,onEntityAdded,2,"Called on all IWorldAccesses when an entity is created or loaded. On client worlds, starts downloading any necessary textures. On server worlds, adds the entity to the entity tracker." +func_72704_a,playSound,2,"Plays the specified sound. Arg: soundName, x, y, z, volume, pitch" +func_72709_b,onEntityRemoved,2,"Called on all IWorldAccesses when an entity is unloaded or destroyed. On client worlds, releases any downloaded textures. On server worlds, removes the entity from the entity tracker." +func_72712_a,loadRenderers,0,Loads all the renderers and sets up the basic settings usage +func_72720_a,createBindEntityOutlineFbs,0, +func_72721_a,hasCloudFog,0,Checks if the given position is to be rendered with cloud fog +func_72723_d,getDebugInfoEntities,0,Gets the entities info for use on the Debug screen +func_72725_b,markBlocksForUpdate,0,Marks the blocks in the given range for update +func_72728_f,deleteAllDisplayLists,0,Deletes all display lists +func_72731_b,drawSelectionBox,0,"Draws the selection box for the player. Args: entityPlayer, rayTraceHit, i, itemStack, partialTickTime\n \n@param execute If equals to 0 the method is executed" +func_72732_a,setWorldAndLoadRenderers,0,set null to clear +func_72734_e,updateClouds,0, +func_72735_c,getDebugInfoRenders,0,Gets the render info for use on the Debug screen +func_72785_a,addEntityToTracker,2,"Args : Entity, trackingRange, updateFrequency, sendVelocityUpdates" +func_72786_a,trackEntity,2, +func_72787_a,removePlayerFromTrackers,2, +func_72788_a,updateTrackedEntities,2, +func_72790_b,untrackEntity,2, +func_72791_a,trackEntity,2, +func_72800_K,getHeight,2,Returns maximum world height. +func_72806_N,extendedLevelsInChunkCache,0,set by !chunk.getAreLevelsEmpty +func_72819_i,getThunderStrength,2, +func_72820_D,getWorldTime,2, +func_72823_a,setItemData,2,"Assigns the given String id to the given MapDataBase using the MapStorage, removing any existing ones of the same id." +func_72824_f,getCloudColour,0, +func_72826_c,getCelestialAngle,2,calls calculateCelestialAngle +func_72827_u,getProviderName,0,"Returns the name of the current chunk provider, by calling chunkprovider.makeString()" +func_72829_c,checkBlockCollision,2,Returns true if there are any blocks in the region constrained by an AxisAlignedBB +func_72830_b,isAABBInMaterial,2,checks if the given AABB is in the material given. Used while swimming. +func_72833_a,getSkyColor,0,Calculates the color for the skybox +func_72835_b,tick,2,Runs a single tick for the world +func_72838_d,spawnEntityInWorld,2,Called when an entity is spawned in the world. This includes players. +func_72839_b,getEntitiesWithinAABBExcludingEntity,2,"Will get all entities within the specified AABB excluding the one passed into it. Args: entityToExclude, aabb" +func_72841_b,getUniqueDataId,2,Returns an unique new data id from the MapStorage for the given prefix and saves the idCounts map to the 'idcounts' file. +func_72842_a,getBlockDensity,2,"Gets the percentage of real blocks within within a bounding box, along a specified vector." +func_72843_D,setRandomSeed,2,puts the World Random seed to a specific state dependant on the inputs +func_72847_b,onEntityRemoved,2, +func_72848_b,removeWorldAccess,0,Removes a worldAccess from the worldAccesses object +func_72853_d,getMoonPhase,0, +func_72854_c,updateAllPlayersSleepingFlag,2,Updates the flag that indicates whether or not all players in the world are sleeping. +func_72855_b,checkNoEntityCollision,2,"Returns true if there are no solid, live entities in the specified AxisAlignedBB" +func_72857_a,findNearestEntityWithinAABB,2, +func_72860_G,getSaveHandler,2,Returns this world's current save handler +func_72863_F,getChunkProvider,2,gets the world's chunk provider +func_72866_a,updateEntityWithOptionalForce,2,"Will update the entity in the world if the chunk the entity is in is currently loaded or its forced to update. Args: entity, forceUpdate" +func_72867_j,getRainStrength,2,Returns rain strength. +func_72870_g,updateEntity,2,Will update the entity in the world if the chunk the entity is in is currently loaded. Args: entity +func_72872_a,getEntitiesWithinAABB,2,"Returns all entities of the specified class type which intersect with the AABB. Args: entityClass, aabb" +func_72875_a,isMaterialInBB,2,Returns true if the given bounding box contains the given material +func_72876_a,createExplosion,2,"Creates an explosion. Args: entity, x, y, z, strength" +func_72877_b,setWorldTime,2,Sets the world time. +func_72880_h,getStarBrightness,0,How bright are stars in the sky +func_72882_A,sendQuittingDisconnectingPacket,0,"If on MP, sends a quitting packet." +func_72885_a,newExplosion,2,returns a new explosion. Does initiation (at time of writing Explosion is not finished) +func_72890_a,getClosestPlayerToEntity,2,"Gets the closest player to the entity within the specified distance (if distance is less than 0 then ignored). Args: entity, dist" +func_72891_a,setAllowedSpawnTypes,2,first boolean for hostile mobs and second for peaceful mobs +func_72894_k,setRainStrength,0,Sets the strength of the rain. +func_72896_J,isRaining,2,Returns true if the current rain strength is greater than 0.2 +func_72897_h,joinEntityInSurroundings,0,spwans an entity and loads surrounding chunks +func_72900_e,removeEntity,2,Schedule the entity for removal during the next tick. Marks the entity dead in anticipation. +func_72901_a,rayTraceBlocks,2, +func_72903_x,setActivePlayerChunksAndCheckLight,2, +func_72905_C,getSeed,2,gets the random world seed +func_72906_B,checkSessionLock,2,Checks whether the session lock file was modified by another process +func_72907_a,countEntities,2,Counts how many entities of an entity class exist in the world. Args: entityClass +func_72908_a,playSoundEffect,2,"Play a sound effect. Many many parameters for this function. Not sure what they do, but a classic call is : (double)i + 0.5D, (double)j + 0.5D, (double)k + 0.5D, 'random.door_open', 1.0F, world.rand.nextFloat() * 0.1F + 0.9F with i,j,k position of the block." +func_72910_y,getLoadedEntityList,0,Accessor for world Loaded Entity List +func_72911_I,isThundering,2,Returns true if the current thunder strength (weighted with the rain strength) is greater than 0.9 +func_72912_H,getWorldInfo,2,Returns the world's WorldInfo object +func_72914_a,addWorldInfoToCrashReport,2,Adds some basic stats of the world to the given crash report. +func_72916_c,isSpawnChunk,2,Returns true if the chunk is located near the spawn point +func_72917_a,checkNoEntityCollision,2,"Returns true if there are no solid, live entities in the specified AxisAlignedBB, excluding the given entity" +func_72918_a,handleMaterialAcceleration,2,handles the acceleration of an object whilst in water. Not sure if it is used elsewhere. +func_72919_O,getHorizon,0,Returns horizon height for use in rendering the sky. +func_72920_a,getPendingBlockUpdates,2, +func_72923_a,onEntityAdded,2, +func_72924_a,getPlayerEntityByName,2,Find a player by name in this world. +func_72929_e,getCelestialAngleRadians,2,Return getCelestialAngle()*2*PI +func_72933_a,rayTraceBlocks,2,"ray traces all blocks, including non-collideable ones" +func_72935_r,isDaytime,2,Checks whether its daytime by seeing if the light subtracted from the skylight is less than 4 +func_72939_s,updateEntities,2,Updates (and cleans up) entities and tile entities +func_72940_L,getActualHeight,2,Returns current world height. +func_72942_c,addWeatherEffect,2,adds a lightning bolt to the list of lightning bolts in this world. +func_72943_a,loadItemData,2,"Loads an existing MapDataBase corresponding to the given String id from disk using the MapStorage, instantiating the given Class, or returns null if none such file exists. args: Class to instantiate, String dataid" +func_72945_a,getCollidingBoundingBoxes,2,"Returns a list of bounding boxes that collide with aabb excluding the passed in entity's collision. Args: entity, aabb" +func_72947_a,calculateInitialWeather,2,Called from World constructor to set rainingStrength and thunderingStrength +func_72948_g,getFogColor,0,Returns vector(ish) with R/G/B for fog +func_72953_d,isAnyLiquid,2,Returns if any of the blocks within the aabb are liquids. Args: aabb +func_72954_a,addWorldAccess,2,Adds a IWorldAccess to the list of worldAccesses +func_72955_a,tickUpdates,2,Runs through the list of updates to run and ticks them +func_72956_a,playSoundAtEntity,2,"Plays a sound at the entity's position. Args: entity, sound, volume (relative to 1.0), and frequency (or pitch, also relative to 1.0)." +func_72959_q,getWorldChunkManager,2, +func_72960_a,setEntityState,2,sends a Packet 38 (Entity Status) to all tracked players of that entity +func_72963_a,initialize,2, +func_72964_e,getChunkFromChunkCoords,2,"Returns back a chunk looked up by chunk coordinates Args: x, y" +func_72966_v,calculateInitialSkylight,2,Called on construction of the World class to setup the initial skylight values +func_72967_a,calculateSkylightSubtracted,2,Returns the amount of skylight subtracted for the current time +func_72970_h,createChunkProvider,2,Creates the chunk provider for this world. Called in the constructor. Retrieves provider from worldProvider? +func_72971_b,getSunBrightness,0,"Returns the sun brightness - checks time of day, rain and thunder" +func_72973_f,removePlayerEntityDangerously,2,Do NOT use this method to remove normal entities- use normal removeEntity +func_72974_f,setInitialSpawnLocation,0,"Sets a new spawn location by finding an uncovered block at a random (x,z) location in the chunk." +func_72975_g,markBlocksDirtyVertical,2,marks a vertical line of blocks as dirty +func_72977_a,getClosestPlayer,2,"Gets the closest player to the point within the specified distance (distance can be set to less than 0 to not limit the distance). Args: x, y, z, dist" +func_72979_l,updateWeather,2,Updates all weather states. +func_72980_b,playSound,2,"par8 is loudness, all pars passed to minecraftInstance.sndManager.playSound" +func_72981_t,getDebugLoadedEntities,0,This string is 'All: (number of loaded entities)' Viewable by press ing F3 +func_73022_a,removeAllEntities,0,also releases skins. +func_73025_a,doPreChunk,0, +func_73027_a,addEntityToWorld,0,Add an ID to Entity mapping to entityHashSet\n \n@param entityID The ID to give to the entity to spawn\n@param entityToSpawn The Entity to spawn in the World +func_73028_b,removeEntityFromWorld,0, +func_73029_E,doVoidFogParticles,0, +func_73031_a,invalidateBlockReceiveRegion,0,"Invalidates an AABB region of blocks from the receive queue, in the event that the block has been modified client-side in the intervening 80 receive ticks.\n \n@param x1 X position of the block where the region begin\n@param y1 Y position of the block where the region begin\n@param z1 Z position of the block where the region begin\n@param x2 X position of the block where the region end\n@param y2 Y position of the block where the region end\n@param z2 Z position of the block where the region end" +func_73039_n,getEntityTracker,2,Gets the EntityTracker +func_73040_p,getPlayerManager,2, +func_73041_k,flush,2,Syncs all changes to disk and wait for completion. +func_73042_a,saveLevel,2,Saves the chunks to disk. +func_73044_a,saveAllChunks,2,Saves all chunks to disk while updating progress bar. +func_73045_a,getEntityByID,2,"Returns the Entity with the given ID, or null if it doesn't exist in this World." +func_73046_m,getMinecraftServer,2, +func_73047_i,createBonusChest,2,Creates the bonus chest in the world. +func_73051_P,resetRainAndThunder,2, +func_73052_b,createSpawnPosition,2,"creates a spawn position at random within 256 blocks of 0,0" +func_73053_d,wakeAllPlayers,2, +func_73056_e,areAllPlayersAsleep,2, +func_73075_a,updateBlockRemoving,2, +func_73076_a,setGameType,2, +func_73077_b,initializeGameType,2,if the gameType is currently NOT_SET then change it to par1 +func_73080_a,setWorld,2,Sets the world instance. +func_73081_b,getGameType,2, +func_73083_d,isCreative,2,Get if we are in creative game mode. +func_73085_a,tryUseItem,2,Attempts to right-click use an item by the given EntityPlayer in the given World +func_73101_e,sendDemoReminder,2,Sends a message to the player reminding them that this is the demo version +func_73106_e,getPartialBlockDamage,0, +func_73107_a,setPartialBlockDamage,0,"inserts damage value into this partially destroyed Block. -1 causes client renderer to delete it, otherwise ranges from 1 to 10" +func_73117_b,updatePlayerEntity,2, +func_73118_a,removeFromTrackedPlayers,2, +func_73119_a,sendDestroyEntityPacketToTrackedPlayers,2, +func_73121_d,isPlayerWatchingThisChunk,2, +func_73122_a,updatePlayerList,2, +func_73123_c,removeTrackedPlayerSymmetric,2,Remove a tracked player from our list and tell the tracked player to destroy us from their world. +func_73125_b,updatePlayerEntities,2, +func_73148_d,makeString,2,Converts the instance data to a readable string. +func_73149_a,chunkExists,2,"Checks to see if a chunk exists at x, z" +func_73151_a,saveChunks,2,"Two modes of operation: if passed true, save all Chunks in one go. If passed false, save up to two chunks. Return true if all chunks have been saved." +func_73152_e,getLoadedChunkCount,2, +func_73153_a,populate,2,Populates chunk with ores etc etc +func_73154_d,provideChunk,2,"Will return back a chunk, if it doesn't exist and its not a MP client it will generates all the blocks for the specified chunk from the map seed and chunk seed" +func_73156_b,unloadQueuedChunks,2,Unloads chunks that are marked to be unloaded. This is not guaranteed to unload every such chunk. +func_73157_c,canSave,2,Returns if the IChunkProvider supports saving. +func_73158_c,loadChunk,2,loads or generates the chunk at the chunk location specified\n \n@param chunkX x coord of the chunk to load (block coord >> 4)\n@param chunkZ z coord of the chunk to load (block coord >> 4) +func_73164_a,initializeNoiseField,2,"generates a subset of the level's terrain data. Takes 7 arguments: the [empty] noise array, the position, and the size." +func_73187_a,initializeNoiseField,2,"generates a subset of the level's terrain data. Takes 7 arguments: the [empty] noise array, the position, and the size." +func_73234_b,unloadChunk,0,Unload chunk from ChunkProviderClient's hashmap. Called in response to a Packet50PreChunk with its mode field set to false +func_73239_e,loadChunkFromFile,2, +func_73240_a,unloadAllChunks,2,"marks all chunks for unload, ignoring those near the spawn" +func_73241_b,dropChunk,2, +func_73242_b,saveChunkData,2, +func_73243_a,saveChunkExtraData,2, +func_73252_b,removePlayer,2, +func_73254_a,onUpdate,2, +func_73255_a,addPlayer,2, +func_73660_a,update,2,"Like the old updateEntity(), except more generic." +func_73665_c,getPropertiesFile,1,Returns this PropertyManager's file object used for property saving. +func_73666_a,generateNewProperties,1,Generates a new properties file. +func_73667_a,setProperty,1,Saves an Object with the given property name. +func_73668_b,saveProperties,1,Writes the properties to the properties file. +func_73669_a,getIntProperty,1,"Gets an integer property. If it does not exist, set it to the specified value." +func_73670_a,getBooleanProperty,1,"Gets a boolean property. If it does not exist, set it to the specified value." +func_73671_a,getStringProperty,1,Returns a string property. If the property doesn't exist the default is returned. +func_73680_d,getBanEndDate,2, +func_73682_e,hasBanExpired,2, +func_73686_f,getBanReason,2, +func_73718_a,setLoadingProgress,2,Updates the progress bar on the loading screen to the specified amount. Args: loadProgress +func_73719_c,displayLoadingString,2,Displays a string on the loading screen supposed to indicate what is being done currently. +func_73720_a,displaySavingString,2,Shows the 'Saving level' string. +func_73721_b,resetProgressAndMessage,0,"this string, followed by ""working..."" and then the ""% complete"" are the 3 lines shown. This resets progress to 0, and the WorkingString to ""working...""." +func_73722_d,displayString,0, +func_73728_b,drawVerticalLine,0,"Draw a 1 pixel wide vertical line. Args : x, y1, y2, color" +func_73729_b,drawTexturedModalRect,0,"Draws a textured rectangle at the stored z-value. Args: x, y, u, v, width, height" +func_73730_a,drawHorizontalLine,0,"Draw a 1 pixel wide horizontal line. Args: x1, x2, y, color" +func_73731_b,drawString,0,"Renders the specified text to the screen. Args : renderer, string, x, y, color" +func_73732_a,drawCenteredString,0,"Renders the specified text to the screen, center-aligned. Args : renderer, string, x, y, color" +func_73733_a,drawGradientRect,0,"Draws a rectangle with a vertical gradient between the specified colors (ARGB format). Args : x1, y1, x2, y2, topColor, bottomColor" +func_73734_a,drawRect,0,"Draws a solid color rectangle with the specified coordinates and color (ARGB format). Args: x1, y1, x2, y2, color" +func_73828_d,renderBossHealth,0,Renders dragon's (boss) health on the HUD +func_73831_a,updateTick,0,The update tick for the ingame UI +func_73833_a,setRecordPlayingMessage,0, +func_73834_c,getUpdateCounter,0, +func_73863_a,drawScreen,0,"Draws the screen and all the components in it. Args : mouseX, mouseY, renderPartialTicks" +func_73864_a,mouseClicked,0,"Called when the mouse is clicked. Args : mouseX, mouseY, clickedButton" +func_73866_w_,initGui,0,"Adds the buttons (and other controls) to the screen in question. Called when the GUI is displayed and when the window resizes, the buttonList is cleared beforehand." +func_73868_f,doesGuiPauseGame,0,Returns true if this GUI should pause the game when it is displayed in single-player +func_73869_a,keyTyped,0,"Fired when a key is typed (except F11 which toggles full screen). This is the equivalent of KeyListener.keyTyped(KeyEvent e). Args : character (character on the key), keyCode (lwjgl Keyboard key code)" +func_73876_c,updateScreen,0,Called from the main game loop to update the screen. +func_73878_a,confirmClicked,0, +func_73968_a,rotateAndBlurSkybox,0,Rotate and blurs the skybox view in the main menu +func_73969_a,addSingleplayerMultiplayerButtons,0,Adds Singleplayer and Multiplayer buttons on Main Menu for players who have bought the game. +func_73970_b,drawPanorama,0,Draws the main menu panorama +func_73971_c,renderSkybox,0,Renders the skybox in the main menu +func_73972_b,addDemoButtons,0,Adds Demo buttons on Main Menu for players who are playing Demo. +func_74275_a,updateTimer,0,Updates all fields of the Timer using the current time +func_74290_a,getTimestampedPNGFileForDirectory,0,"Creates a unique PNG file in the given directory named by a timestamp. Handles cases where the timestamp alone is not enough to create a uniquely named file, though it still might suffer from an unlikely race condition where the filename was unique when this method was called, but another process or thread created a file at the same path immediately after this method returned." +func_74296_a,getOptionFloatValue,0, +func_74297_c,getKeyBinding,0,Gets a key binding.\n \n@param settingOption The KeyBinding is generated from this option +func_74298_c,getKeyDisplayString,0,Represents a key or mouse button as a string. Args: key\n \n@param key The key to display +func_74299_a,getTranslation,0,"Returns the translation of the given index in the given String array. If the index is smaller than 0 or greater than/equal to the length of the String array, it is changed to 0.\n \n@param strArray The array of string containing the string to translate\n@param index The index in the array of the string to translate" +func_74300_a,loadOptions,0,Loads the options from the options file. It appears that this has replaced the previous 'loadOptions' +func_74303_b,saveOptions,0,Saves the options to the options file. +func_74304_a,setOptionFloatValue,0,"If the specified option is controlled by a slider (float value), this will set the float value.\n \n@param settingsOption The option to set to a value\n@param value The value that the option will take" +func_74305_a,parseFloat,0,Parses a string into a float.\n \n@param str The string to parse +func_74306_a,setOptionValue,0,"For non-float options. Toggles the option on/off, or cycles through the list i.e. render distances.\n \n@param settingsOption The option to set to a value\n@param value The value that the option will take" +func_74308_b,getOptionOrdinalValue,0, +func_74372_a,grabMouseCursor,0,Grabs the mouse cursor it doesn't move and isn't seen. +func_74373_b,ungrabMouseCursor,0,Ungrabs the mouse cursor so it can be moved and set it to the center of the screen +func_74374_c,mouseXYChange,0, +func_74378_d,getEnumString,0, +func_74379_a,getEnumOptions,0, +func_74380_a,getEnumFloat,0, +func_74381_c,returnEnumOrdinal,0, +func_74382_b,getEnumBoolean,0, +func_74428_b,processReceivedPackets,2,Checks timeouts and processes all packets received +func_74430_c,getRemoteAddress,2,Returns the socket address of the remote side. Server-only. +func_74505_d,unpressKey,0, +func_74506_a,unPressAllKeys,0, +func_74507_a,onTick,0, +func_74508_b,resetKeyBindingArrayAndHash,0, +func_74510_a,setKeyBindState,0, +func_74517_a,setColorBuffer,0,Update and return colorBuffer with the RGBA values passed as arguments +func_74518_a,disableStandardItemLighting,0,Disables the OpenGL lighting properties enabled by enableStandardItemLighting +func_74519_b,enableStandardItemLighting,0,Sets the OpenGL lighting properties to the values used when rendering blocks as items +func_74520_c,enableGUIStandardItemLighting,0,Sets OpenGL lighting for rendering blocks as items inside GUI screens (such as containers). +func_74521_a,setColorBuffer,0,Update and return colorBuffer with the RGBA values passed as arguments +func_74523_b,deleteDisplayLists,0, +func_74524_c,createDirectByteBuffer,0,Creates and returns a direct byte buffer with the specified capacity. Applies native ordering to speed up access. +func_74526_a,generateDisplayLists,0,Generates the specified number of display lists and returns the first index. +func_74527_f,createDirectIntBuffer,0,Creates and returns a direct int buffer with the specified capacity. Applies native ordering to speed up access. +func_74529_h,createDirectFloatBuffer,0,Creates and returns a direct float buffer with the specified capacity. Applies native ordering to speed up access. +func_74535_a,formatString,0,Formats the strings based on 'IStatStringFormat' interface.\n \n@param str The String to format +func_74539_c,getChatLineID,0, +func_74540_b,getUpdatedCounter,0, +func_74583_a,updateRenderInfo,0,Updates the current render info and camera location based on entity look angles and 1st/3rd person view mode +func_74732_a,getId,2,Gets the type byte for the tag. +func_74734_a,write,2,"Write the actual data contents of the tag, implemented in NBT extension classes" +func_74737_b,copy,2,Creates a clone of the tag. +func_74742_a,appendTag,2,Adds the provided tag to the end of the list. There is no check to verify this tag is of the same type as any previous tag. +func_74744_a,removeTag,2,Removes a tag at the given index. +func_74745_c,tagCount,2,Returns the number of tags in the list. +func_74757_a,setBoolean,2,"Stores the given boolean value as a NBTTagByte, storing 1 for true and 0 for false, using the given string key." +func_74759_k,getIntArray,2,"Retrieves an int array using the specified key, or a zero-length array if no such key was stored." +func_74760_g,getFloat,2,"Retrieves a float value using the specified key, or 0 if no such key was stored." +func_74762_e,getInteger,2,"Retrieves an integer value using the specified key, or 0 if no such key was stored." +func_74763_f,getLong,2,"Retrieves a long value using the specified key, or 0 if no such key was stored." +func_74764_b,hasKey,2,Returns whether the given string has been previously stored as a key in the map. +func_74765_d,getShort,2,"Retrieves a short value using the specified key, or 0 if no such key was stored." +func_74767_n,getBoolean,2,"Retrieves a boolean value using the specified key, or false if no such key was stored. This uses the getByte method." +func_74768_a,setInteger,2,Stores a new NBTTagInt with the given integer value into the map with the given string key. +func_74769_h,getDouble,2,"Retrieves a double value using the specified key, or 0 if no such key was stored." +func_74770_j,getByteArray,2,"Retrieves a byte array using the specified key, or a zero-length array if no such key was stored." +func_74771_c,getByte,2,"Retrieves a byte value using the specified key, or 0 if no such key was stored." +func_74772_a,setLong,2,Stores a new NBTTagLong with the given long value into the map with the given string key. +func_74773_a,setByteArray,2,Stores a new NBTTagByteArray with the given array as data into the map with the given string key. +func_74774_a,setByte,2,Stores a new NBTTagByte with the given byte value into the map with the given string key. +func_74775_l,getCompoundTag,2,"Retrieves a NBTTagCompound subtag matching the specified key, or a new empty NBTTagCompound if no such key was stored." +func_74776_a,setFloat,2,Stores a new NBTTagFloat with the given float value into the map with the given string key. +func_74777_a,setShort,2,Stores a new NBTTagShort with the given short value into the map with the given string key. +func_74778_a,setString,2,Stores a new NBTTagString with the given string value into the map with the given string key. +func_74779_i,getString,2,"Retrieves a string value using the specified key, or an empty string if no such key was stored." +func_74780_a,setDouble,2,Stores a new NBTTagDouble with the given double value into the map with the given string key. +func_74781_a,getTag,2,gets a generic tag with the specified name +func_74782_a,setTag,2,Stores the given tag into the map with the given string key. This is mostly used to store tag lists. +func_74783_a,setIntArray,2,Stores a new NBTTagIntArray with the given array as data into the map with the given string key. +func_74793_a,safeWrite,0, +func_74794_a,read,2,Reads from a CompressedStream. +func_74795_b,write,0, +func_74796_a,readCompressed,2,Load the gzipped compound from the inputstream. +func_74797_a,read,0, +func_74799_a,writeCompressed,2,"Write the compound, gzipped, to the outputstream." +func_74800_a,write,2, +func_74803_a,translateKeyFormat,2,Translate a key to current language applying String.format() +func_74805_b,translateKey,2,Translate a key to current language. +func_74808_a,getInstance,2,Return the StringTranslate singleton instance +func_74837_a,translateToLocalFormatted,2,Translates a Stat name with format args +func_74838_a,translateToLocal,2,Translates a Stat name +func_74844_a,getErrorObjects,2, +func_74860_a,isLiquidInStructureBoundingBox,2,checks the entire StructureBoundingBox for Liquids +func_74861_a,buildComponent,2,"Initiates construction of the Structure Component picked, at the current Location of StructGen" +func_74862_a,getYWithOffset,2, +func_74865_a,getXWithOffset,2, +func_74871_b,clearCurrentPositionBlocksUpwards,2,Deletes all continuous blocks from selected position upwards. Stops at hitting air. +func_74873_b,getZWithOffset,2, +func_74874_b,getBoundingBox,2, +func_74875_a,addComponentParts,2,"second Part of Structure generating, this for example places Spiderwebs, Mob Spawners, it closes Mineshafts at the end, it adds Fences..." +func_74877_c,getComponentType,2,Returns the component type ID of this component. +func_74878_a,fillWithAir,2,"arguments: (World worldObj, StructureBoundingBox structBB, int minX, int minY, int minZ, int maxX, int maxY, int maxZ)" +func_74882_a,fillWithRandomizedBlocks,2,"arguments: World worldObj, StructureBoundingBox structBB, int minX, int minY, int minZ, int maxX, int maxY, int maxZ, boolean alwaysreplace, Random rand, StructurePieceBlockSelector blockselector" +func_74883_a,findIntersecting,2,Discover if bounding box can fit within the current bounding box object. +func_74889_b,getAverageGroundLevel,2,Discover the y coordinate that will serve as the ground level of the supplied BoundingBox. (A median of all the levels in the BB's horizontal rectangle). +func_74891_a,getNextComponentNN,2,"Gets the next village component, with the bounding box shifted -1 in the X and Z direction." +func_74893_a,spawnVillagers,2,"Spawns a number of villagers in this component. Parameters: world, component bounding box, x offset, y offset, z offset, number of villagers" +func_74894_b,getNextComponentPP,2,"Gets the next village component, with the bounding box shifted +1 in the X and Z direction." +func_74895_a,canVillageGoDeeper,2, +func_74925_d,getWorldChunkManager,2, +func_74960_a,getTotalWeight,2, +func_74961_b,getNextComponentX,2,Gets the next component in the +/- X direction +func_74963_a,getNextComponentNormal,2,Gets the next component in any cardinal direction +func_74964_a,isAboveGround,2,Checks if the bounding box's minY is > 10 +func_74965_c,getNextComponentZ,2,Gets the next component in the +/- Z direction +func_74986_a,getNextComponentNormal,2,Gets the next component in any cardinal direction +func_74987_c,getNextComponentZ,2,Gets the next component in the +/- Z direction +func_74988_a,getRandomDoor,2, +func_74989_b,getNextComponentX,2,Gets the next component in the +/- X direction +func_74990_a,placeDoor,2,builds a door of the enumerated types (empty opening is a door) +func_74991_a,canStrongholdGoDeeper,2,returns false if the Structure Bounding Box goes below 10 +func_75047_a,canSpawnStructureAtCoords,2, +func_75049_b,getStructureStart,2, +func_75052_o_,getCoordList,2,"Returns a list of other locations at which the structure generation has been run, or null if not relevant to this structure generator." +func_75059_a,getSpawnList,2, +func_75062_a,selectBlocks,2,picks Block Ids and Metadata (Silverfish) +func_75067_a,markAvailableHeight,2,"offsets the structure Bounding Boxes up to a certain height, typically 63 - 10" +func_75068_a,generateStructure,2,Keeps iterating Structure Pieces and spawning them until the checks tell it to stop +func_75069_d,isSizeableStructure,2,"currently only defined for Villages, returns true if Village has more than 2 non-road components" +func_75070_a,setRandomHeight,2, +func_75071_a,getBoundingBox,2, +func_75072_c,updateBoundingBox,2,Calculates total bounding box based on components' bounding boxes and saves it to boundingBox +func_75073_b,getComponents,2, +func_75084_a,getStructureVillageWeightedPieceList,2, +func_75085_a,canSpawnMoreVillagePiecesOfType,2, +func_75086_a,canSpawnMoreVillagePieces,2, +func_75091_a,writeCapabilitiesToNBT,2, +func_75092_a,setFlySpeed,0, +func_75093_a,getFlySpeed,2, +func_75094_b,getWalkSpeed,2, +func_75095_b,readCapabilitiesFromNBT,2, +func_75112_a,readNBT,2,Reads the food data for the player. +func_75113_a,addExhaustion,2,adds input to foodExhaustionLevel to a max of 40 +func_75114_a,setFoodLevel,2, +func_75115_e,getSaturationLevel,2,Get the player's food saturation level. +func_75116_a,getFoodLevel,2,Get the player's food level. +func_75117_b,writeNBT,2,Writes the food data for the player. +func_75118_a,onUpdate,2,Handles the food game logic. +func_75119_b,setFoodSaturationLevel,0, +func_75120_b,getPrevFoodLevel,0, +func_75121_c,needFood,2,Get whether the player must eat food. +func_75122_a,addStats,2,Add food stats. +func_75128_a,setCanCraft,2,sets whether the player can craft in this inventory or not +func_75129_b,getCanCraft,2,gets whether or not the player can craft in this inventory or not +func_75130_a,onCraftMatrixChanged,2,Callback for when the crafting matrix is changed. +func_75131_a,putStacksInSlots,0,"places itemstacks in first x slots, x being aitemstack.lenght" +func_75132_a,onCraftGuiOpened,2, +func_75133_b,retrySlotClick,2,Retries slotClick() in case of failure +func_75134_a,onContainerClosed,2,Called when the container is closed. +func_75135_a,mergeItemStack,2,"Merges provided ItemStack with the first avaliable one in the container/player inventor between minIndex (included) and maxIndex (excluded). Args : stack, minIndex, maxIndex, negativDirection. /!\ the Container implementation do not check if the item is valid for the slot" +func_75136_a,getNextTransactionID,0,Gets a unique transaction ID. Parameter is unused. +func_75137_b,updateProgressBar,0, +func_75138_a,getInventory,2,"returns a list if itemStacks, for each slot." +func_75139_a,getSlot,2, +func_75140_a,enchantItem,2,"Handles the given Button-click on the server, currently only used by enchanting. Name is for legacy." +func_75141_a,putStackInSlot,2,"args: slotID, itemStack to put in slot" +func_75142_b,detectAndSendChanges,2,"Looks for changes made in the container, sends them to every listener." +func_75144_a,slotClick,2,Handles slot click. +func_75145_c,canInteractWith,2, +func_75146_a,addSlotToContainer,2,Adds an item slot to this container +func_75147_a,getSlotFromInventory,2, +func_75174_d,getMerchantInventory,2, +func_75175_c,setCurrentRecipeIndex,2, +func_75189_a,canSpawnMoreStructuresOfType,2, +func_75190_a,canSpawnMoreStructures,2, +func_75198_a,prepareStructurePieces,2,sets up Arrays with the Structure pieces and their weights +func_75202_c,canAddStructurePieces,2, +func_75208_c,onCrafting,2,"the itemStack passed in is the output - ie, iron ingots, and pickaxes, not ore and wood." +func_75209_a,decrStackSize,2,Decrease the size of the stack in slot (first int arg) by the amount of the second int arg. Returns the new stack. +func_75210_a,onCrafting,2,"the itemStack passed in is the output - ie, iron ingots, and pickaxes, not ore and wood. Typically increases an internal count then calls onCrafting(item)." +func_75211_c,getStack,2,Helper fnct to get the stack in the slot. +func_75214_a,isItemValid,2,Check if the stack is a valid item for this slot. Always true beside for the armor slots. +func_75215_d,putStack,2,Helper method to put a stack in the slot. +func_75216_d,getHasStack,2,Returns if this slot contains a stack. +func_75217_a,isHere,2,returns true if the slot exists in the given inventory and location +func_75218_e,onSlotChanged,2,Called when the stack in a Slot changes +func_75219_a,getSlotStackLimit,2,"Returns the maximum stack size for a given slot (usually the same as getInventoryStackLimit(), but 1 in the case of armor slots)" +func_75220_a,onSlotChange,2,"if par2 has more items than par1, onCrafting(item,countIncrease) is called" +func_75230_a,doTrade,2, +func_75243_a_,canHoldPotion,2,Returns true if this itemstack can be filled with a potion +func_75246_d,updateTask,2,Updates the task +func_75247_h,getMutexBits,2,"Get a bitmask telling which other tasks may not run concurrently. The test is a simple bitwise AND - if it yields zero, the two tasks may run concurrently, if not - they must run exclusively from each other." +func_75248_a,setMutexBits,2,"Sets a bitmask telling which other tasks may not run concurrently. The test is a simple bitwise AND - if it yields zero, the two tasks may run concurrently, if not - they must run exclusively from each other." +func_75249_e,startExecuting,2,Execute a one shot task or start executing a continuous task +func_75250_a,shouldExecute,2,Returns whether the EntityAIBase should begin execution. +func_75251_c,resetTask,2,Resets the task +func_75252_g,isInterruptible,2,Determine if this AI Task is interruptible by a higher (= lower value) priority task. All vanilla AITask have this value set to true. +func_75253_b,continueExecuting,2,Returns whether an in-progress EntityAIBase should continue executing +func_75270_a,setSitting,2,Sets the sitting flag. +func_75277_f,isRunning,2,@see #isRunning +func_75295_a,canEasilyReach,2,Checks to see if this entity can find a short path to the given target.\n \n@param target the entity to find a path to +func_75296_a,isSuitableTarget,2,"A method used to see if an entity is a suitable target through a number of checks. Args : entity, canTargetInvinciblePlayer" +func_75366_f,findPossibleShelter,2, +func_75382_a,hasPlayerGotBoneInHand,2,Gets if the Player has the Bone in the hand. +func_75388_i,spawnBaby,2,Spawns a baby animal of the same type. +func_75389_f,getNearbyMate,2,Loops through nearby animals and finds another animal of the same type that can be mated with. Returns the first valid mate found. +func_75412_a,findNearestDoor,2, +func_75413_a,doesDoorListContain,2, +func_75414_f,resizeDoorList,2, +func_75446_f,checkSufficientDoorsPresentForNewVillager,2, +func_75447_i,giveBirth,2, +func_75461_b,findRandomTargetBlockAwayFrom,2,"finds a random target within par1(x,z) and par2 (y) blocks in the reverse direction of the point par3" +func_75462_c,findRandomTargetBlock,2,"searches 10 blocks at random in a within par1(x,z) and par2 (y) distance, ignores those not in the direction of par3Vec3, then points to the tile for which creature.getBlockPathWeight returns the highest number" +func_75463_a,findRandomTarget,2,"finds a random target within par1(x,z) and par2 (y) blocks" +func_75464_a,findRandomTargetBlockTowards,2,"finds a random target within par1(x,z) and par2 (y) blocks in the direction of the point par3" +func_75466_d,resetDoorOpeningRestrictionCounter,2, +func_75468_f,getDoorOpeningRestrictionCounter,2, +func_75470_e,incrementDoorOpeningRestrictionCounter,2, +func_75473_b,getInsidePosY,2, +func_75474_b,getDistanceSquared,2,Returns the squared distance between this door and the given coordinate. +func_75484_a,setPath,2,"Sets a new path. If it's diferent from the old path. Checks to adjust path for sun avoiding, and stores start coords. Args : path, speed" +func_75485_k,canNavigate,2,If on ground or swimming and can swim +func_75487_m,removeSunnyPath,2,Trims path data from the end to the first sun covered block +func_75488_a,getPathToXYZ,2,"Returns the path to the given coordinates. Args : x, y, z" +func_75489_a,setSpeed,2,Sets the speed +func_75492_a,tryMoveToXYZ,2,"Try to find and set a path to XYZ. Returns true if successful. Args : x, y, z, speed" +func_75493_a,isDirectPathBetweenPoints,2,"Returns true when an entity of specified size could safely walk in a straight line between the two points. Args: pos1, pos2, entityXSize, entityYSize, entityZSize" +func_75494_a,getPathToEntityLiving,2,Returns the path to the given EntityLiving. Args : entity +func_75497_a,tryMoveToEntityLiving,2,"Try to find and set a path to EntityLiving. Returns true if successful. Args : entity, speed" +func_75499_g,clearPathEntity,2,sets active PathEntity to null +func_75500_f,noPath,2,If null path or reached the end +func_75501_e,onUpdateNavigation,2, +func_75502_i,getEntityPosition,2, +func_75505_d,getPath,2,gets the actively used PathEntity +func_75506_l,isInLiquid,2,"Returns true if the entity is in water or lava, false otherwise" +func_75508_h,pathFollow,2, +func_75522_a,canSee,2,"Checks, whether 'our' entity can see the entity given as argument (true) or not (false), caching the result." +func_75523_a,clearSensingCache,2,Clears canSeeCachePositive and canSeeCacheNegative. +func_75528_a,tick,2,Runs a single tick for the village siege +func_75530_c,spawnZombie,2, +func_75540_b,getVillageList,2,Get a list of villages. +func_75543_d,dropOldestVillagerPosition,2, +func_75544_a,tick,2,Runs a single tick for the village collection +func_75545_e,addNewDoorsToVillageOrCreateVillage,2, +func_75549_c,removeAnnihilatedVillages,2, +func_75557_k,removeDeadAndOutOfRangeDoors,2, +func_75558_f,getVillageDoorInfoList,2,called only by class EntityAIMoveThroughVillage +func_75560_a,tick,2,Called periodically by VillageCollection +func_75561_d,getTicksSinceLastDoorAdding,2, +func_75562_e,getNumVillagers,2, +func_75565_j,removeDeadAndOldAgressors,2, +func_75566_g,isAnnihilated,2,"Returns true, if there is not a single village door left. Called by VillageCollection" +func_75567_c,getNumVillageDoors,2,"Actually get num village door info entries, but that boils down to number of doors. Called by EntityAIVillagerMate and VillageSiege" +func_75568_b,getVillageRadius,2, +func_75571_b,findNearestVillageAggressor,2, +func_75572_i,updateNumVillagers,2, +func_75573_l,updateVillageRadiusAndCenter,2, +func_75575_a,addOrRenewAgressor,2, +func_75576_a,addVillageDoorInfo,2, +func_75579_h,updateNumIronGolems,2, +func_75598_a,getCreatureClass,2, +func_75599_d,getPeacefulCreature,2,Gets whether or not this creature type is peaceful. +func_75601_b,getMaxNumberOfCreature,2, +func_75614_a,addMapping,2,Adds a entity mapping with egg info. +func_75615_a,createEntityFromNBT,2,create a new instance of an entity from NBT store +func_75616_a,createEntityByID,2,Create a new instance of an entity in the world by using an entity ID. +func_75617_a,getStringFromID,2,Finds the class using IDtoClassMapping and classToStringMapping +func_75618_a,addMapping,2,adds a mapping between Entity classes and both a string representation and an ID +func_75619_a,getEntityID,2,gets the entityID of a specific entity +func_75620_a,createEntityByName,2,Create a new instance of an entity in the world by using the entity name. +func_75621_b,getEntityString,2,Gets the string representation of a specific entity. +func_75638_b,getSpeed,2, +func_75639_a,limitAngle,2,Limits the given angle to a upper and lower limit. +func_75640_a,isUpdating,2, +func_75641_c,onUpdateMoveHelper,2, +func_75642_a,setMoveTo,2,Sets the speed and location to move to +func_75649_a,onUpdateLook,2,Updates look +func_75650_a,setLookPosition,2,Sets position to look at +func_75651_a,setLookPositionWithEntity,2,Sets position to look at using entity +func_75652_a,updateRotation,2, +func_75660_a,setJumping,2, +func_75661_b,doJump,2,Called to actually make the entity jump if isJumping is true. +func_75664_a,updateRenderAngles,2,Update the Head and Body rendenring angles +func_75665_a,computeAngleWithBound,2,"Return the new angle2 such that the difference between angle1 and angle2 is lower than angleMax. Args : angle1, angle2, angleMax" +func_75669_b,getObject,2, +func_75670_d,isWatched,2, +func_75671_a,setWatched,2, +func_75672_a,getDataValueId,2, +func_75673_a,setObject,2, +func_75674_c,getObjectType,2, +func_75679_c,getWatchableObjectInt,2,gets a watchable object and returns it as a Integer +func_75681_e,getWatchableObjectString,2,gets a watchable object and returns it as a String +func_75682_a,addObject,2,"adds a new object to dataWatcher to watch, to update an already existing object see updateObject. Arguments: data Value Id, Object to add" +func_75683_a,getWatchableObjectByte,2,gets the bytevalue of a watchable object +func_75684_a,hasObjectChanged,2,true if one or more object was changed +func_75685_c,getAllWatched,2, +func_75687_a,updateWatchedObjectsFromList,0, +func_75688_b,getChanged,2, +func_75691_i,getWatchedObject,2,"is threadsafe, unless it throws an exception, then" +func_75692_b,updateObject,2,updates an already existing object +func_75693_b,getWatchableObjectShort,2, +func_75734_a,waitForFinish,2, +func_75735_a,queueIO,2,threaded io +func_75736_b,processQueue,2,Process the items that are in the queue +func_75742_a,loadData,2,"Loads an existing MapDataBase corresponding to the given String id from disk, instantiating the given Class, or returns null if none such file exists. args: Class to instantiate, String dataid" +func_75743_a,getUniqueDataId,2,Returns an unique new data id for the given prefix and saves the idCounts map to the 'idcounts' file. +func_75744_a,saveAllData,2,Saves all dirty loaded MapDataBases to disk. +func_75745_a,setData,2,"Assigns the given String id to the given MapDataBase, removing any existing ones of the same id." +func_75746_b,loadIdCounts,2,Loads the idCounts Map from the 'idcounts' file. +func_75747_a,saveData,2,Saves the given MapDataBase to disk. +func_75752_b,readPlayerData,2,Reads the player data from disk into the specified PlayerEntityMP. +func_75753_a,writePlayerData,2,Writes the player data to disk from the specified PlayerEntityMP. +func_75754_f,getAvailablePlayerDat,2,Returns an array of usernames for which player.dat exists for. +func_75755_a,saveWorldInfoWithPlayer,2,Saves the given World Info with the given NBTTagCompound as the Player. +func_75756_e,getPlayerNBTManager,2, +func_75757_d,loadWorldInfo,2,Loads and returns the world info +func_75758_b,getMapFileFromName,2,Gets the file location of the given map +func_75759_a,flush,2,"Called to flush all changes to disk, waiting for them to complete." +func_75760_g,getWorldDirectoryName,2,Returns the name of the directory where world information is saved. +func_75761_a,saveWorldInfo,2,used to update level.dat from old format to MCRegion format +func_75762_c,checkSessionLock,2,Checks the session lock to prevent save collisions +func_75763_a,getChunkLoader,2,initializes and returns the chunk loader for the specified world provider +func_75765_b,getWorldDirectory,2,Gets the File object corresponding to the base directory of this world. +func_75766_h,setSessionLock,2,Creates a session lock file for this process +func_75773_a,canContinue,2,Determine if a specific AI Task should continue being executed. +func_75774_a,onUpdateTasks,2, +func_75775_b,canUse,2,"Determine if a specific AI Task can be executed, which means that all running higher (= lower int value) priority tasks are compatible with it or all lower priority tasks can be interrupted." +func_75776_a,addTask,2,"Add a now AITask. Args : priority, task" +func_75777_a,areTasksCompatible,2,Returns whether two EntityAITaskEntries can be executed concurrently +func_75783_h,getCheatsEnabled,0,@return {@code true} if cheats are enabled for this world +func_75784_e,getLastTimePlayed,0, +func_75785_d,requiresConversion,0, +func_75786_a,getFileName,0,return the file name +func_75788_b,getDisplayName,0,return the display name of the save +func_75789_g,isHardcoreModeEnabled,0, +func_75790_f,getEnumGameType,0,Gets the EnumGameType. +func_75799_b,getSaveList,0, +func_75800_d,flushCache,2, +func_75801_b,isOldMapFormat,2,gets if the map is old chunk saving (true) or McRegion (false) +func_75802_e,deleteWorldDirectory,2,@args: Takes one argument - the name of the directory of the world to delete. @desc: Delete the world by deleting the associated directory recursively.\n \n@param saveName The current save's name +func_75803_c,getWorldInfo,2,Returns the world's WorldInfo object +func_75804_a,getSaveLoader,2,Returns back a loader for the specified save directory +func_75805_a,convertMapFormat,2,converts the map to mcRegion +func_75806_a,renameWorld,0,Renames the world by storing the new name in level.dat. It does *not* rename the directory containing the world data. +func_75807_a,deleteFiles,2,@args: Takes one argument - the list of files and directories to delete. @desc: Deletes the files and directory listed in the list recursively. +func_75809_f,createFile,2,par: filename for the level.dat_mcr backup +func_75810_a,addRegionFilesToCollection,2,"filters the files in the par1 directory, and adds them to the par2 collections" +func_75811_a,convertChunks,2,"copies a 32x32 chunk set from par2File to par1File, via AnvilConverterData" +func_75812_c,getSaveVersion,2, +func_75813_a,convertFile,2, +func_75814_c,writeNextIO,2,Returns a boolean stating if the write was unsuccessful. +func_75815_a,loadChunk,2,Loads the specified(XZ) chunk into the specified world. +func_75816_a,saveChunk,2, +func_75817_a,chunkTick,2,Called every World.tick() +func_75818_b,saveExtraData,2,"Save extra data not associated with any Chunk. Not saved during autosave, only during world unload. Currently unused." +func_75819_b,saveExtraChunkData,2,"Save extra data associated with this Chunk not normally saved during autosave, only during chunk unload. Currently unused." +func_75820_a,writeChunkToNBT,2,"Writes the Chunk passed as an argument to the NBTTagCompound also passed, using the World argument to retrieve the Chunk's last update time." +func_75822_a,checkedReadChunkFromNBT,2,Wraps readChunkFromNBT. Checks the coordinates and several NBT tags. +func_75823_a,readChunkFromNBT,2,Reads the data stored in the passed NBTTagCompound and creates a Chunk with that data in the passed World. Returns the created Chunk. +func_75824_a,addChunkToPending,2, +func_75829_a,distanceTo,2,Returns the linear distance to another path point +func_75830_a,makeHash,2, +func_75831_a,isAssigned,2,Returns true if this point has already been assigned to a path +func_75832_b,distanceToSquared,2,Returns the squared distance to another path point +func_75843_a,format,0,Formats a given stat for human consumption. +func_75844_c,dequeue,2,Returns and removes the first point in the path +func_75845_e,isPathEmpty,2,Returns true if this path contains no points +func_75846_b,sortForward,2,Sorts a point to the right +func_75847_a,sortBack,2,Sorts a point to the left +func_75848_a,clearPath,2,Clears the path +func_75849_a,addPoint,2,Adds a point to the path +func_75850_a,changeDistance,2,Changes the provided point's distance to target +func_75853_a,createEntityPath,2,Returns a new PathEntity for a given start and end point +func_75870_c,getFinalPathPoint,2,returns the last PathPoint of the Array +func_75871_b,setCurrentPathLength,2, +func_75872_c,setCurrentPathIndex,2, +func_75873_e,getCurrentPathIndex,2, +func_75874_d,getCurrentPathLength,2, +func_75875_a,incrementPathIndex,2,Directs this path to the next point in its array +func_75876_a,isSamePath,2,Returns true if the EntityPath are the same. Non instance related equals. +func_75877_a,getPathPointFromIndex,2,"return the PathPoint located at the specified PathIndex, usually the current one" +func_75878_a,getPosition,2,returns the current PathEntity target node as Vec3D +func_75879_b,isFinished,2,Returns true if this path has reached the end +func_75880_b,isDestinationSame,2,Returns true if the final PathPoint in the PathEntity is equal to Vec3D coords. +func_75881_a,getVectorFromIndex,2,Gets the vector of the PathPoint associated with the given index. +func_75885_a,cipherOperation,2,Encrypt or decrypt byte[] data using the specified key +func_75886_a,createTheCipherInstance,2,Creates the Cipher Instance. +func_75887_a,decryptSharedKey,2,Decrypt shared secret AES key using RSA private key +func_75889_b,decryptData,2,Decrypt byte[] data with RSA private key +func_75890_a,createNewSharedKey,0,Generate a new shared secret AES key from a secure random source +func_75891_b,generateKeyPair,2,Generates RSA KeyPair +func_75893_a,digestOperation,2,Compute a message digest on arbitrary byte[] data +func_75894_a,encryptData,0,Encrypt byte[] data with RSA public key +func_75895_a,getServerIdHash,2,Compute a serverId hash for use by sendSessionRequest() +func_75896_a,decodePublicKey,2,Create a new PublicKey from encoded X.509 data +func_75902_a,nextInt,2,"returns a LCG pseudo random number from [0, x). Args: int x" +func_75903_a,initChunkSeed,2,"Initialize layer's current chunkSeed based on the local worldGenSeed and the (x,z) chunk coordinates." +func_75904_a,getInts,2,"Returns a list of integer values generated by this layer. These may be interpreted as temperatures, rainfall amounts, or biomeList[] indices based on the particular GenLayer subclass." +func_75905_a,initWorldGenSeed,2,Initialize layer's local worldGenSeed based on its own baseSeed and the world's global seed (passed in as an argument). +func_75915_a,magnify,2,"Magnify a layer. Parms are seed adjustment, layer, number of times to magnify" +func_75918_d,initCraftableStats,2,Initializes statistics related to craftable items. Is only called after both block and item stats have been initialized. +func_75924_a,replaceAllSimilarBlocks,2,Forces all dual blocks to count for each other on the stats list +func_75925_c,initStats,2, +func_75966_h,initIndependentStat,2,"Initializes the current stat as independent (i.e., lacking prerequisites for being updated) and returns the current instance." +func_75967_d,isAchievement,2,Returns whether or not the StatBase-derived class is a statistic (running counter) or an achievement (one-shot). +func_75968_a,format,0, +func_75971_g,registerStat,2,Register the stat into StatList. +func_75984_f,getSpecial,2,"Special achievements have a 'spiked' (on normal texture pack) frame, special achievements are the hardest ones to achieve." +func_75987_b,setSpecial,2,"Special achievements have a 'spiked' (on normal texture pack) frame, special achievements are the hardest ones to achieve." +func_75988_a,setStatStringFormatter,0,Defines a string formatter for the achievement.\n \n@param statStringFormatterIn 1.8.9 +func_75989_e,getDescription,0,Returns the fully description of the achievement - ready to be displayed on screen. +func_75997_a,init,2,A stub functions called to make the static initializer for this class run. +func_76030_b,getValue,2,Returns the object stored in this entry +func_76031_a,getHash,2,Returns the hash code for this entry +func_76036_e,removeEntry,2,Removes the specified entry from the map and returns it +func_76037_b,containsItem,2,Returns true if this hash table contains the specified item. +func_76038_a,addKey,2,Adds a key and associated value to this map +func_76040_a,insert,2,Adds an object to a slot +func_76041_a,lookup,2,Returns the object associated to a key +func_76043_a,getSlotIndex,2,Computes the index of the slot for the hash and slot count passed in. +func_76044_g,computeHash,2,Makes the passed in integer suitable for hashing by a number of shifts +func_76045_c,lookupEntry,2,Returns the internal entry for a key +func_76046_c,clearMap,2,Removes all entries from the map +func_76047_h,grow,2,Increases the number of hash slots +func_76048_a,copyTo,2,Copies the hash slots to a new array +func_76049_d,removeObject,2,Removes the specified object from the map and returns it +func_76056_b,setSpawnY,0,Sets the y spawn position +func_76057_l,getLastTimePlayed,0,Return the last time the player was in this world. +func_76058_a,setSpawnX,0,Set the x spawn position to the passed in value +func_76059_o,isRaining,2,"Returns true if it is raining, false otherwise." +func_76060_a,setGameType,2,Sets the GameType. +func_76061_m,isThundering,2,"Returns true if it is thundering, false otherwise." +func_76062_a,setWorldName,2, +func_76063_b,getSeed,2,Returns the seed of current world. +func_76064_a,updateTagCompound,2, +func_76065_j,getWorldName,2,Get current world name +func_76066_a,getNBTTagCompound,2,Gets the NBTTagCompound for the worldInfo +func_76067_t,getTerrainType,2, +func_76068_b,setWorldTime,2,Set current world time +func_76069_a,setThundering,2,Sets whether it is thundering or not. +func_76070_v,isInitialized,2,Returns true if the World is initialized. +func_76071_n,getThunderTime,2,Returns the number of ticks until next thunderbolt. +func_76072_h,getPlayerNBTTagCompound,2,Returns the player's NBTTagCompound to be loaded +func_76073_f,getWorldTime,2,Get current world time +func_76074_e,getSpawnZ,2,Returns the z spawn position +func_76075_d,getSpawnY,2,Return the Y axis spawning point of the player. +func_76077_q,getGameType,2,Gets the GameType. +func_76078_e,setSaveVersion,2,Sets the save version of the world +func_76079_c,getSpawnX,2,Returns the x spawn position +func_76080_g,setRainTime,2,Sets the number of ticks until rain. +func_76082_a,cloneNBTCompound,2,"Creates a new NBTTagCompound for the world, with the given NBTTag as the ""Player""" +func_76083_p,getRainTime,2,Return the number of ticks until rain. +func_76084_b,setRaining,2,Sets whether it is raining or not. +func_76085_a,setTerrainType,2, +func_76086_u,areCommandsAllowed,2,Returns true if commands are allowed on this World. +func_76087_c,setSpawnZ,0,Set the z spawn position to the passed in value +func_76088_k,getSaveVersion,2,Returns the save version of this world +func_76089_r,isMapFeaturesEnabled,2,Get whether the map features (e.g. strongholds) generation is enabled or disabled. +func_76090_f,setThunderTime,2,Defines the number of ticks until next thunderbolt. +func_76091_d,setServerInitialized,2,Sets the initialization status of the World. +func_76092_g,getSizeOnDisk,0, +func_76093_s,isHardcoreModeEnabled,2,"Returns true if hardcore mode is enabled, otherwise false" +func_76123_f,ceiling_float_int,2, +func_76124_d,floor_double_long,2,Long version of floor_double +func_76125_a,clamp_int,2,"Returns the value of the first parameter, clamped to be within the lower and upper limits given by the second and third parameters." +func_76126_a,sin,2,sin looked up in a table +func_76127_a,average,2, +func_76128_c,floor_double,2,Returns the greatest integer less than or equal to the double argument +func_76129_c,sqrt_float,2, +func_76130_a,abs_int,2,Returns the unsigned value of an int. +func_76131_a,clamp_float,2,"Returns the value of the first parameter, clamped to be within the lower and upper limits given by the second and third parameters" +func_76132_a,abs_max,2,Maximum of the absolute value of two numbers. +func_76133_a,sqrt_double,2, +func_76134_b,cos,2,cos looked up in the sin table with the appropriate offset +func_76135_e,abs,2, +func_76136_a,getRandomIntegerInRange,2, +func_76137_a,bucketInt,0,"Buckets an integer with specifed bucket sizes. Args: i, bucketSize" +func_76138_g,wrapAngleTo180_double,2,"the angle is reduced to an angle between -180 and +180 by mod, and a 360 check" +func_76140_b,truncateDoubleToInt,0,"returns par0 cast as an int, and no greater than Integer.MAX_VALUE-1024" +func_76141_d,floor_float,2,Returns the greatest integer less than or equal to the float argument +func_76142_g,wrapAngleTo180_float,2,"the angle is reduced to an angle between -180 and +180 by mod, and a 360 check" +func_76143_f,ceiling_double_int,2, +func_76145_b,getValue,2, +func_76146_a,getKey,2, +func_76152_e,removeKey,2,removes the key from the hash linked list +func_76153_b,resizeTable,2,resizes the table +func_76154_a,copyHashTableTo,2,copies the hash table to the specified array +func_76155_g,getHashedKey,2,returns the hashed key given the original key +func_76156_a,createKey,2,creates the key in the hash table +func_76157_a,hash,2,the hash function +func_76158_a,getHashIndex,2,gets the index in the hash given the array length and the hashed key +func_76159_d,remove,2,calls the removeKey method and returns removed object +func_76160_c,getEntry,2, +func_76161_b,containsItem,2, +func_76162_a,getNumHashElements,2, +func_76163_a,add,2,Add a key-value pair. +func_76164_a,getValueByKey,2,get the value from the map given the key +func_76179_a,buildPostString,2,Builds an encoded HTTP POST content string from a string map +func_76181_a,getSuitableLanPort,0, +func_76184_a,readFromNBT,2,reads in data from the NBTTagCompound into this MapDataBase +func_76185_a,markDirty,2,"Marks this MapDataBase dirty, to be saved to disk when the level next saves." +func_76186_a,setDirty,2,"Sets the dirty state of this MapDataBase, whether it needs saving to disk." +func_76187_b,writeToNBT,2,"write data to NBTTagCompound from this MapDataBase, similar to Entities and TileEntities" +func_76188_b,isDirty,2,Whether this MapDataBase needs saving to disk. +func_76191_a,updateVisiblePlayers,2,Adds the player passed to the list of visible players and checks to see which players are visible +func_76217_h,getCanBurn,2,Returns if the block can burn or not. +func_76218_k,isOpaque,2,Indicate if the material is opaque +func_76219_n,setNoPushMobility,2,"This type of material can't be pushed, but pistons can move over it." +func_76220_a,isSolid,2,Returns true if the block is a considered solid. This is true by default. +func_76221_f,setRequiresTool,2,Makes blocks with this material require the correct tool to be harvested. +func_76222_j,isReplaceable,2,"Returns whether the material can be replaced by other blocks when placed - eg snow, vines and tall grass." +func_76223_p,setTranslucent,2,Marks the material as translucent +func_76224_d,isLiquid,2,Returns if blocks of these materials are liquids. +func_76225_o,setImmovableMobility,2,"This type of material can't be pushed, and pistons are blocked to move." +func_76226_g,setBurning,2,Set the canBurn bool to True and return the current object. +func_76227_m,getMaterialMobility,2,"Returns the mobility information of the material, 0 = free, 1 = can't push but can move over, 2 = total immobility and stop pistons." +func_76228_b,blocksLight,2,Will prevent grass from growing on dirt underneath and kill any grass below it if it returns true +func_76229_l,isToolNotRequired,2,Returns true if the material can be harvested without a tool (or with the wrong tool) +func_76230_c,blocksMovement,2,Returns if this material is considered solid or not +func_76231_i,setReplaceable,2,Sets {@link #replaceable} to true. +func_76271_a,getRandomItem,2,Returns a random choice from the input items. +func_76272_a,getTotalWeight,2,Returns the total weight of all items in a collection. +func_76273_a,getRandomItem,2,"Returns a random choice from the input items, with a total weight value." +func_76304_a,generateNoiseOctaves,2,"pars:(par2,3,4=noiseOffset ; so that adjacent noise segments connect) (pars5,6,7=x,y,zArraySize),(pars8,10,12 = x,y,z noiseScale)" +func_76305_a,generateNoiseOctaves,2,Bouncer function to the main one with some default arguments. +func_76308_a,populateNoiseArray,2,noiseArray should be xSize*ySize*zSize in size +func_76310_a,grad,2, +func_76311_b,lerp,2, +func_76316_a,onInventoryChanged,2,Called by InventoryBasic.onInventoryChanged() on a array that is never filled. +func_76317_a,clearProfiling,2,Clear profiling. +func_76318_c,endStartSection,2,End current section and start a new section +func_76319_b,endSection,2,End section +func_76320_a,startSection,2,Start section +func_76321_b,getProfilingData,2,Get profiling data\n \n@param profilerName The profiler's name +func_76322_c,getNameOfLastSection,2, +func_76329_a,getColor,0,"Return a color to display the profiler, generated from the hash code of the profiler's name" +func_76333_a,smooth,0,Smooths mouse input +func_76337_a,ticksToElapsedTime,0,"Returns the time elapsed for the given number of ticks, in ""mm:ss"" format." +func_76338_a,stripControlCodes,0, +func_76340_b,getSecond,2,Get the second Object in the Tuple +func_76341_a,getFirst,2,Get the first Object in the Tuple +func_76345_d,getHungerDamage,2,How much satiate(food) is consumed by this DamageSource +func_76346_g,getEntity,2, +func_76347_k,isFireDamage,2,Returns true if the damage is fire based. +func_76348_h,setDamageBypassesArmor,2, +func_76349_b,setProjectile,2,Define the damage type as projectile based. +func_76350_n,isDifficultyScaled,2,Return whether this damage source will have its damage amount scaled based on the current difficulty. +func_76351_m,setDifficultyScaled,2,Set whether this damage source will have its damage amount scaled based on the current difficulty. +func_76352_a,isProjectile,2,Returns true if the damage is projectile based. +func_76353_a,causeArrowDamage,2,returns EntityDamageSourceIndirect of an arrow\n \n@param indirectEntityIn The entity that shoot the arrow +func_76354_b,causeIndirectMagicDamage,2, +func_76355_l,getDamageType,2,Return the name of damage type. +func_76356_a,causeThrownDamage,2, +func_76357_e,canHarmInCreative,2, +func_76358_a,causeMobDamage,2, +func_76359_i,setDamageAllowedInCreativeMode,2, +func_76361_j,setFireDamage,2,Define the damage type as fire based. +func_76362_a,causeFireballDamage,2,returns EntityDamageSourceIndirect of a fireball\n \n@param indirectEntityIn The entity that shoot the fireball +func_76363_c,isUnblockable,2, +func_76364_f,getSourceOfDamage,2, +func_76365_a,causePlayerDamage,2,returns an EntityDamageSource of type player +func_76388_g,getEffectiveness,2, +func_76389_a,getDurationString,0, +func_76390_b,setPotionName,2,Set the potion name. +func_76392_e,getStatusIconIndex,0,Returns the index for the icon to display when the potion is active. +func_76393_a,getName,2,returns the name of the potion +func_76394_a,performEffect,2, +func_76395_i,isUsable,2, +func_76396_c,getId,2,returns the ID of the potion +func_76397_a,isReady,2,checks if Potion effect is ready to be applied this tick. +func_76398_f,isBadEffect,0,This method returns true if the potion effect is bad - negative - for the entity. +func_76399_b,setIconIndex,2,Sets the index for the icon displayed in the player's inventory when the status is active. +func_76400_d,hasStatusIcon,0,Returns true if the potion has a associated status icon to display in then inventory when active. +func_76401_j,getLiquidColor,2,Returns the color of the potion liquid. +func_76403_b,isInstant,2,Returns true if the potion has an instant effect instead of a continuous one (eg Harming) +func_76404_a,setEffectiveness,2, +func_76445_a,getIntCache,2, +func_76446_a,resetIntCache,2,Mark all pre-allocated arrays as available for re-use by moving them to the appropriate free lists. +func_76452_a,combine,2,merges the input PotionEffect into this one if this.amplifier <= tomerge.amplifier. The duration in the supplied potion effect is assumed to be greater. +func_76453_d,getEffectName,2, +func_76454_e,deincrementDuration,2, +func_76455_a,onUpdate,2, +func_76456_a,getPotionID,2,Retrieve the ID of the potion this effect matches. +func_76457_b,performEffect,2, +func_76458_c,getAmplifier,2, +func_76459_b,getDuration,2, +func_76463_a,startSnooper,2,Note issuing start multiple times is not an error. +func_76465_c,getCurrentStats,0, +func_76467_g,addJvmArgsToSnooper,2, +func_76468_d,isSnooperRunning,2, +func_76470_e,stopSnooper,2, +func_76471_b,addMemoryStatsToSnooper,2, +func_76489_a,generateLeafNodeList,2,"Generates a list of leaf nodes for the tree, to be populated by generateLeaves." +func_76490_a,layerSize,2,Gets the rough size of a layer of the tree. +func_76493_c,leafNodeNeedsBase,2,Indicates whether or not a leaf node requires additional wood to be added to preserve integrity. +func_76495_b,leafSize,2, +func_76497_e,validTreeLocation,2,"Returns a boolean indicating whether or not the current location for the tree, spanning basePos to to the height limit, is valid." +func_76543_b,pickMobSpawner,2,Randomly decides which spawner to use in a dungeon +func_76549_c,getChunkInputStream,2,"Returns an input stream for the specified chunk. Args: worldDir, chunkX, chunkZ" +func_76550_a,createOrLoadRegionFile,2, +func_76551_a,clearRegionFileReferences,2,clears region file references +func_76552_d,getChunkOutputStream,2,"Returns an output stream for the specified chunk. Args: worldDir, chunkX, chunkZ" +func_76555_c,createChunkGenerator,2,Returns a new chunk provider which generates chunks for this world +func_76556_a,generateLightBrightnessTable,2,Creates the light to brightness table +func_76557_i,getAverageGroundLevel,2, +func_76558_a,registerWorld,2,"associate an existing world with a World provider, and setup its lightbrightness table" +func_76559_b,getMoonPhase,2, +func_76560_a,calcSunriseSunsetColors,0,Returns array with sunrise/sunset colors +func_76561_g,isSkyColored,0, +func_76562_b,getFogColor,0,Return Vec3D with biome specific fog color +func_76563_a,calculateCelestialAngle,2,Calculates the angle of sun and moon in the sky relative to a specified time (usually worldTime) +func_76565_k,getVoidFogYFactor,0,"Returns a double value representing the Y value relative to the top of the map at which void fog is at its maximum. The default factor of 0.03125 relative to 256, for example, means the void fog will be at its maximum at (256*0.03125), or 8." +func_76566_a,canCoordinateBeSpawn,2,"Will check if the x, z position specified is alright to be set as the map spawn point" +func_76567_e,canRespawnHere,2,"True if the player can respawn in this dimension (true = overworld, false = nether)." +func_76568_b,doesXZShowFog,0,"Returns true if the given X,Z coordinate should show environmental fog." +func_76569_d,isSurfaceWorld,2,"Returns 'true' if in the ""main surface world"", but 'false' if in the Nether or End dimensions." +func_76570_a,getProviderForDimension,2, +func_76571_f,getCloudHeight,0,the y level at which clouds are rendered. +func_76572_b,registerWorldChunkManager,2,creates a new world chunk manager for WorldProvider +func_76581_a,set,2,"Arguments are x, y, z, val. Sets the nibble of data at x << 11 | z << 7 | y to val." +func_76582_a,get,2,"Returns the nibble of data corresponding to the passed in x, y, z. y is at most 6 bits, z is at most 4." +func_76587_i,getBlockStorageArray,2,Returns the ExtendedBlockStorage array for this Chunk. +func_76590_a,generateHeightMap,0,Generates the height map for a chunk from scratch +func_76594_o,enqueueRelightChecks,2,"Called once-per-chunk-per-tick, and advances the round-robin relight check index by up to 8 blocks at a time. In a worst-case scenario, can potentially take up to 25.6 seconds, calculated via (4096/8)/20, to re-check all blocks in a chunk, which may explain lagging light updates on initial world generation." +func_76595_e,propagateSkylightOcclusion,2,Propagates a given sky-visible block's light value downward and upward to neighboring blocks as necessary. +func_76599_g,checkSkylightNeighborHeight,2,Checks the height of a block next to a sky-visible block and schedules a lighting update as necessary. +func_76600_a,isAtLocation,2,Checks whether the chunk is at the X/Z location specified +func_76601_a,needsSaving,2,Returns true if this Chunk needs to be saved +func_76602_a,setStorageArrays,2, +func_76603_b,generateSkylightMap,2,Generates the initial skylight map for the chunk upon generation or load. +func_76605_m,getBiomeArray,2,Returns an array containing a 16x16 mapping on the X/Z of block positions in this Chunk to biome IDs. +func_76606_c,getAreLevelsEmpty,2,Returns whether the ExtendedBlockStorages containing levels (in blocks) from arg 1 to arg 2 are fully empty (true) or not (false). +func_76608_a,removeEntityAtIndex,2,Removes entity at the specified index from the entity array. +func_76609_d,updateSkylightNeighborHeight,2, +func_76611_b,getHeightValue,2,"Returns the value in the height map at this x, z coordinate in the chunk" +func_76612_a,addEntity,2,Adds an entity to the chunk. Args: entity +func_76613_n,resetRelightChecks,2,Resets the relight check index to 0 for this Chunk. +func_76615_h,relightBlock,2,Initiates the recalculation of both the block-light and sky-light for a given block inside a chunk. +func_76616_a,setBiomeArray,2,Accepts a 256-entry array that contains a 16x16 mapping on the X/Z plane of block positions in this Chunk to biome IDs. +func_76617_a,getRandomWithSeed,2, +func_76621_g,isEmpty,2, +func_76622_b,removeEntity,2,removes entity using its y chunk coordinate as its index +func_76623_d,onChunkUnload,2,Called when this Chunk is unloaded by the ChunkProvider +func_76624_a,populateChunk,2, +func_76625_h,getTopFilledSegment,2,Returns the topmost ExtendedBlockStorage instance for this Chunk that actually contains a block. +func_76628_c,getBlockMetadata,2,Return the metadata corresponding to the given coordinates inside a chunk. +func_76630_e,setChunkModified,2,Sets the isModified flag for this Chunk +func_76631_c,onChunkLoad,2,Called when this Chunk is loaded by the ChunkProvider +func_76632_l,getChunkCoordIntPair,2,Gets a ChunkCoordIntPair representing the Chunk's position. +func_76657_c,setExtSkylightValue,2,Sets the saved Sky-light value in the extended block storage structure. +func_76659_c,setBlocklightArray,2,Sets the NibbleArray instance used for Block-light values in this particular storage block. +func_76661_k,getBlocklightArray,2,Returns the NibbleArray instance containing Block-light data. +func_76662_d,getYLocation,2,Returns the Y location of this ExtendedBlockStorage. +func_76663_a,isEmpty,2,"Returns whether or not this block storage's Chunk is fully empty, based on its internal reference count." +func_76665_b,getExtBlockMetadata,2,Returns the metadata associated with the block at the given coordinates in this ExtendedBlockStorage. +func_76666_d,setSkylightArray,2,Sets the NibbleArray instance used for Sky-light values in this particular storage block. +func_76670_c,getExtSkylightValue,2,Gets the saved Sky-light value in the extended block storage structure. +func_76671_l,getSkylightArray,2,Returns the NibbleArray instance containing Sky-light data. +func_76672_e,removeInvalidBlocks,2, +func_76674_d,getExtBlocklightValue,2,Gets the saved Block-light value in the extended block storage structure. +func_76675_b,getNeedsRandomTick,2,"Returns whether or not this block storage's Chunk will require random ticking, used to avoid looping through random block ticks when there are no blocks that would randomly tick." +func_76677_d,setExtBlocklightValue,2,Sets the saved Block-light value in the extended block storage structure. +func_76686_a,get,2, +func_76690_a,convertToAnvilFormat,2, +func_76691_a,load,2, +func_76704_a,getChunkDataInputStream,2,Returns an uncompressed chunk stream from the region file. +func_76705_d,outOfBounds,2,"args: x, z - check region bounds" +func_76706_a,write,2,"args: x, z, data, length - write chunk data at (x, z) to disk" +func_76707_e,getOffset,2,"args: x, z - get chunk's offset in region file" +func_76708_c,close,2,close this RegionFile and prevent further writes +func_76709_c,isChunkSaved,2,"args: x, z, - true if chunk has been saved / converted" +func_76710_b,getChunkDataOutputStream,2,Returns an output stream used to write chunk data. Data is on disk when the returned stream is closed. +func_76711_a,setOffset,2,"args: x, z, offset - sets the chunk's offset in the region file" +func_76712_a,write,2,"args: sectorNumber, data, length - write the chunk data to this RegionFile" +func_76713_b,setChunkTimestamp,2,"args: x, z, timestamp - sets the chunk's write timestamp" +func_76727_i,getFloatRainfall,0,Gets a floating point representation of this biome's rainfall +func_76729_a,createBiomeDecorator,2,Allocate a new BiomeDecorator for this BiomeGenBase +func_76730_b,getRandomWorldGenForGrass,2,Gets a WorldGen appropriate for this biome. +func_76731_a,getSkyColorByTemp,0,"takes temperature, returns color" +func_76732_a,setTemperatureRainfall,2,Sets the temperature and rainfall of this biome. +func_76733_a,setFillerBlockMetadata,2, +func_76735_a,setBiomeName,2, +func_76736_e,isHighHumidity,2,Checks to see if the rainfall level of the biome is extremely high +func_76738_d,canRain,2,Check if rain can occur in biome +func_76739_b,setColor,2, +func_76741_f,getSpawningChance,2,returns the chance a creature has to spawn. +func_76742_b,setEnableSnow,2,sets enableSnow to true during biome initialization. returns BiomeGenBase. +func_76744_g,getIntRainfall,2,Gets an integer representation of this biome's rainfall +func_76745_m,setDisableRain,2,Disable the rain for the biome. +func_76746_c,getEnableSnow,2,Returns true if the biome have snowfall instead a normal rain. +func_76747_a,getSpawnableList,2,Returns the correspondent list of the EnumCreatureType informed. +func_76793_b,genStandardOre2,2,Standard ore generation helper. Generates Lapis Lazuli. +func_76795_a,genStandardOre1,2,Standard ore generation helper. Generates most ores. +func_76797_b,generateOres,2,Generates ores in the current chunk +func_76838_a,cleanupCache,2,Removes BiomeCacheBlocks from this cache that haven't been accessed in at least 30 seconds. +func_76839_e,getCachedBiomes,2,Returns the array of cached biome types in the BiomeCacheBlock at the given location. +func_76840_a,getBiomeCacheBlock,2,Returns a biome cache block at location specified. +func_76885_a,getBiomeGenAt,2,"Returns the BiomeGenBase related to the x, z position from the cache block." +func_76931_a,getBiomeGenAt,2,"Return a list of biomes for the specified blocks. Args: listToReuse, x, y, width, length, cacheFlag (if false, don't check biomeCache to avoid infinite loop in BiomeCacheBlock)" +func_76932_a,getBiomesToSpawnIn,2,Gets the list of valid biomes for the player to spawn in. +func_76933_b,loadBlockGeneratorData,2,"Returns biomes to use for the blocks and loads the other data like temperature and humidity onto the WorldChunkManager Args: oldBiomeList, x, z, width, depth" +func_76936_a,getRainfall,2,"Returns a list of rainfall values for the specified blocks. Args: listToReuse, x, z, width, length." +func_76937_a,getBiomesForGeneration,2,Returns an array of biomes for the location input. +func_76938_b,cleanupCache,2,Calls the WorldChunkManager's biomeCache.cleanupCache() +func_76939_a,getTemperatureAtHeight,0,Return an adjusted version of a given temperature based on the y height +func_76940_a,areBiomesViable,2,checks given Chunk's Biomes against List of allowed ones +func_76975_c,renderShadow,0,"Renders the entity shadows at the position, shadow alpha and partialTickTime. Args: entity, x, y, z, shadowAlpha, partialTickTime" +func_76977_a,renderEntityOnFire,0,"Renders fire on top of the entity. Args: entity, x, y, z, partialTickTime" +func_76978_a,renderOffsetAABB,0,"Renders a white box with the bounds of the AABB translated by the offset. Args: aabb, x, y, z" +func_76979_b,doRenderShadowAndFire,0,"Renders the entity's shadow and fire (if its on fire). Args: entity, x, y, z, yaw, partialTickTime" +func_76982_b,getWorldFromRenderManager,0,Returns the render manager's world object +func_76983_a,getFontRendererFromRenderManager,0,Returns the font renderer from the set render manager +func_76986_a,doRender,0,Renders the desired {@code T} type Entity. +func_77008_a,setLightmap,0, +func_77010_a,renderPainting,0, +func_77030_a,getColorMultiplier,0,"Returns an ARGB int color back. Args: entityLiving, lightBrightness, partialTickTime" +func_77034_a,interpolateRotation,0,"Returns a rotation angle that is inbetween two other rotation angles. par1 and par2 are the angles between which to interpolate, par3 is probably a float between 0.0 and 1.0 that tells us where ""between"" the two angles we are. Example: par1 = 30, par2 = 50, par3 = 0.5, then return = 40" +func_77036_a,renderModel,0,Renders the model in RenderLiving +func_77037_a,getDeathMaxRotation,0, +func_77039_a,renderLivingAt,0,Sets a simple glTranslate on a LivingEntity. +func_77040_d,getSwingProgress,0,"Returns where in the swing animation the living entity is (from 0 to 1). Args : entity, partialTickTime" +func_77041_b,preRenderCallback,0,"Allows the render to do any OpenGL state modifications necessary before the model is rendered. Args: entityLiving, partialTickTime" +func_77043_a,rotateCorpse,0, +func_77044_a,handleRotationFloat,0,Defines what float the third param in setRotationAngles of ModelBase is +func_77124_a,setCanBeCreated,2,"Sets canBeCreated to the provided value, and returns this." +func_77125_e,isVersioned,2,Returns true if this world Type has a version associated with it. +func_77126_d,getCanBeCreated,0,Gets whether this WorldType can be used to generate a new world. +func_77127_a,getWorldTypeName,2, +func_77128_b,getTranslateName,0,Gets the translation key for the name of this world type. +func_77129_f,setVersioned,2,Flags this world type as having an associated version. +func_77130_a,parseWorldType,2, +func_77131_c,getGeneratorVersion,2,Returns generatorVersion. +func_77132_a,getWorldTypeForGeneratorVersion,2, +func_77142_a,getByName,0,"Returns the game type with the specified name, or SURVIVAL if none found. This is case sensitive. Args: name" +func_77144_e,isSurvivalOrAdventure,2,Returns true if this is the SURVIVAL or ADVENTURE game type +func_77145_d,isCreative,2,Returns true if this is the CREATIVE game type +func_77146_a,getByID,2,"Returns the game type with the specified ID, or SURVIVAL if none found. Args: id" +func_77147_a,configurePlayerCapabilities,2,Configures the player capabilities based on the game type +func_77148_a,getID,2,Returns the ID of this game type +func_77149_b,getName,2,Returns the name of this game type +func_77158_f,getHardcoreEnabled,2,"Returns true if hardcore mode is enabled, otherwise false" +func_77159_a,enableBonusChest,2,Enables the bonus chest. +func_77160_d,getSeed,2,Returns the seed for the world. +func_77161_a,getGameTypeById,2,Gets the GameType by ID +func_77162_e,getGameType,2,Gets the game type. +func_77163_i,areCommandsAllowed,2,Returns true if Commands (cheats) are allowed. +func_77164_g,isMapFeaturesEnabled,2,Get whether the map features (e.g. strongholds) generation is enabled or disabled. +func_77165_h,getTerrainType,2, +func_77166_b,enableCommands,0,Enables Commands (cheats). +func_77167_c,isBonusChestEnabled,2,Returns true if the Bonus Chest is enabled. +func_77176_a,setScheduledTime,2,Sets the scheduled time for this tick entry +func_77191_a,performWorldGenSpawning,2,Called during chunk generation to spawn initial creatures. +func_77192_a,findChunksForSpawning,2,"adds all chunks within the spawn radius of the players to eligibleChunksForSpawning. pars: the world, hostileCreatures, passiveCreatures. returns number of eligible chunks." +func_77201_a,readRecipiesFromTags,2, +func_77202_a,getRecipiesAsTags,2, +func_77203_a,canRecipeBeUsed,2,"can par1,par2 be used to in crafting recipe par3" +func_77272_a,chunkXZ2Int,2,converts a chunk coordinate pair to an integer (suitable for hashing) +func_77273_a,getCenterXPos,2, +func_77274_b,getCenterZPosition,2, +func_77277_b,getPlayerKnockbackMap,2, +func_77278_a,doExplosionA,2,Does the first part of the explosion (destroy blocks) +func_77279_a,doExplosionB,2,"Does the second part of the explosion (sound, particles, drop spawn)" +func_77316_c,getTranslatedName,2,Returns the correct traslated name of the enchantment and the level in roman numbers. +func_77317_b,getMaxEnchantability,2,Returns the maximum value of enchantability nedded on the enchantment level passed. +func_77318_a,calcModifierDamage,2,Calculates the damage protection of the enchantment based on level and damage source passed. +func_77319_d,getMinLevel,2,Returns the minimum level that the enchantment can have. +func_77320_a,getName,2,Return the name of key in translation table of this enchantment. +func_77321_a,getMinEnchantability,2,Returns the minimal value of enchantability needed on the enchantment level passed. +func_77322_b,setName,2,Sets the enchantment name +func_77324_c,getWeight,2,Retrieves the weight value of an Enchantment. This weight value is used within vanilla to determine how rare an enchantment is. +func_77325_b,getMaxLevel,2,Returns the maximum level that the enchantment can have. +func_77326_a,canApplyTogether,2,Determines if the enchantment passed can be applyied together with this enchantment. +func_77390_a,readFromTags,2, +func_77394_a,getItemToBuy,2,Gets the itemToBuy. +func_77395_g,writeToTags,2, +func_77396_b,getSecondItemToBuy,2,Gets secondItemToBuy. +func_77397_d,getItemToSell,2,Gets itemToSell. +func_77398_c,hasSecondItemToBuy,2,Gets if Villager has secondItemToBuy. +func_77399_f,incrementToolUses,2, +func_77442_b,canUnlockAchievement,2,"Returns true if the parent has been unlocked, or there is no parent" +func_77443_a,hasAchievementUnlocked,2,Returns true if the achievement has been unlocked. +func_77444_a,readStat,2,Reads the given stat and returns its value as an int. +func_77466_a,getFoliageColorPine,0,Gets the foliage color for pine type (metadata 1) trees +func_77467_a,setFoliageBiomeColorizer,0, +func_77468_c,getFoliageColorBasic,0, +func_77469_b,getFoliageColorBirch,0,Gets the foliage color for birch type (metadata 2) trees +func_77470_a,getFoliageColor,0,"Gets foliage color from temperature and humidity. Args: temperature, humidity" +func_77472_b,setClientActiveTexture,0,Sets the current lightmap texture to the specified OpenGL constant +func_77473_a,setActiveTexture,0,Sets the current lightmap texture to the specified OpenGL constant +func_77474_a,initializeTextures,0,Initializes the texture constants to be used when rendering lightmap values +func_77475_a,setLightmapTextureCoords,0,Sets the current coordinates of the given lightmap texture +func_77479_a,setGrassBiomeColorizer,0, +func_77480_a,getGrassColor,0,"Gets grass color from temperature and humidity. Args: temperature, humidity" +func_77487_a,getServerMotd,0, +func_77488_b,getServerIpPort,0, +func_77489_c,updateLastSeen,0,Updates the time this LanServer was last seen. +func_77493_a,calculateModifier,2,Generic method use to calculate modifiers of offensive or defensive enchantment values. +func_77501_a,getKnockbackModifier,2,Returns the Knockback modifier of the enchantment on the players held item. +func_77502_d,getSilkTouchModifier,2,Returns the silk touch status of enchantments on current equipped item of player. +func_77504_a,addRandomEnchantment,2,"Adds a random enchantment to the specified item. Args: random, itemStack, enchantabilityLevel" +func_77505_b,mapEnchantmentData,2,Creates a 'Map' of EnchantmentData (enchantments) possible to add on the ItemStack and the enchantability level passed. +func_77506_a,getEnchantmentLevel,2,Returns the level of enchantment on the ItemStack passed. +func_77508_a,getEnchantmentModifierDamage,2,Returns the modifier of protection enchantments on armors equipped on player. +func_77509_b,getEfficiencyModifier,2,Return the extra efficiency of tools based on enchantments on equipped player item. +func_77510_g,getAquaAffinityModifier,2,Returns the aqua affinity status of enchantments on current equipped item of player. +func_77511_a,getMaxEnchantmentLevel,2,Returns the biggest level of the enchantment on the array of ItemStack passed. +func_77513_b,buildEnchantmentList,2,"Create a list of random EnchantmentData (enchantments) that can be added together to the ItemStack, the 3rd parameter is the total enchantability level." +func_77514_a,calcItemStackEnchantability,2,"Returns the enchantability of itemstack, using a separate calculation for each enchantNum (0, 1 or 2), cutting to the max enchantability power of the table, which is locked to a max of 15." +func_77516_a,applyEnchantmentModifierArray,2,Executes the enchantment modifier on the array of ItemStack passed. +func_77517_e,getFortuneModifier,2,Returns the fortune enchantment modifier of the current equipped item of player. +func_77518_a,applyEnchantmentModifier,2,Executes the enchantment modifier on the ItemStack passed. +func_77519_f,getLootingModifier,2,Returns the looting enchantment modifier of the current equipped item of player. +func_77523_b,getAdFromPingResponse,0, +func_77524_a,getMotdFromPingResponse,0, +func_77525_a,getPingResponse,0, +func_77552_b,setWasNotUpdated,0, +func_77553_a,getWasUpdated,0, +func_77554_c,getLanServers,0, +func_77557_a,canEnchantItem,2,Return true if the item passed can be enchanted by a enchantment of this type. +func_77569_a,matches,2,Used to check if a recipe matches current crafting inventory +func_77570_a,getRecipeSize,2,Returns the size of the recipe area +func_77571_b,getRecipeOutput,2, +func_77572_b,getCraftingResult,2,Returns an Item that is the result of this recipe +func_77573_a,checkMatch,2,Checks if the region of a crafting inventory is match for the recipe. +func_77583_a,addRecipes,2,Adds the weapon recipes to the CraftingManager. +func_77586_a,addRecipes,2,Adds the tool recipes to the CraftingManager. +func_77589_a,addRecipes,2,Adds the crafting recipes to the CraftingManager. +func_77590_a,addRecipes,2,Adds the ingot recipes to the CraftingManager. +func_77592_b,getRecipeList,2,returns the List<> of all recipes +func_77594_a,getInstance,2,Returns the static instance of this class +func_77596_b,addShapelessRecipe,2,Adds a shapeless crafting recipe to the the game. +func_77599_b,getSmeltingList,2, +func_77602_a,instance,2,Returns an instance of FurnaceRecipes. +func_77607_a,addRecipes,2,Adds the dye recipes to the CraftingManager. +func_77608_a,addRecipes,2,Adds the food recipes to the CraftingManager. +func_77609_a,addRecipes,2,Adds the armor recipes to the CraftingManager. +func_77612_l,getMaxDamage,2,Returns the maximum damage an item can take. +func_77613_e,getRarity,2,Return an item rarity from EnumRarity +func_77614_k,getHasSubtypes,2, +func_77615_a,onPlayerStoppedUsing,2,Called when the player stops using an Item (stops holding the right mouse button). +func_77616_k,isItemTool,2,Checks isDamagable and if it cannot be stacked +func_77619_b,getItemEnchantability,2,"Return the enchantability factor of the item, most of the time is based on material." +func_77620_a,getColorFromDamage,0, +func_77621_a,getMovingObjectPositionFromPlayer,2, +func_77622_d,onCreated,2,Called when item is crafted/smelted. Used only by maps so far. +func_77624_a,addInformation,0,allows items to add custom lines of information to the mouseover description +func_77625_d,setMaxStackSize,2, +func_77626_a,getMaxItemUseDuration,2,How long it takes to use or consume an item +func_77627_a,setHasSubtypes,2, +func_77629_n_,shouldRotateAroundWhenRendering,0,Returns true if this item should be rotated by 180 degrees around the Y axis when being held in an entities hands. +func_77631_c,setPotionEffect,2,Sets the string representing this item's effect on a potion when used as an ingredient. +func_77634_r,hasContainerItem,2,True if this Item has a container item (a.k.a. crafting result) +func_77636_d,hasEffect,0, +func_77637_a,setCreativeTab,2,returns this; +func_77639_j,getItemStackLimit,2,Returns the maximum size of the stack for a specific item. *Isn't this more a Set than a Get?* +func_77640_w,getCreativeTab,0,gets the CreativeTab this item is displayed on +func_77642_a,setContainerItem,2, +func_77643_m_,isMap,2,false for all Items except sub-classes of ItemMapBase +func_77644_a,hitEntity,2,Current implementations of this method in child classes do not use the entry argument beside ev. They just raise the damage on the stack. +func_77645_m,isDamageable,2, +func_77647_b,getMetadata,2,Converts the given ItemStack damage value into a metadata value to be placed in the world when this Item is placed as a Block (mostly used with ItemBlocks). +func_77651_p,getShareTag,2,"If this function returns true (or the item is damageable), the ItemStack's NBT tag will be sent to the client." +func_77653_i,getItemStackDisplayName,2, +func_77654_b,onItemUseFinish,2,Called when the player finishes using this Item (E.g. finishes eating.). Not called when the player stops using the Item before the action is complete. +func_77655_b,setUnlocalizedName,2,"Sets the unlocalized name of this item to the string passed as the parameter, prefixed by ""item.""" +func_77656_e,setMaxDamage,2,set max damage of an Item +func_77657_g,getUnlocalizedNameInefficiently,2,"Translates the unlocalized name of this item, but without the .name suffix, so the translation fails and the unlocalized name itself is returned." +func_77658_a,getUnlocalizedName,2,Returns the unlocalized name of this item. +func_77659_a,onItemRightClick,2,"Called whenever this item is equipped and the right mouse button is pressed. Args: itemStack, world, entityPlayer" +func_77661_b,getItemUseAction,2,returns the action that specifies what animation to play when the items is being used +func_77662_d,isFull3D,0,Returns True is the item is renderer in full 3D when hold. +func_77663_a,onUpdate,2,Called each tick as long the item is on a player inventory. Uses by maps to check if is on a player hand and update it's contents. +func_77664_n,setFull3D,2,Sets bFull3D to True and return the object. +func_77667_c,getUnlocalizedName,2,Returns the unlocalized name of this item. This version accepts an ItemStack so different stacks can have different names based on their damage or NBT. +func_77668_q,getContainerItem,2, +func_77828_a,validBookTagContents,2, +func_77831_g,isSplash,2,returns wether or not a potion is a throwable splash potion based on damage value +func_77832_l,getEffects,2,Returns a list of potion effects for the specified itemstack. +func_77833_h,isEffectInstant,0, +func_77834_f,getEffects,2,Returns a list of effects for the specified potion damage value. +func_77840_a,spawnCreature,2,"Spawns the creature specified by the egg's type in the location specified by the last three parameters. Parameters: world, entityID, x, y, z." +func_77842_f,getMaterialName,2,"Returns the name of the material this tool is made from as it is declared in EnumToolMaterial (meaning diamond would return ""EMERALD"")" +func_77844_a,setPotionEffect,2,"sets a potion effect on the item. Args: int potionId, int duration (will be multiplied by 20), int amplifier, float probability of effect happening" +func_77845_h,isWolfsFavoriteMeat,2,Whether wolves like this food (true for raw and cooked porkchop). +func_77848_i,setAlwaysEdible,2,"Set the field 'alwaysEdible' to true, and make the food edible even if the player don't need to eat." +func_77849_c,onFoodEaten,2, +func_77861_e,getToolMaterialName,2,Return the name for this tool's material. +func_77872_a,updateMapData,2, +func_77873_a,getMapData,2, +func_77904_a,getPotionEffect,2, +func_77905_c,getPotionPrefix,2,"Given a potion data value, get its prefix as a translation ID." +func_77906_a,brewBitOperations,2,Manipulates the specified bit of the potion damage value according to the rules passed from applyIngredient. +func_77907_h,countSetFlags,2,Returns the number of 1 bits in the given integer. +func_77908_a,getPotionPrefixIndexFlags,2, +func_77909_a,getPotionPrefixIndex,2,"Given a potion data value, get its prefix index number." +func_77910_c,isFlagSet,2,"Returns 1 if the flag is set, 0 if it is not set." +func_77911_a,calcPotionLiquidColor,2,Given a {@link Collection}<{@link PotionEffect}> will return an Integer color. +func_77912_a,parsePotionEffects,2, +func_77913_a,applyIngredient,2,Returns the new potion damage value after the specified ingredient info is applied to the specified potion. +func_77914_a,checkFlag,2,Checks if the bit at 1 << j is on in i. +func_77915_a,getLiquidColor,0,"Given a potion data value, get the associated liquid color (optionally bypassing the cache)" +func_77916_d,isFlagUnset,2,"Returns 0 if the flag is set, 1 if it is not set." +func_77917_b,getPotionEffects,2,Returns a list of effects for the specified potion damage value. +func_77942_o,hasTagCompound,2,Returns true if the ItemStack has an NBTTagCompound. Currently used to store enchantments. +func_77944_b,copyItemStack,2,"Creates a copy of a ItemStack, a null parameters will return a null." +func_77945_a,updateAnimation,2,Called each tick as long the ItemStack in on player inventory. Used to progress the pickup animation and update maps. +func_77946_l,copy,2,Returns a new stack with the same properties. +func_77948_v,isItemEnchanted,2,True if the item has enchantment data +func_77949_a,loadItemStackFromNBT,2, +func_77950_b,onItemUseFinish,2,"Called when the item in use count reach 0, e.g. item food eaten. Return the new ItemStack. Args : world, entity" +func_77951_h,isItemDamaged,2,returns true when a damageable item is damaged +func_77952_i,getItemDamage,2, +func_77953_t,getRarity,2, +func_77955_b,writeToNBT,2,Write the stack fields to a NBT object. Return the new NBT object. +func_77956_u,isItemEnchantable,2,True if it is a tool and has no enchantments to begin with +func_77957_a,useItemRightClick,2,"Called whenever this item stack is equipped and right clicked. Returns the new item stack to put in the position where this item is. Args: world, player" +func_77958_k,getMaxDamage,2,Returns the max damage an item in the stack can take. +func_77959_d,isItemStackEqual,2,compares ItemStack argument to the instance ItemStack; returns true if both ItemStacks are equal +func_77960_j,getMetadata,2, +func_77961_a,hitEntity,2,Calls the corresponding fct in di +func_77962_s,hasEffect,0, +func_77963_c,readFromNBT,2,Read the stack fields from a NBT object. +func_77964_b,setItemDamage,2, +func_77966_a,addEnchantment,2,Adds an enchantment with a desired level on the ItemStack. +func_77969_a,isItemEqual,2,compares ItemStack argument to the instance ItemStack; returns true if the Items contained in both ItemStacks are equal +func_77970_a,areItemStackTagsEqual,2, +func_77972_a,damageItem,2,Damages the item in the ItemStack +func_77973_b,getItem,2,Returns the object corresponding to the stack. +func_77974_b,onPlayerStoppedUsing,2,"Called when the player releases the use item button. Args: world, entityplayer, itemInUseCount" +func_77975_n,getItemUseAction,2, +func_77976_d,getMaxStackSize,2,Returns maximum size of the stack. +func_77977_a,getUnlocalizedName,2, +func_77978_p,getTagCompound,2,Returns the NBTTagCompound of the ItemStack. +func_77979_a,splitStack,2,Splits off a stack of the given amount of this stack and reduces this stack by the amount. +func_77980_a,onCrafting,2, +func_77981_g,getHasSubtypes,2, +func_77982_d,setTagCompound,2,"Assigns a NBTTagCompound to the ItemStack, minecraft validates that only non-stackable items can have it." +func_77983_a,setTagInfo,2, +func_77984_f,isItemStackDamageable,2,true if this itemStack is damageable +func_77985_e,isStackable,2,Returns true if the ItemStack can hold 2 or more units of the item. +func_77986_q,getEnchantmentTagList,2, +func_77988_m,getMaxItemUseDuration,2, +func_77989_b,areItemStacksEqual,2,compares ItemStack argument1 with ItemStack argument2; returns true if both ItemStacks are equal +func_77995_e,getEnchantability,2,Return the natural enchantability factor of the material. +func_77996_d,getHarvestLevel,2,"The level of material this tool can harvest (3 = DIAMOND, 2 = IRON, 1 = STONE, 0 = IRON/GOLD)" +func_77997_a,getMaxUses,2,"The number of uses this material allows. (wood = 59, stone = 131, iron = 250, diamond = 1561, gold = 32)" +func_77998_b,getEfficiencyOnProperMaterial,2,The strength of this tool material against blocks which it is effective against. +func_78000_c,getDamageVsEntity,2,Returns the damage against a given entity. +func_78013_b,getTabLabel,0, +func_78014_h,setNoTitle,2, +func_78015_f,getBackgroundImageName,0, +func_78016_d,getTabIconItem,0, +func_78017_i,shouldHidePlayerInventory,0, +func_78018_a,displayAllReleventItems,0,only shows items which have tabToDisplayOn == this +func_78019_g,drawInForegroundOfTab,0, +func_78020_k,getTabColumn,0,returns index % 6 +func_78021_a,getTabIndex,0, +func_78022_j,setNoScrollbar,2, +func_78023_l,isTabInFirstRow,0,returns tabIndex < 6 +func_78024_c,getTranslatedTabLabel,0,Gets the translated Label. +func_78025_a,setBackgroundImageName,2, +func_78044_b,getDamageReductionAmount,2,"Return the damage reduction (each 1 point is a half a shield on gui) of the piece index passed (0 = helmet, 1 = plate, 2 = legs and 3 = boots)" +func_78045_a,getEnchantability,2,Return the enchantability factor of the material. +func_78046_a,getDurability,2,Returns the durability for a armor slot of for this type. +func_78084_a,getTextureOffset,0, +func_78085_a,setTextureOffset,0, +func_78086_a,setLivingAnimations,0,Used for easily adding entity-dependent animations. The second and third float params here are the same second and third as in the setRotationAngles method. +func_78087_a,setRotationAngles,0,"Sets the model's various rotation angles. For bipeds, par1 and par2 are used for animating the movement of arms and legs, where par1 represents the time(so that arms and legs swing back and forth) and par2 represents how ""far"" arms and legs can swing at most." +func_78088_a,render,0,Sets the models various rotation angles then renders the model. +func_78164_a,renderSign,0,Renders the sign model through TileEntitySignRenderer +func_78214_a,updateRotations,0,"Updates the rotations in the parameters for rotations greater than 180 degrees or less than -180 degrees. It adds or subtracts 360 degrees, so that the appearance is the same, although the numbers are then simplified to range -180 to 180" +func_78231_a,renderAll,0,This method renders out all parts of the chest model. +func_78235_a,flipFace,0, +func_78240_a,setTexturePosition,0, +func_78244_a,setBoxName,0, +func_78255_a,renderStringAtPos,0,"Render a single line string at the current (posX,posY) and update posX" +func_78256_a,getStringWidth,0,Returns the width of this string. Equivalent of FontMetrics.stringWidth(String s). +func_78257_a,loadGlyphTexture,0,Load one of the /font/glyph_XX.png into a new GL texture and store the texture ID in glyphTextureName array. +func_78259_e,sizeStringToWidth,0,Determines how many characters from the string will fit into the specified width. +func_78260_a,getBidiFlag,0,Get bidiFlag that controls if the Unicode Bidirectional Algorithm should be run before rendering any string +func_78262_a,trimStringToWidth,0,"Trims a string to a specified width, and will reverse it if par3 is set." +func_78263_a,getCharWidth,0,Returns the width of this character as rendered. +func_78264_a,setUnicodeFlag,0,Set unicodeFlag controlling whether strings should be rendered with Unicode fonts instead of the default.png font. +func_78265_b,resetStyles,0,Reset all style flag fields in the class to false; called at the start of string rendering +func_78266_a,renderDefaultChar,0,"Render a single character with the default.png font at current (posX,posY) location..." +func_78267_b,splitStringWidth,0,Returns the width of the wordwrapped String (maximum length is parameter k)\n \n@param str The string to split\n@param maxLength The maximum length of a word +func_78268_b,renderSplitString,0,Perform actual work of rendering a multi-line string with wordwrap and with darker drop shadow color if flag is set +func_78269_a,trimStringToWidth,0,Trims a string to fit a specified Width. +func_78270_c,isFormatSpecial,0,Checks if the char code is O-K...lLrRk-o... used to set special formatting. +func_78271_c,listFormattedStringToWidth,0,Breaks a string into a list of pieces that will fit a specified width. +func_78272_b,isFormatColor,0,"Checks if the char code is a hexadecimal character, used to set colour." +func_78273_d,trimStringNewline,0,Remove all newline characters from the end of the string +func_78274_b,renderStringAligned,0,Render string either left or right aligned depending on bidiFlag +func_78275_b,setBidiFlag,0,Set bidiFlag to control if the Unicode Bidirectional Algorithm should be run before rendering any string. +func_78276_b,drawString,0,Draws the specified string. +func_78277_a,renderUnicodeChar,0,"Render a single Unicode character at current (posX,posY) location using one of the /font/glyph_XX.png files..." +func_78279_b,drawSplitString,0,Splits and draws a String with wordwrap (maximum length is parameter k) +func_78280_d,wrapFormattedStringToWidth,0,Inserts newline and formatting into a string to wrap it within the specified width. +func_78282_e,getFormatFromString,0,Digests a string for nonprinting formatting characters then returns a string containing only that formatting. +func_78324_d,getScaledHeight_double,0, +func_78325_e,getScaleFactor,0, +func_78326_a,getScaledWidth,0, +func_78327_c,getScaledWidth_double,0, +func_78328_b,getScaledHeight,0, +func_78381_a,draw,0,Draws the data set up in this tessellator and resets the state to prepare for new drawing. +func_78432_a,parseUserSkin,0, +func_78433_b,setAreaOpaque,0,Makes the given area of the image opaque +func_78434_a,setAreaTransparent,0,Makes the given area of the image transparent if it was previously completely opaque (used to remove the outer layer of a skin around the head if it was saved all opaque; this would be redundant so it's assumed that the skin maker is just using an image editor without an alpha channel) +func_78435_c,hasTransparency,0,Returns true if the given area of the image contains transparent pixels +func_78440_a,renderItemInFirstPerson,0,Renders the active item in the player's hand when in first person mode. Args: partialTickTime +func_78441_a,updateEquippedItem,0, +func_78442_d,renderFireInFirstPerson,0,Renders the fire on the screen for first person mode. Arg: partialTickTime\n \n@param partialTicks Partial ticks +func_78444_b,resetEquippedProgress,0,Resets equippedProgress +func_78445_c,resetEquippedProgress2,0,Resets equippedProgress +func_78447_b,renderOverlays,0,Renders all the overlays that are in first person mode. Args: partialTickTime +func_78448_c,renderWaterOverlayTexture,0,Renders a texture that warps around based on the direction the player is looking. Texture needs to be bound before being called. Used for the water overlay. Args: parialTickTime\n \n@param partialTicks Partial ticks +func_78464_a,updateRenderer,0,Updates the entity renderer +func_78466_h,updateFogColor,0,calculates fog and calls glClearColor +func_78467_g,orientCamera,0,sets up player's eye (or camera in third person mode) +func_78468_a,setupFog,0,Sets up the fog to be rendered. If the arg passed in is -1 the fog starts at 0 and goes to 80% of far plane distance and is used for sky rendering.\n \n@param startCoords If is -1 the fog start at 0.0 +func_78469_a,setFogColorBuffer,0,Update and return fogColorBuffer with the RGBA values passed as arguments +func_78470_f,updateTorchFlicker,0,Recompute a random value that is applied to block color in updateLightmap() +func_78471_a,renderWorld,0, +func_78472_g,updateLightmap,0, +func_78473_a,getMouseOver,0,Finds what block or object the mouse is over at the specified partial tick time. Args: partialTickTime +func_78474_d,renderRainSnow,0,Render rain and snow +func_78475_f,setupViewBobbing,0,Setups all the GL settings for view bobbing. Args: partialTickTime +func_78476_b,renderHand,0,Render player hand +func_78477_e,updateFovModifierHand,0,Update FOV modifier hand +func_78478_c,setupOverlayRendering,0,Setup orthogonal projection for rendering GUI screen overlays +func_78479_a,setupCameraTransform,0,"sets up projection, view effects, camera position/rotation" +func_78481_a,getFOVModifier,0,Changes the field of view of the player depending on if they are underwater or not\n \n@param useFOVSetting If true the FOV set in the settings will be use in the calculation +func_78482_e,hurtCameraEffect,0, +func_78484_h,addRainParticles,0, +func_78546_a,isBoundingBoxInFrustum,0,"Returns true if the bounding box is inside all 6 clipping planes, otherwise returns false." +func_78547_a,setPosition,0, +func_78548_b,isBoxInFrustum,0,"Calls the clipping helper. Returns true if the box is inside all 6 clipping planes, otherwise returns false." +func_78553_b,isBoxInFrustum,0,"Returns true if the box is inside all 6 clipping planes, otherwise returns false." +func_78558_a,getInstance,0,Initialises the ClippingHelper object then returns an instance of it. +func_78560_b,init,0, +func_78713_a,getEntityRenderObject,0, +func_78714_a,getDistanceToCamera,0, +func_78715_a,getEntityClassRenderObject,0, +func_78716_a,getFontRenderer,0,Returns the font renderer +func_78717_a,set,0,World sets this RenderManager's worldObj to the world provided +func_78745_b,flipPlayer,0,Flips the player around. +func_78746_a,setGameType,0,Sets the game type for the player.\n \n@param type The GameType to set +func_78747_a,isSpectator,0,None +func_78748_a,setPlayerCapabilities,0,Sets player capabilities depending on current gametype. params: player\n \n@param player The player's instance +func_78749_i,extendedReach,0,true for hitting entities far away. +func_78750_j,syncCurrentPlayItem,0,Syncs the current player item with the server +func_78752_a,sendPacketDropItem,0,Sends a Packet107 to the server to drop the item on the ground +func_78753_a,windowClick,0,Handles slot clicks sends a packet to the server. +func_78755_b,shouldDrawHUD,0, +func_78756_a,sendEnchantPacket,0,GuiEnchantment uses this during multiplayer to tell PlayerControllerMP to send a packet indicating the enchantment action the player has taken.\n \n@param windowID The ID of the current window\n@param button The button id (enchantment selected) +func_78757_d,getBlockReachDistance,0,player reach distance = 4F +func_78758_h,isInCreativeMode,0,returns true if player is in creative mode +func_78761_a,sendSlotPacket,0,Used in PlayerControllerMP to update the server with an ItemStack in a slot. +func_78762_g,isNotCreative,0,"Checks if the player is not creative, used for checking if it should break a block instantly" +func_78763_f,gameIsSurvivalOrAdventure,0, +func_78764_a,attackEntity,0,Attacks an entity +func_78765_e,updateController,0, +func_78766_c,onStoppedUsingItem,0, +func_78767_c,resetBlockRemoving,0,Resets current block damage and field_78778_j +func_78768_b,interactWithEntitySendPacket,0,Send packet to server - player is interacting with another entity (left click) +func_78769_a,sendUseItem,0,"Notifies the server of things like consuming food, etc..." +func_78784_a,setTextureOffset,0, +func_78785_a,render,0, +func_78786_a,addBox,0, +func_78787_b,setTextureSize,0,Returns the model renderer with the new texture parameters. +func_78788_d,compileDisplayList,0,Compiles a GL display list for this model +func_78789_a,addBox,0, +func_78790_a,addBox,0,"Creates a textured box. Args: originX, originY, originZ, width, height, depth, scaleFactor." +func_78791_b,renderWithRotation,0, +func_78792_a,addChild,0,Sets the current box's rotation points and rotation angles to another box. +func_78793_a,setRotationPoint,0, +func_78794_c,postRender,0,Allows the changing of Angles after a box has been rendered +func_78836_a,getNBTCompound,0,"Returns an NBTTagCompound with the server's name, IP and maybe acceptTextures." +func_78837_a,getServerDataFromNBTCompound,0,"Takes an NBTTagCompound with 'name' and 'ip' keys, returns a ServerData instance." +func_78849_a,addServerData,0,Adds the given ServerData instance to the list. +func_78850_a,getServerData,0,Gets the ServerData instance stored for the given index in the list. +func_78851_b,removeServerData,0,Removes the ServerData instance stored for the given index in the list. +func_78853_a,loadServerList,0,"Loads a list of servers from servers.dat, by running ServerData.getServerDataFromNBTCompound on each NBT compound found in the ""servers"" tag list." +func_78855_b,saveServerList,0,"Runs getNBTCompound on each ServerData instance, puts everything into a ""servers"" NBT list and writes it to servers.dat." +func_78856_c,countServers,0,Counts the number of ServerData instances in the list. +func_78857_a,swapServers,0,"Takes two list indexes, and swaps their order around." +func_78860_a,fromString,0, +func_78861_a,getIP,0, +func_78862_a,parseIntWithDefault,0, +func_78863_b,getServerAddress,0,"Returns a server's address and port for the specified hostname, looking up the SRV record if possible" +func_78864_b,getPort,0, +func_78868_a,updateEffects,0, +func_78869_b,getStatistics,0, +func_78870_a,clearEffects,0, +func_78872_b,renderLitParticles,0, +func_78873_a,addEffect,0, +func_78874_a,renderParticles,0,"Renders all current particles. Args player, partialTickTime" +func_78880_d,getZSize,2,Get dimension of the bounding box in the z direction. +func_78882_c,getYSize,2,Get dimension of the bounding box in the y direction. +func_78883_b,getXSize,2,Get dimension of the bounding box in the x direction. +func_78884_a,intersectsWith,2,Discover if bounding box can fit within the current bounding box object. +func_78885_a,intersectsWith,2,Discover if a coordinate is inside the bounding box area. +func_78886_a,offset,2,"Offsets the current bounding box by the specified coordinates. Args: x, y, z" +func_78887_a,getNewBoundingBox,2,returns a new StructureBoundingBox with MAX values +func_78888_b,expandTo,2,Expands a bounding box's dimensions to include the supplied bounding box. +func_78898_a,updatePlayerMoveState,0, +func_78909_a,getColorIndex,0,Takes in the pass the call list is being requested for. Args: renderPass +func_78914_f,noColor,0,Disabels color processing. +func_80003_ah,getPlayerUsageSnooper,0, +func_80006_f,getUniqueID,0, +func_80007_l,getDimensionName,2,"Returns the dimension's name, e.g. ""The End"", ""Nether"", or ""Overworld""." +func_82010_a,registerTickable,1, +func_82142_c,setInvisible,2, +func_82143_as,getMaxFallHeight,2,The maximum height from where the entity is alowed to jump (used in pathfinder) +func_82145_z,getMaxInPortalTime,2,Return the amount of time this entity should stay in a portal before being transported. +func_82147_ab,getPortalCooldown,2,Return the amount of cooldown before this entity can use a portal again. +func_82149_j,copyLocationAndAnglesFrom,2,Sets this entity's location and angles to the location and angles of the passed in entity. +func_82150_aj,isInvisible,2, +func_82159_b,getArmorPosition,2, +func_82160_b,dropEquipment,2,Drop the equipment for this entity.\n \n@param wasRecentlyHit true if this this entity was recently hit by appropriate entity (generally only if player or tameable)\n@param lootingModifier level of enchanment to be applied to this drop +func_82161_a,getArmorItemForSlot,2,Gets the vanilla armor Item that can go in the slot specified for the given tier. +func_82164_bB,addRandomDrop,2,Causes this Entity to drop a random item. +func_82165_m,isPotionActive,2, +func_82166_i,getArmSwingAnimationEnd,2,"Returns an integer indicating the end point of the swing animation, used by {@link #swingProgress} to provide a progress indicator. Takes dig speed enchantments into account." +func_82167_n,collideWithEntity,2, +func_82168_bl,updateArmSwingProgress,2,Updates the arm swing progress counters and animation progress +func_82169_q,getCurrentArmor,2, +func_82170_o,removePotionEffect,2,Remove the specified potion effect from this entity. +func_82171_bF,canBeSteered,2,"returns true if all the conditions for steering the entity are met. For pigs, this is true if it is being ridden by a player and the player is holding a carrot-on-a-stick" +func_82183_n,getAIControlledByPlayer,2,Return the AI task for player control. +func_82187_q,setLookingForHome,2, +func_82194_d,getWorld,2, +func_82195_e,attackDragonFrom,2,Provides a way to cause damage to an ender dragon. +func_82196_d,attackEntityWithRangedAttack,2,Attack the specified entity using a ranged attack. +func_82197_f,setAggressive,2,Set whether this witch is aggressive at an entity. +func_82198_m,getAggressive,2,Return whether this witch is aggressive at an entity. +func_82201_a,setSkeletonType,2,Set this skeleton's type. +func_82202_m,getSkeletonType,2,Return this skeleton's type. +func_82203_t,getWatchedTargetId,2,"Returns the target entity ID if present, or -1 if not @param par1 The target offset, should be from 0-2" +func_82205_o,isArmored,2,Returns whether the wither is armored with its boss armor or not by checking whether its health is below half of its maximum. +func_82209_a,launchWitherSkullToCoords,2,"Launches a Wither skull toward (par2, par4, par6)" +func_82211_c,updateWatchedTargetId,2,Updates the target entity ID +func_82212_n,getInvulTime,2, +func_82215_s,setInvulTime,2, +func_82216_a,launchWitherSkullToEntity,2, +func_82227_f,setChild,2,Set whether this zombie is a child. +func_82228_a,startConversion,2,Starts converting this zombie into a villager. The zombie converts into a villager after the specified time in ticks. +func_82229_g,setVillager,2,Set whether this zombie is a villager. +func_82230_o,isConverting,2,Returns whether this zombie is in the process of converting to a villager +func_82231_m,isVillager,2,Return whether this zombie is a villager. +func_82232_p,convertToVillager,2,Convert this zombie into a villager. +func_82233_q,getConversionTimeBoost,2,Return the amount of time decremented from conversionTime every tick. +func_82235_h,getIsBatHanging,2, +func_82236_f,setIsBatHanging,2, +func_82242_a,addExperienceLevel,2,Add experience levels to this player. +func_82243_bO,getArmorVisibility,2,"When searching for vulnerable players, if a player is invisible, the return value of this is the chance of seeing them anyway." +func_82245_bX,isSpawnForced,2, +func_82329_d,getWidthPixels,2, +func_82330_g,getHeightPixels,2, +func_82333_j,getRotation,2,Return the rotation of the item currently on this frame. +func_82334_a,setDisplayedItem,2, +func_82335_i,getDisplayedItem,2, +func_82336_g,setItemRotation,2, +func_82338_g,setAlphaF,0,Sets the particle alpha (float) +func_82340_a,setPotionDamage,2,Sets the PotionEffect by the given id of the potion effect. +func_82341_c,getMotionFactor,2,Return the motion factor for this projectile. The factor is multiplied by the original motion. +func_82342_d,isInvulnerable,2,Return whether this skull comes from an invulnerable (aura) wither boss. +func_82343_e,setInvulnerable,2,Set whether this skull comes from an invulnerable (aura) wither boss. +func_82356_Z,isCommandBlockEnabled,2,Return whether command blocks are enabled. +func_82357_ak,getSpawnProtectionSize,2,Return the spawn protection area's size. +func_82358_a,isUsernameIndex,2,Return whether the specified command parameter index is a username parameter. +func_82359_c,getPlayer,2, +func_82362_a,getRequiredPermissionLevel,2,Return the required permission level for this command. +func_82366_d,getGameRules,2,Return the game rule set this command should be able to manipulate. +func_82370_a,getUsernameIndex,2,Return a command's first parameter index containing a valid username. +func_82377_a,matchesMultiplePlayers,2,Returns whether the given pattern can match more than one player. +func_82378_b,hasArguments,2,Returns whether the given token has any arguments set. +func_82381_h,getArgumentMap,2,"Parses the given argument string, turning it into a HashMap<String, String> of name->value." +func_82386_a,matchOnePlayer,2,Returns the one player that matches the given at-token. Returns null if more than one player matches. +func_82402_b,renderItem,0, +func_82422_c,transformHeldFull3DItemLayer,0, +func_82448_a,transferEntityToWorld,2,Transfers an entity from a world to another world.\n \n@param oldWorldIn The world transfering from\n@param toWorldIn The world transfering the entity to +func_82482_a,dispense,2,Dispenses the specified ItemStack from a dispenser. +func_82485_a,playDispenseSound,2,Play the dispense sound from the specified block. +func_82486_a,doDispense,2, +func_82487_b,dispenseStack,2,"Dispense the specified stack, play the dispense sound and spawn particles." +func_82489_a,spawnDispenseParticles,2,Order clients to display dispense particles from the specified block and facing. +func_82499_a,getProjectileEntity,2,Return the projectile entity spawned by this dispense behavior. +func_82566_a,setWorldsForAll,2, +func_82567_a,updateDecorations,2, +func_82568_a,getMapInfo,2, +func_82571_y,getGeneratorOptions,2, +func_82572_b,setWorldTotalTime,2, +func_82573_f,getWorldTotalTime,2, +func_82574_x,getGameRulesInstance,2,Gets the GameRules class Instance. +func_82580_o,removeTag,2,Remove the specified tag. +func_82581_a,createCrashReport,2,Create a crash report which indicates a NBT read error. +func_82582_d,hasNoTags,2,Return whether this compound has no tags. +func_82594_a,getObject,2, +func_82595_a,putObject,2,Register an object on this registry. +func_82599_e,getFrontOffsetZ,2,Returns a offset that addresses the block in front of this facing. +func_82600_a,getFront,2,Get a Facing by it's index (0-5). The order is D-U-N-S-W-E. Named getFront for legacy reasons. +func_82601_c,getFrontOffsetX,2,Returns a offset that addresses the block in front of this facing. +func_82615_a,getX,2, +func_82616_c,getZ,2, +func_82617_b,getY,2, +func_82618_k,getWorld,2, +func_82620_h,getBlockMetadata,2, +func_82632_g,boostSpeed,2,Boost the entity's movement speed. +func_82633_h,isControlledByPlayer,2,Return whether the entity is being controlled by a player. +func_82634_f,isSpeedBoosted,2,Return whether the entity's speed is boosted. +func_82644_b,getWorldFeatures,2,Return the list of world features enabled on this preset. +func_82647_a,setBiome,2,Set the biome used on this preset. +func_82648_a,getBiome,2,Return the biome used on this preset. +func_82649_e,getDefaultFlatGenerator,2, +func_82650_c,getFlatLayers,2,Return the list of layers on this preset. +func_82651_a,createFlatGeneratorFromString,2, +func_82656_d,getMinY,2,"Return the minimum Y coordinate for this layer, set during generation." +func_82657_a,getLayerCount,2,Return the amount of layers for this set of layers. +func_82658_c,getFillBlockMeta,2,Return the block metadata used on this set of layers. +func_82660_d,setMinY,2,Set the minimum Y coordinate for this layer. +func_82667_a,getScatteredFeatureSpawnList,2,returns possible spawns for scattered features +func_82683_b,setDefaultPlayerReputation,2, +func_82684_a,getReputationForPlayer,2,Return the village reputation for a player +func_82685_c,getNearestTargetPlayer,2, +func_82686_i,isMatingSeason,2,Return whether villagers mating refractory period has passed +func_82687_d,isPlayerReputationTooLow,2,Return whether this player has a too low reputation with this village. +func_82688_a,setReputationForPlayer,2,Set the village reputation for a player. +func_82689_b,writeVillageDataToNBT,2,Write this village's data to NBT. +func_82690_a,readVillageDataFromNBT,2,Read this village's data from NBT. +func_82691_a,setWorld,2, +func_82692_h,endMatingSeason,2,Prevent villager breeding for a fixed interval of time +func_82705_e,getAnimal,2,Return whether this creature type is an animal. +func_82708_h,setObjectWatched,2, +func_82709_a,addObjectByDataType,2,"Add a new object for the DataWatcher to watch, using the specified data type." +func_82710_f,getWatchableObjectItemStack,2,Get a watchable object as an ItemStack. +func_82712_a,parseDoubleWithDefault,2,parses the string as double or returns the second parameter if it fails. +func_82713_a,parseDoubleWithDefaultAndMax,2, +func_82714_a,parseIntWithDefaultAndMax,2,parses the string as integer or returns the second parameter if it fails. this value is capped to par2 +func_82715_a,parseIntWithDefault,2,parses the string as integer or returns the second parameter if it fails +func_82716_a,getRandomDoubleInRange,2, +func_82719_a,writeCustomPotionEffectToNBT,2,Write a custom potion effect to a potion item's NBT data. +func_82720_e,getIsAmbient,2,Gets whether this potion effect originated from a beacon +func_82721_a,setSplashPotion,2,Set whether this potion is a splash potion. +func_82722_b,readCustomPotionEffectFromNBT,2,Read a custom potion effect from a potion item's NBT data. +func_82725_o,isMagicDamage,2,Returns true if the damage is magic based. +func_82726_p,setMagicDamage,2,Define the damage type as magic based. +func_82734_g,getChunksLowestHorizon,2,Gets the lowest height of the chunk where sunlight directly reaches +func_82736_K,getGameRules,2,Gets the GameRules instance. +func_82737_E,getTotalWorldTime,2, +func_82738_a,setTotalWorldTime,0, +func_82742_i,resetUpdateEntityTick,2,Resets the updateEntityTick field to 0 +func_82743_f,getCreationCloudUpdateTick,0,retrieves the 'date' at which the PartiallyDestroyedBlock was created +func_82744_b,setCloudUpdateTick,0,saves the current Cloud update tick into the PartiallyDestroyedBlock +func_82747_f,getWorldTypeID,2, +func_82749_j,getWorldName,2, +func_82750_a,setWorldName,2, +func_82752_c,isAdventure,2,Returns true if this is the ADVENTURE game type +func_82753_a,setPriority,2, +func_82756_a,getString,2,Gets the GameRule's value as String. +func_82757_a,setValue,2,Set this game rule value. +func_82758_b,getBoolean,2,Gets the GameRule's value as boolean. +func_82763_b,getRules,2,Return the defined game rules. +func_82764_b,setOrCreateGameRule,2, +func_82765_e,hasRule,2,Return whether the specified game rule is defined. +func_82766_b,getBoolean,2,Gets the boolean Game Rule value. +func_82767_a,getString,2,Gets the string Game Rule value. +func_82768_a,readFromNBT,2,Set defined game rules from NBT. +func_82770_a,writeToNBT,2,Return the defined game rules as NBT. +func_82781_a,getEnchantments,2,Return the enchantments for the specified stack. +func_82782_a,setEnchantments,2,Set the enchantments for the specified stack. +func_82783_a,increaseMaxTradeUses,2, +func_82784_g,isRecipeDisabled,2, +func_82785_h,compensateToolUses,0,Compensates {@link net.minecraft.village.MerchantRecipe#toolUses toolUses} with {@link net.minecraft.village.MerchantRecipe#maxTradeUses maxTradeUses} +func_82787_a,findMatchingRecipe,2,Retrieves an ItemStack that has multiple recipes for it. +func_82788_x,canItemEditBlocks,2,"Returns true if players can use this item to affect the world (e.g. placing blocks, placing ender eyes in portal) when not in creative" +func_82789_a,getIsRepairable,2,Return whether this item is repairable in an anvil. +func_82790_a,getColorFromItemStack,0, +func_82812_d,getArmorMaterial,2,Return the armor material for this armor item. +func_82813_b,setColor,2,Sets the color of the specified armor ItemStack +func_82814_b,getColor,2,Return the color for the specified armor ItemStack. +func_82815_c,removeColor,2,Remove the color from the specified armor ItemStack. +func_82816_b_,hasColor,2,Return whether the specified armor ItemStack has a color. +func_82817_b,getAreAmbient,2,Check whether a {@link Collection}<{@link PotionEffect}> are all ambient. +func_82824_a,setBossStatus,0, +func_82833_r,getDisplayName,2,returns the display name of the itemstack +func_82835_x,canEditBlocks,2, +func_82836_z,getItemFrame,2,Return the item frame this stack is on. Returns null if not on an item frame. +func_82837_s,hasDisplayName,2,Returns true if the itemstack has a display name +func_82838_A,getRepairCost,2,"Get this stack's repair cost, or 0 if no repair cost is defined." +func_82839_y,isOnItemFrame,2,Return whether this stack is on an item frame. +func_82840_a,getTooltip,0,Return a list of strings containing information about the item +func_82841_c,setRepairCost,2,Set this stack's repair cost. +func_82842_a,setItemFrame,2,Set the item frame this stack is on. +func_82846_b,transferStackInSlot,2,Take a stack from the specified inventory slot. +func_82847_b,removeCraftingFromCrafters,0,Remove the given Listener. Method name is for legacy. +func_82848_d,updateRepairOutput,2,"called when the Anvil Input Slot changes, calculates the new result and puts it in the output slot" +func_82850_a,updateItemName,2,used by the Anvil GUI to update the Item Name being typed by the player +func_82869_a,canTakeStack,2,Return whether this slot's stack can be taken from this slot. +func_82870_a,onPickupFromSlot,2, +func_82877_b,setPlayerWalkSpeed,0, +func_82879_c,sendSettingsToServer,0,Send a client info packet with settings information to the server +func_82883_a,getUnicodeFlag,0,Get unicodeFlag controlling whether strings should be rendered with Unicode fonts instead of the default.png font. +func_83015_S,getCurrentDate,2,returns a calendar object containing the current date +func_85029_a,addEntityCrashInfo,2, +func_85030_a,playSound,2, +func_85031_j,hitByEntity,2,Called when a player attacks an entity. If this returns true the attack will not happen. +func_85033_bc,collideWithNearbyEntities,2, +func_85034_r,setArrowCountInEntity,2,sets the amount of arrows stuck in the entity. used for rendering those +func_85035_bI,getArrowCountInEntity,2,"counts the amount of arrows stuck in the entity. getting hit by arrows increases this, used in rendering" +func_85036_m,setCombatTask,2,sets this entity's combat AI. +func_85039_t,addScore,2,Add to player's score +func_85040_s,setScore,2,Set player's score +func_85052_h,getThrower,2, +func_85054_d,searchForOtherItemsNearby,2,Looks for other itemstacks nearby and tries to stack them together +func_85055_a,makeCrashReport,2,Creates a crash report for the exception +func_85056_g,getCategory,2, +func_85057_a,makeCategoryDepth,2,Creates a CrashReportCategory for the given stack trace depth +func_85058_a,makeCategory,2,Creates a CrashReportCategory +func_85069_a,firstTwoElementsOfStackTraceMatch,2,"Do the deepest two elements of our saved stack trace match the given elements, in order from the deepest?" +func_85070_b,trimStackTraceEntriesFromBottom,2,Removes the given number entries from the bottom of the stack trace. +func_85072_a,appendToStringBuilder,2, +func_85073_a,getPrunedStackTrace,2,"Resets our stack trace according to the current trace, pruning the deepest 3 entries. The parameter indicates how many additional deepest entries to prune. Returns the number of entries in the resulting pruned stack trace." +func_85074_a,getCoordinateInfo,2, +func_85089_a,getKey,2, +func_85090_b,getValue,2, +func_85094_b,renderDebugBoundingBox,0,Renders the bounding box around an entity when F3+B is pressed\n \n@param x X position where to render the debug bounding box\n@param y Y position where to render the debug bounding box\n@param z Z position where to render the debug bounding box\n@param entityYaw The entity yaw\n@param partialTicks The partials ticks +func_85102_a,playSoundToNearExcept,2,Plays sound to all near players except the player reference given +func_85118_a,addToCrashReport,2,Adds this WorldInfo instance to the crash report. +func_85144_b,getCacheSizes,2,Gets a human-readable string that indicates the sizes of all the cache fields. Basically a synchronized static toString. +func_85151_d,getLowerChestInventory,2,Return this chest container's lower chest inventory. +func_85156_a,removeTask,2,removes the indicated task from the entity's AI tasks. +func_85158_p,setAdventureModeExempt,2,@see #isAdventureModeExempt() +func_85173_a,playSoundToNearExcept,2,Plays sound to all near players except the player reference given +func_85176_s,getDefaultTeleporter,2, +func_85181_a,getRandomModelBox,0, +func_85188_a,makePortal,2, +func_85189_a,removeStalePortalLocations,2,called periodically to remove out-of-date portal locations from the cache list. Argument par1 is a WorldServer.getTotalWorldTime() value. +func_90010_a,isPartOfLargeChest,2,Return whether the given inventory is part of this large chest. +func_90011_a,createChild,2, +func_90020_K,getLimitFramerate,0, +func_90022_d,getListOfPlayers,2, +func_90033_f,canLoadWorld,0,Return whether the given world can be loaded.\n \n@param saveName The current save's name +func_90035_a,getClassFromID,2,Return the class assigned to this entity ID. +func_90036_a,getFireAspectModifier,2,Returns the fire aspect modifier of the players held item. +func_90999_ad,canRenderOnFire,0,Return whether this entity should be rendered as on fire. +func_92034_a,createParticle,0,"Creates a single particle. Args: x, y, z, x velocity, y velocity, z velocity, colours, fade colours, whether to trail, whether to twinkle" +func_92035_a,createBall,0,"Creates a small ball or large ball type explosion. Args: particle speed, size, colours, fade colours, whether to trail, whether to flicker" +func_92036_a,createBurst,0,"Creates a burst type explosion. Args: colours, fade colours, whether to trail, whether to flicker" +func_92038_a,createShaped,0,"Creates a creeper-shaped or star-shaped explosion. Args: particle speed, shape, colours, fade colours, whether to trail, whether to flicker, unknown" +func_92043_f,setTwinkle,0, +func_92044_a,setColour,0, +func_92045_e,setTrail,0, +func_92046_g,setFadeColour,0, +func_92058_a,setEntityItemStack,2,Sets the ItemStack for this entity +func_92059_d,getEntityItem,2,"Returns the ItemStack corresponding to the Entity (Note: if no item exists, will log an error but still return an ItemStack containing Block.stone)" +func_92085_d,getIsBlank,2, +func_92087_a,causeThornsDamage,2,Returns the EntityDamageSource of the Thorns enchantment\n \n@param source The Entity that wears the armor with thorn +func_92088_a,makeFireworks,0, +func_92089_a,canApply,2,Determines if this enchantment can be applied to a specific ItemStack. +func_92093_a,getFireTimeForEntity,2,"Gets the amount of ticks an entity should be set fire, adjusted for fire protection." +func_92097_a,negateDamage,2,"Used by ItemStack.attemptDamageItem. Randomly determines if a point of damage should be negated using the enchantment level (par1). If the ItemStack is Armor then there is a flat 60% chance for damage to be negated no matter the enchantment level, otherwise there is a 1-(par/1) chance for damage to be negated." +func_92099_a,getEnchantedItem,2, +func_92103_a,addRecipe,2,Adds a shaped recipe to the games recipe list. +func_92110_g,getEnchantments,2, +func_92111_a,getEnchantedItemStack,2,Returns the ItemStack of an enchanted version of this item. +func_92112_a,getRandom,2, +func_92113_a,getAll,0, +func_92114_b,getRandom,2, +func_92115_a,addEnchantment,2,Adds an stored enchantment to an enchanted book ItemStack +func_92116_a,addEnchantmentBooksToList,0,Adds the enchantment books from the supplied EnumEnchantmentType to the given list. +func_94041_b,isItemValidForSlot,2,Returns true if automation is allowed to insert the given stack (ignoring stack size) into the given slot. +func_94053_h,nextTextureIndexX,0, +func_94059_bO,getAlwaysRenderNameTagForRender,0, +func_94060_bK,getAttackingEntity,2, +func_94061_f,setNoAI,2,Set whether this Entity's AI is disabled +func_94083_c,getTntPlacedBy,2,returns null or the entityliving it was placed or ignited by +func_94085_r,getDefaultDisplayTileOffset,2, +func_94086_l,setDisplayTileOffset,2, +func_94095_a,killMinecart,2, +func_94096_e,setHasDisplayTile,2, +func_94099_q,getDisplayTileOffset,2, +func_94100_s,hasDisplayTile,2, +func_94101_h,applyDrag,2, +func_94103_c,explodeCart,2,Makes the minecart explode. +func_94104_d,getFuseTicks,0,Gets the remaining fuse time in ticks. +func_94105_c,ignite,2,Ignites this TNT cart. +func_94107_f,setMinecartPowered,2, +func_94108_c,isMinecartPowered,2, +func_94182_a,addSlot,0, +func_94183_a,getStitchHolder,0, +func_94184_a,getAllStitchSlots,0,Gets the slot and all its subslots +func_94185_c,getOriginY,0, +func_94186_b,getOriginX,0, +func_94194_d,rotate,0, +func_94195_e,isRotated,0, +func_94196_a,setNewDimension,0, +func_94197_a,getWidth,0, +func_94199_b,getHeight,0, +func_94206_g,getMinV,0,Returns the minimum V coordinate to use when rendering with this icon. +func_94207_b,getInterpolatedV,0,Gets a V coordinate on the icon. 0 returns vMin and 16 returns vMax. Other arguments return in-between values. +func_94209_e,getMinU,0,Returns the minimum U coordinate to use when rendering with this icon. +func_94210_h,getMaxV,0,Returns the maximum V coordinate to use when rendering with this icon. +func_94211_a,getIconWidth,0,"Returns the width of the icon, in pixels." +func_94212_f,getMaxU,0,Returns the maximum U coordinate to use when rendering with this icon. +func_94214_a,getInterpolatedU,0,Gets a U coordinate on the icon. 0 returns uMin and 16 returns uMax. Other arguments return in-between values. +func_94215_i,getIconName,0, +func_94216_b,getIconHeight,0,"Returns the height of the icon, in pixels." +func_94217_a,copyFrom,0, +func_94219_l,updateAnimation,0, +func_94241_a,updateCompass,0,"Updates the compass based on the given x,z coords and camera direction" +func_94248_c,updateAnimations,0, +func_94277_a,bindTexture,0, +func_94305_f,doStitch,0, +func_94309_g,getStichSlots,0, +func_94310_b,allocateSlot,0,Attempts to find space for specified tile +func_94311_c,expandAndAllocateSlot,0,Expand stitched texture in order to make space for specified tile +func_94520_b,isKeyTranslated,2,Returns true if the passed key is in the translation table. +func_94522_b,canTranslate,2,Determines whether or not translateToLocal will find a translation for the given key. +func_94525_a,computeStackSize,2,"Compute the new stack size, Returns the stack with the new size. Args : dragSlots, dragMode, dragStack, slotStackSize" +func_94526_b,calcRedstoneFromInventory,2, +func_94527_a,canAddItemToSlot,2,Checks if it's possible to add the given itemstack to the given slot. +func_94529_b,extractDragMode,2,"Extracts the drag mode. Args : eventButton. Return (0 : evenly split, 1 : one item by slot, 2 : not used ?)" +func_94530_a,canMergeSlot,2,Called to determine if the current slot is valid for the stack merging (double-click) code. The stack passed in is null for the initial slot that was double-clicked. +func_94531_b,canDragIntoSlot,2,"Returns true if the player can ""drag-spilt"" items into this slot,. returns true by default. Called to check if the slot can be added to a list of Slots to split the held ItemStack across." +func_94532_c,getDragEvent,2,"Args : clickedButton, Returns (0 : start drag, 1 : add slot, 2 : end drag)" +func_94533_d,resetDrag,2,Reset the drag fields +func_94539_a,setExplosionSource,2, +func_94540_d,setExplosion,2, +func_94541_c,isExplosion,2, +func_94547_a,trackDamage,2,Adds an entry for the combat tracker +func_94549_h,reset,2,Resets this trackers list of combat entries +func_94559_f,isLivingDamageSrc,2,Returns true if {@link net.minecraft.util.DamageSource#getEntity() damage source} is a living entity +func_94560_a,getDamageSrc,2,Get the DamageSource of the CombatEntry instance. +func_94561_i,getDamageAmount,2, +func_94613_c,getExplosivePlacedBy,2,"Returns either the entity that placed the explosive block, the entity that caused the explosion or null." +func_95999_t,getCustomNameTag,2, +func_96092_aw,isPushedByWater,2, +func_96094_a,setCustomNameTag,2,Sets the custom name tag for this entity +func_96095_a,onActivatorRailPass,2,"Called every tick the minecart is on an activator rail. Args: x, y, z, is the rail receiving power" +func_96096_ay,isIgnited,2,Returns true if the TNT minecart is ignited. +func_96107_aA,getXPos,2,Gets the world X position for this hopper entity. +func_96108_aC,getZPos,2,Gets the world Z position for this hopper entity. +func_96109_aB,getYPos,2,Gets the world Y position for this hopper entity. +func_96110_f,setBlocked,2,Set whether this hopper minecart is being blocked by an activator rail. +func_96111_ay,getBlocked,2,Get whether this hopper minecart is being blocked by an activator rail. +func_96120_a,setEquipmentDropChance,2, +func_96122_a,canAttackPlayer,2, +func_96123_co,getWorldScoreboard,2, +func_96124_cp,getTeam,2, +func_96296_a,getValidValues,2,"Gets all the valid values. Args: @param par0: Whether or not to include color values. @param par1: Whether or not to include fancy-styling values (anything that isn't a color value or the ""reset"" value)." +func_96297_d,getFriendlyName,2,Gets the friendly name of this value. +func_96300_b,getValueByName,2,Gets a value by its friendly name; null if the given name does not map to a defined value. +func_96301_b,isFancyStyling,2,False if this is just changing the color or resetting; true otherwise. +func_96302_c,isColor,2,Checks if this is a color code. +func_96332_d,getPlayerName,2, +func_96333_a,joinNiceStringFromCollection,2,"Creates a linguistic series joining together the elements of the given collection. Examples: 1) {} --> """", 2) {""Steve""} --> ""Steve"", 3) {""Steve"", ""Phil""} --> ""Steve and Phil"", 4) {""Steve"", ""Phil"", ""Mark""} --> ""Steve, Phil and Mark""" +func_96441_U,getScoreboard,2, +func_96443_a,setWorldScoreboard,0, +func_96456_a,sendScoreboard,2, +func_96498_a,readTeams,2, +func_96499_a,setScoreboard,2, +func_96500_c,readScores,2, +func_96501_b,readObjectives,2, +func_96503_e,scoresToNbt,2, +func_96504_c,readDisplayConfig,2, +func_96505_b,objectivesToNbt,2, +func_96508_e,getTeam,2,Retrieve the ScorePlayerTeam instance identified by the passed team name +func_96509_i,getPlayersTeam,2,Gets the ScorePlayerTeam object for the given username. +func_96510_d,getObjectivesForEntity,2,Returns all the objectives for the given entity +func_96511_d,removeTeam,2,"Removes the team from the scoreboard, updates all player memberships and broadcasts the deletion to all players" +func_96512_b,removePlayerFromTeam,2,Removes the given username from the given ScorePlayerTeam. If the player is not on the team then an IllegalStateException is thrown. +func_96514_c,getScoreObjectives,2, +func_96517_b,getObjectiveDisplaySlot,2,"Returns 'list' for 0, 'sidebar' for 1, 'belowName for 2, otherwise null." +func_96518_b,getObjective,2,Returns a ScoreObjective for the objective name +func_96519_k,removeObjective,2, +func_96520_a,getObjectivesFromCriteria,2,Returns all the objectives for the given criteria +func_96522_a,onScoreObjectiveAdded,2,Called when a score objective is added +func_96523_a,broadcastTeamCreated,2,"This packet will notify the players that this team is created, and that will register it on the client" +func_96524_g,removePlayerFromTeams,2, +func_96525_g,getTeams,2,Retrieve all registered ScorePlayerTeam instances +func_96526_d,getObjectiveNames,2, +func_96527_f,createTeam,2, +func_96528_e,getScores,2, +func_96529_a,getValueFromObjective,2,Returns the value of the given objective for the given entity name +func_96530_a,setObjectiveInDisplaySlot,2,"0 is tab menu, 1 is sidebar, 2 is below name" +func_96531_f,getTeamNames,2,Retrieve all registered ScorePlayerTeam names +func_96532_b,onObjectiveDisplayNameChanged,2, +func_96533_c,onScoreObjectiveRemoved,2, +func_96534_i,getSortedScores,2,"Returns an array of Score objects, sorting by Score.getScorePoints()" +func_96535_a,addScoreObjective,2,Create and returns the score objective for the given name and ScoreCriteria +func_96537_j,getObjectiveDisplaySlotNumber,2,"Returns 0 for (case-insensitive) 'list', 1 for 'sidebar', 2 for 'belowName', otherwise -1." +func_96538_b,sendTeamUpdate,2,This packet will notify the players that this team is updated +func_96539_a,getObjectiveInDisplaySlot,2,"0 is tab menu, 1 is sidebar, 2 is below name" +func_96546_g,sendDisplaySlotRemovalPackets,2, +func_96551_b,markSaveDataDirty,2, +func_96559_d,getFrontOffsetY,2, +func_96631_a,attemptDamageItem,2,"Attempts to damage the ItemStack with par1 amount of damage, If the ItemStack has the Unbreaking enchantment there is a chance for each point of damage to be negated. Returns true if it takes more damage than getMaxDamage(). Returns false otherwise or if the ItemStack can't be damaged or if all points of damage are negated." +func_96635_a,setScore,2, +func_96636_a,getName,2, +func_96637_b,isReadOnly,2, +func_96645_d,getObjective,2, +func_96646_b,decreaseScore,2, +func_96647_c,setScorePoints,2, +func_96649_a,increseScore,2, +func_96650_f,getScoreScoreboard,2, +func_96652_c,getScorePoints,2, +func_96653_e,getPlayerName,2,Returns the name of the player this score belongs to +func_96660_a,setAllowFriendlyFire,2, +func_96661_b,getRegisteredName,2,Retrieve the name by which this team is registered in the scoreboard +func_96662_c,setNameSuffix,2, +func_96663_f,getColorSuffix,2,Returns the color suffix for the player's team name +func_96664_a,setTeamName,2, +func_96665_g,getAllowFriendlyFire,2, +func_96666_b,setNamePrefix,2, +func_96667_a,formatPlayerName,2,Returns the player name including the color prefixes and suffixes +func_96668_e,getColorPrefix,2,Returns the color prefix for the player's team name +func_96669_c,getTeamName,2, +func_96670_d,getMembershipCollection,2, +func_96678_d,getDisplayName,2, +func_96679_b,getName,2, +func_96680_c,getCriteria,2, +func_96681_a,setDisplayName,2, +func_96682_a,getScoreboard,0, +func_98034_c,isInvisibleToPlayer,0,"Only used by renderer in EntityLivingBase subclasses.\nDetermines if an entity is visible or not to a specfic player, if the entity is normally invisible.\nFor EntityLivingBase subclasses, returning false when invisible will render the entity semitransparent." +func_98035_c,writeMountToNBT,2,Like writeToNBTOptional but does not check if the entity is ridden. Used for saving ridden entities with their riders. +func_98042_n,setTransferTicker,2,"Sets the transfer ticker, used to determine the delay between transfers." +func_98043_aE,canTransfer,2,Returns whether the hopper cart can currently transfer an item. +func_98052_bS,canPickUpLoot,2, +func_98053_h,setCanPickUpLoot,2, +func_98054_a,setScaleForAge,2,"""Sets the scale for an ageable entity according to the boolean parameter, which says if it's a child.""" +func_98055_j,setScale,2, +func_98150_a,getAtlasSprite,0, +func_98152_d,getAllUsernames,2, +func_98220_a,toNBT,2, +func_98268_b,setDelayToMin,2,"Sets the delay to minDelay if parameter given is 1, else return false." +func_98269_i,getRandomEntity,2, +func_98270_a,readFromNBT,2, +func_98271_a,getSpawnerWorld,2, +func_98272_a,setEntityName,2, +func_98273_j,resetTimer,2, +func_98276_e,getEntityNameToSpawn,2,Gets the entity name that should be spawned. +func_98277_a,setRandomEntity,2, +func_98278_g,updateSpawner,2, +func_98279_f,isActivated,2,Returns true if there's a player close enough to this mob spawner to activate it. +func_98280_b,writeToNBT,2, +func_98297_h,getSeeFriendlyInvisiblesEnabled,2, +func_98300_b,setSeeFriendlyInvisiblesEnabled,2, +func_98306_d,readGlyphSizes,0, +func_99999_d,run,0, diff --git a/mappings/data/params.csv b/mappings/data/params.csv new file mode 100644 index 0000000..3931abb --- /dev/null +++ b/mappings/data/params.csv @@ -0,0 +1,9061 @@ +param,name,side +p_100012_1_,maxDuration,0 +p_100015_0_,key,0 +p_104055_1_,force,1 +p_110121_0_,str,0 +p_110128_1_,brokenEntity,2 +p_110132_1_,listener,2 +p_110133_1_,inventoryTitleIn,2 +p_110134_1_,listener,2 +p_110145_1_,entityIn,2 +p_110148_1_,attribute,2 +p_110149_1_,amount,2 +p_110160_1_,sendPacket,2 +p_110160_2_,dropLead,2 +p_110162_1_,entityIn,2 +p_110162_2_,sendAttachNotification,2 +p_110195_1_,growth,2 +p_110199_1_,playerEntity,2 +p_110206_1_,jumpPowerIn,2 +p_110207_1_,chested,2 +p_110214_1_,type,2 +p_110219_1_,rearing,2 +p_110221_1_,hasReproducedIn,2 +p_110234_1_,tamed,2 +p_110235_1_,variant,2 +p_110237_1_,player,2 +p_110238_1_,temperIn,2 +p_110240_1_,entityIn,2 +p_110240_2_,animalChestIn,2 +p_110242_1_,breeding,2 +p_110250_1_,entityIn,2 +p_110250_2_,distance,2 +p_110251_1_,saddled,2 +p_110255_1_,jumping,2 +p_110260_1_,itemStackIn,2 +p_110263_1_,player,2 +p_110297_1_,stack,2 +p_110298_1_,horse,2 +p_110298_2_,horseInventory,2 +p_110304_0_,resourceLocationIn,0 +p_110304_1_,username,0 +p_110311_0_,username,0 +p_110326_1_,message,0 +p_110326_2_,isPlaying,0 +p_110430_4_,sneaking,2 +p_110503_1_,sectionName,0 +p_110503_2_,json,0 +p_110504_1_,metadataSectionSerializer,0 +p_110504_2_,clazz,0 +p_110518_1_,textureManagerIn,0 +p_110536_1_,location,0 +p_110537_0_,location,0 +p_110538_1_,resourcePack,0 +p_110541_1_,resourcesPacksList,0 +p_110542_1_,reloadListener,0 +p_110545_1_,resourcePack,0 +p_110549_1_,resourceManager,0 +p_110551_1_,resourceManager,0 +p_110571_1_,resourceManager,0 +p_110572_1_,iconName,0 +p_110577_1_,resource,0 +p_110578_1_,name,0 +p_110578_2_,texture,0 +p_110579_1_,textureLocation,0 +p_110579_2_,textureObj,0 +p_110580_1_,textureLocation,0 +p_110580_2_,textureObj,0 +p_110581_1_,textureLocation,0 +p_110589_1_,location,0 +p_110590_1_,location,0 +p_110591_1_,name,0 +p_110592_0_,location,0 +p_110593_1_,name,0 +p_110594_1_,name,0 +p_110605_1_,location,0 +p_110646_0_,text,2 +p_110668_4_,worldIn,2 +p_110669_8_,worldIn,2 +p_110671_2_,worldIn,2 +p_110775_1_,entity,0 +p_110776_1_,location,0 +p_110827_1_,entityLivingIn,0 +p_110827_2_,x,0 +p_110827_4_,y,0 +p_110827_6_,z,0 +p_110827_8_,entityYaw,0 +p_110827_9_,partialTicks,0 +p_110828_1_,start,0 +p_110828_3_,end,0 +p_110828_5_,pct,0 +p_110848_1_,horse,0 +p_110966_1_,newWidth,0 +p_110968_1_,newFramesTextureData,0 +p_110969_1_,newHeight,0 +p_110971_1_,inX,0 +p_110971_2_,inY,0 +p_110971_3_,originInX,0 +p_110971_4_,originInY,0 +p_110971_5_,rotatedIn,0 +p_110986_0_,resourceManager,0 +p_110986_1_,imageLocation,0 +p_110988_0_,textureId,0 +p_110995_0_,textureId,0 +p_111092_1_,worldIn,2 +p_111098_1_,worldIn,2 +p_111104_1_,rand,2 +p_111112_1_,shouldWatchIn,2 +p_111117_1_,descriptionIn,2 +p_111121_1_,modifier,2 +p_111124_1_,modifier,2 +p_111127_1_,uuid,2 +p_111128_1_,baseValue,2 +p_111130_1_,operation,2 +p_111145_1_,id,2 +p_111147_1_,modifiers,2 +p_111148_1_,modifiers,2 +p_111150_1_,attribute,2 +p_111151_1_,attribute,2 +p_111152_1_,attributeName,2 +p_111168_1_,saved,2 +p_111183_2_,modifier,2 +p_111185_1_,entityLivingBaseIn,2 +p_111185_3_,amplifier,2 +p_111187_1_,entityLivingBaseIn,2 +p_111187_3_,amplifier,2 +p_111196_1_,theChunk,2 +p_111206_0_,id,2 +p_111207_1_,stack,2 +p_111207_2_,playerIn,2 +p_111207_3_,target,2 +p_111226_1_,enchantmentType,0 +p_111229_1_,types,2 +p_111257_0_,map,2 +p_111258_0_,instance,2 +p_111258_1_,compound,2 +p_111259_0_,compound,2 +p_111261_0_,instance,2 +p_111262_0_,modifier,2 +p_111270_1_,other,2 +p_111271_1_,page,0 +p_111282_1_,playerIn,2 +p_111282_2_,entityIn,2 +p_120016_0_,serverIn,1 +p_130002_1_,playerIn,2 +p_130011_1_,entityIn,2 +p_130099_1_,index,0 +p_135021_1_,inputStreamIn,0 +p_135022_1_,resourceManager,0 +p_135022_2_,languageList,0 +p_135023_1_,translateKey,0 +p_135023_2_,parameters,0 +p_135026_1_,translateKey,0 +p_135028_1_,resourcesList,0 +p_135043_1_,resourcesPacks,0 +p_135045_1_,currentLanguageIn,0 +p_135051_0_,i18nLocaleIn,0 +p_135052_0_,translateKey,0 +p_135052_1_,parameters,0 +p_135056_1_,location,0 +p_135058_1_,metadataSerializer,0 +p_135058_2_,metadataSectionName,0 +p_135064_1_,key,2 +p_142012_1_,teamIn,2 +p_142014_1_,otherEntity,2 +p_142053_1_,input,2 +p_142054_1_,other,2 +p_143006_1_,idleTimeout,2 +p_143009_1_,worldIn,2 +p_143009_2_,tagCompound,2 +p_143011_1_,tagCompound,2 +p_143012_1_,tagCompound,2 +p_143017_1_,tagCompound,2 +p_143020_1_,worldIn,2 +p_143020_2_,tagCompound,2 +p_143021_1_,chunkX,2 +p_143021_2_,chunkZ,2 +p_143022_1_,tagCompound,2 +p_143026_1_,chunkX,2 +p_143026_2_,chunkZ,2 +p_143026_3_,start,2 +p_143027_1_,worldIn,2 +p_143031_0_,componentClass,2 +p_143031_1_,componentName,2 +p_143032_0_,tagCompound,2 +p_143032_1_,worldIn,2 +p_143033_0_,start,2 +p_143034_0_,startClass,2 +p_143034_1_,structureName,2 +p_143035_0_,tagCompound,2 +p_143035_1_,worldIn,2 +p_143036_0_,component,2 +p_143042_0_,chunkX,2 +p_143042_1_,chunkZ,2 +p_143043_1_,tagCompoundIn,2 +p_143043_2_,chunkX,2 +p_143043_3_,chunkZ,2 +p_145747_1_,component,2 +p_145750_1_,lastOutputMessage,2 +p_145752_1_,command,2 +p_145755_1_,worldIn,2 +p_145758_1_,tagCompound,2 +p_145759_1_,nbt,2 +p_145769_1_,id,2 +p_145770_1_,x,0 +p_145770_3_,y,0 +p_145770_5_,z,0 +p_145771_1_,x,2 +p_145771_3_,y,2 +p_145771_5_,z,2 +p_145778_1_,itemIn,2 +p_145778_2_,size,2 +p_145778_3_,offsetY,2 +p_145779_1_,itemIn,2 +p_145779_2_,size,2 +p_145781_1_,dataID,2 +p_145797_1_,owner,2 +p_145799_1_,thrower,2 +p_145826_0_,cl,2 +p_145826_1_,id,2 +p_145827_0_,nbt,2 +p_145828_1_,reportCategory,2 +p_145834_1_,worldIn,2 +p_145835_1_,x,0 +p_145835_3_,y,0 +p_145835_5_,z,0 +p_145839_1_,compound,2 +p_145841_1_,compound,2 +p_145842_1_,id,2 +p_145842_2_,type,2 +p_145857_1_,recordStack,2 +p_145860_1_,ticks,2 +p_145884_0_,hopper,2 +p_145886_1_,customNameIn,2 +p_145893_0_,worldIn,2 +p_145893_1_,x,2 +p_145893_3_,y,2 +p_145893_5_,z,2 +p_145894_0_,stack1,2 +p_145894_1_,stack2,2 +p_145896_1_,ticks,2 +p_145898_1_,itemIn,2 +p_145903_1_,rotation,2 +p_145912_1_,playerIn,2 +p_145913_1_,isEditableIn,0 +p_145920_1_,customNameIn,2 +p_145936_1_,meta,2 +p_145936_2_,stack,2 +p_145937_1_,name,2 +p_145964_1_,potItem,2 +p_145964_2_,potData,2 +p_145976_1_,name,2 +p_145999_1_,name,2 +p_146018_1_,customName,2 +p_146019_1_,stack,2 +p_146023_1_,blockIn,2 +p_146024_1_,itemIn,0 +p_146024_2_,metadataIn,0 +p_146025_1_,blockIn,2 +p_146026_1_,itemIn,2 +p_146028_1_,itemIn,2 +p_146029_1_,itemIn,2 +p_146030_1_,itemIn,0 +p_146030_2_,metadataIn,0 +p_146030_3_,isMetaSpecific,0 +p_146031_1_,chestTileEntity,2 +p_146067_1_,damageValue,2 +p_146069_1_,size,2 +p_146070_1_,par1,2 +p_146071_1_,isChild,2 +p_146082_1_,player,2 +p_146086_1_,itemStackIn,2 +p_146094_0_,profile,2 +p_146095_1_,cmdBlockLogic,2 +p_146097_1_,droppedItem,2 +p_146097_2_,dropAround,2 +p_146097_3_,traceItem,2 +p_146099_1_,blockToHarvest,2 +p_146105_1_,chatComponent,2 +p_146110_0_,x,0 +p_146110_1_,y,0 +p_146110_2_,u,0 +p_146110_3_,v,0 +p_146110_4_,width,0 +p_146110_5_,height,0 +p_146110_6_,textureWidth,0 +p_146110_7_,textureHeight,0 +p_146111_1_,mouseX,0 +p_146111_2_,mouseY,0 +p_146112_1_,mc,0 +p_146112_2_,mouseX,0 +p_146112_3_,mouseY,0 +p_146113_1_,soundHandlerIn,0 +p_146114_1_,mouseOver,0 +p_146116_1_,mc,0 +p_146116_2_,mouseX,0 +p_146116_3_,mouseY,0 +p_146118_1_,mouseX,0 +p_146118_2_,mouseY,0 +p_146119_1_,mc,0 +p_146119_2_,mouseX,0 +p_146119_3_,mouseY,0 +p_146159_1_,mc,0 +p_146159_2_,mouseX,0 +p_146159_3_,mouseY,0 +p_146160_1_,mcIn,0 +p_146227_1_,chatComponent,0 +p_146229_1_,amount,0 +p_146230_1_,updateCounter,0 +p_146233_0_,scale,0 +p_146234_1_,chatComponent,0 +p_146234_2_,chatLineId,0 +p_146236_1_,mouseX,0 +p_146236_2_,mouseY,0 +p_146237_1_,chatComponent,0 +p_146237_2_,chatLineId,0 +p_146237_3_,updateCounter,0 +p_146237_4_,displayOnly,0 +p_146239_1_,message,0 +p_146242_1_,id,0 +p_146243_0_,scale,0 +p_146255_1_,achievementIn,0 +p_146256_1_,ach,0 +p_146270_1_,tint,0 +p_146273_1_,mouseX,0 +p_146273_2_,mouseY,0 +p_146273_3_,clickedMouseButton,0 +p_146273_4_,timeSinceLastClick,0 +p_146275_0_,copyText,0 +p_146278_1_,tint,0 +p_146279_1_,tabName,0 +p_146279_2_,mouseX,0 +p_146279_3_,mouseY,0 +p_146280_1_,mc,0 +p_146280_2_,width,0 +p_146280_3_,height,0 +p_146283_1_,textLines,0 +p_146283_2_,x,0 +p_146283_3_,y,0 +p_146284_1_,button,0 +p_146285_1_,stack,0 +p_146285_2_,x,0 +p_146285_3_,y,0 +p_146286_1_,mouseX,0 +p_146286_2_,mouseY,0 +p_146286_3_,state,0 +p_146316_1_,toggle,0 +p_146317_0_,saveLoader,0 +p_146317_1_,name,0 +p_146318_1_,original,0 +p_146367_1_,ip,0 +p_146367_2_,port,0 +p_146402_1_,msgPos,0 +p_146462_1_,publish,0 +p_146463_1_,typedChar,0 +p_146463_2_,keyCode,0 +p_146790_1_,index,0 +p_146791_1_,server,0 +p_146975_1_,x,0 +p_146975_2_,y,0 +p_146976_1_,partialTicks,0 +p_146976_2_,mouseX,0 +p_146976_3_,mouseY,0 +p_146977_1_,slotIn,0 +p_146978_1_,left,0 +p_146978_2_,top,0 +p_146978_3_,right,0 +p_146978_4_,bottom,0 +p_146978_5_,pointX,0 +p_146978_6_,pointY,0 +p_146979_1_,mouseX,0 +p_146979_2_,mouseY,0 +p_146981_1_,slotIn,0 +p_146981_2_,mouseX,0 +p_146981_3_,mouseY,0 +p_146982_1_,stack,0 +p_146982_2_,x,0 +p_146982_3_,y,0 +p_146982_4_,altText,0 +p_146983_1_,keyCode,0 +p_146984_1_,slotIn,0 +p_146984_2_,slotId,0 +p_146984_3_,clickedButton,0 +p_146984_4_,clickType,0 +p_147046_0_,posX,0 +p_147046_1_,posY,0 +p_147046_2_,scale,0 +p_147046_3_,mouseX,0 +p_147046_4_,mouseY,0 +p_147046_5_,ent,0 +p_147100_1_,packetIn,2 +p_147108_1_,guiScreenIn,0 +p_147115_1_,leftClick,0 +p_147138_1_,response,2 +p_147139_1_,difficulty,2 +p_147149_1_,toFile,2 +p_147154_0_,name,0 +p_147176_0_,sender,2 +p_147176_1_,args,2 +p_147176_2_,index,2 +p_147178_0_,sender,2 +p_147178_1_,args,2 +p_147179_0_,sender,2 +p_147179_1_,id,2 +p_147180_0_,sender,2 +p_147180_1_,id,2 +p_147183_1_,name,2 +p_147185_1_,sender,2 +p_147185_2_,args,2 +p_147185_3_,index,2 +p_147189_1_,name,2 +p_147189_2_,edit,2 +p_147193_1_,sender,2 +p_147193_2_,args,2 +p_147193_3_,index,2 +p_147200_1_,sender,2 +p_147200_2_,args,2 +p_147200_3_,index,2 +p_147202_3_,stringBuilder,2 +p_147204_1_,timeSpan,2 +p_147204_3_,tickSpan,2 +p_147205_1_,timeSpan,2 +p_147205_3_,tickSpan,2 +p_147210_1_,sender,2 +p_147210_2_,address,2 +p_147210_3_,reason,2 +p_147224_1_,server,0 +p_147225_1_,server,0 +p_147231_1_,reason,2 +p_147234_1_,packetIn,2 +p_147235_1_,packetIn,2 +p_147236_1_,packetIn,2 +p_147237_1_,packetIn,2 +p_147238_1_,packetIn,2 +p_147239_1_,packetIn,2 +p_147240_1_,packetIn,2 +p_147241_1_,packetIn,2 +p_147242_1_,packetIn,2 +p_147243_1_,packetIn,2 +p_147244_1_,packetIn,2 +p_147245_1_,packetIn,2 +p_147246_1_,packetIn,2 +p_147247_1_,packetIn,2 +p_147248_1_,packetIn,2 +p_147249_1_,packetIn,2 +p_147250_1_,packetIn,2 +p_147251_1_,packetIn,2 +p_147252_1_,packetIn,2 +p_147253_1_,packetIn,2 +p_147254_1_,packetIn,2 +p_147255_1_,packetIn,2 +p_147256_1_,packetIn,2 +p_147257_1_,packetIn,2 +p_147258_1_,packetIn,2 +p_147259_1_,packetIn,2 +p_147260_1_,packetIn,2 +p_147261_1_,packetIn,2 +p_147262_1_,packetIn,2 +p_147263_1_,packetIn,2 +p_147264_1_,packetIn,2 +p_147265_1_,packetIn,2 +p_147266_1_,packetIn,2 +p_147267_1_,packetIn,2 +p_147268_1_,packetIn,2 +p_147269_1_,packetIn,2 +p_147270_1_,packetIn,2 +p_147271_1_,packetIn,2 +p_147272_1_,packetIn,2 +p_147273_1_,packetIn,2 +p_147274_1_,packetIn,2 +p_147275_1_,packetIn,2 +p_147276_1_,packetIn,2 +p_147277_1_,packetIn,2 +p_147278_1_,packetIn,2 +p_147279_1_,packetIn,2 +p_147280_1_,packetIn,2 +p_147281_1_,packetIn,2 +p_147282_1_,packetIn,2 +p_147283_1_,packetIn,2 +p_147284_1_,packetIn,2 +p_147285_1_,packetIn,2 +p_147286_1_,packetIn,2 +p_147287_1_,packetIn,2 +p_147288_1_,packetIn,2 +p_147289_1_,packetIn,2 +p_147290_1_,packetIn,2 +p_147291_1_,packetIn,2 +p_147292_1_,packetIn,2 +p_147293_1_,packetIn,2 +p_147294_1_,packetIn,2 +p_147295_1_,packetIn,2 +p_147311_1_,packetIn,2 +p_147312_1_,packetIn,2 +p_147315_1_,packetIn,2 +p_147316_1_,packetIn,2 +p_147322_1_,reason,2 +p_147338_1_,packetIn,2 +p_147339_1_,packetIn,2 +p_147340_1_,packetIn,2 +p_147341_1_,packetIn,2 +p_147342_1_,packetIn,2 +p_147343_1_,packetIn,2 +p_147344_1_,packetIn,2 +p_147345_1_,packetIn,2 +p_147346_1_,packetIn,2 +p_147347_1_,packetIn,2 +p_147348_1_,packetIn,2 +p_147349_1_,packetIn,2 +p_147351_1_,packetIn,2 +p_147352_1_,packetIn,2 +p_147353_1_,packetIn,2 +p_147354_1_,packetIn,2 +p_147355_1_,packetIn,2 +p_147356_1_,packetIn,2 +p_147357_1_,packetIn,2 +p_147358_1_,packetIn,2 +p_147359_1_,packetIn,2 +p_147360_1_,reason,2 +p_147361_1_,command,2 +p_147364_1_,x,2 +p_147364_3_,y,2 +p_147364_5_,z,2 +p_147364_7_,yaw,2 +p_147364_8_,pitch,2 +p_147383_1_,packetIn,2 +p_147388_1_,packetIn,2 +p_147389_1_,packetIn,2 +p_147390_1_,packetIn,2 +p_147397_1_,packetIn,2 +p_147398_1_,packetIn,2 +p_147407_1_,icon,0 +p_147413_1_,index,0 +p_147413_2_,server,0 +p_147423_1_,x,2 +p_147423_2_,y,2 +p_147423_3_,z,2 +p_147442_1_,strength,0 +p_147447_1_,vec31,2 +p_147447_2_,vec32,2 +p_147447_3_,stopOnLiquid,2 +p_147447_4_,ignoreBlockWithoutBoundingBox,2 +p_147447_5_,returnLastUncollidableBlock,2 +p_147448_1_,tileEntityCollection,2 +p_147457_1_,tileEntityIn,2 +p_147458_1_,x1,2 +p_147458_2_,y1,2 +p_147458_3_,z1,2 +p_147458_4_,x2,2 +p_147458_5_,y2,2 +p_147458_6_,z2,2 +p_147461_1_,bb,2 +p_147467_3_,chunkIn,2 +p_147470_1_,bb,2 +p_147485_1_,event,2 +p_147486_1_,minX,2 +p_147486_2_,minY,2 +p_147486_3_,minZ,2 +p_147486_4_,maxX,2 +p_147486_5_,maxY,2 +p_147486_6_,maxZ,2 +p_147497_1_,rendererDispatcherIn,0 +p_147499_1_,location,0 +p_147517_0_,mobSpawnerLogic,0 +p_147517_1_,posX,0 +p_147517_3_,posY,0 +p_147517_5_,posZ,0 +p_147517_7_,partialTicks,0 +p_147543_1_,worldIn,0 +p_147546_1_,teClass,0 +p_147547_1_,tileEntityIn,0 +p_147549_1_,tileEntityIn,0 +p_147549_2_,x,0 +p_147549_4_,y,0 +p_147549_6_,z,0 +p_147549_8_,partialTicks,0 +p_147585_1_,x1,2 +p_147585_2_,y1,2 +p_147585_3_,z1,2 +p_147585_4_,x2,2 +p_147585_5_,y2,2 +p_147585_6_,z2,2 +p_147605_1_,width,0 +p_147605_2_,height,0 +p_147613_1_,width,0 +p_147613_2_,height,0 +p_147633_1_,mipmapLevelsIn,0 +p_147634_1_,location,0 +p_147641_1_,bufferedImageIn,0 +p_147645_1_,textureLocation,0 +p_147647_1_,text,0 +p_147673_0_,soundResource,0 +p_147674_0_,soundResource,0 +p_147674_1_,pitch,0 +p_147675_0_,soundResource,0 +p_147675_1_,xPosition,0 +p_147675_2_,yPosition,0 +p_147675_3_,zPosition,0 +p_147680_1_,location,0 +p_147681_1_,sound,0 +p_147681_2_,delay,0 +p_147682_1_,sound,0 +p_147684_1_,category,0 +p_147684_2_,volume,0 +p_147686_1_,categories,0 +p_147691_1_,player,0 +p_147692_1_,sound,0 +p_147693_1_,location,0 +p_147693_2_,sounds,0 +p_147704_1_,width,0 +p_147704_2_,height,0 +p_147778_1_,br1,0 +p_147778_2_,br2,0 +p_147778_3_,br3,0 +p_147778_4_,br4,0 +p_147906_1_,entityIn,0 +p_147906_2_,str,0 +p_147906_3_,x,0 +p_147906_5_,y,0 +p_147906_7_,z,0 +p_147906_9_,maxDistance,0 +p_147936_1_,entity,0 +p_147936_2_,partialTicks,0 +p_147936_3_,hideDebugBox,0 +p_147937_1_,entityIn,0 +p_147937_2_,partialTicks,0 +p_147939_1_,entity,0 +p_147939_10_,hideDebugBox,0 +p_147939_2_,x,0 +p_147939_4_,y,0 +p_147939_6_,z,0 +p_147939_8_,entityYaw,0 +p_147939_9_,partialTicks,0 +p_147940_1_,entityIn,0 +p_147940_2_,x,0 +p_147940_4_,y,0 +p_147940_6_,z,0 +p_147940_8_,entityYaw,0 +p_147940_9_,partialTicks,0 +p_147942_0_,textureId,0 +p_147962_0_,data,0 +p_147962_1_,rows,0 +p_147962_2_,columns,0 +p_147963_1_,level,0 +p_147965_1_,index,0 +p_148018_1_,partialTicks,0 +p_148026_1_,width,0 +p_148026_2_,height,0 +p_148054_1_,manager,0 +p_148056_1_,manager,0 +p_148057_0_,resourceManager,0 +p_148057_1_,type,0 +p_148057_2_,filename,0 +p_148075_1_,manager,0 +p_148120_3_,mouseXIn,0 +p_148120_4_,mouseYIn,0 +p_148122_1_,widthIn,0 +p_148122_2_,heightIn,0 +p_148122_3_,topIn,0 +p_148122_4_,bottomIn,0 +p_148128_1_,mouseXIn,0 +p_148128_2_,mouseYIn,0 +p_148130_1_,showSelectionBoxIn,0 +p_148131_1_,slotIndex,0 +p_148133_1_,hasListHeaderIn,0 +p_148133_2_,headerPaddingIn,0 +p_148134_1_,scrollUpButtonIDIn,0 +p_148134_2_,scrollDownButtonIDIn,0 +p_148136_1_,startY,0 +p_148136_2_,endY,0 +p_148136_3_,startAlpha,0 +p_148136_4_,endAlpha,0 +p_148140_1_,leftIn,0 +p_148143_1_,enabledIn,0 +p_148144_1_,slotIndex,0 +p_148144_2_,isDoubleClick,0 +p_148144_3_,mouseX,0 +p_148144_4_,mouseY,0 +p_148145_1_,amount,0 +p_148147_1_,button,0 +p_148179_1_,mouseX,0 +p_148179_2_,mouseY,0 +p_148179_3_,mouseEvent,0 +p_148180_1_,index,0 +p_148182_1_,mcIn,0 +p_148192_1_,selectedSlotIndexIn,0 +p_148237_1_,noOverlayRendering,0 +p_148246_1_,mapdataIn,0 +p_148248_1_,mapdataIn,0 +p_148250_1_,mapdataIn,0 +p_148259_0_,gameDirectory,0 +p_148259_1_,screenshotName,0 +p_148259_2_,width,0 +p_148259_3_,height,0 +p_148259_4_,buffer,0 +p_148260_0_,gameDirectory,0 +p_148260_1_,width,0 +p_148260_2_,height,0 +p_148260_3_,buffer,0 +p_148262_1_,value,0 +p_148263_1_,value,0 +p_148264_1_,value,0 +p_148266_1_,value,0 +p_148268_1_,value,0 +p_148277_1_,slotIndex,0 +p_148277_2_,x,0 +p_148277_3_,y,0 +p_148277_4_,mouseEvent,0 +p_148277_5_,relativeX,0 +p_148277_6_,relativeY,0 +p_148278_1_,slotIndex,0 +p_148335_1_,seed,0 +p_148527_1_,repositories,0 +p_148537_1_,packetIn,2 +p_148537_2_,dimension,2 +p_148539_1_,component,2 +p_148540_1_,packetIn,2 +p_148541_1_,x,2 +p_148541_10_,packetIn,2 +p_148541_3_,y,2 +p_148541_5_,z,2 +p_148541_7_,radius,2 +p_148541_9_,dimension,2 +p_148542_1_,address,2 +p_148542_2_,profile,2 +p_148543_10_,dimension,2 +p_148543_2_,x,2 +p_148543_4_,y,2 +p_148543_6_,z,2 +p_148543_8_,radius,2 +p_148544_1_,component,2 +p_148544_2_,isChat,2 +p_148545_1_,profile,2 +p_148553_1_,volumeIn,0 +p_148554_1_,weightIn,0 +p_148557_1_,isStreaming,0 +p_148559_1_,pitchIn,0 +p_148561_1_,nameIn,0 +p_148562_1_,typeIn,0 +p_148571_1_,soundCat,0 +p_148594_1_,sound,0 +p_148594_2_,entry,0 +p_148594_3_,category,0 +p_148595_1_,category,0 +p_148597_1_,sound,0 +p_148599_1_,sound,0 +p_148599_2_,delay,0 +p_148601_1_,category,0 +p_148601_2_,volume,0 +p_148602_1_,sound,0 +p_148606_1_,sound,0 +p_148606_2_,entry,0 +p_148611_1_,p_sound,0 +p_148615_1_,player,0 +p_148647_1_,volumeIn,0 +p_148651_1_,pitchIn,0 +p_148727_1_,sound,0 +p_148741_1_,key,2 +p_148745_1_,value,2 +p_148746_1_,key,2 +p_148746_2_,value,2 +p_148747_1_,key,2 +p_148754_1_,id,2 +p_148757_1_,value,2 +p_148821_0_,sFactorRGB,0 +p_148821_1_,dFactorRGB,0 +p_148821_2_,sfactorAlpha,0 +p_148821_3_,dfactorAlpha,0 +p_148833_1_,handler,2 +p_148837_1_,buf,2 +p_148840_1_,buf,2 +p_148995_1_,newY,2 +p_148996_1_,newX,2 +p_149000_1_,newSpeedY,2 +p_149003_1_,newSpeedX,2 +p_149005_1_,newZ,2 +p_149007_1_,newSpeedZ,2 +p_149065_1_,worldIn,0 +p_149091_1_,worldIn,0 +p_149102_1_,isFlying,2 +p_149104_1_,flySpeedIn,2 +p_149108_1_,isInvulnerable,2 +p_149109_1_,isAllowFlying,2 +p_149110_1_,walkSpeedIn,2 +p_149111_1_,isCreativeMode,2 +p_149161_1_,worldIn,0 +p_149299_1_,key,2 +p_149300_1_,key,2 +p_149381_1_,worldIn,0 +p_149469_1_,isMoving,2 +p_149483_1_,isFlying,2 +p_149485_1_,flySpeedIn,2 +p_149490_1_,isInvulnerable,2 +p_149491_1_,isAllowFlying,2 +p_149492_1_,walkSpeedIn,2 +p_149493_1_,isCreativeMode,2 +p_149564_1_,worldIn,2 +p_149634_0_,itemIn,2 +p_149638_1_,exploder,2 +p_149647_1_,tab,2 +p_149654_1_,point,2 +p_149659_1_,explosionIn,2 +p_149661_1_,point,2 +p_149663_1_,name,2 +p_149666_1_,itemIn,0 +p_149666_2_,tab,0 +p_149666_3_,list,0 +p_149667_1_,other,2 +p_149672_1_,sound,2 +p_149675_1_,shouldTick,2 +p_149676_1_,minX,2 +p_149676_2_,minY,2 +p_149676_3_,minZ,2 +p_149676_4_,maxX,2 +p_149676_5_,maxY,2 +p_149676_6_,maxZ,2 +p_149679_1_,fortune,2 +p_149679_2_,random,2 +p_149680_0_,blockIn,2 +p_149680_1_,other,2 +p_149682_0_,blockIn,2 +p_149684_0_,name,2 +p_149687_1_,point,2 +p_149711_1_,hardness,2 +p_149713_1_,opacity,2 +p_149715_1_,value,2 +p_149729_0_,id,2 +p_149738_1_,worldIn,2 +p_149745_1_,random,2 +p_149752_1_,resistance,2 +p_149801_0_,meta,2 +p_149829_1_,fallingEntity,2 +p_149854_1_,ground,2 +p_149907_1_,other,2 +p_149908_1_,blockIn,2 +p_149909_0_,blockIn,2 +p_149915_1_,worldIn,2 +p_149915_2_,meta,2 +p_149917_0_,meta,2 +p_149928_1_,blockIn,2 +p_149928_2_,meta,2 +p_149937_0_,meta,2 +p_149939_0_,coords,2 +p_149940_1_,stack,2 +p_150002_1_,meta,2 +p_150003_0_,blockIn,0 +p_150011_1_,combinedMeta,2 +p_150089_1_,meta,2 +p_150093_1_,blockIn,2 +p_150098_1_,blockIn,2 +p_150119_0_,blockIn,2 +p_150122_1_,fancy,0 +p_150148_0_,blockIn,2 +p_150209_1_,event,2 +p_150217_1_,italic,2 +p_150221_1_,parent,2 +p_150225_1_,strikethrough,2 +p_150227_1_,boldIn,2 +p_150228_1_,underlined,2 +p_150237_1_,obfuscated,2 +p_150238_1_,color,2 +p_150241_1_,event,2 +p_150255_1_,style,2 +p_150257_1_,component,2 +p_150258_1_,text,2 +p_150262_0_,components,2 +p_150269_1_,format,2 +p_150272_1_,index,2 +p_150284_0_,id,2 +p_150295_1_,key,2 +p_150295_2_,type,2 +p_150297_1_,key,2 +p_150297_2_,type,2 +p_150298_0_,name,2 +p_150298_1_,data,2 +p_150298_2_,output,2 +p_150299_1_,key,2 +p_150304_1_,idx,2 +p_150304_2_,nbt,2 +p_150305_1_,i,2 +p_150306_1_,i,2 +p_150307_1_,i,2 +p_150308_1_,i,2 +p_150309_1_,i,2 +p_150502_1_,buf,2 +p_150503_1_,ctx,2 +p_150503_2_,buffer,2 +p_150504_1_,in,2 +p_150504_2_,out,2 +p_150513_1_,biomeGenBaseIn,2 +p_150526_1_,worldIn,2 +p_150541_1_,worldIn,2 +p_150557_1_,colorIn,2 +p_150567_1_,rand,2 +p_150568_0_,id,2 +p_150569_1_,biome,2 +p_150570_1_,heights,2 +p_150649_1_,rail,2 +p_150672_0_,canonicalNameIn,2 +p_150684_0_,canonicalNameIn,2 +p_150695_1_,style,2 +p_150695_2_,object,2 +p_150695_3_,ctx,2 +p_150696_0_,component,2 +p_150699_0_,json,2 +p_150708_1_,random,2 +p_150709_1_,maxDamagePercentIn,2 +p_150718_1_,message,2 +p_150719_1_,handler,2 +p_150722_0_,address,0 +p_150723_1_,newState,2 +p_150727_1_,key,2 +p_150732_1_,inPacket,2 +p_150732_2_,futureListeners,2 +p_150752_0_,packetIn,2 +p_150760_0_,stateId,2 +p_150786_1_,nbt,2 +p_150787_1_,input,2 +p_150788_1_,stack,2 +p_150789_1_,maxLength,2 +p_150790_0_,input,2 +p_150808_1_,x,2 +p_150808_2_,y,2 +p_150808_3_,z,2 +p_150810_1_,x,2 +p_150810_2_,y,2 +p_150810_3_,z,2 +p_150811_1_,x,2 +p_150811_2_,z,2 +p_150813_1_,tileEntityIn,2 +p_150819_1_,x,2 +p_150819_2_,y,2 +p_150819_3_,z,2 +p_150826_0_,key,2 +p_150869_0_,sender,2 +p_150869_1_,token,2 +p_150871_1_,player,2 +p_150871_2_,stat,2 +p_150871_3_,amount,2 +p_150873_1_,playerIn,2 +p_150873_2_,statIn,2 +p_150884_1_,player,2 +p_150891_0_,itemIn,2 +p_150892_1_,stack,2 +p_150893_1_,stack,2 +p_150893_2_,state,2 +p_150895_1_,itemIn,0 +p_150895_2_,tab,0 +p_150895_3_,subItems,0 +p_150896_1_,stack,2 +p_150897_1_,blockIn,2 +p_150898_0_,blockIn,2 +p_150899_0_,id,2 +p_150902_0_,nbt,0 +p_150902_1_,tooltip,0 +p_150903_0_,stack,0 +p_150903_1_,key,0 +p_150905_1_,stack,2 +p_150906_1_,stack,2 +p_150910_1_,emptyBuckets,2 +p_150910_2_,player,2 +p_150910_3_,fullBucket,2 +p_150911_1_,stack,2 +p_150911_2_,worldIn,2 +p_150911_3_,player,2 +p_150912_0_,mapId,0 +p_150912_1_,worldIn,0 +p_150926_0_,name,0 +p_150930_0_,nbt,2 +p_150943_1_,names,2 +p_150974_0_,meta,2 +p_150978_0_,stack,2 +p_150996_1_,newItem,2 +p_150997_1_,blockIn,2 +p_150998_1_,blockIn,2 +p_151001_1_,displayName,2 +p_151176_0_,eggInfo,2 +p_151180_0_,statBaseIn,2 +p_151182_0_,eggInfo,2 +p_151188_1_,integerValueIn,2 +p_151190_1_,jsonSerializableValueIn,2 +p_151225_0_,url,2 +p_151225_1_,content,2 +p_151225_2_,skipLoggingErrors,2 +p_151226_0_,url,2 +p_151226_1_,data,2 +p_151226_2_,skipLoggingErrors,2 +p_151229_0_,opMode,2 +p_151229_1_,key,2 +p_151235_0_,value,2 +p_151236_0_,value,2 +p_151237_0_,num,2 +p_151237_2_,min,2 +p_151237_4_,max,2 +p_151238_0_,lowerBnd,2 +p_151238_2_,upperBnd,2 +p_151238_4_,slide,2 +p_151239_0_,value,2 +p_151241_0_,value,2 +p_151246_0_,string,2 +p_151247_1_,entityIn,2 +p_151248_1_,entityIn,2 +p_151251_1_,thePacket,2 +p_151252_1_,theTileEntity,2 +p_151253_1_,x,2 +p_151253_2_,y,2 +p_151253_3_,z,2 +p_151255_1_,string,2 +p_151256_1_,ctx,2 +p_151256_2_,data,2 +p_151259_1_,packetIn,2 +p_151261_1_,packetIn,2 +p_151265_1_,address,2 +p_151265_2_,port,2 +p_151315_1_,motd,2 +p_151319_1_,countData,2 +p_151320_1_,faviconBlob,2 +p_151321_1_,protocolVersionData,2 +p_151330_1_,playersIn,2 +p_151367_1_,user,2 +p_151367_2_,attacker,2 +p_151367_3_,level,2 +p_151368_1_,user,2 +p_151368_2_,target,2 +p_151368_3_,level,2 +p_151386_0_,player,2 +p_151387_0_,player,2 +p_151390_0_,buffer,0 +p_151391_1_,buffer,2 +p_151392_1_,player,2 +p_151392_2_,newTeam,2 +p_151393_1_,input,2 +p_151393_2_,stack,2 +p_151393_3_,experience,2 +p_151394_1_,input,2 +p_151394_2_,stack,2 +p_151394_3_,experience,2 +p_151395_1_,stack,2 +p_151396_1_,input,2 +p_151396_2_,stack,2 +p_151396_3_,experience,2 +p_151397_1_,stack1,2 +p_151397_2_,stack2,2 +p_151398_1_,stack,2 +p_151426_0_,id,2 +p_151438_1_,sndCategory,0 +p_151439_1_,sndCategory,0 +p_151439_2_,soundLevel,0 +p_151440_1_,key,0 +p_151440_2_,keyCode,0 +p_151462_1_,keyCode,0 +p_151475_0_,map,2 +p_151475_1_,list,2 +p_151498_1_,blockIn,2 +p_151507_0_,objectsList,2 +p_151507_1_,buffer,2 +p_151508_0_,buffer,2 +p_151509_1_,buffer,2 +p_151510_0_,buffer,2 +p_151510_1_,object,2 +p_151519_1_,entityLivingBaseIn,2 +p_151555_1_,blockIn,2 +p_151555_2_,meta,2 +p_151559_1_,rand,2 +p_151560_1_,rand,2 +p_151616_0_,biomeIDA,2 +p_151616_1_,biomeIDB,2 +p_151686_1_,foodItem,2 +p_152106_1_,playerProfile,2 +p_152107_1_,type,2 +p_152114_1_,entityIn,2 +p_152115_1_,ownerUuid,2 +p_152117_1_,jockey,2 +p_152120_1_,id,2 +p_152125_0_,x,0 +p_152125_1_,y,0 +p_152125_2_,u,0 +p_152125_3_,v,0 +p_152125_4_,uWidth,0 +p_152125_5_,vHeight,0 +p_152125_6_,width,0 +p_152125_7_,height,0 +p_152125_8_,tileWidth,0 +p_152125_9_,tileHeight,0 +p_152129_0_,selectWorld,0 +p_152129_1_,name,0 +p_152129_2_,id,0 +p_152340_1_,imageStream,0 +p_152343_1_,callableToSchedule,0 +p_152344_1_,runnableToSchedule,2 +p_152361_1_,configManager,2 +p_152372_1_,sender,2 +p_152372_2_,command,2 +p_152372_3_,flags,2 +p_152372_4_,msgFormat,2 +p_152372_5_,msgParams,2 +p_152373_0_,sender,2 +p_152373_1_,command,2 +p_152373_2_,msgFormat,2 +p_152373_3_,msgParams,2 +p_152374_0_,sender,2 +p_152374_1_,command,2 +p_152374_3_,msgFormat,2 +p_152374_4_,msgParams,2 +p_152376_1_,level,2 +p_152376_2_,creatureType,2 +p_152378_1_,uuid,2 +p_152421_0_,sessionTypeIn,0 +p_152430_1_,partialTicks,0 +p_152446_1_,input,2 +p_152446_2_,depth,2 +p_152446_3_,sizeTracker,2 +p_152447_0_,input,2 +p_152447_1_,sizeTracker,2 +p_152448_0_,input,2 +p_152448_1_,sizeTracker,2 +p_152449_0_,id,2 +p_152449_1_,key,2 +p_152449_2_,input,2 +p_152449_3_,depth,2 +p_152449_4_,sizeTracker,2 +p_152450_1_,bits,2 +p_152459_0_,compound,2 +p_152506_1_,original,2 +p_152583_1_,serverDataIn,0 +p_152584_1_,mode,0 +p_152596_1_,profile,2 +p_152597_1_,profile,2 +p_152601_1_,profile,2 +p_152602_1_,playerIn,2 +p_152605_1_,profile,2 +p_152607_1_,profile,2 +p_152610_1_,profile,2 +p_152611_1_,distance,2 +p_152612_1_,username,2 +p_152621_1_,chunkX,2 +p_152621_2_,chunkZ,2 +p_152622_1_,radius,2 +p_152641_1_,data,2 +p_152646_0_,json,2 +p_152647_0_,json,2 +p_152648_0_,json,2 +p_152649_1_,gameProfile,2 +p_152650_0_,server,2 +p_152650_1_,username,2 +p_152651_1_,gameProfile,2 +p_152651_2_,expirationDate,2 +p_152652_1_,uuid,2 +p_152653_1_,uuid,2 +p_152655_1_,username,2 +p_152656_1_,limitSize,2 +p_152681_1_,obj,2 +p_152682_1_,entryData,2 +p_152683_1_,obj,2 +p_152684_1_,entry,2 +p_152686_1_,state,2 +p_152687_1_,entry,2 +p_152692_1_,entry,2 +p_152700_1_,username,2 +p_152702_1_,profile,2 +p_152703_1_,username,2 +p_152705_1_,profile,1 +p_152706_1_,name,2 +p_152707_1_,address,2 +p_152708_1_,address,2 +p_152709_1_,address,2 +p_152710_0_,server,1 +p_152711_0_,dir,1 +p_152712_0_,properties,1 +p_152713_0_,input,1 +p_152713_1_,defaultValue,1 +p_152714_0_,properties,1 +p_152715_0_,properties,1 +p_152717_0_,server,2 +p_152717_1_,names,2 +p_152717_2_,callback,2 +p_152718_0_,server,1 +p_152721_0_,inFile,1 +p_152721_1_,read,1 +p_152722_0_,server,1 +p_152723_0_,server,1 +p_152724_0_,server,1 +p_152725_0_,properties,1 +p_152727_0_,convertedFile,1 +p_152753_1_,json,2 +p_152754_0_,base,0 +p_152754_1_,key,0 +p_152755_0_,url,0 +p_152767_1_,statName,2 +p_152767_2_,statValue,2 +p_152768_1_,statName,2 +p_152768_2_,statValue,2 +p_152780_1_,location,0 +p_152788_1_,profile,0 +p_152789_1_,profileTexture,0 +p_152789_3_,skinAvailableCallback,0 +p_152790_1_,profile,0 +p_152790_2_,skinAvailableCallback,0 +p_152790_3_,requireSecure,0 +p_152792_1_,profileTexture,0 +p_152820_1_,error,0 +p_152824_1_,ingestServerSet,0 +p_152829_1_,volume,0 +p_152832_1_,warning,0 +p_152834_1_,maxKbps,0 +p_152837_1_,volume,0 +p_152841_1_,broadcastListenerIn,0 +p_152859_1_,frame,0 +p_153157_0_,shaderIn,0 +p_153157_1_,pname,0 +p_153158_0_,shaderIn,0 +p_153158_1_,maxLength,0 +p_153159_0_,location,0 +p_153159_1_,values,0 +p_153160_0_,location,0 +p_153160_1_,transpose,0 +p_153160_2_,matrices,0 +p_153161_0_,program,0 +p_153162_0_,location,0 +p_153162_1_,values,0 +p_153163_0_,location,0 +p_153163_1_,v0,0 +p_153166_0_,program,0 +p_153166_1_,maxLength,0 +p_153167_0_,target,0 +p_153168_0_,location,0 +p_153168_1_,values,0 +p_153169_0_,shaderIn,0 +p_153169_1_,string,0 +p_153170_0_,shaderIn,0 +p_153171_0_,target,0 +p_153171_1_,framebufferIn,0 +p_153173_0_,location,0 +p_153173_1_,transpose,0 +p_153173_2_,matrices,0 +p_153174_0_,framebufferIn,0 +p_153175_0_,program,0 +p_153175_1_,pname,0 +p_153176_0_,target,0 +p_153176_1_,renderbuffer,0 +p_153177_0_,location,0 +p_153177_1_,values,0 +p_153178_0_,program,0 +p_153178_1_,shaderIn,0 +p_153179_0_,program,0 +p_153181_0_,location,0 +p_153181_1_,values,0 +p_153182_0_,location,0 +p_153182_1_,values,0 +p_153184_0_,renderbuffer,0 +p_153186_0_,target,0 +p_153186_1_,internalFormat,0 +p_153186_2_,width,0 +p_153186_3_,height,0 +p_153187_0_,program,0 +p_153188_0_,target,0 +p_153188_1_,attachment,0 +p_153188_2_,textarget,0 +p_153188_3_,texture,0 +p_153188_4_,level,0 +p_153189_0_,location,0 +p_153189_1_,transpose,0 +p_153189_2_,matrices,0 +p_153190_0_,target,0 +p_153190_1_,attachment,0 +p_153190_2_,renderBufferTarget,0 +p_153190_3_,renderBuffer,0 +p_153191_0_,location,0 +p_153191_1_,values,0 +p_153192_0_,location,0 +p_153192_1_,values,0 +p_153194_0_,programObj,0 +p_153194_1_,name,0 +p_153195_0_,type,0 +p_154311_1_,text,0 +p_154313_1_,isEnabled,0 +p_154334_1_,saveName,0 +p_154335_1_,saveName,0 +p_154347_1_,inFile,1 +p_154353_0_,value,0 +p_174794_1_,type,2 +p_174794_2_,amount,2 +p_174805_1_,alwaysRenderNameTag,2 +p_174806_1_,pitch,2 +p_174806_2_,yaw,2 +p_174809_1_,bb,2 +p_174810_1_,isSilent,2 +p_174815_1_,entityLivingBaseIn,2 +p_174815_2_,entityIn,2 +p_174816_1_,explosionIn,2 +p_174816_2_,worldIn,2 +p_174816_3_,pos,2 +p_174816_4_,blockStateIn,2 +p_174817_1_,entityIn,2 +p_174818_1_,pos,2 +p_174820_1_,inventorySlot,2 +p_174820_2_,itemStackIn,2 +p_174821_1_,outsideBorder,2 +p_174822_1_,blockReachDistance,0 +p_174822_3_,partialTicks,0 +p_174824_1_,partialTicks,0 +p_174825_1_,player,2 +p_174825_2_,targetVec3,2 +p_174826_1_,bb,2 +p_174827_1_,player,2 +p_174828_1_,pos,2 +p_174828_2_,rotationYawIn,2 +p_174828_3_,rotationPitchIn,2 +p_174831_1_,pos,2 +p_174834_1_,compound,0 +p_174846_1_,pos,0 +p_174859_1_,facingDirectionIn,2 +p_174862_0_,worldIn,2 +p_174862_1_,fence,2 +p_174863_0_,worldIn,2 +p_174863_1_,pos,2 +p_174867_1_,ticks,2 +p_174876_1_,playerInventory,2 +p_174876_2_,playerIn,2 +p_174878_1_,posIn,2 +p_174882_1_,playerIn,2 +p_174884_0_,input,2 +p_174885_1_,id,2 +p_174885_2_,value,2 +p_174886_1_,player,2 +p_174887_1_,id,2 +p_174889_1_,player,2 +p_174892_1_,code,2 +p_174894_1_,stack,2 +p_174904_1_,stack,2 +p_174910_1_,chestTe,2 +p_174910_2_,side,2 +p_174911_1_,side,2 +p_174912_1_,posIn,2 +p_174915_0_,hopper,2 +p_174915_1_,inventoryIn,2 +p_174915_2_,index,2 +p_174915_3_,direction,2 +p_174916_0_,inventoryIn,2 +p_174916_1_,stack,2 +p_174916_2_,index,2 +p_174916_3_,side,2 +p_174917_0_,inventoryIn,2 +p_174917_1_,side,2 +p_174918_0_,inventoryIn,2 +p_174918_1_,stack,2 +p_174918_2_,side,2 +p_174919_1_,inventoryIn,2 +p_174919_2_,side,2 +p_174920_0_,inventoryIn,2 +p_174920_1_,stack,2 +p_174920_2_,index,2 +p_174920_3_,side,2 +p_174921_0_,inventoryIn,2 +p_174921_1_,stack,2 +p_174921_2_,index,2 +p_174921_3_,side,2 +p_174925_1_,itemIn,2 +p_174925_2_,metadataIn,2 +p_174925_3_,removeCount,2 +p_174925_4_,itemNBT,2 +p_174926_1_,ticks,0 +p_174928_1_,ticks,0 +p_174929_1_,ticks,0 +p_174942_1_,location,0 +p_174943_1_,resourceManager,0 +p_174953_1_,modelLocation,0 +p_174959_1_,pos,2 +p_174960_1_,pos,2 +p_174961_1_,recordName,2 +p_174961_2_,blockPosIn,2 +p_174962_1_,entityIn,0 +p_174962_2_,partialTicks,0 +p_174965_1_,iteratorIn,0 +p_174967_1_,finishTimeNano,0 +p_174968_1_,worldRendererIn,0 +p_174968_2_,posY,0 +p_174968_3_,reverseX,0 +p_174970_1_,viewEntity,0 +p_174970_2_,partialTicks,0 +p_174970_4_,camera,0 +p_174970_5_,frameCount,0 +p_174970_6_,playerSpectator,0 +p_174972_1_,particleIn,0 +p_174972_10_,yOffset,0 +p_174972_12_,zOffset,0 +p_174972_14_,parameters,0 +p_174972_2_,xCoord,0 +p_174972_4_,yCoord,0 +p_174972_6_,zCoord,0 +p_174972_8_,xOffset,0 +p_174974_1_,particleID,0 +p_174974_11_,yOffset,0 +p_174974_13_,zOffset,0 +p_174974_15_,parameters,0 +p_174974_2_,ignoreRange,0 +p_174974_3_,xCoord,0 +p_174974_5_,yCoord,0 +p_174974_7_,zCoord,0 +p_174974_9_,xOffset,0 +p_174976_1_,partialTicks,0 +p_174976_2_,pass,0 +p_174977_1_,blockLayerIn,0 +p_174977_2_,partialTicks,0 +p_174977_4_,pass,0 +p_174977_5_,entityIn,0 +p_174978_1_,pos,0 +p_174981_1_,tessellatorIn,0 +p_174981_2_,worldRendererIn,0 +p_174981_3_,entityIn,0 +p_174981_4_,partialTicks,0 +p_174982_1_,blockLayerIn,0 +p_174983_1_,pos,0 +p_174983_2_,renderChunkIn,0 +p_174984_1_,x,0 +p_174984_3_,y,0 +p_174984_5_,z,0 +p_175016_1_,state,0 +p_175016_2_,brightness,0 +p_175017_1_,state,0 +p_175017_2_,pos,0 +p_175018_1_,state,0 +p_175018_2_,pos,0 +p_175018_3_,blockAccess,0 +p_175018_4_,worldRendererIn,0 +p_175020_1_,state,0 +p_175020_2_,pos,0 +p_175020_3_,texture,0 +p_175020_4_,blockAccess,0 +p_175022_1_,state,0 +p_175022_2_,worldIn,0 +p_175022_3_,pos,0 +p_175029_1_,blk,0 +p_175029_2_,subType,0 +p_175029_3_,identifier,0 +p_175030_1_,fr,0 +p_175030_2_,stack,0 +p_175030_3_,xPosition,0 +p_175030_4_,yPosition,0 +p_175031_1_,blk,0 +p_175031_2_,identifier,0 +p_175032_1_,renderer,0 +p_175032_2_,quads,0 +p_175032_3_,color,0 +p_175032_4_,stack,0 +p_175033_1_,renderer,0 +p_175033_2_,quad,0 +p_175033_3_,color,0 +p_175035_1_,model,0 +p_175035_2_,color,0 +p_175036_1_,model,0 +p_175036_2_,stack,0 +p_175038_1_,renderer,0 +p_175038_2_,quad,0 +p_175039_1_,isNot,0 +p_175040_1_,stack,0 +p_175040_2_,model,0 +p_175040_3_,cameraTransformType,0 +p_175042_1_,stack,0 +p_175042_2_,x,0 +p_175042_3_,y,0 +p_175045_1_,model,0 +p_175045_2_,color,0 +p_175045_3_,stack,0 +p_175046_1_,stack,0 +p_175047_1_,itm,0 +p_175047_2_,identifier,0 +p_175048_1_,itm,0 +p_175048_2_,subType,0 +p_175048_3_,identifier,0 +p_175049_1_,stack,0 +p_175049_2_,entityToRenderFor,0 +p_175049_3_,cameraTransformType,0 +p_175050_1_,stack,0 +p_175063_1_,text,0 +p_175063_2_,x,0 +p_175063_3_,y,0 +p_175063_4_,color,0 +p_175064_1_,character,0 +p_175065_1_,text,0 +p_175065_2_,x,0 +p_175065_3_,y,0 +p_175065_4_,color,0 +p_175065_5_,dropShadow,0 +p_175066_1_,entityIn,0 +p_175067_1_,partialTicks,0 +p_175068_1_,pass,0 +p_175068_2_,partialTicks,0 +p_175068_3_,finishTimeNano,0 +p_175069_1_,resourceLocationIn,0 +p_175085_1_,stream,0 +p_175086_1_,packetIn,2 +p_175087_1_,packetIn,2 +p_175088_1_,packetIn,2 +p_175089_1_,x,2 +p_175089_3_,y,2 +p_175089_5_,z,2 +p_175089_7_,yaw,2 +p_175089_8_,pitch,2 +p_175089_9_,relativeSet,2 +p_175093_1_,packetIn,2 +p_175094_1_,packetIn,2 +p_175095_1_,packetIn,2 +p_175096_1_,packetIn,2 +p_175097_1_,packetIn,2 +p_175098_1_,packetIn,2 +p_175099_1_,packetIn,2 +p_175100_1_,packetIn,2 +p_175101_1_,packetIn,2 +p_175108_1_,worldIn,2 +p_175111_0_,stack,2 +p_175112_1_,stack,2 +p_175113_0_,stack,2 +p_175117_0_,stack,2 +p_175141_1_,signTile,2 +p_175146_1_,code,2 +p_175147_0_,username,2 +p_175150_1_,reducedDebug,0 +p_175158_1_,brand,0 +p_175162_1_,pos,0 +p_175174_1_,xCoord,0 +p_175174_2_,yCoord,0 +p_175174_3_,minU,0 +p_175174_4_,minV,0 +p_175174_5_,maxU,0 +p_175174_6_,maxV,0 +p_175175_1_,xCoord,0 +p_175175_2_,yCoord,0 +p_175175_3_,textureSprite,0 +p_175175_4_,widthIn,0 +p_175175_5_,heightIn,0 +p_175176_1_,scaledRes,0 +p_175176_2_,x,0 +p_175178_1_,title,0 +p_175178_2_,subTitle,0 +p_175178_3_,timeFadeIn,0 +p_175178_4_,displayTime,0 +p_175178_5_,timeFadeOut,0 +p_175180_1_,partialTicks,0 +p_175184_1_,index,0 +p_175184_2_,xPos,0 +p_175184_3_,yPos,0 +p_175184_4_,partialTicks,0 +p_175184_5_,player,0 +p_175185_1_,scaledRes,0 +p_175186_1_,scaledRes,0 +p_175186_2_,x,0 +p_175188_1_,component,0 +p_175188_2_,isPlaying,0 +p_175205_1_,theValidator,0 +p_175211_1_,width,0 +p_175237_1_,scaledResolutionIn,0 +p_175239_1_,scaledRes,0 +p_175240_0_,bytes,0 +p_175243_1_,networkPlayerInfoIn,0 +p_175244_1_,headerIn,0 +p_175245_4_,networkPlayerInfoIn,0 +p_175246_1_,willBeRendered,0 +p_175248_1_,footerIn,0 +p_175249_1_,width,0 +p_175249_2_,scoreboardIn,0 +p_175249_3_,scoreObjectiveIn,0 +p_175272_1_,component,0 +p_175272_2_,x,0 +p_175272_3_,y,0 +p_175273_1_,mcIn,0 +p_175273_2_,w,0 +p_175273_3_,h,0 +p_175274_1_,newChatText,0 +p_175274_2_,shouldOverwrite,0 +p_175275_1_,msg,0 +p_175276_1_,component,0 +p_175277_0_,keyID,0 +p_175278_0_,keyID,0 +p_175279_0_,keyID,0 +p_175280_0_,keyID,0 +p_175281_1_,msg,0 +p_175281_2_,addToChat,0 +p_175282_1_,url,0 +p_175318_1_,id,0 +p_175318_2_,name,0 +p_175318_3_,value,0 +p_175320_1_,id,0 +p_175320_2_,value,0 +p_175358_1_,playerModelParts,0 +p_175381_1_,pixels,0 +p_175382_1_,pixels,0 +p_175397_1_,url,2 +p_175397_2_,hash,2 +p_175399_1_,entityToSpectate,2 +p_175416_1_,tagCompound,2 +p_175445_1_,itemEntity,2 +p_175447_1_,worldIn,2 +p_175448_1_,stack,2 +p_175449_1_,pos,2 +p_175449_2_,distance,2 +p_175454_1_,attacking,2 +p_175463_1_,entityId,2 +p_175467_1_,elder,2 +p_175468_1_,flagId,2 +p_175473_1_,flagId,2 +p_175473_2_,state,2 +p_175490_1_,state,2 +p_175496_1_,spawnedByPlayer,2 +p_175499_1_,pos,2 +p_175505_1_,player,2 +p_175505_2_,stack,2 +p_175510_0_,random,2 +p_175511_1_,father,2 +p_175511_2_,mother,2 +p_175512_1_,color,2 +p_175513_0_,dyeColor,2 +p_175515_1_,newSpeed,2 +p_175519_1_,jump,2 +p_175519_2_,moveTypeIn,2 +p_175522_1_,type,2 +p_175524_1_,movetype,2 +p_175525_1_,itemIn,2 +p_175529_1_,rabbitTypeId,2 +p_175533_1_,x,2 +p_175533_3_,z,2 +p_175547_1_,collarcolor,2 +p_175549_1_,willingToTrade,2 +p_175550_1_,updateFirst,2 +p_175558_1_,itemIn,2 +p_175559_1_,multiplier,2 +p_175568_1_,randomMotionVecXIn,2 +p_175568_2_,randomMotionVecYIn,2 +p_175568_3_,randomMotionVecZIn,2 +p_175573_1_,shouldTrackOutput,2 +p_175574_1_,playerIn,2 +p_175576_1_,uuid,2 +p_175579_1_,worldIn,2 +p_175579_2_,pos,2 +p_175579_3_,playerIn,2 +p_175584_1_,worldNameIn,2 +p_175584_2_,saveHandlerIn,2 +p_175586_1_,callable,2 +p_175607_1_,viewingEntity,0 +p_175623_1_,pos,2 +p_175625_1_,pos,2 +p_175626_1_,pos,0 +p_175626_2_,lightValue,0 +p_175627_1_,pos,2 +p_175627_2_,direction,2 +p_175628_2_,pos,0 +p_175629_2_,pos,0 +p_175631_1_,pos,0 +p_175636_1_,x,2 +p_175636_3_,y,2 +p_175636_5_,z,2 +p_175636_7_,range,2 +p_175637_1_,blockType,2 +p_175637_2_,pos,2 +p_175637_3_,random,2 +p_175638_1_,pos,2 +p_175638_2_,lightType,2 +p_175639_1_,box,2 +p_175639_2_,allowEmpty,2 +p_175640_1_,pos,2 +p_175641_1_,pos,2 +p_175641_2_,blockIn,2 +p_175641_3_,eventID,2 +p_175641_4_,eventParam,2 +p_175642_1_,type,2 +p_175642_2_,pos,2 +p_175644_1_,entityType,2 +p_175644_2_,filter,2 +p_175645_1_,pos,2 +p_175646_1_,pos,2 +p_175646_2_,unusedTileEntity,2 +p_175647_1_,clazz,2 +p_175647_2_,aabb,2 +p_175647_3_,filter,2 +p_175648_1_,center,2 +p_175648_2_,radius,2 +p_175648_3_,allowEmpty,2 +p_175649_1_,pos,2 +p_175650_1_,entityCollection,2 +p_175651_1_,pos,2 +p_175651_2_,facing,2 +p_175652_1_,pos,2 +p_175653_1_,type,2 +p_175653_2_,pos,2 +p_175653_3_,lightValue,2 +p_175654_1_,pos,2 +p_175654_2_,blockIn,2 +p_175654_3_,delay,2 +p_175654_4_,priority,2 +p_175655_1_,pos,2 +p_175655_2_,dropBlock,2 +p_175656_1_,pos,2 +p_175656_2_,state,2 +p_175660_1_,player,2 +p_175660_2_,pos,2 +p_175661_1_,playerType,2 +p_175661_2_,filter,2 +p_175662_1_,pos,2 +p_175663_1_,xStart,2 +p_175663_2_,yStart,2 +p_175663_3_,zStart,2 +p_175663_4_,xEnd,2 +p_175663_5_,yEnd,2 +p_175663_6_,zEnd,2 +p_175663_7_,allowEmpty,2 +p_175664_1_,pos,2 +p_175665_1_,pos,2 +p_175666_1_,pos,2 +p_175666_2_,blockIn,2 +p_175667_1_,pos,2 +p_175668_1_,pos,2 +p_175668_2_,allowEmpty,2 +p_175669_2_,pos,2 +p_175670_1_,pos,2 +p_175670_2_,noWaterAdj,2 +p_175671_1_,pos,2 +p_175672_1_,pos,2 +p_175673_1_,worldBorderIn,2 +p_175673_2_,entityIn,2 +p_175674_1_,entityIn,2 +p_175674_2_,boundingBox,2 +p_175674_3_,predicate,2 +p_175675_1_,pos,2 +p_175676_1_,pos,2 +p_175677_1_,pos,2 +p_175677_2_,_default,2 +p_175678_1_,pos,2 +p_175679_1_,pos,2 +p_175680_1_,x,2 +p_175680_2_,z,2 +p_175680_3_,allowEmpty,2 +p_175681_1_,entityCollection,2 +p_175682_1_,particleType,0 +p_175682_11_,yOffset,0 +p_175682_13_,zOffset,0 +p_175682_3_,xCoord,0 +p_175682_5_,yCoord,0 +p_175682_7_,zCoord,0 +p_175682_9_,xOffset,0 +p_175683_0_,blockAccess,2 +p_175683_1_,pos,2 +p_175684_1_,pos,2 +p_175684_2_,blockIn,2 +p_175684_3_,delay,2 +p_175685_1_,pos,2 +p_175685_2_,blockType,2 +p_175687_1_,pos,2 +p_175688_1_,particleType,2 +p_175688_10_,yOffset,2 +p_175688_12_,zOffset,2 +p_175688_2_,xCoord,2 +p_175688_4_,yCoord,2 +p_175688_6_,zCoord,2 +p_175688_8_,xOffset,2 +p_175689_1_,pos,2 +p_175690_1_,pos,2 +p_175690_2_,tileEntityIn,2 +p_175691_1_,pos,2 +p_175691_2_,blockType,2 +p_175692_1_,newSkylightSubtracted,2 +p_175695_1_,pos,2 +p_175695_2_,blockType,2 +p_175695_3_,skipSide,2 +p_175696_1_,pos,2 +p_175697_1_,center,2 +p_175697_2_,radius,2 +p_175698_1_,pos,2 +p_175699_1_,pos,2 +p_175700_1_,tile,2 +p_175701_1_,pos,2 +p_175702_1_,lastLightningBoltIn,2 +p_175703_1_,pos,2 +p_175704_1_,rangeMin,2 +p_175704_2_,rangeMax,2 +p_175705_1_,type,0 +p_175705_2_,pos,0 +p_175706_1_,from,2 +p_175706_2_,to,2 +p_175706_3_,allowEmpty,2 +p_175707_1_,from,2 +p_175707_2_,to,2 +p_175708_1_,pos,2 +p_175708_2_,checkLight,2 +p_175709_1_,pos,2 +p_175709_2_,side,2 +p_175710_1_,pos,2 +p_175711_1_,box,2 +p_175712_1_,structureBB,2 +p_175713_1_,pos,2 +p_175715_1_,breakerId,2 +p_175715_2_,pos,2 +p_175715_3_,progress,2 +p_175716_1_,blockIn,2 +p_175716_2_,pos,2 +p_175716_4_,side,2 +p_175716_5_,entityIn,2 +p_175716_6_,itemStackIn,2 +p_175717_1_,pos,2 +p_175717_2_,name,2 +p_175718_2_,pos,2 +p_175719_1_,player,2 +p_175719_2_,pos,2 +p_175719_3_,side,2 +p_175720_1_,particleID,2 +p_175720_11_,yOffset,2 +p_175720_13_,zOffset,2 +p_175720_3_,xCood,2 +p_175720_5_,yCoord,2 +p_175720_7_,zCoord,2 +p_175720_9_,xOffset,2 +p_175721_1_,pos,2 +p_175721_2_,checkNeighbors,2 +p_175722_1_,pos,2 +p_175722_2_,blockType,2 +p_175724_1_,pos,2 +p_175725_1_,pos,2 +p_175726_1_,pos,2 +p_175727_1_,strikePosition,2 +p_175731_1_,pos,0 +p_175731_2_,soundName,0 +p_175731_3_,volume,0 +p_175731_4_,pitch,0 +p_175731_5_,distanceDelay,0 +p_175732_1_,creatureType,2 +p_175732_2_,spawnListEntry,2 +p_175732_3_,pos,2 +p_175733_1_,uuid,2 +p_175734_1_,creatureType,2 +p_175734_2_,pos,2 +p_175736_1_,pos,2 +p_175739_1_,particleType,2 +p_175739_11_,yOffset,2 +p_175739_13_,zOffset,2 +p_175739_15_,particleSpeed,2 +p_175739_17_,particleArguments,2 +p_175739_2_,xCoord,2 +p_175739_4_,yCoord,2 +p_175739_6_,zCoord,2 +p_175739_8_,numberOfParticles,2 +p_175739_9_,xOffset,2 +p_175750_0_,category,2 +p_175750_1_,pos,2 +p_175750_2_,state,2 +p_175755_0_,input,2 +p_175756_0_,input,2 +p_175756_1_,min,2 +p_175756_3_,max,2 +p_175757_0_,sender,2 +p_175757_1_,args,2 +p_175757_2_,startIndex,2 +p_175757_3_,centerBlock,2 +p_175759_0_,commandSender,2 +p_175760_0_,input,2 +p_175760_1_,min,2 +p_175760_3_,max,2 +p_175761_0_,base,2 +p_175761_2_,input,2 +p_175761_3_,centerBlock,2 +p_175764_0_,input,2 +p_175764_1_,min,2 +p_175764_2_,max,2 +p_175765_0_,input,2 +p_175766_0_,input,2 +p_175767_3_,min,2 +p_175767_4_,max,2 +p_175767_5_,centerBlock,2 +p_175769_0_,base,2 +p_175769_2_,input,2 +p_175769_3_,min,2 +p_175769_4_,max,2 +p_175769_5_,centerBlock,2 +p_175770_0_,base,2 +p_175770_3_,centerBlock,2 +p_175773_0_,rules,2 +p_175783_1_,shortcut,2 +p_175786_1_,sender,2 +p_175786_2_,args,2 +p_175786_3_,command,2 +p_175786_4_,input,2 +p_175787_1_,pair,2 +p_175788_1_,pair,2 +p_175789_1_,worldIn,2 +p_175792_1_,chunkProviderIn,2 +p_175792_2_,worldIn,2 +p_175792_3_,x,2 +p_175792_4_,z,2 +p_175792_5_,chunkPrimerIn,2 +p_175794_1_,worldIn,2 +p_175794_2_,randomIn,2 +p_175794_3_,chunkCoord,2 +p_175795_1_,pos,2 +p_175796_1_,worldIn,2 +p_175796_2_,pos,2 +p_175797_1_,pos,2 +p_175804_1_,worldIn,2 +p_175804_10_,insideBlockState,2 +p_175804_11_,existingOnly,2 +p_175804_2_,boundingboxIn,2 +p_175804_3_,xMin,2 +p_175804_4_,yMin,2 +p_175804_5_,zMin,2 +p_175804_6_,xMax,2 +p_175804_7_,yMax,2 +p_175804_8_,zMax,2 +p_175804_9_,boundaryBlockState,2 +p_175805_1_,worldIn,2 +p_175805_10_,maxZ,2 +p_175805_11_,blockstate1,2 +p_175805_12_,blockstate2,2 +p_175805_2_,boundingboxIn,2 +p_175805_3_,rand,2 +p_175805_4_,chance,2 +p_175805_5_,minX,2 +p_175805_6_,minY,2 +p_175805_7_,minZ,2 +p_175805_8_,maxX,2 +p_175805_9_,maxY,2 +p_175806_1_,worldIn,2 +p_175806_2_,boundingBoxIn,2 +p_175806_3_,rand,2 +p_175806_4_,x,2 +p_175806_5_,y,2 +p_175806_6_,z,2 +p_175806_7_,meta,2 +p_175806_8_,listIn,2 +p_175806_9_,max,2 +p_175807_1_,worldIn,2 +p_175807_2_,x,2 +p_175807_3_,y,2 +p_175807_4_,z,2 +p_175807_5_,boundingboxIn,2 +p_175808_1_,worldIn,2 +p_175808_2_,blockstateIn,2 +p_175808_3_,x,2 +p_175808_4_,y,2 +p_175808_5_,z,2 +p_175808_6_,boundingboxIn,2 +p_175809_1_,worldIn,2 +p_175809_2_,boundingboxIn,2 +p_175809_3_,rand,2 +p_175809_4_,chance,2 +p_175809_5_,x,2 +p_175809_6_,y,2 +p_175809_7_,z,2 +p_175809_8_,blockstateIn,2 +p_175810_1_,worldIn,2 +p_175810_2_,boundingBoxIn,2 +p_175810_3_,rand,2 +p_175810_4_,x,2 +p_175810_5_,y,2 +p_175810_6_,z,2 +p_175810_7_,facing,2 +p_175811_1_,worldIn,2 +p_175811_2_,blockstateIn,2 +p_175811_3_,x,2 +p_175811_4_,y,2 +p_175811_5_,z,2 +p_175811_6_,boundingboxIn,2 +p_175812_0_,listIn,2 +p_175812_1_,rand,2 +p_175812_2_,x,2 +p_175812_3_,y,2 +p_175812_4_,z,2 +p_175812_5_,facing,2 +p_175813_0_,listIn,2 +p_175813_1_,rand,2 +p_175813_2_,x,2 +p_175813_3_,y,2 +p_175813_4_,z,2 +p_175813_5_,facing,2 +p_175814_1_,rand,2 +p_175814_2_,x,2 +p_175814_3_,y,2 +p_175814_4_,z,2 +p_175814_5_,facing,2 +p_175817_1_,worldIn,2 +p_175819_1_,worldIn,2 +p_175821_1_,worldIn,2 +p_175835_1_,worldIn,2 +p_175837_1_,worldIn,2 +p_175838_1_,worldIn,2 +p_175839_1_,worldIn,2 +p_175840_3_,worldIn,2 +p_175841_1_,worldIn,2 +p_175842_1_,worldIn,2 +p_175848_0_,start,2 +p_175848_2_,rand,2 +p_175848_6_,facing,2 +p_175849_0_,start,2 +p_175849_2_,rand,2 +p_175849_6_,facing,2 +p_175850_0_,start,2 +p_175850_2_,rand,2 +p_175850_6_,facing,2 +p_175851_0_,start,2 +p_175851_2_,rand,2 +p_175851_6_,facing,2 +p_175852_0_,start,2 +p_175852_2_,rand,2 +p_175852_6_,facing,2 +p_175853_0_,start,2 +p_175853_2_,rand,2 +p_175853_6_,facing,2 +p_175854_0_,start,2 +p_175854_2_,rand,2 +p_175854_6_,facing,2 +p_175855_0_,start,2 +p_175855_2_,rand,2 +p_175855_6_,facing,2 +p_175856_0_,start,2 +p_175856_2_,rand,2 +p_175856_6_,facing,2 +p_175857_0_,start,2 +p_175857_2_,rand,2 +p_175857_6_,facing,2 +p_175858_0_,start,2 +p_175858_2_,rand,2 +p_175858_6_,facing,2 +p_175890_0_,componentIn,2 +p_175890_1_,listIn,2 +p_175890_2_,rand,2 +p_175890_3_,x,2 +p_175890_4_,y,2 +p_175890_5_,z,2 +p_175890_6_,facing,2 +p_175890_7_,type,2 +p_175892_0_,listIn,2 +p_175892_1_,rand,2 +p_175892_2_,x,2 +p_175892_3_,y,2 +p_175892_4_,z,2 +p_175892_5_,facing,2 +p_175892_6_,type,2 +p_175898_1_,vec,2 +p_175903_1_,worldIn,2 +p_175903_2_,pos,2 +p_175903_3_,state,2 +p_175921_1_,worldIn,2 +p_175921_2_,pos,2 +p_175924_1_,worldIn,2 +p_175925_1_,worldIn,2 +p_175926_1_,worldIn,2 +p_175927_2_,worldIn,2 +p_175928_1_,worldIn,2 +p_175929_1_,worldIn,2 +p_175930_1_,worldIn,2 +p_175933_1_,worldIn,2 +p_175934_1_,worldIn,2 +p_175935_1_,posIn,2 +p_175936_1_,posOne,2 +p_175936_2_,posTwo,2 +p_175940_1_,pos,2 +p_176052_1_,mapStack,2 +p_176052_2_,worldIn,2 +p_176052_3_,player,2 +p_176053_1_,x,2 +p_176053_2_,y,2 +p_176054_1_,x,2 +p_176054_3_,z,2 +p_176054_5_,mapScale,2 +p_176055_1_,doorBlock,2 +p_176056_1_,doorBlock,2 +p_176056_2_,radius,2 +p_176057_1_,pos,2 +p_176058_1_,doorPos,2 +p_176059_1_,doorBlock,2 +p_176060_1_,pos,2 +p_176061_1_,centerPos,2 +p_176061_2_,direction,2 +p_176061_3_,limitation,2 +p_176062_0_,provider,2 +p_176065_0_,start,2 +p_176065_1_,weight,2 +p_176065_3_,rand,2 +p_176065_7_,facing,2 +p_176066_0_,start,2 +p_176066_2_,rand,2 +p_176066_6_,facing,2 +p_176067_0_,start,2 +p_176067_2_,rand,2 +p_176067_6_,facing,2 +p_176069_0_,start,2 +p_176069_2_,rand,2 +p_176069_6_,facing,2 +p_176071_0_,target,0 +p_176071_1_,data,0 +p_176071_2_,usage,0 +p_176072_0_,target,0 +p_176072_1_,buffer,0 +p_176074_0_,buffer,0 +p_176101_1_,stack,2 +p_176102_1_,x,2 +p_176102_2_,y,2 +p_176118_1_,lerpSize,2 +p_176119_1_,hardcoreIn,2 +p_176121_1_,allow,2 +p_176122_1_,amountOfBlocks,2 +p_176124_1_,posX,2 +p_176125_1_,damage,2 +p_176127_1_,settings,2 +p_176128_1_,enabled,2 +p_176129_1_,amount,2 +p_176135_1_,time,2 +p_176136_1_,ticks,2 +p_176141_1_,posZ,2 +p_176142_1_,cleanWeatherTimeIn,2 +p_176143_1_,spawnPoint,2 +p_176144_1_,newDifficulty,2 +p_176145_1_,size,2 +p_176159_1_,x,2 +p_176159_2_,y,2 +p_176159_3_,z,2 +p_176160_1_,entityIn,2 +p_176160_2_,x,2 +p_176160_4_,y,2 +p_176160_6_,target,2 +p_176161_1_,entityIn,2 +p_176162_1_,iblockaccessIn,2 +p_176162_2_,entityIn,2 +p_176164_1_,pathOptions,2 +p_176164_2_,entityIn,2 +p_176164_3_,currentPoint,2 +p_176164_4_,targetPoint,2 +p_176164_5_,maxDistance,2 +p_176170_0_,blockaccessIn,2 +p_176170_1_,entityIn,2 +p_176170_10_,enterDoors,2 +p_176170_2_,x,2 +p_176170_3_,y,2 +p_176170_4_,z,2 +p_176170_5_,sizeX,2 +p_176170_6_,sizeY,2 +p_176170_7_,sizeZ,2 +p_176170_8_,avoidWater,2 +p_176170_9_,breakDoors,2 +p_176171_1_,entityIn,2 +p_176171_2_,x,2 +p_176171_3_,y,2 +p_176171_4_,z,2 +p_176172_1_,canBreakDoorsIn,2 +p_176175_1_,canEnterDoorsIn,2 +p_176176_1_,avoidsWaterIn,2 +p_176177_1_,entityIn,2 +p_176177_2_,x,2 +p_176177_3_,y,2 +p_176177_4_,z,2 +p_176178_1_,canSwimIn,2 +p_176185_1_,entityIn,2 +p_176185_2_,x,2 +p_176185_3_,y,2 +p_176185_4_,z,2 +p_176186_1_,entityIn,2 +p_176186_2_,x,2 +p_176186_3_,y,2 +p_176186_4_,z,2 +p_176187_1_,entityIn,2 +p_176187_2_,pathpointStart,2 +p_176187_3_,pathpointEnd,2 +p_176187_4_,maxDistance,2 +p_176188_1_,blockaccess,2 +p_176188_2_,entityFrom,2 +p_176188_3_,entityTo,2 +p_176188_4_,dist,2 +p_176189_1_,blockaccess,2 +p_176189_2_,entityIn,2 +p_176189_3_,x,2 +p_176189_5_,y,2 +p_176189_7_,z,2 +p_176189_9_,distance,2 +p_176193_1_,worldIn,2 +p_176193_2_,pos,2 +p_176193_3_,side,2 +p_176193_4_,stack,2 +p_176195_1_,worldIn,2 +p_176195_2_,pos,2 +p_176196_1_,worldIn,2 +p_176196_2_,pos,2 +p_176197_1_,worldIn,2 +p_176197_2_,pos,2 +p_176197_3_,entityIn,2 +p_176197_4_,motion,2 +p_176198_1_,worldIn,2 +p_176198_2_,pos,2 +p_176198_3_,side,2 +p_176199_1_,worldIn,2 +p_176199_2_,pos,2 +p_176199_3_,entityIn,2 +p_176200_1_,worldIn,2 +p_176200_2_,pos,2 +p_176201_1_,state,2 +p_176202_1_,worldIn,0 +p_176202_2_,pos,0 +p_176203_1_,meta,2 +p_176204_1_,worldIn,2 +p_176204_2_,pos,2 +p_176204_3_,state,2 +p_176204_4_,neighborBlock,2 +p_176205_1_,worldIn,2 +p_176205_2_,pos,2 +p_176206_1_,worldIn,2 +p_176206_2_,pos,2 +p_176206_3_,state,2 +p_176207_1_,worldIn,0 +p_176207_2_,pos,0 +p_176208_1_,worldIn,2 +p_176208_2_,pos,2 +p_176208_3_,state,2 +p_176208_4_,player,2 +p_176209_1_,state,2 +p_176209_2_,hitIfLiquid,2 +p_176210_0_,state,2 +p_176211_1_,worldIn,2 +p_176211_2_,pos,2 +p_176211_3_,state,2 +p_176211_4_,side,2 +p_176212_1_,worldIn,2 +p_176212_2_,pos,2 +p_176212_3_,side,2 +p_176213_1_,worldIn,2 +p_176213_2_,pos,2 +p_176213_3_,state,2 +p_176215_0_,id,2 +p_176215_1_,textualID,2 +p_176215_2_,block_,2 +p_176216_1_,worldIn,2 +p_176216_2_,entityIn,2 +p_176217_1_,state,0 +p_176219_0_,id,2 +p_176219_1_,textualID,2 +p_176219_2_,block_,2 +p_176220_0_,id,2 +p_176221_1_,state,2 +p_176221_2_,worldIn,2 +p_176221_3_,pos,2 +p_176222_1_,worldIn,2 +p_176222_2_,pos,2 +p_176224_1_,worldIn,2 +p_176224_2_,pos,2 +p_176225_1_,worldIn,0 +p_176225_2_,pos,0 +p_176225_3_,side,0 +p_176226_1_,worldIn,2 +p_176226_2_,pos,2 +p_176226_3_,state,2 +p_176226_4_,forture,2 +p_176232_1_,state,2 +p_176233_1_,meta,2 +p_176234_1_,worldIn,2 +p_176234_2_,pos,2 +p_176234_3_,state,2 +p_176234_4_,chance,2 +p_176235_1_,worldIn,2 +p_176235_2_,pos,2 +p_176253_1_,worldIn,2 +p_176253_2_,pos,2 +p_176260_1_,worldIn,2 +p_176260_2_,pos,2 +p_176260_3_,hookState,2 +p_176261_1_,worldIn,2 +p_176261_2_,pos,2 +p_176261_3_,state,2 +p_176262_1_,worldIn,2 +p_176267_0_,side,2 +p_176268_0_,state,2 +p_176269_1_,worldIn,2 +p_176269_2_,pos,2 +p_176269_3_,state,2 +p_176281_0_,meta,2 +p_176282_0_,facing,2 +p_176286_1_,worldIn,2 +p_176286_2_,pos,2 +p_176286_3_,state,2 +p_176287_0_,worldIn,2 +p_176287_1_,pos,2 +p_176287_2_,state,2 +p_176287_3_,direction,2 +p_176288_1_,worldIn,2 +p_176288_2_,pos,2 +p_176302_0_,worldIn,2 +p_176302_1_,pos,2 +p_176302_2_,state,2 +p_176303_1_,worldIn,2 +p_176303_2_,pos,2 +p_176304_1_,blockAccess,2 +p_176304_2_,pos,2 +p_176305_1_,blockAccess,2 +p_176305_2_,pos,2 +p_176306_1_,blockAccess,2 +p_176306_2_,pos,2 +p_176307_1_,blockAccess,2 +p_176307_2_,pos,2 +p_176311_1_,worldIn,2 +p_176311_2_,pos,2 +p_176311_3_,state,2 +p_176312_1_,worldIn,2 +p_176312_2_,pos,2 +p_176314_1_,worldIn,2 +p_176314_2_,pos,2 +p_176314_3_,state,2 +p_176316_1_,worldIn,2 +p_176316_2_,pos,2 +p_176316_3_,state,2 +p_176317_0_,meta,2 +p_176318_1_,worldIn,2 +p_176318_2_,pos,2 +p_176318_3_,facing,2 +p_176319_1_,worldIn,2 +p_176319_2_,pos,2 +p_176319_3_,direction,2 +p_176319_4_,extending,2 +p_176322_0_,meta,2 +p_176323_1_,state,2 +p_176324_1_,state,2 +p_176328_1_,worldIn,2 +p_176328_2_,pos,2 +p_176328_3_,state,2 +p_176329_1_,worldIn,2 +p_176329_2_,pos,2 +p_176337_1_,powerLevel,0 +p_176338_1_,worldIn,2 +p_176338_2_,pos,2 +p_176338_3_,state,2 +p_176339_1_,worldIn,2 +p_176339_2_,pos,2 +p_176339_3_,side,2 +p_176340_0_,worldIn,2 +p_176340_1_,pos,2 +p_176341_1_,worldIn,2 +p_176341_2_,pos,2 +p_176341_3_,direction,2 +p_176342_1_,worldIn,2 +p_176342_2_,pos,2 +p_176342_3_,strength,2 +p_176343_0_,blockState,2 +p_176343_1_,side,2 +p_176344_1_,worldIn,2 +p_176344_2_,pos,2 +p_176345_1_,worldIn,2 +p_176345_2_,pos1,2 +p_176345_3_,pos2,2 +p_176345_4_,state,2 +p_176346_0_,state,2 +p_176352_1_,worldIn,2 +p_176352_2_,pos,2 +p_176353_1_,worldIn,2 +p_176353_2_,pos,2 +p_176353_3_,state,2 +p_176354_1_,worldIn,2 +p_176354_2_,pos,2 +p_176357_0_,facing,2 +p_176361_0_,materialIn,2 +p_176362_1_,worldIn,2 +p_176362_2_,pos,2 +p_176363_0_,materialIn,2 +p_176364_1_,blockAccess,0 +p_176364_2_,pos,0 +p_176365_1_,worldIn,2 +p_176365_2_,pos,2 +p_176365_3_,state,2 +p_176366_1_,worldIn,2 +p_176366_2_,pos,2 +p_176368_1_,worldIn,2 +p_176368_2_,pos,2 +p_176369_1_,worldIn,2 +p_176369_2_,pos,2 +p_176370_1_,worldIn,2 +p_176370_2_,pos,2 +p_176370_3_,state,2 +p_176371_1_,worldIn,2 +p_176371_2_,pos,2 +p_176371_3_,currentMinLevel,2 +p_176372_1_,worldIn,2 +p_176372_2_,pos,2 +p_176372_3_,state,2 +p_176373_1_,worldIn,2 +p_176373_2_,pos,2 +p_176373_3_,state,2 +p_176374_1_,worldIn,2 +p_176374_2_,pos,2 +p_176374_3_,distance,2 +p_176374_4_,calculateFlowCost,2 +p_176375_1_,worldIn,2 +p_176375_2_,pos,2 +p_176375_3_,state,2 +p_176375_4_,level,2 +p_176376_1_,worldIn,2 +p_176376_2_,pos,2 +p_176377_0_,blockState,2 +p_176381_1_,worldIn,2 +p_176381_2_,pos,2 +p_176381_3_,facing,2 +p_176390_1_,worldIn,2 +p_176390_2_,pos,2 +p_176397_1_,worldIn,2 +p_176397_2_,pos,2 +p_176397_3_,state,2 +p_176398_1_,worldIn,2 +p_176398_2_,pos,2 +p_176398_3_,state,2 +p_176399_1_,state,2 +p_176400_1_,worldIn,2 +p_176400_2_,pos,2 +p_176400_3_,state,2 +p_176401_1_,worldIn,2 +p_176401_2_,pos,2 +p_176401_3_,side,2 +p_176402_1_,worldIn,2 +p_176402_2_,pos,2 +p_176402_3_,state,2 +p_176403_1_,state,2 +p_176404_1_,worldIn,2 +p_176404_2_,pos,2 +p_176404_3_,state,2 +p_176405_1_,worldIn,2 +p_176405_2_,pos,2 +p_176405_3_,state,2 +p_176406_1_,state,2 +p_176407_1_,worldIn,2 +p_176407_2_,pos,2 +p_176407_3_,state,2 +p_176408_1_,worldIn,2 +p_176408_2_,pos,2 +p_176408_3_,state,2 +p_176409_1_,worldIn,2 +p_176409_2_,pos,2 +p_176415_1_,worldIn,2 +p_176415_2_,pos,2 +p_176415_3_,stack,2 +p_176422_1_,worldIn,2 +p_176422_2_,pos,2 +p_176423_0_,state,2 +p_176423_1_,facing,2 +p_176423_2_,extending,2 +p_176423_3_,renderHead,2 +p_176424_1_,worldIn,2 +p_176424_2_,pos,2 +p_176424_3_,extendingBlock,2 +p_176424_4_,progress,2 +p_176424_5_,direction,2 +p_176427_1_,worldIn,2 +p_176427_2_,pos,2 +p_176427_3_,state,2 +p_176428_0_,meta,2 +p_176431_1_,worldIn,2 +p_176431_2_,pos,2 +p_176431_3_,state,2 +p_176431_4_,recordStack,2 +p_176433_1_,id,2 +p_176438_1_,worldIn,2 +p_176438_2_,pos,2 +p_176438_3_,state,2 +p_176439_1_,worldIn,2 +p_176439_2_,pos,2 +p_176442_1_,worldIn,2 +p_176442_2_,pos,2 +p_176445_1_,worldIn,2 +p_176445_2_,pos,2 +p_176445_3_,state,2 +p_176446_0_,active,2 +p_176446_1_,worldIn,2 +p_176446_2_,pos,2 +p_176450_0_,worldIn,2 +p_176450_1_,glassPos,2 +p_176453_1_,worldIn,2 +p_176453_2_,pos,2 +p_176454_1_,worldIn,2 +p_176454_2_,pos,2 +p_176455_1_,worldIn,2 +p_176455_2_,pos,2 +p_176455_3_,state,2 +p_176456_1_,worldIn,2 +p_176456_2_,pos,2 +p_176457_1_,worldIn,2 +p_176457_2_,pos,2 +p_176458_1_,worldIn,2 +p_176458_2_,pos,2 +p_176458_3_,state,2 +p_176460_1_,worldIn,2 +p_176460_2_,pos,2 +p_176460_3_,state,2 +p_176461_1_,worldIn,2 +p_176461_2_,facing,2 +p_176461_3_,pos,2 +p_176462_1_,worldIn,2 +p_176462_2_,pos,2 +p_176462_3_,state,2 +p_176468_0_,worldIn,2 +p_176468_1_,pos,2 +p_176468_2_,tries,2 +p_176469_0_,worldIn,2 +p_176469_1_,pos,2 +p_176470_1_,worldIn,2 +p_176470_2_,pos,2 +p_176473_1_,worldIn,2 +p_176473_2_,pos,2 +p_176473_3_,state,2 +p_176473_4_,isClient,2 +p_176474_1_,worldIn,2 +p_176474_2_,rand,2 +p_176474_3_,pos,2 +p_176474_4_,state,2 +p_176475_1_,worldIn,2 +p_176475_2_,pos,2 +p_176475_3_,state,2 +p_176476_1_,worldIn,2 +p_176476_2_,pos,2 +p_176476_3_,state,2 +p_176476_4_,rand,2 +p_176477_1_,worldIn,2 +p_176477_2_,pos,2 +p_176477_3_,type,2 +p_176478_1_,worldIn,2 +p_176478_2_,pos,2 +p_176478_3_,state,2 +p_176478_4_,rand,2 +p_176482_1_,worldIn,2 +p_176482_2_,pos,2 +p_176482_3_,state,2 +p_176485_1_,worldIn,2 +p_176485_2_,pos,2 +p_176485_3_,state,2 +p_176485_4_,rand,2 +p_176487_1_,worldIn,2 +p_176487_2_,pos,2 +p_176487_3_,state,2 +p_176489_1_,worldIn,2 +p_176489_2_,pos,2 +p_176489_3_,state,2 +p_176489_4_,player,2 +p_176490_1_,worldIn,2 +p_176490_2_,pos,2 +p_176491_1_,worldIn,2 +p_176491_2_,lowerPos,2 +p_176491_3_,variant,2 +p_176491_4_,flags,2 +p_176499_1_,worldIn,2 +p_176499_2_,pos,2 +p_176499_3_,state,2 +p_176500_1_,worldIn,2 +p_176500_2_,pos,2 +p_176500_3_,state,2 +p_176502_1_,worldIn,2 +p_176502_2_,pos,2 +p_176503_1_,worldIn,2 +p_176503_2_,pos,2 +p_176510_0_,meta,2 +p_176511_0_,combinedMeta,2 +p_176512_1_,worldIn,2 +p_176512_2_,pos,2 +p_176512_3_,open,2 +p_176513_0_,combinedMeta,2 +p_176514_0_,worldIn,2 +p_176514_1_,pos,2 +p_176515_0_,worldIn,2 +p_176515_1_,pos,2 +p_176516_0_,combinedMeta,2 +p_176517_0_,worldIn,2 +p_176517_1_,pos,2 +p_176518_0_,meta,2 +p_176524_1_,worldIn,2 +p_176524_2_,pos,2 +p_176529_1_,worldIn,2 +p_176529_2_,pos,2 +p_176530_1_,worldIn,2 +p_176530_2_,pos,2 +p_176532_1_,blockIn,2 +p_176533_1_,worldIn,2 +p_176533_2_,pos,2 +p_176534_1_,blockIn,2 +p_176535_1_,worldIn,2 +p_176535_2_,pos,2 +p_176536_1_,worldIn,2 +p_176536_2_,pos,2 +p_176536_3_,chance,2 +p_176536_4_,random,2 +p_176536_5_,age,2 +p_176537_1_,worldIn,2 +p_176537_2_,pos,2 +p_176538_1_,worldIn,2 +p_176538_2_,pos,2 +p_176548_1_,worldIn,2 +p_176549_0_,axis,2 +p_176553_1_,stack,2 +p_176561_1_,worldIn,2 +p_176561_2_,pos,2 +p_176561_3_,state,2 +p_176561_4_,neighborBlock,2 +p_176562_0_,worldIn,2 +p_176562_1_,pos,2 +p_176563_0_,state,2 +p_176564_1_,worldIn,2 +p_176566_1_,worldIn,2 +p_176566_2_,pos,2 +p_176566_3_,state,2 +p_176567_1_,worldIn,2 +p_176567_4_,distance,2 +p_176570_1_,worldIn,2 +p_176570_2_,pos,2 +p_176570_3_,state,2 +p_176571_1_,worldIn,2 +p_176571_2_,pos,2 +p_176571_3_,clazz,2 +p_176571_4_,filter,2 +p_176572_1_,pos,2 +p_176575_1_,state,2 +p_176575_2_,strength,2 +p_176576_1_,state,2 +p_176577_1_,worldIn,2 +p_176577_2_,pos,2 +p_176578_1_,worldIn,2 +p_176578_2_,pos,2 +p_176582_1_,worldIn,2 +p_176582_2_,pos,2 +p_176582_3_,facing,2 +p_176583_1_,worldIn,2 +p_176583_2_,pos,2 +p_176583_3_,state,2 +p_176586_1_,worldIn,2 +p_176586_2_,pos,2 +p_176588_1_,worldIn,2 +p_176588_2_,pos,2 +p_176590_1_,worldIn,2 +p_176590_2_,pos,2 +p_176590_3_,state,2 +p_176590_4_,level,2 +p_176592_1_,worldIn,2 +p_176592_2_,pos,2 +p_176592_3_,state,2 +p_176593_1_,worldIn,2 +p_176593_2_,pos,2 +p_176593_3_,state,2 +p_176594_1_,worldIn,2 +p_176594_2_,pos,2 +p_176595_1_,worldIn,2 +p_176595_2_,pos,2 +p_176595_3_,facing,2 +p_176597_1_,worldIn,2 +p_176597_2_,pos,2 +p_176597_3_,state,2 +p_176598_1_,worldIn,2 +p_176598_2_,pos,2 +p_176598_3_,turnOff,2 +p_176602_0_,clockName,0 +p_176603_0_,compassName,0 +p_176604_0_,spriteResourceLocation,0 +p_176613_0_,meta,2 +p_176625_0_,meta,2 +p_176643_0_,meta,2 +p_176660_0_,meta,2 +p_176673_0_,meta,2 +p_176686_0_,meta,2 +p_176717_0_,name,0 +p_176732_1_,axis,0 +p_176733_0_,angle,2 +p_176739_0_,name,0 +p_176741_0_,rand,2 +p_176764_0_,meta,2 +p_176766_0_,damage,2 +p_176794_0_,meta,2 +p_176810_0_,meta,2 +p_176825_0_,meta,2 +p_176837_0_,meta,2 +p_176853_0_,meta,2 +p_176856_0_,clickedSide,2 +p_176856_1_,entityFacing,2 +p_176870_0_,axis,2 +p_176878_0_,model,2 +p_176879_0_,meta,2 +p_176895_0_,meta,2 +p_176916_0_,meta,2 +p_176924_0_,metadata,2 +p_176938_0_,meta,2 +p_176966_0_,flowerColor,0 +p_176967_0_,blockType,2 +p_176967_1_,meta,2 +p_177016_0_,meta,2 +p_177045_0_,meta,2 +p_177053_0_,imageStream,0 +p_177059_1_,iconRegistry,0 +p_177067_1_,entity,0 +p_177067_2_,x,0 +p_177067_4_,y,0 +p_177067_6_,z,0 +p_177069_1_,entityIn,0 +p_177069_2_,x,0 +p_177069_4_,y,0 +p_177069_6_,z,0 +p_177069_8_,str,0 +p_177070_1_,entity,0 +p_177071_1_,livingEntity,0 +p_177071_2_,camera,0 +p_177071_3_,camX,0 +p_177071_5_,camY,0 +p_177071_7_,camZ,0 +p_177077_1_,itemIn,0 +p_177078_1_,stack,0 +p_177082_1_,entityIn,0 +p_177086_1_,renderOutlinesIn,0 +p_177088_1_,entityLivingBaseIn,0 +p_177089_1_,layer,0 +p_177090_1_,entityLivingBaseIn,0 +p_177090_2_,partialTicks,0 +p_177092_1_,entitylivingbaseIn,0 +p_177092_2_,partialTicks,0 +p_177092_3_,combineTextures,0 +p_177093_1_,entitylivingbaseIn,0 +p_177093_4_,partialTicks,0 +p_177094_1_,layer,0 +p_177105_1_,entityLivingIn,0 +p_177105_2_,partialTicks,0 +p_177110_1_,entityLivingBaseIn,0 +p_177137_1_,clientPlayer,0 +p_177138_1_,clientPlayer,0 +p_177139_1_,clientPlayer,0 +p_177141_1_,entitylivingbaseIn,0 +p_177141_4_,partialTicks,0 +p_177141_8_,scale,0 +p_177175_1_,armorSlot,0 +p_177176_1_,entitylivingbaseIn,0 +p_177176_2_,armorSlot,0 +p_177179_1_,model,0 +p_177179_2_,armorSlot,0 +p_177180_1_,armorSlot,0 +p_177182_1_,entitylivingbaseIn,0 +p_177182_4_,partialTicks,0 +p_177182_8_,scale,0 +p_177182_9_,armorSlot,0 +p_177183_1_,entitylivingbaseIn,0 +p_177183_2_,modelbaseIn,0 +p_177183_5_,partialTicks,0 +p_177183_9_,scale,0 +p_177194_1_,model,0 +p_177226_1_,property,2 +p_177226_2_,value,2 +p_177229_1_,property,2 +p_177231_1_,property,2 +p_177232_0_,values,2 +p_177232_1_,currentValue,2 +p_177235_1_,map,2 +p_177236_1_,property,2 +p_177236_2_,value,2 +p_177245_1_,location,0 +p_177245_2_,resourcePack,0 +p_177251_1_,origin,2 +p_177268_0_,id,0 +p_177319_1_,resourceFile,0 +p_177332_0_,playerUUID,0 +p_177333_0_,playerUUID,0 +p_177334_0_,playerUUID,0 +p_177344_1_,id,0 +p_177347_1_,id,0 +p_177348_1_,index,0 +p_177358_1_,mode,0 +p_177409_1_,hasEntitiesIn,2 +p_177411_1_,pos,2 +p_177411_2_,chunkManager,2 +p_177413_2_,pos,2 +p_177414_1_,entityIn,2 +p_177414_2_,aabb,2 +p_177414_3_,listToFill,2 +p_177415_1_,newInhabitedTime,2 +p_177417_1_,loaded,0 +p_177418_1_,pos,2 +p_177420_1_,newHeightMap,2 +p_177421_1_,lightPopulated,2 +p_177422_1_,pos,2 +p_177424_1_,pos,2 +p_177425_1_,pos,2 +p_177426_1_,pos,2 +p_177426_2_,tileEntityIn,2 +p_177427_1_,modified,2 +p_177428_1_,pos,2 +p_177430_1_,entityClass,2 +p_177430_2_,aabb,2 +p_177430_3_,listToFill,2 +p_177431_2_,pos,2 +p_177431_3_,value,2 +p_177432_1_,saveTime,2 +p_177433_1_,pos,2 +p_177435_1_,pos,2 +p_177436_1_,pos,2 +p_177436_2_,state,2 +p_177437_1_,pos,2 +p_177438_1_,x,2 +p_177438_2_,y,2 +p_177438_3_,z,2 +p_177440_1_,pos,2 +p_177443_1_,pos,2 +p_177443_2_,amount,2 +p_177444_1_,pos,2 +p_177446_1_,terrainPopulated,2 +p_177451_1_,playerUUID,2 +p_177452_1_,player,2 +p_177452_2_,message,2 +p_177453_1_,player,2 +p_177453_2_,message,2 +p_177458_1_,creatureType,2 +p_177458_2_,pos,2 +p_177459_1_,blockPosIn,2 +p_177460_1_,chunkProvider,2 +p_177460_2_,chunkIn,2 +p_177460_3_,x,2 +p_177460_4_,z,2 +p_177478_1_,index,2 +p_177479_1_,index,2 +p_177480_1_,index,2 +p_177482_1_,index,2 +p_177482_2_,value,2 +p_177483_1_,x,2 +p_177483_2_,y,2 +p_177483_3_,z,2 +p_177484_1_,x,2 +p_177484_2_,y,2 +p_177484_3_,z,2 +p_177484_4_,state,2 +p_177485_1_,x,2 +p_177485_2_,y,2 +p_177485_3_,z,2 +p_177486_1_,dataArray,2 +p_177510_0_,predicatesIn,2 +p_177516_0_,toSplit,2 +p_177520_1_,facing,0 +p_177520_2_,vertexIndex,0 +p_177551_1_,facing,0 +p_177578_1_,modelBlockIn,0 +p_177578_2_,modelRotationIn,0 +p_177578_3_,uvLocked,0 +p_177630_0_,random,2 +p_177630_1_,listIn,2 +p_177630_2_,inv,2 +p_177630_3_,max,2 +p_177631_0_,random,2 +p_177631_1_,listIn,2 +p_177631_2_,dispenser,2 +p_177631_3_,max,2 +p_177637_1_,property,2 +p_177637_2_,is,2 +p_177638_0_,blockIn,2 +p_177642_0_,blockType,2 +p_177646_1_,texture,0 +p_177647_2_,texture,0 +p_177648_1_,quad,0 +p_177649_1_,bakedModel,0 +p_177649_2_,texture,0 +p_177649_3_,facing,0 +p_177650_1_,facing,0 +p_177650_2_,quad,0 +p_177659_1_,aisle,2 +p_177662_1_,symbol,2 +p_177662_2_,blockMatcher,2 +p_177670_1_,palmOffset,2 +p_177670_2_,thumbOffset,2 +p_177670_3_,fingerOffset,2 +p_177681_1_,worldIn,2 +p_177681_2_,pos,2 +p_177682_1_,pos,2 +p_177682_2_,finger,2 +p_177682_3_,thumb,2 +p_177682_4_,lcache,2 +p_177683_0_,pos,2 +p_177683_1_,finger,2 +p_177683_2_,thumb,2 +p_177683_3_,palmOffset,2 +p_177683_4_,thumbOffset,2 +p_177683_5_,fingerOffset,2 +p_177690_1_,border,2 +p_177690_2_,newDistance,2 +p_177691_1_,border,2 +p_177691_2_,newTime,2 +p_177692_1_,border,2 +p_177692_2_,oldSize,2 +p_177692_4_,newSize,2 +p_177692_6_,time,2 +p_177693_1_,border,2 +p_177693_2_,x,2 +p_177693_4_,z,2 +p_177694_1_,border,2 +p_177694_2_,newSize,2 +p_177695_1_,border,2 +p_177695_2_,newSize,2 +p_177696_1_,border,2 +p_177696_2_,newAmount,2 +p_177702_1_,value,2 +p_177706_0_,name,2 +p_177706_1_,clazz,2 +p_177706_2_,values,2 +p_177707_0_,name,2 +p_177707_1_,clazz,2 +p_177707_2_,values,2 +p_177708_0_,name,2 +p_177708_1_,clazz,2 +p_177708_2_,filter,2 +p_177709_0_,name,2 +p_177709_1_,clazz,2 +p_177712_0_,name,2 +p_177712_1_,filter,2 +p_177713_0_,name,2 +p_177713_1_,values,2 +p_177714_0_,name,2 +p_177716_0_,name,2 +p_177719_0_,name,2 +p_177719_1_,min,2 +p_177719_2_,max,2 +p_177723_1_,warningTime,2 +p_177724_1_,bufferSize,2 +p_177725_1_,size,2 +p_177729_1_,x,2 +p_177729_3_,z,2 +p_177730_1_,range,2 +p_177737_1_,listener,2 +p_177738_1_,oldSize,2 +p_177738_3_,newSize,2 +p_177738_5_,time,2 +p_177739_1_,x,2 +p_177739_3_,z,2 +p_177743_1_,bb,2 +p_177744_1_,newAmount,2 +p_177745_1_,entityIn,2 +p_177746_1_,pos,2 +p_177747_1_,warningDistance,2 +p_177750_1_,newSize,2 +p_177774_1_,value,2 +p_177775_1_,id,2 +p_177775_2_,key,2 +p_177775_3_,value,2 +p_177855_1_,x,2 +p_177855_2_,y,2 +p_177855_3_,z,2 +p_177855_4_,state,2 +p_177856_1_,x,2 +p_177856_2_,y,2 +p_177856_3_,z,2 +p_177857_1_,index,2 +p_177857_2_,state,2 +p_177858_1_,index,2 +p_177951_1_,to,2 +p_177954_1_,toX,2 +p_177954_3_,toY,2 +p_177954_5_,toZ,2 +p_177955_1_,vec,2 +p_177957_1_,xIn,2 +p_177957_3_,yIn,2 +p_177957_5_,zIn,2 +p_177963_1_,x,2 +p_177963_3_,y,2 +p_177963_5_,z,2 +p_177964_1_,n,2 +p_177965_1_,n,2 +p_177967_1_,facing,2 +p_177967_2_,n,2 +p_177969_0_,serialized,2 +p_177970_1_,n,2 +p_177971_1_,vec,2 +p_177972_1_,facing,2 +p_177973_1_,vec,2 +p_177975_0_,from,2 +p_177975_1_,to,2 +p_177979_1_,n,2 +p_177980_0_,from,2 +p_177980_1_,to,2 +p_177981_1_,n,2 +p_177982_1_,x,2 +p_177982_2_,y,2 +p_177982_3_,z,2 +p_177985_1_,n,2 +p_178001_1_,layer,0 +p_178002_1_,renderChunkIn,0 +p_178002_2_,layer,0 +p_178003_1_,renderChunkIn,0 +p_178004_1_,viewEntityXIn,0 +p_178004_3_,viewEntityYIn,0 +p_178004_5_,viewEntityZIn,0 +p_178080_1_,item,0 +p_178080_2_,definition,0 +p_178081_1_,item,0 +p_178081_2_,meta,0 +p_178082_1_,item,0 +p_178084_1_,stack,0 +p_178086_1_,item,0 +p_178086_2_,meta,0 +p_178086_3_,location,0 +p_178087_1_,item,0 +p_178087_2_,meta,0 +p_178088_1_,item,0 +p_178088_2_,meta,0 +p_178089_1_,stack,0 +p_178095_1_,clientPlayer,0 +p_178095_2_,equipProgress,0 +p_178095_3_,swingProgress,0 +p_178096_1_,equipProgress,0 +p_178096_2_,swingProgress,0 +p_178097_1_,clientPlayer,0 +p_178097_2_,pitch,0 +p_178097_3_,equipmentProgress,0 +p_178097_4_,swingProgress,0 +p_178098_1_,partialTicks,0 +p_178098_2_,clientPlayer,0 +p_178099_1_,entityIn,0 +p_178099_2_,heldStack,0 +p_178099_3_,transform,0 +p_178100_1_,pitch,0 +p_178101_1_,angle,0 +p_178101_2_,angleY,0 +p_178102_1_,clientPlayer,0 +p_178104_1_,clientPlayer,0 +p_178104_2_,partialTicks,0 +p_178105_1_,swingProgress,0 +p_178106_1_,renderPlayerIn,0 +p_178107_1_,blockIn,0 +p_178108_1_,partialTicks,0 +p_178108_2_,atlas,0 +p_178109_1_,clientPlayer,0 +p_178110_1_,entityplayerspIn,0 +p_178110_2_,partialTicks,0 +p_178113_1_,stack,0 +p_178121_1_,assoc,0 +p_178121_2_,stateMapper,0 +p_178122_1_,state,0 +p_178123_1_,builtIns,0 +p_178125_1_,state,0 +p_178130_1_,blockIn,0 +p_178132_1_,state,0 +p_178144_0_,te,2 +p_178148_1_,stack,2 +p_178158_1_,renderChunkFactory,0 +p_178159_1_,renderDistanceChunks,0 +p_178161_1_,pos,0 +p_178162_1_,fromX,0 +p_178162_2_,fromY,0 +p_178162_3_,fromZ,0 +p_178162_4_,toX,0 +p_178162_5_,toY,0 +p_178162_6_,toZ,0 +p_178163_1_,viewEntityX,0 +p_178163_3_,viewEntityZ,0 +p_178170_1_,stack,2 +p_178173_0_,stack,2 +p_178175_2_,color,0 +p_178178_1_,vertexBufferIn,0 +p_178204_1_,blockAccessIn,0 +p_178204_2_,blockIn,0 +p_178204_3_,blockPosIn,0 +p_178204_4_,facingIn,0 +p_178204_5_,quadBounds,0 +p_178204_6_,boundsFlags,0 +p_178216_1_,vertex,0 +p_178248_1_,name,0 +p_178258_1_,blockAccessIn,0 +p_178258_2_,modelIn,0 +p_178258_3_,blockIn,0 +p_178258_4_,blockPosIn,0 +p_178258_5_,worldRendererIn,0 +p_178258_6_,checkSides,0 +p_178259_1_,blockAccessIn,0 +p_178259_2_,modelIn,0 +p_178259_3_,blockStateIn,0 +p_178259_4_,blockPosIn,0 +p_178259_5_,worldRendererIn,0 +p_178260_1_,blockAccessIn,0 +p_178260_2_,blockIn,0 +p_178260_3_,blockPosIn,0 +p_178260_4_,faceIn,0 +p_178260_5_,brightnessIn,0 +p_178260_6_,ownBrightness,0 +p_178260_7_,worldRendererIn,0 +p_178260_8_,listQuadsIn,0 +p_178260_9_,boundsFlags,0 +p_178261_1_,blockIn,0 +p_178261_2_,vertexData,0 +p_178261_3_,facingIn,0 +p_178261_4_,quadBounds,0 +p_178261_5_,boundsFlags,0 +p_178262_1_,bakedModel,0 +p_178262_3_,red,0 +p_178262_4_,green,0 +p_178262_5_,blue,0 +p_178263_1_,blockAccessIn,0 +p_178263_2_,blockIn,0 +p_178263_3_,blockPosIn,0 +p_178263_4_,worldRendererIn,0 +p_178263_5_,listQuadsIn,0 +p_178263_6_,quadBounds,0 +p_178263_7_,boundsFlags,0 +p_178263_8_,aoFaceIn,0 +p_178264_1_,brightness,0 +p_178264_2_,red,0 +p_178264_3_,green,0 +p_178264_4_,blue,0 +p_178264_5_,listQuads,0 +p_178265_1_,blockAccessIn,0 +p_178265_2_,modelIn,0 +p_178265_3_,blockIn,0 +p_178265_4_,blockPosIn,0 +p_178265_5_,worldRendererIn,0 +p_178265_6_,checkSides,0 +p_178266_1_,model,0 +p_178266_3_,brightness,0 +p_178267_1_,blockAccessIn,0 +p_178267_2_,modelIn,0 +p_178267_3_,blockStateIn,0 +p_178267_4_,blockPosIn,0 +p_178267_5_,worldRendererIn,0 +p_178267_6_,checkSides,0 +p_178269_1_,blockAccess,0 +p_178269_2_,blockPosIn,0 +p_178269_3_,blockMaterial,0 +p_178270_1_,blockAccess,0 +p_178270_2_,blockStateIn,0 +p_178270_3_,blockPosIn,0 +p_178270_4_,worldRendererIn,0 +p_178294_0_,jsonString,0 +p_178300_1_,textureName,0 +p_178302_1_,textureName,0 +p_178304_1_,hash,0 +p_178307_0_,readerIn,0 +p_178308_1_,textureName,0 +p_178349_1_,uvsIn,0 +p_178358_1_,jsonObject,0 +p_178358_2_,key,0 +p_178358_3_,defaultValue,0 +p_178392_1_,textureMapIn,0 +p_178392_2_,blockModel,0 +p_178401_3_,facing,0 +p_178402_1_,faceData,0 +p_178402_10_,shade,0 +p_178402_2_,vertexIndex,0 +p_178402_3_,facing,0 +p_178402_4_,partFace,0 +p_178402_6_,sprite,0 +p_178402_7_,modelRotationIn,0 +p_178402_8_,partRotation,0 +p_178402_9_,uvLocked,0 +p_178403_1_,pos1,0 +p_178403_2_,pos2,0 +p_178404_1_,faceData,0 +p_178404_2_,storeIndex,0 +p_178404_3_,vertexIndex,0 +p_178404_4_,position,0 +p_178404_5_,shadeColor,0 +p_178404_6_,sprite,0 +p_178404_7_,faceUV,0 +p_178405_1_,partFace,0 +p_178405_2_,sprite,0 +p_178405_3_,facing,0 +p_178405_5_,modelRotationIn,0 +p_178405_6_,partRotation,0 +p_178405_7_,uvLocked,0 +p_178405_8_,shade,0 +p_178406_1_,position,0 +p_178406_2_,rotationOrigin,0 +p_178406_3_,rotationMatrix,0 +p_178406_4_,scale,0 +p_178407_2_,partRotation,0 +p_178409_2_,facing,0 +p_178410_0_,faceData,0 +p_178412_1_,facing,0 +p_178413_1_,facing,0 +p_178414_1_,posFrom,0 +p_178414_2_,posTo,0 +p_178414_3_,face,0 +p_178414_4_,sprite,0 +p_178414_5_,facing,0 +p_178414_6_,modelRotationIn,0 +p_178414_7_,partRotation,0 +p_178414_8_,uvLocked,0 +p_178414_9_,shade,0 +p_178415_1_,position,0 +p_178415_2_,facing,0 +p_178415_3_,vertexIndex,0 +p_178415_4_,modelRotationIn,0 +p_178415_5_,uvLocked,0 +p_178439_1_,builderSuffixIn,0 +p_178440_1_,builderPropertyIn,0 +p_178463_1_,bannerObj,0 +p_178469_1_,tileEntityIn,0 +p_178469_2_,x,0 +p_178469_4_,y,0 +p_178469_6_,z,0 +p_178469_8_,partialTicks,0 +p_178469_9_,destroyStage,0 +p_178470_1_,worldIn,0 +p_178470_2_,textureManagerIn,0 +p_178470_3_,fontrendererIn,0 +p_178470_4_,entityIn,0 +p_178470_5_,partialTicks,0 +p_178473_1_,taskGenerator,0 +p_178474_1_,generator,0 +p_178486_1_,layer,0 +p_178488_1_,visibility,0 +p_178490_1_,tileEntityIn,0 +p_178491_1_,layer,0 +p_178492_1_,layer,0 +p_178493_1_,layer,0 +p_178494_1_,stateIn,0 +p_178495_1_,facing,0 +p_178495_2_,facing2,0 +p_178503_1_,player,0 +p_178503_3_,chunkRenderer,0 +p_178503_4_,compiledChunkIn,0 +p_178505_1_,chunkRenderer,0 +p_178506_2_,vertexBufferIn,0 +p_178507_1_,chunkRenderer,0 +p_178509_1_,chunkRenderer,0 +p_178510_3_,chunkRenderer,0 +p_178535_1_,statusIn,0 +p_178541_1_,regionRenderCacheBuilderIn,0 +p_178543_1_,compiledChunkIn,0 +p_178565_1_,layer,0 +p_178570_1_,x,0 +p_178570_2_,y,0 +p_178570_3_,z,0 +p_178570_4_,generator,0 +p_178573_1_,worldRendererIn,0 +p_178573_2_,pos,0 +p_178575_1_,needsUpdateIn,0 +p_178576_1_,pos,0 +p_178577_1_,frameIndexIn,0 +p_178580_1_,compiledChunkIn,0 +p_178581_1_,x,0 +p_178581_2_,y,0 +p_178581_3_,z,0 +p_178581_4_,generator,0 +p_178584_1_,layer,0 +p_178584_2_,x,0 +p_178584_3_,y,0 +p_178584_4_,z,0 +p_178584_5_,worldRendererIn,0 +p_178584_6_,compiledChunkIn,0 +p_178600_1_,layer,0 +p_178602_1_,worldIn,0 +p_178602_2_,globalRenderer,0 +p_178602_3_,pos,0 +p_178602_4_,index,0 +p_178605_0_,x,0 +p_178605_1_,y,0 +p_178605_2_,z,0 +p_178606_1_,pos,0 +p_178608_0_,pos,0 +p_178609_1_,pos,0 +p_178618_1_,visible,0 +p_178619_1_,facing,0 +p_178619_2_,facing2,0 +p_178621_1_,facing,0 +p_178621_2_,facing2,0 +p_178628_1_,renderPosXIn,0 +p_178628_3_,renderPosYIn,0 +p_178628_5_,renderPosZIn,0 +p_178629_1_,debugBoundingBoxIn,0 +p_178630_1_,entityIn,0 +p_178630_2_,partialTicks,0 +p_178631_1_,playerViewYIn,0 +p_178632_1_,renderOutlinesIn,0 +p_178633_1_,renderShadowIn,0 +p_178635_1_,entityIn,0 +p_178635_2_,camera,0 +p_178635_3_,camX,0 +p_178635_5_,camY,0 +p_178635_7_,camZ,0 +p_178661_1_,menu,0 +p_178663_2_,alpha,0 +p_178685_0_,source,0 +p_178685_1_,dest,0 +p_178686_1_,model,0 +p_178718_1_,scale,0 +p_178719_1_,invisible,0 +p_178765_1_,renderer,0 +p_178765_2_,scale,0 +p_178767_1_,type,2 +p_178780_1_,renderer,0 +p_178780_2_,scale,0 +p_178781_0_,x1,2 +p_178781_10_,z2,2 +p_178781_2_,y1,2 +p_178781_4_,z1,2 +p_178781_6_,x2,2 +p_178781_8_,y2,2 +p_178785_1_,yaw,2 +p_178786_1_,x,2 +p_178786_3_,y,2 +p_178786_5_,z,2 +p_178787_1_,vec,2 +p_178788_1_,vec,2 +p_178789_1_,pitch,2 +p_178815_1_,locked,2 +p_178819_1_,name,2 +p_178822_1_,name,2 +p_178822_2_,objective,2 +p_178859_1_,displayNameIn,0 +p_178874_0_,list,0 +p_178874_1_,range,0 +p_178877_1_,modelPart,0 +p_178878_1_,modelPart,0 +p_178878_2_,enable,0 +p_178888_1_,pos,0 +p_178888_2_,side,0 +p_178890_1_,player,0 +p_178890_2_,worldIn,0 +p_178890_3_,heldStack,0 +p_178890_4_,hitPos,0 +p_178890_5_,side,0 +p_178890_6_,hitVec,0 +p_178891_0_,mcIn,0 +p_178891_1_,playerController,0 +p_178891_2_,pos,0 +p_178891_3_,facing,0 +p_178892_1_,worldIn,0 +p_178892_2_,statWriter,0 +p_178893_1_,pos,0 +p_178894_1_,player,0 +p_178894_2_,entityIn,0 +p_178894_3_,movingObject,0 +p_178902_1_,particleID,0 +p_178902_11_,ySpeedIn,0 +p_178902_13_,zSpeedIn,0 +p_178902_2_,worldIn,0 +p_178902_3_,xCoordIn,0 +p_178902_5_,yCoordIn,0 +p_178902_7_,zCoordIn,0 +p_178902_9_,xSpeedIn,0 +p_178922_1_,layer,0 +p_178923_1_,particle,0 +p_178924_1_,effect,0 +p_178924_2_,layerFrom,0 +p_178924_3_,layerTo,0 +p_178925_1_,entitiesFX,0 +p_178926_1_,entityIn,0 +p_178926_2_,particleTypes,0 +p_178927_1_,particleId,0 +p_178927_10_,ySpeed,0 +p_178927_12_,zSpeed,0 +p_178927_14_,parameters,0 +p_178927_2_,xCoord,0 +p_178927_4_,yCoord,0 +p_178927_6_,zCoord,0 +p_178927_8_,xSpeed,0 +p_178928_1_,effect,0 +p_178929_1_,id,0 +p_178929_2_,particleFactory,0 +p_178931_1_,effect,0 +p_178968_1_,argb,0 +p_178969_1_,x,0 +p_178969_3_,y,0 +p_178969_5_,z,0 +p_178972_1_,index,0 +p_178972_2_,red,0 +p_178975_1_,x,0 +p_178975_2_,y,0 +p_178975_3_,z,0 +p_178978_1_,red,0 +p_178978_2_,green,0 +p_178978_3_,blue,0 +p_178981_1_,vertexData,0 +p_178987_1_,x,0 +p_178987_3_,y,0 +p_178987_5_,z,0 +p_178988_1_,argb,0 +p_178990_1_,red,0 +p_178990_2_,green,0 +p_178990_3_,blue,0 +p_178993_1_,state,0 +p_178994_1_,red,0 +p_178994_2_,green,0 +p_178994_3_,blue,0 +p_179022_1_,itemStackIn,0 +p_179025_1_,index,0 +p_179027_0_,facing,0 +p_179038_1_,layer,0 +p_179039_1_,id,0 +p_179082_0_,red,0 +p_179082_1_,green,0 +p_179082_2_,blue,0 +p_179082_3_,alpha,0 +p_179083_0_,x,0 +p_179083_1_,y,0 +p_179083_2_,width,0 +p_179083_3_,height,0 +p_179085_0_,light,0 +p_179086_0_,mask,0 +p_179092_0_,func,0 +p_179092_1_,ref,0 +p_179093_0_,param,0 +p_179095_0_,param,0 +p_179102_0_,param,0 +p_179103_0_,mode,0 +p_179104_0_,face,0 +p_179104_1_,mode,0 +p_179105_1_,pname,0 +p_179105_2_,params,0 +p_179107_0_,mode,0 +p_179109_0_,x,0 +p_179109_1_,y,0 +p_179109_2_,z,0 +p_179110_0_,matrix,0 +p_179111_0_,pname,0 +p_179111_1_,params,0 +p_179112_0_,srcFactor,0 +p_179112_1_,dstFactor,0 +p_179114_0_,angle,0 +p_179114_1_,x,0 +p_179114_2_,y,0 +p_179114_3_,z,0 +p_179116_0_,opcode,0 +p_179120_0_,srcFactor,0 +p_179120_1_,dstFactor,0 +p_179120_2_,srcFactorAlpha,0 +p_179120_3_,dstFactorAlpha,0 +p_179122_0_,light,0 +p_179124_0_,colorRed,0 +p_179124_1_,colorGreen,0 +p_179124_2_,colorBlue,0 +p_179128_0_,mode,0 +p_179130_0_,left,0 +p_179130_10_,zFar,0 +p_179130_2_,right,0 +p_179130_4_,bottom,0 +p_179130_6_,top,0 +p_179130_8_,zNear,0 +p_179131_0_,colorRed,0 +p_179131_1_,colorGreen,0 +p_179131_2_,colorBlue,0 +p_179131_3_,colorAlpha,0 +p_179132_0_,flagIn,0 +p_179135_0_,red,0 +p_179135_1_,green,0 +p_179135_2_,blue,0 +p_179135_3_,alpha,0 +p_179136_0_,factor,0 +p_179136_1_,units,0 +p_179137_0_,x,0 +p_179137_2_,y,0 +p_179137_4_,z,0 +p_179138_0_,texture,0 +p_179139_0_,x,0 +p_179139_2_,y,0 +p_179139_4_,z,0 +p_179143_0_,depthFunc,0 +p_179144_0_,texture,0 +p_179148_0_,list,0 +p_179149_0_,texGen,0 +p_179149_1_,param,0 +p_179150_0_,texture,0 +p_179151_0_,depth,0 +p_179152_0_,x,0 +p_179152_1_,y,0 +p_179152_2_,z,0 +p_179153_0_,param,0 +p_179199_1_,state,0 +p_179214_0_,blockIn,2 +p_179214_1_,itemIn,2 +p_179215_1_,nbt,2 +p_179216_0_,blockIn,2 +p_179217_0_,id,2 +p_179217_1_,textualID,2 +p_179217_2_,itemIn,2 +p_179218_1_,stack,2 +p_179218_2_,worldIn,2 +p_179218_3_,blockIn,2 +p_179218_4_,pos,2 +p_179218_5_,playerIn,2 +p_179219_0_,id,2 +p_179219_1_,textualID,2 +p_179219_2_,itemIn,2 +p_179221_1_,armorStand,2 +p_179221_2_,rand,2 +p_179222_1_,worldIn,0 +p_179222_2_,pos,0 +p_179222_3_,side,0 +p_179222_4_,player,0 +p_179222_5_,stack,0 +p_179224_0_,worldIn,2 +p_179224_1_,pos,2 +p_179224_2_,stack,2 +p_179225_1_,stack,2 +p_179229_1_,stack,2 +p_179229_2_,player,2 +p_179230_0_,book,2 +p_179232_1_,stack,2 +p_179232_2_,player,2 +p_179232_3_,worldIn,2 +p_179232_4_,target,2 +p_179232_5_,newState,2 +p_179233_1_,worldIn,2 +p_179233_2_,pos,2 +p_179233_3_,clickedSide,2 +p_179234_0_,stack,2 +p_179234_1_,worldIn,2 +p_179234_2_,target,2 +p_179235_0_,worldIn,2 +p_179235_1_,pos,2 +p_179235_2_,facing,2 +p_179235_3_,door,2 +p_179237_1_,other,2 +p_179238_1_,idx,2 +p_179244_1_,direction,2 +p_179244_2_,packetId,2 +p_179245_1_,direction,2 +p_179245_2_,packetClass,2 +p_179246_1_,direction,2 +p_179246_2_,packetIn,2 +p_179249_1_,value,2 +p_179250_1_,array,2 +p_179252_1_,uuid,2 +p_179254_1_,value,2 +p_179255_1_,pos,2 +p_179256_1_,component,2 +p_179257_1_,enumClass,2 +p_179288_1_,packetIn,2 +p_179288_2_,listener,2 +p_179288_3_,listeners,2 +p_179289_1_,treshold,2 +p_179290_1_,packetIn,2 +p_179299_1_,treshold,2 +p_179303_1_,treshold,2 +p_179318_0_,clazz,2 +p_179318_1_,sets,2 +p_179321_0_,sets,2 +p_179322_0_,clazz,2 +p_179322_1_,it,2 +p_179323_0_,arrays,2 +p_179342_0_,particleId,2 +p_179399_0_,keys,2 +p_179399_1_,values,2 +p_179399_2_,map,2 +p_179400_0_,keys,2 +p_179400_1_,values,2 +p_179401_1_,recipeList,2 +p_179401_2_,random,2 +p_179412_1_,rand,2 +p_179445_0_,attacker,2 +p_179445_1_,target,2 +p_179445_2_,includeInvincibles,2 +p_179445_3_,checkSight,2 +p_179446_1_,creatureIn,2 +p_179446_2_,entityLivingBaseIn,2 +p_179474_1_,worldIn,2 +p_179479_1_,newchance,2 +p_179488_1_,worldIn,2 +p_179488_2_,pos,2 +p_179506_1_,pos,2 +p_179512_1_,attackTarget,2 +p_179518_1_,rand,2 +p_179532_1_,inv,2 +p_179543_1_,key,2 +p_179543_2_,create,2 +p_179544_1_,blockIn,2 +p_179545_0_,stackA,2 +p_179545_1_,stackB,2 +p_179546_1_,playerIn,2 +p_179546_2_,worldIn,2 +p_179546_3_,pos,2 +p_179546_4_,side,2 +p_179546_5_,hitX,2 +p_179546_6_,hitY,2 +p_179546_7_,hitZ,2 +p_179547_1_,blockIn,2 +p_179548_1_,worldIn,2 +p_179548_2_,blockIn,2 +p_179548_3_,pos,2 +p_179548_4_,playerIn,2 +p_179554_0_,name,2 +p_179635_0_,name,2 +p_179652_0_,sender,2 +p_179652_1_,token,2 +p_179652_2_,targetClass,2 +p_179654_0_,sender,2 +p_179654_1_,argumentMap,2 +p_179655_0_,commandSender,2 +p_179655_1_,params,2 +p_179656_0_,sender,2 +p_179656_1_,token,2 +p_179656_2_,targetClass,2 +p_179660_0_,params,2 +p_179660_1_,entityClass,2 +p_179660_2_,inputList,2 +p_179660_3_,type,2 +p_179660_4_,worldIn,2 +p_179660_5_,position,2 +p_179667_0_,stats,2 +p_179667_1_,resultType,2 +p_179667_2_,entityID,2 +p_179667_3_,objectiveName,2 +p_179668_1_,tagcompound,2 +p_179669_0_,resultStatsIn,2 +p_179669_1_,resultTypeIn,2 +p_179670_1_,tagcompound,2 +p_179671_1_,resultStatsIn,2 +p_179672_1_,sender,2 +p_179672_2_,resultTypeIn,2 +p_179672_3_,scorePoint,2 +p_179677_1_,positionVec3,2 +p_179678_1_,jumpHeight,2 +p_179680_1_,pos,2 +p_179683_1_,x,2 +p_179683_2_,y,2 +p_179683_3_,z,2 +p_179683_4_,sizeX,2 +p_179683_5_,sizeY,2 +p_179683_6_,sizeZ,2 +p_179683_7_,vec31,2 +p_179685_1_,par1,2 +p_179688_1_,canBreakDoors,2 +p_179690_1_,avoidsWater,2 +p_179691_1_,par1,2 +p_179693_1_,canSwim,2 +p_179727_1_,worldIn,2 +p_179734_1_,mapdataIn,0 +p_179764_1_,worldIn,0 +p_179780_1_,worldIn,0 +p_179788_1_,border,0 +p_179846_1_,pos,2 +p_179848_1_,pos,2 +p_179849_1_,timestamp,2 +p_179850_1_,pos,2 +p_179853_1_,detached,2 +p_179854_0_,deltaX,2 +p_179854_1_,deltaZ,2 +p_179860_1_,pos,2 +p_179863_1_,pos,2 +p_179864_1_,doorBlock,2 +p_179865_1_,pos,2 +p_179866_1_,pos,2 +p_179882_1_,string,2 +p_179885_1_,key,1 +p_179885_2_,defaultValue,1 +p_179921_1_,speedIn,2 +p_179926_1_,x,2 +p_179926_3_,y,2 +p_179926_5_,z,2 +p_179969_0_,name,2 +p_179985_0_,commandSender,2 +p_179985_1_,component,2 +p_179985_2_,entityIn,2 +p_179989_1_,insertion,2 +p_179997_1_,valueIn,2 +p_180038_0_,id,2 +p_180109_0_,entityClass,2 +p_180115_1_,id,2 +p_180122_0_,entityName,0 +p_180123_0_,entityIn,2 +p_180123_1_,entityName,2 +p_180125_0_,entityName,2 +p_180142_0_,location,2 +p_180157_1_,nbt,2 +p_180158_0_,nbt,2 +p_180166_0_,collection,2 +p_180166_1_,weight,2 +p_180169_1_,difficulty,2 +p_180169_2_,worldTime,2 +p_180169_4_,chunkInhabitedTime,2 +p_180169_6_,moonPhaseFactor,2 +p_180173_0_,worldIn,2 +p_180173_1_,x,2 +p_180173_3_,y,2 +p_180173_5_,z,2 +p_180173_7_,stack,2 +p_180174_0_,worldIn,2 +p_180174_1_,x,2 +p_180174_3_,y,2 +p_180174_5_,z,2 +p_180174_7_,inventory,2 +p_180175_0_,worldIn,2 +p_180175_1_,pos,2 +p_180175_2_,inventory,2 +p_180176_0_,worldIn,2 +p_180176_1_,entityAt,2 +p_180176_2_,inventory,2 +p_180182_0_,rand,2 +p_180186_0_,pos,0 +p_180187_0_,x,0 +p_180187_1_,y,0 +p_180187_2_,z,0 +p_180192_0_,saveFile,0 +p_180192_1_,packUrl,0 +p_180192_3_,maxSize,0 +p_180213_1_,clazz,2 +p_180215_1_,clazz,2 +p_180233_1_,playerMP,2 +p_180235_1_,pos,2 +p_180236_1_,player,2 +p_180236_2_,worldIn,2 +p_180236_3_,stack,2 +p_180236_4_,pos,2 +p_180236_5_,side,2 +p_180236_6_,offsetX,2 +p_180236_7_,offsetY,2 +p_180236_8_,offsetZ,2 +p_180237_1_,pos,2 +p_180244_1_,pos,2 +p_180262_1_,key,2 +p_180262_2_,value,2 +p_180262_3_,type,2 +p_180263_1_,name,2 +p_180264_1_,key,2 +p_180264_2_,otherValue,2 +p_180266_1_,entityIn,2 +p_180266_2_,rotationYaw,2 +p_180267_0_,spawnPlacementTypeIn,2 +p_180267_1_,worldIn,2 +p_180267_2_,pos,2 +p_180276_0_,biomeId,2 +p_180276_1_,biome,2 +p_180283_1_,biome,0 +p_180283_2_,blockPosition,0 +p_180284_1_,x,2 +p_180284_2_,z,2 +p_180285_0_,blockAccess,0 +p_180285_1_,pos,0 +p_180285_2_,colorResolver,0 +p_180292_1_,worldIn,2 +p_180292_2_,random,2 +p_180292_3_,biome,2 +p_180300_1_,pos,2 +p_180300_2_,biomeGenBaseIn,2 +p_180302_1_,recipe,2 +p_180303_2_,worldIn,2 +p_180305_0_,location,2 +p_180306_0_,enchID,2 +p_180318_0_,player,2 +p_180319_0_,player,2 +p_180331_1_,x,2 +p_180331_2_,y,2 +p_180331_3_,z,2 +p_180359_1_,pos,2 +p_180374_1_,modifier,2 +p_180375_1_,operation,2 +p_180376_1_,attribute,2 +p_180383_0_,blockName,2 +p_180426_1_,x,0 +p_180426_3_,y,0 +p_180426_5_,z,0 +p_180426_7_,yaw,0 +p_180426_8_,pitch,0 +p_180426_9_,posRotationIncrements,0 +p_180428_1_,explosionIn,2 +p_180428_2_,worldIn,2 +p_180428_3_,pos,2 +p_180428_4_,blockStateIn,2 +p_180429_1_,pos,2 +p_180429_2_,blockIn,2 +p_180430_1_,distance,2 +p_180430_2_,damageMultiplier,2 +p_180431_1_,source,2 +p_180432_1_,entityIn,2 +p_180433_1_,y,2 +p_180433_3_,onGroundIn,2 +p_180433_4_,blockIn,2 +p_180433_5_,pos,2 +p_180434_1_,worldRendererIn,0 +p_180434_2_,entityIn,0 +p_180434_3_,partialTicks,0 +p_180434_4_,rotationX,0 +p_180434_5_,rotationZ,0 +p_180434_6_,rotationYZ,0 +p_180434_7_,rotationXY,0 +p_180434_8_,rotationXZ,0 +p_180435_1_,icon,0 +p_180437_1_,renderGlobalIn,0 +p_180437_2_,partialTicks,0 +p_180437_3_,pass,0 +p_180438_1_,entitylivingbaseIn,0 +p_180438_2_,partialTicks,0 +p_180439_1_,player,2 +p_180439_2_,sfxType,2 +p_180439_3_,blockPosIn,2 +p_180439_4_,data,2 +p_180440_1_,soundID,2 +p_180440_2_,pos,2 +p_180440_3_,data,2 +p_180441_1_,breakerId,2 +p_180441_2_,pos,2 +p_180441_3_,progress,2 +p_180442_1_,particleID,2 +p_180442_11_,yOffset,2 +p_180442_13_,zOffset,2 +p_180442_15_,parameters,2 +p_180442_2_,ignoreRange,2 +p_180442_3_,xCoord,2 +p_180442_5_,yCoord,2 +p_180442_7_,zCoord,2 +p_180442_9_,xOffset,2 +p_180444_1_,worldRendererIn,0 +p_180445_1_,partialTicks,0 +p_180445_2_,pass,0 +p_180446_1_,renderViewEntity,0 +p_180446_2_,camera,0 +p_180446_3_,partialTicks,0 +p_180447_1_,partialTicks,0 +p_180447_2_,pass,0 +p_180449_1_,entityIn,0 +p_180449_2_,partialTicks,0 +p_180450_1_,stack,0 +p_180450_2_,xPosition,0 +p_180450_3_,yPosition,0 +p_180451_1_,model,0 +p_180452_1_,xPosition,0 +p_180452_2_,yPosition,0 +p_180452_3_,isGui3d,0 +p_180453_1_,fr,0 +p_180453_2_,stack,0 +p_180453_3_,xPosition,0 +p_180453_4_,yPosition,0 +p_180453_5_,text,0 +p_180454_1_,stack,0 +p_180454_2_,model,0 +p_180455_1_,text,0 +p_180455_2_,x,0 +p_180455_3_,y,0 +p_180455_4_,color,0 +p_180455_5_,dropShadow,0 +p_180458_0_,worldIn,2 +p_180458_1_,x,2 +p_180458_3_,y,2 +p_180458_5_,z,2 +p_180458_7_,type,2 +p_180461_1_,index,2 +p_180461_2_,stack,2 +p_180461_3_,direction,2 +p_180462_1_,index,2 +p_180462_2_,itemStackIn,2 +p_180462_3_,direction,2 +p_180463_1_,side,2 +p_180464_1_,packetIn,2 +p_180467_0_,worldIn,2 +p_180467_1_,bedLocation,2 +p_180467_2_,forceSpawn,2 +p_180468_1_,guiOwner,2 +p_180469_1_,bedLocation,2 +p_180472_1_,villager,2 +p_180473_1_,pos,2 +p_180473_2_,forced,2 +p_180474_1_,timeInPortal,0 +p_180474_2_,scaledRes,0 +p_180475_1_,objective,0 +p_180475_2_,scaledRes,0 +p_180476_1_,scaledRes,0 +p_180477_1_,scaledRes,0 +p_180478_1_,scaledRes,0 +p_180479_1_,sr,0 +p_180479_2_,partialTicks,0 +p_180480_1_,lightLevel,0 +p_180480_2_,scaledRes,0 +p_180481_1_,difficulty,2 +p_180482_1_,difficulty,2 +p_180482_2_,livingdata,2 +p_180483_1_,difficulty,2 +p_180484_1_,pos,2 +p_180485_1_,pos,2 +p_180489_1_,particleType,0 +p_180494_1_,pos,2 +p_180495_1_,pos,2 +p_180496_1_,pos,2 +p_180496_2_,blockIn,2 +p_180497_1_,pos,2 +p_180497_2_,blockIn,2 +p_180497_3_,delay,2 +p_180497_4_,priority,2 +p_180498_1_,player,2 +p_180498_2_,sfxType,2 +p_180498_3_,pos,2 +p_180499_1_,name,2 +p_180499_2_,pos,2 +p_180500_1_,lightType,2 +p_180500_2_,pos,2 +p_180501_1_,pos,2 +p_180501_2_,newState,2 +p_180501_3_,flags,2 +p_180502_1_,pos,2 +p_180503_1_,pos,0 +p_180503_2_,state,0 +p_180505_1_,particleType,2 +p_180505_10_,xOffset,2 +p_180505_12_,yOffset,2 +p_180505_14_,zOffset,2 +p_180505_16_,particleSpeed,2 +p_180505_18_,particleArguments,2 +p_180505_2_,longDistance,2 +p_180505_3_,xCoord,2 +p_180505_5_,yCoord,2 +p_180505_7_,zCoord,2 +p_180505_9_,numberOfParticles,2 +p_180506_1_,sender,2 +p_180506_2_,input,2 +p_180506_3_,pos,2 +p_180507_1_,url,2 +p_180507_2_,hash,2 +p_180510_1_,textureManagerInstance,0 +p_180511_1_,loc,0 +p_180511_2_,face,0 +p_180512_1_,posBlock,0 +p_180512_2_,directionFacing,0 +p_180513_1_,worldIn,2 +p_180513_2_,structureName,2 +p_180513_3_,position,2 +p_180514_1_,chunkIn,2 +p_180514_2_,x,2 +p_180514_3_,z,2 +p_180517_1_,x,2 +p_180517_2_,z,2 +p_180517_3_,primer,2 +p_180517_4_,biomeGens,2 +p_180518_1_,x,2 +p_180518_2_,z,2 +p_180518_3_,primer,2 +p_180521_2_,location,0 +p_180521_3_,profileTexture,0 +p_180522_0_,pos,2 +p_180523_0_,category,2 +p_180523_1_,pos,2 +p_180523_2_,blockIn,2 +p_180523_3_,blockData,2 +p_180524_1_,sender,2 +p_180524_2_,input,2 +p_180524_3_,pos,2 +p_180525_1_,sender,2 +p_180525_2_,args,2 +p_180525_3_,pos,2 +p_180526_0_,input,2 +p_180526_1_,min,2 +p_180527_0_,input,2 +p_180528_0_,input,2 +p_180528_1_,min,2 +p_180529_0_,args,2 +p_180529_1_,startPos,2 +p_180530_0_,components,2 +p_180532_1_,pos,0 +p_180532_2_,side,0 +p_180533_1_,pos,0 +p_180533_2_,state,0 +p_180534_1_,renderPlayerIn,0 +p_180535_1_,te,0 +p_180535_2_,x,0 +p_180535_4_,y,0 +p_180535_6_,z,0 +p_180535_8_,partialTicks,0 +p_180535_9_,destroyStage,0 +p_180546_1_,tileentityIn,0 +p_180546_2_,partialTicks,0 +p_180546_3_,destroyStage,0 +p_180548_1_,entity,0 +p_180549_1_,blockIn,0 +p_180549_8_,pos,0 +p_180560_1_,minecart,0 +p_180560_2_,partialTicks,0 +p_180560_3_,state,0 +p_180574_1_,dragon,0 +p_180597_1_,worldIn,0 +p_180597_2_,textRendererIn,0 +p_180597_3_,livingPlayerIn,0 +p_180597_4_,pointedEntityIn,0 +p_180597_5_,optionsIn,0 +p_180597_6_,partialTicks,0 +p_180598_1_,images,0 +p_180598_2_,meta,0 +p_180601_1_,url,0 +p_180601_2_,hash,0 +p_180609_1_,central,2 +p_180610_0_,dragModeIn,2 +p_180610_1_,player,2 +p_180612_1_,worldIn,0 +p_180613_1_,entityIn,2 +p_180613_2_,spawn,2 +p_180614_1_,stack,2 +p_180614_2_,playerIn,2 +p_180614_3_,worldIn,2 +p_180614_4_,pos,2 +p_180614_5_,side,2 +p_180614_6_,hitX,2 +p_180614_7_,hitY,2 +p_180614_8_,hitZ,2 +p_180615_1_,stack,2 +p_180615_2_,worldIn,2 +p_180615_3_,pos,2 +p_180615_4_,variantInStack,2 +p_180616_1_,worldIn,2 +p_180616_2_,pos,2 +p_180617_0_,worldIn,0 +p_180617_1_,pos,0 +p_180617_2_,amount,0 +p_180618_0_,player,2 +p_180618_1_,worldIn,2 +p_180618_2_,fence,2 +p_180619_1_,y,2 +p_180620_1_,entityIn,2 +p_180620_2_,rotationYaw,2 +p_180621_0_,worldIn,2 +p_180621_1_,x,2 +p_180621_2_,z,2 +p_180622_1_,worldIn,2 +p_180622_2_,rand,2 +p_180622_3_,chunkPrimerIn,2 +p_180622_4_,x,2 +p_180622_5_,z,2 +p_180622_6_,noiseVal,2 +p_180623_1_,rand,2 +p_180623_2_,pos,2 +p_180624_1_,worldIn,2 +p_180624_2_,rand,2 +p_180624_3_,pos,2 +p_180625_1_,pos,0 +p_180626_1_,pos,2 +p_180627_1_,pos,0 +p_180628_1_,worldIn,2 +p_180628_2_,rand,2 +p_180628_3_,chunkPrimerIn,2 +p_180628_4_,x,2 +p_180628_5_,z,2 +p_180628_6_,noiseVal,2 +p_180630_1_,x,2 +p_180630_2_,z,2 +p_180630_3_,range,2 +p_180630_4_,biomes,2 +p_180630_5_,random,2 +p_180631_1_,pos,2 +p_180632_1_,state,2 +p_180633_1_,worldIn,2 +p_180633_2_,pos,2 +p_180633_3_,state,2 +p_180633_4_,placer,2 +p_180633_5_,stack,2 +p_180634_1_,worldIn,2 +p_180634_2_,pos,2 +p_180634_3_,state,2 +p_180634_4_,entityIn,2 +p_180635_0_,worldIn,2 +p_180635_1_,pos,2 +p_180635_2_,stack,2 +p_180636_1_,worldIn,2 +p_180636_2_,pos,2 +p_180636_3_,start,2 +p_180636_4_,end,2 +p_180637_1_,worldIn,2 +p_180637_2_,pos,2 +p_180637_3_,amount,2 +p_180638_1_,worldIn,2 +p_180638_2_,pos,2 +p_180638_3_,state,2 +p_180638_4_,mask,2 +p_180638_5_,list,2 +p_180638_6_,collidingEntity,2 +p_180639_1_,worldIn,2 +p_180639_2_,pos,2 +p_180639_3_,state,2 +p_180639_4_,playerIn,2 +p_180639_5_,side,2 +p_180639_6_,hitX,2 +p_180639_7_,hitY,2 +p_180639_8_,hitZ,2 +p_180640_1_,worldIn,2 +p_180640_2_,pos,2 +p_180640_3_,state,2 +p_180641_1_,worldIn,2 +p_180641_2_,pos,2 +p_180642_1_,worldIn,2 +p_180642_2_,pos,2 +p_180642_3_,facing,2 +p_180642_4_,hitX,2 +p_180642_5_,hitY,2 +p_180642_6_,hitZ,2 +p_180642_7_,meta,2 +p_180642_8_,placer,2 +p_180643_1_,state,2 +p_180644_1_,state,0 +p_180645_1_,worldIn,2 +p_180645_2_,pos,2 +p_180645_3_,state,2 +p_180645_4_,random,2 +p_180646_1_,worldIn,0 +p_180646_2_,pos,0 +p_180647_1_,playerIn,2 +p_180647_2_,worldIn,2 +p_180647_3_,pos,2 +p_180648_1_,worldIn,2 +p_180648_2_,pos,2 +p_180648_3_,state,2 +p_180648_4_,eventID,2 +p_180648_5_,eventParam,2 +p_180649_1_,worldIn,2 +p_180649_2_,pos,2 +p_180649_3_,playerIn,2 +p_180650_1_,worldIn,2 +p_180650_2_,pos,2 +p_180650_3_,state,2 +p_180650_4_,rand,2 +p_180651_1_,state,2 +p_180652_1_,worldIn,2 +p_180652_2_,pos,2 +p_180652_3_,explosionIn,2 +p_180653_1_,worldIn,2 +p_180653_2_,pos,2 +p_180653_3_,state,2 +p_180653_4_,chance,2 +p_180653_5_,fortune,2 +p_180654_1_,worldIn,2 +p_180654_2_,pos,2 +p_180655_1_,worldIn,0 +p_180655_2_,pos,0 +p_180655_3_,state,0 +p_180655_4_,rand,0 +p_180656_1_,worldIn,2 +p_180656_2_,pos,2 +p_180656_3_,state,2 +p_180656_4_,side,2 +p_180657_1_,worldIn,2 +p_180657_2_,player,2 +p_180657_3_,pos,2 +p_180657_4_,state,2 +p_180657_5_,te,2 +p_180658_1_,worldIn,2 +p_180658_2_,pos,2 +p_180658_3_,entityIn,2 +p_180658_4_,fallDistance,2 +p_180659_1_,state,2 +p_180660_1_,state,2 +p_180660_2_,rand,2 +p_180660_3_,fortune,2 +p_180662_1_,worldIn,0 +p_180662_2_,pos,0 +p_180662_3_,renderPass,0 +p_180663_1_,worldIn,2 +p_180663_2_,pos,2 +p_180663_3_,state,2 +p_180665_1_,worldIn,0 +p_180665_2_,pos,0 +p_180666_1_,worldIn,2 +p_180666_2_,pos,2 +p_180666_3_,state,2 +p_180666_4_,oldRedstoneStrength,2 +p_180667_1_,pos,2 +p_180668_1_,state,2 +p_180669_1_,worldIn,2 +p_180669_2_,pos,2 +p_180670_1_,worldIn,2 +p_180670_2_,rand,2 +p_180670_3_,pos,2 +p_180670_4_,state,2 +p_180671_1_,worldIn,2 +p_180671_2_,pos,2 +p_180671_3_,state,2 +p_180672_0_,blockIn,2 +p_180672_1_,worldIn,2 +p_180672_2_,pos,2 +p_180673_1_,worldIn,2 +p_180673_2_,pos,2 +p_180674_1_,unpoweredState,2 +p_180675_1_,poweredState,2 +p_180676_1_,worldIn,2 +p_180676_2_,pos,2 +p_180677_1_,worldIn,2 +p_180677_2_,pos,2 +p_180678_1_,worldIn,2 +p_180678_2_,pos,2 +p_180678_3_,state,2 +p_180679_1_,worldIn,2 +p_180679_2_,pos,2 +p_180679_3_,te,2 +p_180680_1_,worldIn,2 +p_180680_2_,pos,2 +p_180680_3_,state,2 +p_180681_1_,state,2 +p_180682_1_,worldIn,2 +p_180682_2_,pos,2 +p_180682_3_,state,2 +p_180682_4_,player,2 +p_180683_1_,worldIn,2 +p_180683_2_,pos,2 +p_180684_1_,worldIn,2 +p_180684_2_,pos,2 +p_180685_0_,worldIn,2 +p_180685_1_,pos,2 +p_180686_1_,blockIn,2 +p_180686_2_,encouragement,2 +p_180686_3_,flammability,2 +p_180687_1_,worldIn,2 +p_180687_2_,pos,2 +p_180688_1_,worldIn,2 +p_180688_2_,pos,2 +p_180689_0_,worldIn,0 +p_180689_1_,pos,0 +p_180689_2_,materialIn,0 +p_180690_1_,worldIn,2 +p_180690_2_,pos,2 +p_180690_3_,currentState,2 +p_180691_1_,worldIn,2 +p_180691_2_,pos,2 +p_180692_1_,worldIn,2 +p_180692_2_,pos,2 +p_180692_3_,state,2 +p_180692_4_,igniter,2 +p_180693_1_,state,2 +p_180694_1_,worldIn,2 +p_180694_2_,pos,2 +p_180695_0_,worldIn,2 +p_180695_1_,clickedBlock,2 +p_180695_2_,entityIn,2 +p_180696_0_,blockIn,2 +p_180696_1_,worldIn,2 +p_180696_2_,pos,2 +p_180696_3_,direction,2 +p_180696_4_,allowDestroy,2 +p_180697_1_,pos,2 +p_180700_1_,facing,2 +p_180701_1_,worldIn,2 +p_180701_2_,chunkX,2 +p_180701_3_,chunkZ,2 +p_180701_6_,chunkPrimerIn,2 +p_180706_1_,worldIn,2 +p_180706_2_,pos,2 +p_180708_0_,tagCompound,2 +p_180708_1_,profile,2 +p_180709_1_,worldIn,2 +p_180709_2_,rand,2 +p_180709_3_,position,2 +p_180711_1_,worldIn,2 +p_180713_0_,jsonString,2 +p_180714_1_,string,2 +p_180777_1_,worldIn,2 +p_180777_2_,boundingboxIn,2 +p_180777_3_,minX,2 +p_180777_4_,minY,2 +p_180777_5_,minZ,2 +p_180777_6_,maxX,2 +p_180777_7_,maxY,2 +p_180777_8_,maxZ,2 +p_180777_9_,blockstateIn,2 +p_180778_1_,worldIn,2 +p_180778_2_,boundingBoxIn,2 +p_180778_3_,rand,2 +p_180778_4_,x,2 +p_180778_5_,y,2 +p_180778_6_,z,2 +p_180778_7_,listIn,2 +p_180778_8_,max,2 +p_180781_0_,seed,2 +p_180782_1_,blockaccess,2 +p_180782_2_,entityIn,2 +p_180782_3_,targetPos,2 +p_180782_4_,dist,2 +p_180783_1_,locked,2 +p_180784_1_,pos,2 +p_180784_2_,side,2 +p_180785_1_,pos,2 +p_180786_0_,worldIn,0 +p_180790_1_,slotIndex,0 +p_180790_2_,x,0 +p_180790_3_,y,0 +p_180790_4_,listWidth,0 +p_180790_5_,slotHeight,0 +p_180790_6_,mouseX,0 +p_180790_7_,mouseY,0 +p_180790_8_,isSelected,0 +p_180791_1_,entryID,0 +p_180791_5_,mouseXIn,0 +p_180791_6_,mouseYIn,0 +p_180793_3_,entityLivingBaseIn,2 +p_180794_1_,instance,2 +p_181013_1_,offset,2 +p_181015_1_,pos,2 +p_181020_0_,compound,2 +p_181020_1_,baseColorIn,2 +p_181020_2_,patternsIn,2 +p_181023_1_,tileEntitiesToRemove,0 +p_181023_2_,tileEntitiesToAdd,0 +p_181036_1_,itemIn,0 +p_181036_2_,meta,0 +p_181036_3_,tileEntityIn,0 +p_181079_1_,xIn,2 +p_181079_2_,yIn,2 +p_181079_3_,zIn,2 +p_181124_0_,address,0 +p_181124_1_,serverPort,0 +p_181124_2_,useNativeTransport,0 +p_181157_1_,clazz,2 +p_181536_1_,posX,0 +p_181536_10_,alpha,0 +p_181536_2_,posY,0 +p_181536_3_,texU,0 +p_181536_4_,texV,0 +p_181536_5_,width,0 +p_181536_6_,height,0 +p_181536_7_,red,0 +p_181536_8_,green,0 +p_181536_9_,blue,0 +p_181537_1_,isConnected,0 +p_181551_1_,scaledRes,0 +p_181559_1_,ch,0 +p_181559_2_,italic,0 +p_181560_1_,partialTicks,0 +p_181560_2_,nanoTime,0 +p_181561_0_,boundingBox,0 +p_181562_1_,playerPos,0 +p_181562_2_,renderChunkBase,0 +p_181562_3_,facing,0 +p_181563_0_,boundingBox,0 +p_181563_1_,red,0 +p_181563_2_,green,0 +p_181563_3_,blue,0 +p_181563_4_,alpha,0 +p_181564_1_,stack,0 +p_181564_2_,cameraTransformType,0 +p_181565_1_,renderer,0 +p_181565_2_,x,0 +p_181565_3_,y,0 +p_181565_4_,width,0 +p_181565_5_,height,0 +p_181565_6_,red,0 +p_181565_7_,green,0 +p_181565_8_,blue,0 +p_181565_9_,alpha,0 +p_181617_0_,task,2 +p_181617_1_,logger,2 +p_181662_1_,x,0 +p_181662_3_,y,0 +p_181662_5_,z,0 +p_181666_1_,red,0 +p_181666_2_,green,0 +p_181666_3_,blue,0 +p_181666_4_,alpha,0 +p_181668_1_,glMode,0 +p_181668_2_,format,0 +p_181669_1_,red,0 +p_181669_2_,green,0 +p_181669_3_,blue,0 +p_181669_4_,alpha,0 +p_181673_1_,u,0 +p_181673_3_,v,0 +p_181681_1_,type,0 +p_181687_1_,type,0 +p_181688_1_,type,0 +p_181689_1_,type,0 +p_181721_1_,element,0 +p_181743_1_,value,2 +p_181743_2_,parentClass,2 +p_181747_1_,runningTime,0 +p_181748_1_,time,0 +p_181748_3_,multiplier,0 +p_181751_1_,rawIndex,0 +p_181756_0_,value,0 +p_183005_1_,itemTranformVec,0 +p_183026_1_,profile,2 +p_183500_1_,w,0 +p_183500_2_,h,0 +p_70000_1_,playerSnooper,2 +p_70001_1_,playerSnooper,2 +p_70003_1_,permLevel,2 +p_70003_2_,commandName,2 +p_70011_1_,x,2 +p_70011_3_,y,2 +p_70011_5_,z,2 +p_70012_1_,x,2 +p_70012_3_,y,2 +p_70012_5_,z,2 +p_70012_7_,yaw,2 +p_70012_8_,pitch,2 +p_70013_1_,partialTicks,2 +p_70014_1_,tagCompound,2 +p_70015_1_,seconds,2 +p_70016_1_,x,0 +p_70016_3_,y,0 +p_70016_5_,z,0 +p_70019_1_,eating,2 +p_70020_1_,tagCompund,2 +p_70024_1_,x,2 +p_70024_3_,y,2 +p_70024_5_,z,2 +p_70028_1_,entityIn,2 +p_70029_1_,worldIn,2 +p_70031_1_,sprinting,2 +p_70032_1_,entityIn,2 +p_70034_1_,rotation,2 +p_70037_1_,tagCompund,2 +p_70038_1_,x,2 +p_70038_3_,y,2 +p_70038_5_,z,2 +p_70039_1_,tagCompund,2 +p_70049_1_,numbers,2 +p_70050_1_,air,2 +p_70052_1_,flag,2 +p_70052_2_,set,2 +p_70055_1_,materialIn,2 +p_70060_1_,strafe,2 +p_70060_2_,forward,2 +p_70060_3_,friction,2 +p_70062_1_,slotIn,2 +p_70062_2_,stack,2 +p_70068_1_,entityIn,2 +p_70070_1_,partialTicks,0 +p_70074_1_,entityLivingIn,2 +p_70077_1_,lightningBolt,2 +p_70078_1_,entityIn,2 +p_70080_1_,x,2 +p_70080_3_,y,2 +p_70080_5_,z,2 +p_70080_7_,yaw,2 +p_70080_8_,pitch,2 +p_70081_1_,amount,2 +p_70082_1_,yaw,0 +p_70082_2_,pitch,0 +p_70083_1_,flag,2 +p_70084_1_,entityIn,2 +p_70084_2_,amount,2 +p_70085_1_,player,2 +p_70087_1_,numbers,2 +p_70091_1_,x,2 +p_70091_3_,y,2 +p_70091_5_,z,2 +p_70092_1_,x,2 +p_70092_3_,y,2 +p_70092_5_,z,2 +p_70095_1_,sneaking,2 +p_70097_1_,source,2 +p_70097_2_,amount,2 +p_70099_1_,itemStackIn,2 +p_70099_2_,offsetY,2 +p_70100_1_,entityIn,2 +p_70101_1_,yaw,2 +p_70101_2_,pitch,2 +p_70103_1_,id,0 +p_70105_1_,width,2 +p_70105_2_,height,2 +p_70107_1_,x,2 +p_70107_3_,y,2 +p_70107_5_,z,2 +p_70108_1_,entityIn,2 +p_70109_1_,tagCompund,2 +p_70112_1_,distance,0 +p_70114_1_,entityIn,2 +p_70186_1_,x,2 +p_70186_3_,y,2 +p_70186_5_,z,2 +p_70186_7_,velocity,2 +p_70186_8_,inaccuracy,2 +p_70227_1_,movingObject,2 +p_70239_1_,damageIn,2 +p_70240_1_,knockbackStrengthIn,2 +p_70243_1_,critical,2 +p_70289_1_,other,2 +p_70298_1_,index,2 +p_70298_2_,count,2 +p_70299_1_,index,2 +p_70299_2_,stack,2 +p_70300_1_,player,2 +p_70301_1_,index,2 +p_70304_1_,index,2 +p_70431_1_,itemStackIn,2 +p_70432_1_,itemStackIn,2 +p_70437_1_,itemStackIn,2 +p_70440_1_,slotIn,2 +p_70441_1_,itemStackIn,2 +p_70442_1_,nbtTagListIn,2 +p_70443_1_,nbtTagListIn,2 +p_70449_1_,damage,2 +p_70452_1_,itemStackIn,2 +p_70453_1_,direction,0 +p_70455_1_,playerInventory,2 +p_70463_1_,row,2 +p_70463_2_,column,2 +p_70471_1_,currentRecipeIndexIn,2 +p_70527_0_,expValue,2 +p_70536_1_,particleTextureIndex,0 +p_70538_1_,particleRedIn,0 +p_70538_2_,particleGreenIn,0 +p_70538_3_,particleBlueIn,0 +p_70541_1_,scale,0 +p_70543_1_,multiplier,0 +p_70589_1_,baseSpellTextureIndexIn,0 +p_70604_1_,livingBase,2 +p_70606_1_,health,2 +p_70612_1_,strafe,2 +p_70612_2_,forward,2 +p_70618_1_,potionId,0 +p_70624_1_,entitylivingbaseIn,2 +p_70625_1_,entityIn,2 +p_70628_1_,wasRecentlyHit,2 +p_70628_2_,lootingModifier,2 +p_70634_1_,x,2 +p_70634_3_,y,2 +p_70634_5_,z,2 +p_70637_1_,jumping,2 +p_70644_1_,potionIn,2 +p_70645_1_,cause,2 +p_70652_1_,entityIn,2 +p_70653_1_,entityIn,2 +p_70655_1_,source,2 +p_70655_2_,damage,2 +p_70659_1_,speedIn,2 +p_70660_1_,potionIn,2 +p_70665_1_,damageSrc,2 +p_70665_2_,damageAmount,2 +p_70669_1_,stack,2 +p_70670_1_,id,2 +p_70672_1_,source,2 +p_70672_2_,damage,2 +p_70676_1_,partialTicks,2 +p_70678_1_,partialTickTime,0 +p_70685_1_,entityIn,2 +p_70686_1_,cls,2 +p_70687_1_,potioneffectIn,2 +p_70688_1_,effect,2 +p_70690_1_,potioneffectIn,2 +p_70691_1_,healAmount,2 +p_70693_1_,player,2 +p_70695_1_,id,2 +p_70799_1_,size,2 +p_70819_1_,screaming,2 +p_70821_1_,player,2 +p_70825_1_,x,2 +p_70825_3_,y,2 +p_70825_5_,z,2 +p_70829_1_,state,2 +p_70844_1_,onFire,2 +p_70873_1_,age,2 +p_70877_1_,stack,2 +p_70878_1_,otherAnimal,2 +p_70893_1_,sheared,2 +p_70900_1_,saddled,2 +p_70903_1_,tamed,2 +p_70904_1_,sitting,2 +p_70908_1_,play,2 +p_70912_1_,skinId,2 +p_70916_1_,angry,2 +p_70918_1_,beg,2 +p_70930_1_,recipeList,0 +p_70933_1_,recipe,2 +p_70938_1_,professionId,2 +p_70939_1_,playing,2 +p_70947_1_,mating,2 +p_70965_1_,dragonPart,2 +p_70965_2_,source,2 +p_70998_1_,targetEntity,2 +p_70999_1_,immediately,2 +p_70999_2_,updateWorldFlag,2 +p_70999_3_,setSpawn,2 +p_71007_1_,chestInventory,2 +p_71008_1_,stack,2 +p_71008_2_,duration,2 +p_71009_1_,entityHit,2 +p_71010_1_,itemStackIn,2 +p_71012_1_,itemIn,2 +p_71013_1_,levels,2 +p_71019_1_,itemStackIn,2 +p_71019_2_,unused,2 +p_71023_1_,amount,2 +p_71027_1_,dimensionId,2 +p_71029_1_,achievementIn,2 +p_71033_1_,gameType,2 +p_71040_1_,dropAll,2 +p_71043_1_,ignoreHunger,2 +p_71047_1_,entityHit,2 +p_71048_1_,bookStack,2 +p_71049_1_,oldPlayer,2 +p_71049_2_,respawnFromEnd,2 +p_71059_1_,targetEntity,2 +p_71064_1_,stat,2 +p_71064_2_,amount,2 +p_71110_1_,containerToSend,2 +p_71110_2_,itemsList,2 +p_71111_1_,containerToSend,2 +p_71111_2_,slotInd,2 +p_71111_3_,stack,2 +p_71112_1_,containerIn,2 +p_71112_2_,varToUpdate,2 +p_71112_3_,newValue,2 +p_71124_1_,slotIn,2 +p_71150_1_,health,0 +p_71152_1_,currentXP,0 +p_71152_2_,maxXP,0 +p_71152_3_,level,0 +p_71165_1_,message,0 +p_71188_1_,allowPvp,2 +p_71189_1_,host,1 +p_71191_1_,maxBuildHeight,2 +p_71192_1_,message,2 +p_71194_1_,enable,2 +p_71198_1_,msg,1 +p_71201_1_,msg,1 +p_71204_1_,demo,2 +p_71205_1_,motdIn,2 +p_71206_1_,type,2 +p_71206_2_,allowCheats,2 +p_71208_1_,port,1 +p_71209_1_,fileName,2 +p_71216_1_,message,2 +p_71216_2_,percent,2 +p_71218_1_,dimension,2 +p_71224_1_,owner,2 +p_71228_1_,report,2 +p_71229_1_,online,2 +p_71230_1_,report,2 +p_71235_1_,gameMode,2 +p_71236_1_,msg,2 +p_71237_1_,worldNameIn,2 +p_71244_1_,msg,1 +p_71245_1_,allow,2 +p_71247_1_,saveName,2 +p_71247_2_,worldNameIn,2 +p_71247_3_,seed,2 +p_71247_5_,type,2 +p_71247_6_,worldNameIn2,2 +p_71251_1_,spawnAnimals,2 +p_71252_1_,command,1 +p_71253_1_,keyPair,2 +p_71257_1_,spawnNpcs,2 +p_71261_1_,name,2 +p_71267_1_,dontLog,2 +p_71327_1_,key,1 +p_71327_2_,defaultValue,1 +p_71328_1_,key,1 +p_71328_2_,value,1 +p_71330_1_,key,1 +p_71330_2_,defaultValue,1 +p_71331_1_,input,1 +p_71331_2_,sender,1 +p_71332_1_,key,1 +p_71332_2_,defaultValue,1 +p_71351_1_,serverDataIn,0 +p_71353_1_,worldClientIn,0 +p_71353_2_,loadingMessage,0 +p_71354_1_,dimension,0 +p_71361_1_,message,0 +p_71366_1_,elapsedTicksTime,0 +p_71370_1_,width,0 +p_71370_2_,height,0 +p_71371_1_,folderName,0 +p_71371_2_,worldName,0 +p_71371_3_,worldSettingsIn,0 +p_71377_1_,crashReportIn,0 +p_71383_1_,keyCount,0 +p_71396_1_,theCrash,0 +p_71403_1_,worldClientIn,0 +p_71404_1_,crash,0 +p_71499_1_,sectionName,2 +p_71499_2_,throwable,2 +p_71500_1_,sectionName,2 +p_71500_2_,callable,2 +p_71506_1_,builder,2 +p_71507_1_,sectionName,2 +p_71507_2_,value,2 +p_71515_1_,sender,2 +p_71515_2_,args,2 +p_71518_1_,sender,2 +p_71519_1_,sender,2 +p_71521_0_,sender,2 +p_71523_0_,original,2 +p_71523_1_,region,2 +p_71527_0_,elements,2 +p_71529_0_,command,2 +p_71530_0_,args,2 +p_71530_1_,possibilities,2 +p_71541_1_,gameMode,2 +p_71552_1_,sender,2 +p_71552_2_,time,2 +p_71553_1_,sender,2 +p_71553_2_,time,2 +p_71556_1_,sender,2 +p_71556_2_,rawCommand,2 +p_71557_1_,sender,2 +p_71559_0_,input,2 +p_71560_1_,command,2 +p_71565_0_,input,2 +p_71566_0_,character,2 +p_72314_1_,x,2 +p_72314_3_,y,2 +p_72314_5_,z,2 +p_72315_1_,vec,2 +p_72316_1_,other,2 +p_72316_2_,offsetX,2 +p_72317_1_,x,2 +p_72317_3_,y,2 +p_72317_5_,z,2 +p_72318_1_,vec,2 +p_72319_1_,vec,2 +p_72321_1_,x,2 +p_72321_3_,y,2 +p_72321_5_,z,2 +p_72322_1_,other,2 +p_72322_2_,offsetZ,2 +p_72323_1_,other,2 +p_72323_2_,offsetY,2 +p_72326_1_,other,2 +p_72327_1_,vecA,2 +p_72327_2_,vecB,2 +p_72331_1_,x,2 +p_72331_3_,y,2 +p_72331_5_,z,2 +p_72333_1_,vec,2 +p_72354_1_,playerIn,2 +p_72354_2_,worldIn,2 +p_72355_1_,netManager,2 +p_72355_2_,playerIn,2 +p_72356_1_,playerIn,2 +p_72356_2_,dimension,2 +p_72358_1_,playerIn,2 +p_72364_1_,worldServers,2 +p_72367_1_,playerIn,2 +p_72368_1_,playerIn,2 +p_72368_2_,dimension,2 +p_72368_3_,conqueredEnd,2 +p_72371_1_,whitelistEnabled,2 +p_72375_1_,playerIn,2 +p_72375_2_,worldIn,2 +p_72377_1_,playerIn,2 +p_72380_1_,playerIn,2 +p_72381_3_,worldIn,2 +p_72382_1_,address,2 +p_72385_1_,playerIn,2 +p_72391_1_,playerIn,2 +p_72429_1_,vec,2 +p_72429_2_,x,2 +p_72430_1_,vec,2 +p_72431_1_,vec,0 +p_72434_1_,vec,2 +p_72434_2_,z,2 +p_72435_1_,vec,2 +p_72435_2_,y,2 +p_72436_1_,vec,2 +p_72438_1_,vec,0 +p_72441_1_,x,2 +p_72441_3_,y,2 +p_72441_5_,z,2 +p_72444_1_,vec,0 +p_72593_1_,currentTime,1 +p_72601_1_,socket,1 +p_72604_1_,socket,1 +p_72604_2_,removeFromList,1 +p_72605_1_,socket,1 +p_72605_2_,removeFromList,1 +p_72606_1_,msg,1 +p_72607_1_,msg,1 +p_72608_1_,socket,1 +p_72609_1_,msg,1 +p_72610_1_,msg,1 +p_72612_1_,logWarning,1 +p_72620_1_,data,1 +p_72620_2_,requestPacket,1 +p_72621_1_,requestPacket,1 +p_72622_1_,requestPacket,1 +p_72623_1_,exception,1 +p_72624_1_,requestPacket,1 +p_72625_1_,address,1 +p_72627_1_,requestPacket,1 +p_72654_3_,message,1 +p_72663_0_,input,1 +p_72667_1_,data,1 +p_72668_1_,data,1 +p_72670_1_,data,1 +p_72671_1_,data,1 +p_72683_1_,player,2 +p_72684_1_,x1,2 +p_72684_2_,z1,2 +p_72684_3_,x2,2 +p_72684_4_,z2,2 +p_72684_5_,radius,2 +p_72685_1_,player,2 +p_72686_0_,distance,2 +p_72690_1_,chunkX,2 +p_72690_2_,chunkZ,2 +p_72690_3_,createIfAbsent,2 +p_72691_1_,player,2 +p_72694_1_,player,2 +p_72694_2_,chunkX,2 +p_72694_3_,chunkZ,2 +p_72695_1_,player,2 +p_72703_1_,entityIn,2 +p_72704_1_,soundName,2 +p_72704_2_,x,2 +p_72704_4_,y,2 +p_72704_6_,z,2 +p_72704_8_,volume,2 +p_72704_9_,pitch,2 +p_72709_1_,entityIn,2 +p_72720_1_,width,0 +p_72720_2_,height,0 +p_72721_1_,x,0 +p_72721_3_,y,0 +p_72721_5_,z,0 +p_72721_7_,partialTicks,0 +p_72725_1_,x1,0 +p_72725_2_,y1,0 +p_72725_3_,z1,0 +p_72725_4_,x2,0 +p_72725_5_,y2,0 +p_72725_6_,z2,0 +p_72731_1_,player,0 +p_72731_2_,movingObjectPositionIn,0 +p_72731_3_,execute,0 +p_72731_4_,partialTicks,0 +p_72732_1_,worldClientIn,0 +p_72785_1_,entityIn,2 +p_72785_2_,trackingRange,2 +p_72785_3_,updateFrequency,2 +p_72785_4_,sendVelocityUpdates,2 +p_72786_1_,entityIn,2 +p_72790_1_,entityIn,2 +p_72791_1_,entityIn,2 +p_72791_2_,trackingRange,2 +p_72791_3_,updateFrequency,2 +p_72819_1_,delta,2 +p_72823_1_,dataID,2 +p_72823_2_,worldSavedDataIn,2 +p_72824_1_,partialTicks,0 +p_72826_1_,partialTicks,2 +p_72829_1_,bb,2 +p_72830_1_,bb,2 +p_72830_2_,materialIn,2 +p_72833_1_,entityIn,0 +p_72833_2_,partialTicks,0 +p_72838_1_,entityIn,2 +p_72839_1_,entityIn,2 +p_72839_2_,bb,2 +p_72841_1_,key,2 +p_72842_1_,vec,2 +p_72842_2_,bb,2 +p_72847_1_,entityIn,2 +p_72848_1_,worldAccess,0 +p_72855_1_,bb,2 +p_72857_1_,entityType,2 +p_72857_2_,aabb,2 +p_72857_3_,closestTo,2 +p_72866_1_,entityIn,2 +p_72866_2_,forceUpdate,2 +p_72867_1_,delta,2 +p_72870_1_,ent,2 +p_72872_1_,classEntity,2 +p_72872_2_,bb,2 +p_72875_1_,bb,2 +p_72875_2_,materialIn,2 +p_72876_1_,entityIn,2 +p_72876_2_,x,2 +p_72876_4_,y,2 +p_72876_6_,z,2 +p_72876_8_,strength,2 +p_72876_9_,isSmoking,2 +p_72877_1_,time,2 +p_72880_1_,partialTicks,0 +p_72885_1_,entityIn,2 +p_72885_10_,isSmoking,2 +p_72885_2_,x,2 +p_72885_4_,y,2 +p_72885_6_,z,2 +p_72885_8_,strength,2 +p_72885_9_,isFlaming,2 +p_72890_1_,entityIn,2 +p_72890_2_,distance,2 +p_72891_1_,hostile,2 +p_72891_2_,peaceful,2 +p_72894_1_,strength,0 +p_72897_1_,entityIn,0 +p_72900_1_,entityIn,2 +p_72901_1_,start,2 +p_72901_2_,end,2 +p_72901_3_,stopOnLiquid,2 +p_72907_1_,entityType,2 +p_72908_1_,x,2 +p_72908_3_,y,2 +p_72908_5_,z,2 +p_72908_7_,soundName,2 +p_72908_8_,volume,2 +p_72908_9_,pitch,2 +p_72914_1_,report,2 +p_72916_1_,x,2 +p_72916_2_,z,2 +p_72917_1_,bb,2 +p_72917_2_,entityIn,2 +p_72918_1_,bb,2 +p_72918_2_,materialIn,2 +p_72918_3_,entityIn,2 +p_72920_1_,chunkIn,2 +p_72923_1_,entityIn,2 +p_72924_1_,name,2 +p_72929_1_,partialTicks,2 +p_72942_1_,entityIn,2 +p_72943_1_,clazz,2 +p_72943_2_,dataID,2 +p_72945_1_,entityIn,2 +p_72945_2_,bb,2 +p_72948_1_,partialTicks,0 +p_72953_1_,bb,2 +p_72954_1_,worldAccess,2 +p_72956_1_,entityIn,2 +p_72956_2_,name,2 +p_72956_3_,volume,2 +p_72956_4_,pitch,2 +p_72960_1_,entityIn,2 +p_72960_2_,state,2 +p_72963_1_,settings,2 +p_72964_1_,chunkX,2 +p_72964_2_,chunkZ,2 +p_72973_1_,entityIn,2 +p_72975_1_,x1,2 +p_72975_2_,z1,2 +p_72975_3_,x2,2 +p_72975_4_,z2,2 +p_72977_1_,x,2 +p_72977_3_,y,2 +p_72977_5_,z,2 +p_72977_7_,distance,2 +p_72980_1_,x,2 +p_72980_10_,distanceDelay,2 +p_72980_3_,y,2 +p_72980_5_,z,2 +p_72980_7_,soundName,2 +p_72980_8_,volume,2 +p_72980_9_,pitch,2 +p_73025_1_,chuncX,0 +p_73025_2_,chuncZ,0 +p_73025_3_,loadChunk,0 +p_73027_1_,entityID,0 +p_73027_2_,entityToSpawn,0 +p_73028_1_,entityID,0 +p_73029_1_,posX,0 +p_73029_2_,posY,0 +p_73029_3_,posZ,0 +p_73031_1_,x1,0 +p_73031_2_,y1,0 +p_73031_3_,z1,0 +p_73031_4_,x2,0 +p_73031_5_,y2,0 +p_73031_6_,z2,0 +p_73044_2_,progressCallback,2 +p_73045_1_,id,2 +p_73052_1_,settings,2 +p_73076_1_,type,2 +p_73077_1_,type,2 +p_73080_1_,serverWorld,2 +p_73085_1_,player,2 +p_73085_2_,worldIn,2 +p_73085_3_,stack,2 +p_73107_1_,damage,0 +p_73117_1_,playerMP,2 +p_73118_1_,playerMP,2 +p_73121_1_,playerMP,2 +p_73122_1_,players,2 +p_73123_1_,playerMP,2 +p_73125_1_,players,2 +p_73149_1_,x,2 +p_73149_2_,z,2 +p_73151_1_,saveAllChunks,2 +p_73151_2_,progressCallback,2 +p_73153_1_,chunkProvider,2 +p_73153_2_,x,2 +p_73153_3_,z,2 +p_73154_1_,x,2 +p_73154_2_,z,2 +p_73158_1_,chunkX,2 +p_73158_2_,chunkZ,2 +p_73234_1_,x,0 +p_73234_2_,z,0 +p_73239_1_,x,2 +p_73239_2_,z,2 +p_73241_1_,x,2 +p_73241_2_,z,2 +p_73242_1_,chunkIn,2 +p_73243_1_,chunkIn,2 +p_73252_1_,player,2 +p_73255_1_,player,2 +p_73667_1_,key,1 +p_73667_2_,value,1 +p_73669_1_,key,1 +p_73669_2_,defaultValue,1 +p_73670_1_,key,1 +p_73670_2_,defaultValue,1 +p_73671_1_,key,1 +p_73671_2_,defaultValue,1 +p_73718_1_,progress,2 +p_73719_1_,message,2 +p_73720_1_,message,2 +p_73721_1_,message,0 +p_73722_1_,message,0 +p_73728_1_,x,0 +p_73728_2_,startY,0 +p_73728_3_,endY,0 +p_73728_4_,color,0 +p_73729_1_,x,0 +p_73729_2_,y,0 +p_73729_3_,textureX,0 +p_73729_4_,textureY,0 +p_73729_5_,width,0 +p_73729_6_,height,0 +p_73730_1_,startX,0 +p_73730_2_,endX,0 +p_73730_3_,y,0 +p_73730_4_,color,0 +p_73731_1_,fontRendererIn,0 +p_73731_2_,text,0 +p_73731_3_,x,0 +p_73731_4_,y,0 +p_73731_5_,color,0 +p_73732_1_,fontRendererIn,0 +p_73732_2_,text,0 +p_73732_3_,x,0 +p_73732_4_,y,0 +p_73732_5_,color,0 +p_73733_1_,left,0 +p_73733_2_,top,0 +p_73733_3_,right,0 +p_73733_4_,bottom,0 +p_73733_5_,startColor,0 +p_73733_6_,endColor,0 +p_73734_0_,left,0 +p_73734_1_,top,0 +p_73734_2_,right,0 +p_73734_3_,bottom,0 +p_73734_4_,color,0 +p_73833_1_,recordName,0 +p_73863_1_,mouseX,0 +p_73863_2_,mouseY,0 +p_73863_3_,partialTicks,0 +p_73864_1_,mouseX,0 +p_73864_2_,mouseY,0 +p_73864_3_,mouseButton,0 +p_73869_1_,typedChar,0 +p_73869_2_,keyCode,0 +p_73878_1_,result,0 +p_73878_2_,id,0 +p_74290_0_,gameDirectory,0 +p_74296_1_,settingOption,0 +p_74297_1_,settingOption,0 +p_74298_0_,key,0 +p_74299_0_,strArray,0 +p_74299_1_,index,0 +p_74304_1_,settingsOption,0 +p_74304_2_,value,0 +p_74305_1_,str,0 +p_74306_1_,settingsOption,0 +p_74306_2_,value,0 +p_74308_1_,settingOption,0 +p_74379_0_,ordinal,0 +p_74507_0_,keyCode,0 +p_74510_0_,keyCode,0 +p_74510_1_,pressed,0 +p_74523_0_,list,0 +p_74524_0_,capacity,0 +p_74526_0_,range,0 +p_74527_0_,capacity,0 +p_74529_0_,capacity,0 +p_74535_1_,str,0 +p_74583_0_,entityplayerIn,0 +p_74734_1_,output,2 +p_74742_1_,nbt,2 +p_74744_1_,i,2 +p_74757_1_,key,2 +p_74757_2_,value,2 +p_74759_1_,key,2 +p_74760_1_,key,2 +p_74762_1_,key,2 +p_74763_1_,key,2 +p_74764_1_,key,2 +p_74765_1_,key,2 +p_74767_1_,key,2 +p_74768_1_,key,2 +p_74768_2_,value,2 +p_74769_1_,key,2 +p_74770_1_,key,2 +p_74771_1_,key,2 +p_74772_1_,key,2 +p_74772_2_,value,2 +p_74773_1_,key,2 +p_74773_2_,value,2 +p_74774_1_,key,2 +p_74774_2_,value,2 +p_74775_1_,key,2 +p_74776_1_,key,2 +p_74776_2_,value,2 +p_74777_1_,key,2 +p_74777_2_,value,2 +p_74778_1_,key,2 +p_74778_2_,value,2 +p_74779_1_,key,2 +p_74780_1_,key,2 +p_74780_2_,value,2 +p_74781_1_,key,2 +p_74782_1_,key,2 +p_74782_2_,value,2 +p_74783_1_,key,2 +p_74783_2_,value,2 +p_74794_0_,inputStream,2 +p_74796_0_,is,2 +p_74799_1_,outputStream,2 +p_74803_1_,key,2 +p_74803_2_,format,2 +p_74805_1_,key,2 +p_74837_0_,key,2 +p_74837_1_,format,2 +p_74838_0_,key,2 +p_74860_1_,worldIn,2 +p_74860_2_,boundingboxIn,2 +p_74861_1_,componentIn,2 +p_74861_2_,listIn,2 +p_74861_3_,rand,2 +p_74862_1_,y,2 +p_74865_1_,x,2 +p_74865_2_,z,2 +p_74871_1_,worldIn,2 +p_74871_2_,x,2 +p_74871_3_,y,2 +p_74871_4_,z,2 +p_74871_5_,structurebb,2 +p_74873_1_,x,2 +p_74873_2_,z,2 +p_74875_1_,worldIn,2 +p_74875_2_,randomIn,2 +p_74875_3_,structureBoundingBoxIn,2 +p_74878_1_,worldIn,2 +p_74878_2_,structurebb,2 +p_74878_3_,minX,2 +p_74878_4_,minY,2 +p_74878_5_,minZ,2 +p_74878_6_,maxX,2 +p_74878_7_,maxY,2 +p_74878_8_,maxZ,2 +p_74882_1_,worldIn,2 +p_74882_10_,rand,2 +p_74882_11_,blockselector,2 +p_74882_2_,boundingboxIn,2 +p_74882_3_,minX,2 +p_74882_4_,minY,2 +p_74882_5_,minZ,2 +p_74882_6_,maxX,2 +p_74882_7_,maxY,2 +p_74882_8_,maxZ,2 +p_74882_9_,alwaysReplace,2 +p_74883_0_,listIn,2 +p_74883_1_,boundingboxIn,2 +p_74889_1_,worldIn,2 +p_74891_1_,start,2 +p_74891_3_,rand,2 +p_74893_1_,worldIn,2 +p_74894_1_,start,2 +p_74894_3_,rand,2 +p_74935_1_,worldIn,2 +p_74990_1_,worldIn,2 +p_75047_1_,chunkX,2 +p_75047_2_,chunkZ,2 +p_75049_1_,chunkX,2 +p_75049_2_,chunkZ,2 +p_75062_1_,rand,2 +p_75062_2_,x,2 +p_75062_3_,y,2 +p_75062_4_,z,2 +p_75067_1_,worldIn,2 +p_75067_2_,rand,2 +p_75068_1_,worldIn,2 +p_75068_2_,rand,2 +p_75068_3_,structurebb,2 +p_75070_1_,worldIn,2 +p_75070_2_,rand,2 +p_75084_0_,random,2 +p_75084_1_,size,2 +p_75091_1_,tagCompound,2 +p_75092_1_,speed,0 +p_75095_1_,tagCompound,2 +p_75114_1_,foodLevelIn,2 +p_75118_1_,player,2 +p_75119_1_,foodSaturationLevelIn,0 +p_75122_1_,foodLevelIn,2 +p_75122_2_,foodSaturationModifier,2 +p_75130_1_,inventoryIn,2 +p_75132_1_,listener,2 +p_75133_1_,slotId,2 +p_75133_2_,clickedButton,2 +p_75133_3_,mode,2 +p_75133_4_,playerIn,2 +p_75134_1_,playerIn,2 +p_75135_1_,stack,2 +p_75135_2_,startIndex,2 +p_75135_3_,endIndex,2 +p_75135_4_,reverseDirection,2 +p_75137_1_,id,0 +p_75137_2_,data,0 +p_75139_1_,slotId,2 +p_75140_1_,playerIn,2 +p_75140_2_,id,2 +p_75141_1_,slotID,2 +p_75141_2_,stack,2 +p_75144_1_,slotId,2 +p_75144_2_,clickedButton,2 +p_75144_3_,mode,2 +p_75144_4_,playerIn,2 +p_75145_1_,playerIn,2 +p_75146_1_,slotIn,2 +p_75147_1_,inv,2 +p_75147_2_,slotIn,2 +p_75175_1_,currentRecipeIndex,2 +p_75208_1_,stack,2 +p_75209_1_,amount,2 +p_75210_1_,stack,2 +p_75210_2_,amount,2 +p_75214_1_,stack,2 +p_75215_1_,stack,2 +p_75217_1_,inv,2 +p_75217_2_,slotIn,2 +p_75230_1_,trade,2 +p_75230_2_,firstItem,2 +p_75230_3_,secondItem,2 +p_75243_0_,stack,2 +p_75248_1_,mutexBitsIn,2 +p_75270_1_,sitting,2 +p_75295_1_,target,2 +p_75296_1_,target,2 +p_75296_2_,includeInvincibles,2 +p_75382_1_,player,2 +p_75412_1_,villageIn,2 +p_75413_1_,doorInfoIn,2 +p_75461_0_,entitycreatureIn,2 +p_75461_1_,xz,2 +p_75461_2_,y,2 +p_75461_3_,targetVec3,2 +p_75462_0_,entitycreatureIn,2 +p_75462_1_,xz,2 +p_75462_2_,y,2 +p_75462_3_,targetVec3,2 +p_75463_0_,entitycreatureIn,2 +p_75463_1_,xz,2 +p_75463_2_,y,2 +p_75464_0_,entitycreatureIn,2 +p_75464_1_,xz,2 +p_75464_2_,y,2 +p_75464_3_,targetVec3,2 +p_75474_1_,x,2 +p_75474_2_,y,2 +p_75474_3_,z,2 +p_75484_1_,pathentityIn,2 +p_75484_2_,speedIn,2 +p_75488_1_,x,2 +p_75488_3_,y,2 +p_75488_5_,z,2 +p_75489_1_,speedIn,2 +p_75492_1_,x,2 +p_75492_3_,y,2 +p_75492_5_,z,2 +p_75492_7_,speedIn,2 +p_75493_1_,posVec31,2 +p_75493_2_,posVec32,2 +p_75493_3_,sizeX,2 +p_75493_4_,sizeY,2 +p_75493_5_,sizeZ,2 +p_75494_1_,entityIn,2 +p_75497_1_,entityIn,2 +p_75497_2_,speedIn,2 +p_75522_1_,entityIn,2 +p_75571_1_,entitylivingbaseIn,2 +p_75575_1_,entitylivingbaseIn,2 +p_75576_1_,doorInfo,2 +p_75614_0_,entityClass,2 +p_75614_1_,entityName,2 +p_75614_2_,entityID,2 +p_75614_3_,baseColor,2 +p_75614_4_,spotColor,2 +p_75615_0_,nbt,2 +p_75615_1_,worldIn,2 +p_75616_0_,entityID,2 +p_75616_1_,worldIn,2 +p_75617_0_,entityID,2 +p_75618_0_,entityClass,2 +p_75618_1_,entityName,2 +p_75618_2_,id,2 +p_75619_0_,entityIn,2 +p_75620_0_,entityName,2 +p_75620_1_,worldIn,2 +p_75621_0_,entityIn,2 +p_75642_1_,x,2 +p_75642_3_,y,2 +p_75642_5_,z,2 +p_75642_7_,speedIn,2 +p_75650_1_,x,2 +p_75650_3_,y,2 +p_75650_5_,z,2 +p_75650_7_,deltaYaw,2 +p_75650_8_,deltaPitch,2 +p_75651_1_,entityIn,2 +p_75651_2_,deltaYaw,2 +p_75651_3_,deltaPitch,2 +p_75671_1_,watched,2 +p_75673_1_,object,2 +p_75679_1_,id,2 +p_75681_1_,id,2 +p_75682_1_,id,2 +p_75682_2_,object,2 +p_75683_1_,id,2 +p_75691_1_,id,2 +p_75692_1_,id,2 +p_75692_2_,newData,2 +p_75693_1_,id,2 +p_75742_1_,clazz,2 +p_75742_2_,dataIdentifier,2 +p_75743_1_,key,2 +p_75745_1_,dataIdentifier,2 +p_75745_2_,data,2 +p_75752_1_,player,2 +p_75753_1_,player,2 +p_75755_1_,worldInformation,2 +p_75755_2_,tagCompound,2 +p_75758_1_,mapName,2 +p_75761_1_,worldInformation,2 +p_75763_1_,provider,2 +p_75773_1_,taskEntry,2 +p_75775_1_,taskEntry,2 +p_75776_1_,priority,2 +p_75776_2_,task,2 +p_75777_1_,taskEntry1,2 +p_75777_2_,taskEntry2,2 +p_75801_1_,saveName,2 +p_75802_1_,saveName,2 +p_75803_1_,saveName,2 +p_75804_1_,saveName,2 +p_75804_2_,storePlayerdata,2 +p_75805_1_,filename,2 +p_75805_2_,progressCallback,2 +p_75806_1_,dirName,0 +p_75806_2_,newName,0 +p_75807_0_,files,2 +p_75809_1_,filename,2 +p_75810_1_,worldDir,2 +p_75810_2_,collection,2 +p_75811_6_,progressCallback,2 +p_75815_1_,worldIn,2 +p_75815_2_,x,2 +p_75815_3_,z,2 +p_75816_1_,worldIn,2 +p_75816_2_,chunkIn,2 +p_75819_1_,worldIn,2 +p_75819_2_,chunkIn,2 +p_75820_1_,chunkIn,2 +p_75820_2_,worldIn,2 +p_75822_1_,worldIn,2 +p_75822_2_,x,2 +p_75822_3_,z,2 +p_75823_1_,worldIn,2 +p_75829_1_,pathpointIn,2 +p_75830_0_,x,2 +p_75830_1_,y,2 +p_75830_2_,z,2 +p_75832_1_,pathpointIn,2 +p_75843_1_,number,0 +p_75849_1_,point,2 +p_75853_1_,start,2 +p_75853_2_,end,2 +p_75871_1_,length,2 +p_75872_1_,currentPathIndexIn,2 +p_75876_1_,pathentityIn,2 +p_75877_1_,index,2 +p_75878_1_,entityIn,2 +p_75880_1_,vec,2 +p_75881_1_,entityIn,2 +p_75881_2_,index,2 +p_75885_0_,opMode,2 +p_75885_1_,key,2 +p_75885_2_,data,2 +p_75886_0_,opMode,2 +p_75886_1_,transformation,2 +p_75886_2_,key,2 +p_75887_0_,key,2 +p_75887_1_,secretKeyEncrypted,2 +p_75889_0_,key,2 +p_75889_1_,data,2 +p_75893_0_,algorithm,2 +p_75893_1_,data,2 +p_75894_0_,key,0 +p_75894_1_,data,0 +p_75895_0_,serverId,2 +p_75895_1_,publicKey,2 +p_75895_2_,secretKey,2 +p_75896_0_,encodedKey,2 +p_75904_1_,areaX,2 +p_75904_2_,areaY,2 +p_75904_3_,areaWidth,2 +p_75904_4_,areaHeight,2 +p_75905_1_,seed,2 +p_75988_1_,statStringFormatterIn,0 +p_76043_0_,hash,2 +p_76043_1_,slotCount,2 +p_76044_0_,integer,2 +p_76056_1_,y,0 +p_76058_1_,x,0 +p_76060_1_,type,2 +p_76062_1_,worldName,2 +p_76064_1_,nbt,2 +p_76064_2_,playerNbt,2 +p_76068_1_,time,2 +p_76069_1_,thunderingIn,2 +p_76078_1_,version,2 +p_76080_1_,time,2 +p_76082_1_,nbt,2 +p_76084_1_,isRaining,2 +p_76085_1_,type,2 +p_76087_1_,z,0 +p_76090_1_,time,2 +p_76091_1_,initializedIn,2 +p_76123_0_,value,2 +p_76124_0_,value,2 +p_76125_0_,num,2 +p_76125_1_,min,2 +p_76125_2_,max,2 +p_76127_0_,values,2 +p_76128_0_,value,2 +p_76129_0_,value,2 +p_76130_0_,value,2 +p_76131_0_,num,2 +p_76131_1_,min,2 +p_76131_2_,max,2 +p_76133_0_,value,2 +p_76134_0_,value,2 +p_76135_0_,value,2 +p_76138_0_,value,2 +p_76140_0_,value,0 +p_76141_0_,value,2 +p_76142_0_,value,2 +p_76143_0_,value,2 +p_76155_0_,originalKey,2 +p_76157_0_,integer,2 +p_76179_0_,data,2 +p_76184_1_,nbt,2 +p_76186_1_,isDirty,2 +p_76187_1_,nbt,2 +p_76191_1_,player,2 +p_76191_2_,mapStack,2 +p_76271_0_,random,2 +p_76271_1_,collection,2 +p_76272_0_,collection,2 +p_76273_0_,random,2 +p_76273_1_,collection,2 +p_76273_2_,totalWeight,2 +p_76304_1_,noiseArray,2 +p_76304_10_,yScale,2 +p_76304_12_,zScale,2 +p_76304_2_,xOffset,2 +p_76304_3_,yOffset,2 +p_76304_4_,zOffset,2 +p_76304_5_,xSize,2 +p_76304_6_,ySize,2 +p_76304_7_,zSize,2 +p_76304_8_,xScale,2 +p_76305_1_,noiseArray,2 +p_76305_2_,xOffset,2 +p_76305_3_,zOffset,2 +p_76305_4_,xSize,2 +p_76305_5_,zSize,2 +p_76305_6_,xScale,2 +p_76305_8_,zScale,2 +p_76308_1_,noiseArray,2 +p_76308_10_,zSize,2 +p_76308_11_,xScale,2 +p_76308_13_,yScale,2 +p_76308_15_,zScale,2 +p_76308_17_,noiseScale,2 +p_76308_2_,xOffset,2 +p_76308_4_,yOffset,2 +p_76308_6_,zOffset,2 +p_76308_8_,xSize,2 +p_76308_9_,ySize,2 +p_76318_1_,name,2 +p_76320_1_,name,2 +p_76321_1_,profilerName,2 +p_76337_0_,ticks,0 +p_76338_0_,text,0 +p_76353_0_,arrow,2 +p_76353_1_,indirectEntityIn,2 +p_76354_0_,source,2 +p_76354_1_,indirectEntityIn,2 +p_76356_0_,source,2 +p_76356_1_,indirectEntityIn,2 +p_76358_0_,mob,2 +p_76362_0_,fireball,2 +p_76362_1_,indirectEntityIn,2 +p_76365_0_,player,2 +p_76389_0_,effect,0 +p_76390_1_,nameIn,2 +p_76394_1_,entityLivingBaseIn,2 +p_76404_1_,effectivenessIn,2 +p_76452_1_,other,2 +p_76455_1_,entityIn,2 +p_76457_1_,entityIn,2 +p_76549_0_,worldDir,2 +p_76549_1_,chunkX,2 +p_76549_2_,chunkZ,2 +p_76550_0_,worldDir,2 +p_76550_1_,chunkX,2 +p_76550_2_,chunkZ,2 +p_76552_0_,worldDir,2 +p_76552_1_,chunkX,2 +p_76552_2_,chunkZ,2 +p_76558_1_,worldIn,2 +p_76559_1_,worldTime,2 +p_76560_1_,celestialAngle,0 +p_76560_2_,partialTicks,0 +p_76563_1_,worldTime,2 +p_76563_3_,partialTicks,2 +p_76566_1_,x,2 +p_76566_2_,z,2 +p_76568_1_,x,0 +p_76568_2_,z,0 +p_76570_0_,dimension,2 +p_76581_1_,x,2 +p_76581_2_,y,2 +p_76581_3_,z,2 +p_76581_4_,value,2 +p_76582_1_,x,2 +p_76582_2_,y,2 +p_76582_3_,z,2 +p_76595_1_,x,2 +p_76595_2_,z,2 +p_76599_1_,x,2 +p_76599_2_,z,2 +p_76599_3_,maxValue,2 +p_76600_1_,x,2 +p_76600_2_,z,2 +p_76602_1_,newStorageArrays,2 +p_76606_1_,startY,2 +p_76606_2_,endY,2 +p_76608_1_,entityIn,2 +p_76609_1_,x,2 +p_76609_2_,z,2 +p_76609_3_,startY,2 +p_76609_4_,endY,2 +p_76611_1_,x,2 +p_76611_2_,z,2 +p_76612_1_,entityIn,2 +p_76615_1_,x,2 +p_76615_2_,y,2 +p_76615_3_,z,2 +p_76616_1_,biomeArray,2 +p_76617_1_,seed,2 +p_76622_1_,entityIn,2 +p_76624_3_,x,2 +p_76624_4_,z,2 +p_76628_1_,x,2 +p_76628_2_,y,2 +p_76628_3_,z,2 +p_76657_1_,x,2 +p_76657_2_,y,2 +p_76657_3_,z,2 +p_76657_4_,value,2 +p_76659_1_,newBlocklightArray,2 +p_76665_1_,x,2 +p_76665_2_,y,2 +p_76665_3_,z,2 +p_76666_1_,newSkylightArray,2 +p_76670_1_,x,2 +p_76670_2_,y,2 +p_76670_3_,z,2 +p_76674_1_,x,2 +p_76674_2_,y,2 +p_76674_3_,z,2 +p_76677_1_,x,2 +p_76677_2_,y,2 +p_76677_3_,z,2 +p_76677_4_,value,2 +p_76690_1_,compound,2 +p_76691_0_,nbt,2 +p_76704_1_,x,2 +p_76704_2_,z,2 +p_76705_1_,x,2 +p_76705_2_,z,2 +p_76706_1_,x,2 +p_76706_2_,z,2 +p_76706_3_,data,2 +p_76706_4_,length,2 +p_76707_1_,x,2 +p_76707_2_,z,2 +p_76709_1_,x,2 +p_76709_2_,z,2 +p_76710_1_,x,2 +p_76710_2_,z,2 +p_76711_1_,x,2 +p_76711_2_,z,2 +p_76711_3_,offset,2 +p_76712_1_,sectorNumber,2 +p_76712_2_,data,2 +p_76712_3_,length,2 +p_76713_1_,x,2 +p_76713_2_,z,2 +p_76713_3_,timestamp,2 +p_76730_1_,rand,2 +p_76732_1_,temperatureIn,2 +p_76732_2_,rainfallIn,2 +p_76733_1_,meta,2 +p_76735_1_,name,2 +p_76739_1_,colorIn,2 +p_76747_1_,creatureType,2 +p_76793_1_,blockCount,2 +p_76793_2_,generator,2 +p_76793_3_,centerHeight,2 +p_76793_4_,spread,2 +p_76795_1_,blockCount,2 +p_76795_2_,generator,2 +p_76795_3_,minHeight,2 +p_76795_4_,maxHeight,2 +p_76839_1_,x,2 +p_76839_2_,z,2 +p_76840_1_,x,2 +p_76840_2_,z,2 +p_76885_1_,x,2 +p_76885_2_,z,2 +p_76931_1_,listToReuse,2 +p_76931_2_,x,2 +p_76931_3_,z,2 +p_76931_4_,width,2 +p_76931_5_,length,2 +p_76931_6_,cacheFlag,2 +p_76933_1_,oldBiomeList,2 +p_76933_2_,x,2 +p_76933_3_,z,2 +p_76933_4_,width,2 +p_76933_5_,depth,2 +p_76936_1_,listToReuse,2 +p_76936_2_,x,2 +p_76936_3_,z,2 +p_76936_4_,width,2 +p_76936_5_,length,2 +p_76937_1_,biomes,2 +p_76937_2_,x,2 +p_76937_3_,z,2 +p_76937_4_,width,2 +p_76937_5_,height,2 +p_76975_1_,entityIn,0 +p_76975_2_,x,0 +p_76975_4_,y,0 +p_76975_6_,z,0 +p_76975_8_,shadowAlpha,0 +p_76975_9_,partialTicks,0 +p_76977_1_,entity,0 +p_76977_2_,x,0 +p_76977_4_,y,0 +p_76977_6_,z,0 +p_76977_8_,partialTicks,0 +p_76978_0_,boundingBox,0 +p_76978_1_,x,0 +p_76978_3_,y,0 +p_76978_5_,z,0 +p_76979_1_,entityIn,0 +p_76979_2_,x,0 +p_76979_4_,y,0 +p_76979_6_,z,0 +p_76979_8_,yaw,0 +p_76979_9_,partialTicks,0 +p_76986_1_,entity,0 +p_76986_2_,x,0 +p_76986_4_,y,0 +p_76986_6_,z,0 +p_76986_8_,entityYaw,0 +p_76986_9_,partialTicks,0 +p_77008_1_,painting,0 +p_77010_1_,painting,0 +p_77010_2_,width,0 +p_77010_3_,height,0 +p_77010_4_,textureU,0 +p_77010_5_,textureV,0 +p_77030_1_,entitylivingbaseIn,0 +p_77030_2_,lightBrightness,0 +p_77030_3_,partialTickTime,0 +p_77034_1_,par1,0 +p_77034_2_,par2,0 +p_77034_3_,par3,0 +p_77036_1_,entitylivingbaseIn,0 +p_77036_7_,scaleFactor,0 +p_77037_1_,entityLivingBaseIn,0 +p_77039_1_,entityLivingBaseIn,0 +p_77039_2_,x,0 +p_77039_4_,y,0 +p_77039_6_,z,0 +p_77040_1_,livingBase,0 +p_77040_2_,partialTickTime,0 +p_77041_1_,entitylivingbaseIn,0 +p_77041_2_,partialTickTime,0 +p_77043_1_,bat,0 +p_77043_4_,partialTicks,0 +p_77044_1_,livingBase,0 +p_77044_2_,partialTicks,0 +p_77124_1_,enable,2 +p_77130_0_,type,2 +p_77132_1_,version,2 +p_77142_0_,gamemodeName,0 +p_77146_0_,idIn,2 +p_77147_1_,capabilities,2 +p_77161_0_,id,2 +p_77176_1_,scheduledTimeIn,2 +p_77191_0_,worldIn,2 +p_77191_1_,biomeIn,2 +p_77191_6_,randomIn,2 +p_77192_1_,worldServerIn,2 +p_77192_2_,spawnHostileMobs,2 +p_77192_3_,spawnPeacefulMobs,2 +p_77201_1_,compound,2 +p_77272_0_,x,2 +p_77272_1_,z,2 +p_77279_1_,spawnParticles,2 +p_77316_1_,level,2 +p_77317_1_,enchantmentLevel,2 +p_77318_1_,level,2 +p_77318_2_,source,2 +p_77321_1_,enchantmentLevel,2 +p_77322_1_,enchName,2 +p_77326_1_,ench,2 +p_77390_1_,tagCompound,2 +p_77442_1_,achievementIn,2 +p_77443_1_,achievementIn,2 +p_77444_1_,stat,2 +p_77472_0_,texture,0 +p_77473_0_,texture,0 +p_77475_0_,target,0 +p_77493_1_,enchantmentIn,2 +p_77493_2_,enchantmentLevel,2 +p_77501_0_,player,2 +p_77502_0_,player,2 +p_77506_0_,enchID,2 +p_77506_1_,stack,2 +p_77508_0_,stacks,2 +p_77508_1_,source,2 +p_77509_0_,player,2 +p_77510_0_,player,2 +p_77511_0_,enchID,2 +p_77511_1_,stacks,2 +p_77513_0_,randomIn,2 +p_77513_1_,itemStackIn,2 +p_77514_0_,rand,2 +p_77514_1_,enchantNum,2 +p_77514_2_,power,2 +p_77514_3_,stack,2 +p_77516_0_,modifier,2 +p_77516_1_,stacks,2 +p_77517_0_,player,2 +p_77518_0_,modifier,2 +p_77518_1_,stack,2 +p_77519_0_,player,2 +p_77569_1_,inv,2 +p_77569_2_,worldIn,2 +p_77572_1_,inv,2 +p_77596_1_,stack,2 +p_77596_2_,recipeComponents,2 +p_77609_1_,craftManager,2 +p_77613_1_,stack,2 +p_77615_1_,stack,2 +p_77615_2_,worldIn,2 +p_77615_3_,playerIn,2 +p_77615_4_,timeLeft,2 +p_77616_1_,stack,2 +p_77620_1_,meta,0 +p_77621_1_,worldIn,2 +p_77621_2_,playerIn,2 +p_77621_3_,useLiquids,2 +p_77622_1_,stack,2 +p_77622_2_,worldIn,2 +p_77622_3_,playerIn,2 +p_77624_1_,stack,0 +p_77624_2_,playerIn,0 +p_77624_3_,tooltip,0 +p_77624_4_,advanced,0 +p_77625_1_,maxStackSize,2 +p_77626_1_,stack,2 +p_77627_1_,hasSubtypes,2 +p_77631_1_,potionEffect,2 +p_77636_1_,stack,0 +p_77637_1_,tab,2 +p_77642_1_,containerItem,2 +p_77644_1_,stack,2 +p_77644_2_,target,2 +p_77644_3_,attacker,2 +p_77647_1_,damage,2 +p_77653_1_,stack,2 +p_77654_1_,stack,2 +p_77654_2_,worldIn,2 +p_77654_3_,playerIn,2 +p_77655_1_,unlocalizedName,2 +p_77656_1_,maxDamageIn,2 +p_77657_1_,stack,2 +p_77659_1_,itemStackIn,2 +p_77659_2_,worldIn,2 +p_77659_3_,playerIn,2 +p_77661_1_,stack,2 +p_77663_1_,stack,2 +p_77663_2_,worldIn,2 +p_77663_3_,entityIn,2 +p_77663_4_,itemSlot,2 +p_77663_5_,isSelected,2 +p_77667_1_,stack,2 +p_77828_0_,nbt,2 +p_77831_0_,meta,2 +p_77832_1_,stack,2 +p_77833_1_,meta,0 +p_77834_1_,meta,2 +p_77840_0_,worldIn,2 +p_77840_1_,entityID,2 +p_77840_2_,x,2 +p_77840_4_,y,2 +p_77840_6_,z,2 +p_77844_1_,id,2 +p_77844_2_,duration,2 +p_77844_3_,amplifier,2 +p_77844_4_,probability,2 +p_77849_1_,stack,2 +p_77849_2_,worldIn,2 +p_77849_3_,player,2 +p_77872_1_,worldIn,2 +p_77872_2_,viewer,2 +p_77872_3_,data,2 +p_77873_1_,stack,2 +p_77873_2_,worldIn,2 +p_77905_0_,dataValue,2 +p_77909_0_,dataValue,2 +p_77915_0_,dataValue,0 +p_77915_1_,bypassCache,0 +p_77944_0_,stack,2 +p_77945_1_,worldIn,2 +p_77945_2_,entityIn,2 +p_77945_3_,inventorySlot,2 +p_77945_4_,isCurrentItem,2 +p_77949_0_,nbt,2 +p_77950_1_,worldIn,2 +p_77950_2_,playerIn,2 +p_77955_1_,nbt,2 +p_77957_1_,worldIn,2 +p_77957_2_,playerIn,2 +p_77959_1_,other,2 +p_77961_1_,entityIn,2 +p_77961_2_,playerIn,2 +p_77963_1_,nbt,2 +p_77964_1_,meta,2 +p_77966_1_,ench,2 +p_77966_2_,level,2 +p_77969_1_,other,2 +p_77970_0_,stackA,2 +p_77970_1_,stackB,2 +p_77972_1_,amount,2 +p_77972_2_,entityIn,2 +p_77974_1_,worldIn,2 +p_77974_2_,playerIn,2 +p_77974_3_,timeLeft,2 +p_77979_1_,amount,2 +p_77980_1_,worldIn,2 +p_77980_2_,playerIn,2 +p_77980_3_,amount,2 +p_77982_1_,nbt,2 +p_77983_1_,key,2 +p_77983_2_,value,2 +p_77989_0_,stackA,2 +p_77989_1_,stackB,2 +p_78025_1_,texture,2 +p_78044_1_,armorType,2 +p_78046_1_,armorType,2 +p_78084_1_,partName,0 +p_78085_1_,partName,0 +p_78085_2_,x,0 +p_78085_3_,y,0 +p_78086_1_,entitylivingbaseIn,0 +p_78086_4_,partialTickTime,0 +p_78087_1_,limbSwing,0 +p_78087_2_,limbSwingAmount,0 +p_78087_3_,ageInTicks,0 +p_78087_4_,netHeadYaw,0 +p_78087_5_,headPitch,0 +p_78087_6_,scaleFactor,0 +p_78087_7_,entityIn,0 +p_78088_1_,entityIn,0 +p_78088_7_,scale,0 +p_78244_1_,name,0 +p_78255_1_,text,0 +p_78255_2_,shadow,0 +p_78256_1_,text,0 +p_78257_1_,page,0 +p_78259_1_,str,0 +p_78259_2_,wrapWidth,0 +p_78262_1_,text,0 +p_78262_2_,width,0 +p_78262_3_,reverse,0 +p_78263_1_,character,0 +p_78264_1_,unicodeFlagIn,0 +p_78266_1_,ch,0 +p_78266_2_,italic,0 +p_78267_1_,str,0 +p_78267_2_,maxLength,0 +p_78268_1_,str,0 +p_78268_2_,x,0 +p_78268_3_,y,0 +p_78268_4_,wrapWidth,0 +p_78268_5_,addShadow,0 +p_78269_1_,text,0 +p_78269_2_,width,0 +p_78270_0_,formatChar,0 +p_78271_1_,str,0 +p_78271_2_,wrapWidth,0 +p_78272_0_,colorChar,0 +p_78273_1_,text,0 +p_78274_1_,text,0 +p_78274_2_,x,0 +p_78274_3_,y,0 +p_78274_4_,width,0 +p_78274_5_,color,0 +p_78274_6_,dropShadow,0 +p_78275_1_,bidiFlagIn,0 +p_78276_1_,text,0 +p_78276_2_,x,0 +p_78276_3_,y,0 +p_78276_4_,color,0 +p_78277_1_,ch,0 +p_78277_2_,italic,0 +p_78279_1_,str,0 +p_78279_2_,x,0 +p_78279_3_,y,0 +p_78279_4_,wrapWidth,0 +p_78279_5_,textColor,0 +p_78280_1_,str,0 +p_78280_2_,wrapWidth,0 +p_78282_0_,text,0 +p_78432_1_,image,0 +p_78440_1_,partialTicks,0 +p_78442_1_,partialTicks,0 +p_78447_1_,partialTicks,0 +p_78448_1_,partialTicks,0 +p_78466_1_,partialTicks,0 +p_78467_1_,partialTicks,0 +p_78468_1_,startCoords,0 +p_78468_2_,partialTicks,0 +p_78469_1_,red,0 +p_78469_2_,green,0 +p_78469_3_,blue,0 +p_78469_4_,alpha,0 +p_78471_1_,partialTicks,0 +p_78471_2_,finishTimeNano,0 +p_78472_1_,partialTicks,0 +p_78473_1_,partialTicks,0 +p_78474_1_,partialTicks,0 +p_78475_1_,partialTicks,0 +p_78476_1_,partialTicks,0 +p_78476_2_,xOffset,0 +p_78479_1_,partialTicks,0 +p_78479_2_,pass,0 +p_78481_1_,partialTicks,0 +p_78481_2_,useFOVSetting,0 +p_78482_1_,partialTicks,0 +p_78713_1_,entityIn,0 +p_78714_1_,x,0 +p_78714_3_,y,0 +p_78714_5_,z,0 +p_78715_1_,entityClass,0 +p_78717_1_,worldIn,0 +p_78745_1_,playerIn,0 +p_78746_1_,type,0 +p_78748_1_,player,0 +p_78752_1_,itemStackIn,0 +p_78753_1_,windowId,0 +p_78753_2_,slotId,0 +p_78753_3_,mouseButtonClicked,0 +p_78753_4_,mode,0 +p_78753_5_,playerIn,0 +p_78756_1_,windowID,0 +p_78756_2_,button,0 +p_78761_1_,itemStackIn,0 +p_78761_2_,slotId,0 +p_78764_1_,playerIn,0 +p_78764_2_,targetEntity,0 +p_78766_1_,playerIn,0 +p_78768_1_,playerIn,0 +p_78768_2_,targetEntity,0 +p_78769_1_,playerIn,0 +p_78769_2_,worldIn,0 +p_78769_3_,itemStackIn,0 +p_78784_1_,x,0 +p_78784_2_,y,0 +p_78786_1_,partName,0 +p_78786_2_,offX,0 +p_78786_3_,offY,0 +p_78786_4_,offZ,0 +p_78786_5_,width,0 +p_78786_6_,height,0 +p_78786_7_,depth,0 +p_78787_1_,textureWidthIn,0 +p_78787_2_,textureHeightIn,0 +p_78788_1_,scale,0 +p_78789_1_,offX,0 +p_78789_2_,offY,0 +p_78789_3_,offZ,0 +p_78789_4_,width,0 +p_78789_5_,height,0 +p_78789_6_,depth,0 +p_78790_4_,width,0 +p_78790_5_,height,0 +p_78790_6_,depth,0 +p_78790_7_,scaleFactor,0 +p_78792_1_,renderer,0 +p_78793_1_,rotationPointXIn,0 +p_78793_2_,rotationPointYIn,0 +p_78793_3_,rotationPointZIn,0 +p_78794_1_,scale,0 +p_78837_0_,nbtCompound,0 +p_78849_1_,server,0 +p_78850_1_,index,0 +p_78851_1_,index,0 +p_78870_1_,worldIn,0 +p_78872_1_,entityIn,0 +p_78872_2_,partialTick,0 +p_78873_1_,effect,0 +p_78874_1_,entityIn,0 +p_78874_2_,partialTicks,0 +p_78884_1_,structurebb,2 +p_78885_1_,minXIn,2 +p_78885_2_,minZIn,2 +p_78885_3_,maxXIn,2 +p_78885_4_,maxZIn,2 +p_78886_1_,x,2 +p_78886_2_,y,2 +p_78886_3_,z,2 +p_78888_1_,sbb,2 +p_82010_1_,tickable,1 +p_82142_1_,invisible,2 +p_82149_1_,entityIn,2 +p_82159_0_,stack,2 +p_82160_1_,wasRecentlyHit,2 +p_82160_2_,lootingModifier,2 +p_82161_0_,armorSlot,2 +p_82161_1_,itemTier,2 +p_82165_1_,potionId,2 +p_82167_1_,entityIn,2 +p_82169_1_,slotIn,2 +p_82170_1_,potionId,2 +p_82195_1_,source,2 +p_82195_2_,amount,2 +p_82196_1_,target,2 +p_82197_1_,aggressive,2 +p_82209_2_,x,2 +p_82209_4_,y,2 +p_82209_6_,z,2 +p_82209_8_,invulnerable,2 +p_82211_1_,targetOffset,2 +p_82211_2_,newId,2 +p_82227_1_,childZombie,2 +p_82228_1_,ticks,2 +p_82229_1_,villager,2 +p_82236_1_,isHanging,2 +p_82242_1_,levels,2 +p_82338_1_,alpha,0 +p_82340_1_,potionId,2 +p_82343_1_,invulnerable,2 +p_82358_1_,args,2 +p_82358_2_,index,2 +p_82359_0_,sender,2 +p_82359_1_,username,2 +p_82370_1_,command,2 +p_82370_2_,args,2 +p_82381_0_,argumentString,2 +p_82386_0_,sender,2 +p_82386_1_,token,2 +p_82402_1_,itemFrame,0 +p_82427_1_,zombie,0 +p_82448_1_,entityIn,2 +p_82448_3_,oldWorldIn,2 +p_82448_4_,toWorldIn,2 +p_82482_1_,source,2 +p_82482_2_,stack,2 +p_82485_1_,source,2 +p_82486_0_,worldIn,2 +p_82486_1_,stack,2 +p_82486_2_,speed,2 +p_82486_3_,facing,2 +p_82486_4_,position,2 +p_82487_1_,source,2 +p_82487_2_,stack,2 +p_82488_1_,facingIn,2 +p_82489_1_,source,2 +p_82489_2_,facingIn,2 +p_82499_1_,worldIn,2 +p_82499_2_,position,2 +p_82566_1_,worldIn,2 +p_82567_1_,type,2 +p_82567_2_,worldIn,2 +p_82567_3_,entityIdentifier,2 +p_82567_4_,worldX,2 +p_82567_6_,worldZ,2 +p_82567_8_,rotation,2 +p_82568_1_,player,2 +p_82572_1_,time,2 +p_82580_1_,key,2 +p_82581_1_,key,2 +p_82581_2_,expectedType,2 +p_82581_3_,ex,2 +p_82594_1_,name,2 +p_82595_1_,key,2 +p_82595_2_,value,2 +p_82600_0_,index,2 +p_82647_1_,biome,2 +p_82651_0_,flatGeneratorSettings,2 +p_82660_1_,minY,2 +p_82685_1_,villageDefender,2 +p_82689_1_,compound,2 +p_82690_1_,compound,2 +p_82691_1_,worldIn,2 +p_82708_1_,id,2 +p_82709_1_,id,2 +p_82709_2_,type,2 +p_82710_1_,id,2 +p_82719_1_,nbt,2 +p_82721_1_,splashPotion,2 +p_82722_0_,nbt,2 +p_82734_1_,x,2 +p_82734_2_,z,2 +p_82738_1_,worldTime,0 +p_82744_1_,createdAtCloudUpdateTickIn,0 +p_82750_1_,name,2 +p_82753_1_,priorityIn,2 +p_82757_1_,value,2 +p_82764_1_,key,2 +p_82764_2_,ruleValue,2 +p_82765_1_,name,2 +p_82766_1_,name,2 +p_82767_1_,name,2 +p_82768_1_,nbt,2 +p_82781_0_,stack,2 +p_82782_0_,enchMap,2 +p_82782_1_,stack,2 +p_82783_1_,increment,2 +p_82787_2_,worldIn,2 +p_82789_1_,toRepair,2 +p_82789_2_,repair,2 +p_82790_1_,stack,0 +p_82790_2_,renderPass,0 +p_82813_1_,stack,2 +p_82813_2_,color,2 +p_82814_1_,stack,2 +p_82815_1_,stack,2 +p_82816_1_,stack,2 +p_82817_0_,potionEffects,2 +p_82824_0_,displayData,0 +p_82824_1_,hasColorModifierIn,0 +p_82840_1_,playerIn,0 +p_82840_2_,advanced,0 +p_82841_1_,cost,2 +p_82842_1_,frame,2 +p_82846_1_,playerIn,2 +p_82846_2_,index,2 +p_82847_1_,listeners,0 +p_82850_1_,newName,2 +p_82869_1_,playerIn,2 +p_82870_1_,playerIn,2 +p_82870_2_,stack,2 +p_82877_1_,speed,0 +p_85029_1_,category,2 +p_85030_1_,name,2 +p_85030_2_,volume,2 +p_85030_3_,pitch,2 +p_85031_1_,entityIn,2 +p_85034_1_,count,2 +p_85055_0_,causeIn,2 +p_85055_1_,descriptionIn,2 +p_85057_1_,categoryName,2 +p_85057_2_,stacktraceLength,2 +p_85058_1_,name,2 +p_85069_1_,s1,2 +p_85069_2_,s2,2 +p_85070_1_,amount,2 +p_85072_1_,builder,2 +p_85073_1_,size,2 +p_85074_0_,x,2 +p_85074_2_,y,2 +p_85074_4_,z,2 +p_85094_1_,entityIn,0 +p_85094_2_,x,0 +p_85094_4_,y,0 +p_85094_6_,z,0 +p_85094_8_,entityYaw,0 +p_85094_9_,partialTicks,0 +p_85102_1_,except,2 +p_85102_10_,pitch,2 +p_85102_2_,soundName,2 +p_85102_3_,x,2 +p_85102_5_,y,2 +p_85102_7_,z,2 +p_85102_9_,volume,2 +p_85118_1_,category,2 +p_85156_1_,task,2 +p_85173_1_,player,2 +p_85173_2_,name,2 +p_85173_3_,volume,2 +p_85173_4_,pitch,2 +p_85181_1_,rand,0 +p_85188_1_,entityIn,2 +p_85189_1_,worldTime,2 +p_90010_1_,inventoryIn,2 +p_90011_1_,ageable,2 +p_90033_1_,saveName,0 +p_90035_0_,entityID,2 +p_90036_0_,player,2 +p_92035_1_,speed,0 +p_92035_3_,size,0 +p_92035_4_,colours,0 +p_92035_5_,fadeColours,0 +p_92035_6_,trail,0 +p_92035_7_,twinkleIn,0 +p_92036_1_,colours,0 +p_92036_2_,fadeColours,0 +p_92036_3_,trail,0 +p_92036_4_,twinkleIn,0 +p_92038_1_,speed,0 +p_92038_3_,shape,0 +p_92038_4_,colours,0 +p_92038_5_,fadeColours,0 +p_92038_6_,trail,0 +p_92038_7_,twinkleIn,0 +p_92043_1_,twinkleIn,0 +p_92044_1_,colour,0 +p_92045_1_,trailIn,0 +p_92046_1_,faceColour,0 +p_92058_1_,stack,2 +p_92087_0_,source,2 +p_92088_1_,x,0 +p_92088_11_,motionZ,0 +p_92088_13_,compund,0 +p_92088_3_,y,0 +p_92088_5_,z,0 +p_92088_7_,motionX,0 +p_92088_9_,motionY,0 +p_92089_1_,stack,2 +p_92103_1_,stack,2 +p_92103_2_,recipeComponents,2 +p_92110_1_,stack,2 +p_92111_1_,data,2 +p_92112_1_,rand,2 +p_92112_2_,minChance,2 +p_92112_3_,maxChance,2 +p_92112_4_,weight,2 +p_92113_1_,enchantment,0 +p_92113_2_,list,0 +p_92114_1_,rand,2 +p_92115_1_,stack,2 +p_92115_2_,enchantment,2 +p_92116_1_,itemList,0 +p_92116_2_,enchantmentType,0 +p_94041_1_,index,2 +p_94041_2_,stack,2 +p_94061_1_,disable,2 +p_94095_1_,source,2 +p_94182_1_,holderIn,0 +p_94207_1_,v,0 +p_94214_1_,u,0 +p_94217_1_,atlasSpirit,0 +p_94241_1_,worldIn,0 +p_94520_1_,key,2 +p_94522_0_,key,2 +p_94526_0_,inv,2 +p_94527_0_,slotIn,2 +p_94527_1_,stack,2 +p_94527_2_,stackSizeMatters,2 +p_94530_1_,stack,2 +p_94530_2_,slotIn,2 +p_94539_0_,explosionIn,2 +p_94547_1_,damageSrc,2 +p_94547_2_,healthIn,2 +p_94547_3_,damageAmount,2 +p_96094_1_,name,2 +p_96095_1_,x,2 +p_96095_2_,y,2 +p_96095_3_,z,2 +p_96095_4_,receivingPower,2 +p_96120_1_,slotIn,2 +p_96120_2_,chance,2 +p_96122_1_,other,2 +p_96300_0_,friendlyName,2 +p_96332_0_,sender,2 +p_96332_1_,query,2 +p_96333_0_,strings,2 +p_96443_1_,scoreboardIn,0 +p_96456_1_,scoreboardIn,2 +p_96456_2_,playerIn,2 +p_96499_1_,scoreboardIn,2 +p_96500_1_,nbt,2 +p_96501_1_,nbt,2 +p_96510_1_,name,2 +p_96513_1_,playerTeam,2 +p_96518_1_,name,2 +p_96520_1_,criteria,2 +p_96522_1_,scoreObjectiveIn,2 +p_96523_1_,playerTeam,2 +p_96527_1_,name,2 +p_96529_1_,name,2 +p_96529_2_,objective,2 +p_96534_1_,objective,2 +p_96535_1_,name,2 +p_96535_2_,criteria,2 +p_96538_1_,playerTeam,2 +p_96631_1_,amount,2 +p_96631_2_,rand,2 +p_96646_1_,amount,2 +p_96647_1_,points,2 +p_96649_1_,amount,2 +p_96660_1_,friendlyFire,2 +p_96662_1_,suffix,2 +p_96664_1_,name,2 +p_96666_1_,prefix,2 +p_96681_1_,nameIn,2 +p_98034_1_,player,0 +p_98035_1_,tagCompund,2 +p_98053_1_,canPickup,2 +p_98055_1_,scale,2 +p_98267_1_,id,2 +p_98268_1_,delay,2 +p_98270_1_,nbt,2 +p_98272_1_,name,2 +p_98280_1_,nbt,2 +p_98300_1_,friendlyInvisibles,2 +p_i1005_1_,mcIn,0 +p_i1007_1_,mcIn,0 +p_i1008_1_,mcIn,0 +p_i1009_1_,mcIn,0 +p_i1010_1_,mcIn,0 +p_i1011_1_,mcIn,0 +p_i1012_1_,mcIn,0 +p_i1013_1_,mcIn,0 +p_i1015_3_,str,0 +p_i1015_4_,isFloat,0 +p_i1015_5_,isBoolean,0 +p_i1017_1_,mcIn,0 +p_i1018_1_,tps,0 +p_i1020_1_,buttonId,0 +p_i1020_2_,x,0 +p_i1020_3_,y,0 +p_i1020_4_,buttonText,0 +p_i1021_1_,stateName,0 +p_i1021_2_,id,0 +p_i1022_1_,mcIn,0 +p_i1023_1_,parentScreenIn,0 +p_i1023_2_,gameSettingsIn,0 +p_i1024_1_,defaultText,0 +p_i1027_1_,screen,0 +p_i1027_2_,settings,0 +p_i1029_1_,createWorldGuiIn,0 +p_i1035_1_,gameSettingsIn,0 +p_i1035_2_,location,0 +p_i1035_3_,textureManagerIn,0 +p_i1035_4_,unicode,0 +p_i1040_1_,parentScreen,0 +p_i1041_1_,buttonID,0 +p_i1041_2_,xPos,0 +p_i1041_3_,yPos,0 +p_i1043_1_,screen,0 +p_i1043_2_,gameSettingsObj,0 +p_i1043_3_,manager,0 +p_i1044_1_,textureManagerInstance,0 +p_i1044_2_,skinCacheDirectory,0 +p_i1044_3_,sessionService,0 +p_i1049_1_,cacheFileIn,0 +p_i1049_2_,imageUrlIn,0 +p_i1049_3_,textureResourceLocation,0 +p_i1049_4_,imageBufferIn,0 +p_i1052_1_,mcIn,0 +p_i1052_2_,width,0 +p_i1052_3_,height,0 +p_i1052_4_,topIn,0 +p_i1052_5_,bottomIn,0 +p_i1052_6_,slotHeightIn,0 +p_i1053_3_,name,0 +p_i1054_1_,parentScreenIn,0 +p_i1062_1_,parentScreenIn,0 +p_i1062_2_,gameSettingsIn,0 +p_i1063_1_,mc,0 +p_i1064_1_,streamIn,0 +p_i1072_1_,inventorySlotsIn,0 +p_i1073_1_,parentScreenIn,0 +p_i1080_1_,player,0 +p_i1080_2_,book,0 +p_i1080_3_,isUnsigned,0 +p_i1084_2_,linkTextIn,0 +p_i1085_1_,selectionListIn,0 +p_i1085_2_,widthIn,0 +p_i1085_3_,heightIn,0 +p_i1085_4_,topIn,0 +p_i1085_5_,bottomIn,0 +p_i1085_6_,slotHeightIn,0 +p_i1089_1_,inventorySlotsIn,0 +p_i1090_1_,realmsButtonIn,0 +p_i1090_2_,buttonId,0 +p_i1090_3_,x,0 +p_i1090_4_,y,0 +p_i1090_5_,text,0 +p_i1090_6_,widthIn,0 +p_i1090_7_,heightIn,0 +p_i1092_1_,playerInv,0 +p_i1092_2_,hopperInv,0 +p_i1093_1_,playerInv,0 +p_i1093_2_,horseInv,0 +p_i1093_3_,horse,0 +p_i1095_1_,buttonID,0 +p_i1095_2_,x,0 +p_i1095_3_,y,0 +p_i1096_3_,sessionTypeIn,0 +p_i1097_1_,teSign,0 +p_i1098_1_,usernameIn,0 +p_i1098_2_,playerIDIn,0 +p_i1098_3_,tokenIn,0 +p_i1098_4_,sessionTypeIn,0 +p_i1099_1_,mcIn,0 +p_i1101_1_,mcIn,0 +p_i1106_1_,levelStorageSourceIn,0 +p_i1108_1_,x,2 +p_i1108_3_,y,2 +p_i1108_5_,z,2 +p_i1121_1_,hostIn,0 +p_i1121_2_,portIn,0 +p_i1129_1_,profile,2 +p_i1130_1_,json,2 +p_i1134_1_,profile,2 +p_i1135_1_,profile,2 +p_i1135_2_,startDate,2 +p_i1135_3_,banner,2 +p_i1135_4_,endDate,2 +p_i1135_5_,banReason,2 +p_i1136_1_,json,2 +p_i1138_1_,bansFile,2 +p_i1144_1_,saveFile,2 +p_i1146_1_,valueIn,2 +p_i1147_1_,valueIn,2 +p_i1147_2_,json,2 +p_i1148_1_,modelSize,0 +p_i1149_1_,modelSize,0 +p_i1149_3_,textureWidthIn,0 +p_i1149_4_,textureHeightIn,0 +p_i1152_1_,saveFile,2 +p_i1153_1_,vertices,0 +p_i1153_2_,texcoordU1,0 +p_i1153_3_,texcoordV1,0 +p_i1153_4_,texcoordU2,0 +p_i1153_5_,texcoordV2,0 +p_i1153_6_,textureWidth,0 +p_i1153_7_,textureHeight,0 +p_i1159_1_,valueIn,2 +p_i1159_2_,startDate,2 +p_i1159_3_,banner,2 +p_i1159_4_,endDate,2 +p_i1159_5_,banReason,2 +p_i1160_1_,vector3DIn,0 +p_i1160_2_,texturePositionXIn,0 +p_i1160_3_,texturePositionYIn,0 +p_i1167_1_,modelSize,0 +p_i1167_3_,textureWidthIn,0 +p_i1167_4_,textureHeightIn,0 +p_i1168_1_,modelSize,0 +p_i1171_1_,server,2 +p_i1171_2_,cacheFile,2 +p_i1172_1_,model,0 +p_i1172_2_,boxNameIn,0 +p_i1173_1_,model,0 +p_i1174_1_,valueIn,2 +p_i1174_2_,json,2 +p_i1175_1_,textureOffsetXIn,0 +p_i1175_2_,textureOffsetYIn,0 +p_i1176_1_,serverWorld,2 +p_i1177_1_,buttonId,0 +p_i1177_2_,x,0 +p_i1177_3_,y,0 +p_i1177_4_,text,0 +p_i1178_1_,buttonId,0 +p_i1178_2_,x,0 +p_i1178_3_,y,0 +p_i1178_4_,widthIn,0 +p_i1178_5_,heightIn,0 +p_i1178_6_,text,0 +p_i1181_2_,mcIn,0 +p_i1182_2_,mcIn,0 +p_i1182_3_,hostName,0 +p_i1182_4_,port,0 +p_i1184_1_,worldIn,0 +p_i1192_1_,address,0 +p_i1192_2_,port,0 +p_i1194_1_,mcIn,0 +p_i1195_1_,worldIn,0 +p_i1195_2_,posXIn,0 +p_i1195_4_,posYIn,0 +p_i1195_6_,posZIn,0 +p_i1196_1_,worldIn,0 +p_i1196_2_,posXIn,0 +p_i1196_4_,posYIn,0 +p_i1196_6_,posZIn,0 +p_i1197_1_,worldIn,0 +p_i1197_10_,ySpeedIn,0 +p_i1197_12_,zSpeedIn,0 +p_i1197_2_,posXIn,0 +p_i1197_4_,posYIn,0 +p_i1197_6_,posZIn,0 +p_i1197_8_,xSpeedIn,0 +p_i1198_1_,worldIn,0 +p_i1198_10_,ySpeedIn,0 +p_i1198_12_,zSpeedIn,0 +p_i1198_2_,xCoordIn,0 +p_i1198_4_,yCoordIn,0 +p_i1198_6_,zCoordIn,0 +p_i1198_8_,xSpeedIn,0 +p_i1201_1_,worldIn,0 +p_i1201_2_,xCoordIn,0 +p_i1201_4_,yCoordIn,0 +p_i1201_6_,zCoordIn,0 +p_i1203_1_,worldIn,0 +p_i1203_2_,xCoordIn,0 +p_i1203_4_,yCoordIn,0 +p_i1203_6_,zCoordIn,0 +p_i1204_1_,worldIn,0 +p_i1204_10_,ySpeedIn,0 +p_i1204_12_,zSpeedIn,0 +p_i1204_2_,xCoordIn,0 +p_i1204_4_,yCoordIn,0 +p_i1204_6_,zCoordIn,0 +p_i1204_8_,xSpeedIn,0 +p_i1205_1_,worldIn,0 +p_i1205_10_,ySpeedIn,0 +p_i1205_12_,zSpeedIn,0 +p_i1205_2_,xCoordIn,0 +p_i1205_4_,yCoordIn,0 +p_i1205_6_,zCoordIn,0 +p_i1205_8_,xSpeedIn,0 +p_i1206_1_,message,1 +p_i1206_2_,cause,1 +p_i1207_1_,message,1 +p_i1209_1_,worldIn,0 +p_i1209_10_,ySpeedIn,0 +p_i1209_12_,zSpeedIn,0 +p_i1209_2_,xCoordIn,0 +p_i1209_4_,yCoordIn,0 +p_i1209_6_,zCoordIn,0 +p_i1209_8_,xSpeedIn,0 +p_i1210_1_,currentFootStepsIn,0 +p_i1210_2_,worldIn,0 +p_i1210_3_,xCoordIn,0 +p_i1210_5_,yCoordIn,0 +p_i1210_7_,zCoordIn,0 +p_i1211_1_,worldIn,0 +p_i1213_1_,renderEngine,0 +p_i1213_2_,worldIn,0 +p_i1213_3_,xCoordIn,0 +p_i1213_5_,yCoordIn,0 +p_i1213_7_,zCoordIn,0 +p_i1214_1_,worldIn,0 +p_i1214_2_,xCoordIn,0 +p_i1214_4_,yCoordIn,0 +p_i1214_6_,zCoordIn,0 +p_i1215_1_,worldIn,0 +p_i1215_2_,xCoordIn,0 +p_i1215_4_,yCoordIn,0 +p_i1215_6_,zCoordIn,0 +p_i1217_1_,worldIn,0 +p_i1217_2_,xCoordIn,0 +p_i1217_4_,yCoordIn,0 +p_i1217_6_,zCoordIn,0 +p_i1219_1_,worldIn,0 +p_i1219_10_,ySpeedIn,0 +p_i1219_12_,zSpeedIn,0 +p_i1219_2_,xCoordIn,0 +p_i1219_4_,yCoordIn,0 +p_i1219_6_,zCoordIn,0 +p_i1219_8_,xSpeedIn,0 +p_i1220_1_,worldIn,0 +p_i1220_2_,rendererIn,0 +p_i1221_1_,worldIn,0 +p_i1221_2_,xCoordIn,0 +p_i1221_4_,yCoordIn,0 +p_i1221_6_,zCoordIn,0 +p_i1227_1_,worldIn,0 +p_i1227_10_,ySpeedIn,0 +p_i1227_12_,zSpeedIn,0 +p_i1227_2_,xCoordIn,0 +p_i1227_4_,yCoordIn,0 +p_i1227_6_,zCoordIn,0 +p_i1227_8_,xSpeedIn,0 +p_i1228_1_,worldIn,0 +p_i1228_10_,ySpeedIn,0 +p_i1228_12_,zSpeedIn,0 +p_i1228_2_,xCoordIn,0 +p_i1228_4_,yCoordIn,0 +p_i1228_6_,zCoordIn,0 +p_i1228_8_,xSpeedIn,0 +p_i1229_1_,worldIn,0 +p_i1229_2_,xCoordIn,0 +p_i1229_4_,yCoordIn,0 +p_i1229_6_,zCoordIn,0 +p_i1230_1_,worldIn,0 +p_i1230_10_,ySpeedIn,0 +p_i1230_12_,zSpeedIn,0 +p_i1230_2_,xCoordIn,0 +p_i1230_4_,yCoordIn,0 +p_i1230_6_,zCoordIn,0 +p_i1230_8_,xSpeedIn,0 +p_i1231_1_,worldIn,0 +p_i1231_10_,ySpeedIn,0 +p_i1231_12_,zSpeedIn,0 +p_i1231_2_,xCoordIn,0 +p_i1231_4_,yCoordIn,0 +p_i1231_6_,zCoordIn,0 +p_i1231_8_,xSpeedIn,0 +p_i1232_1_,worldIn,0 +p_i1232_10_,ySpeedIn,0 +p_i1232_12_,speedIn,0 +p_i1232_2_,xCoordIn,0 +p_i1232_4_,yCoordIn,0 +p_i1232_6_,zCoordIn,0 +p_i1232_8_,xSpeedIn,0 +p_i1233_1_,worldIn,0 +p_i1235_1_,worldIn,0 +p_i1235_2_,xCoordIn,0 +p_i1235_4_,yCoordIn,0 +p_i1235_6_,zCoordIn,0 +p_i1237_1_,gameSettingsIn,0 +p_i1247_1_,mcIn,0 +p_i1249_1_,mcIn,0 +p_i1250_1_,bufferSize,0 +p_i1270_1_,bufferedImage,0 +p_i1271_1_,textureWidth,0 +p_i1271_2_,textureHeight,0 +p_i1274_1_,textureNames,0 +p_i1275_1_,textureResourceLocation,0 +p_i1277_3_,widthIn,0 +p_i1277_4_,heightIn,0 +p_i1282_1_,spriteName,0 +p_i1284_1_,resourceManager,0 +p_i1285_1_,iconName,0 +p_i1286_1_,iconName,0 +p_i1287_1_,resourcePackFileIn,0 +p_i1289_1_,frmMetadataSerializerIn,0 +p_i1290_1_,resourcePackFileIn,0 +p_i1291_1_,resourcePackFileIn,0 +p_i1292_1_,resourceDomainIn,0 +p_i1292_2_,resourcePathIn,0 +p_i1293_1_,resourceName,2 +p_i1294_1_,resourcePack,0 +p_i1295_2_,resourcePackFileIn,0 +p_i1299_1_,rmMetadataSerializerIn,0 +p_i1303_1_,languageCodeIn,0 +p_i1303_2_,regionIn,0 +p_i1303_3_,nameIn,0 +p_i1303_4_,bidirectionalIn,0 +p_i1304_1_,theMetadataSerializerIn,0 +p_i1304_2_,currentLanguageIn,0 +p_i1305_2_,metadataSectionSerializer,0 +p_i1305_3_,clazzToRegister,0 +p_i1314_1_,server,0 +p_i1317_1_,mcIn,0 +p_i1317_2_,folderName,0 +p_i1317_3_,worldName,0 +p_i1317_4_,settings,0 +p_i1319_1_,motd,0 +p_i1319_2_,address,0 +p_i1348_1_,descriptionIn,2 +p_i1348_2_,causeThrowable,2 +p_i1352_1_,key,2 +p_i1352_2_,value,2 +p_i1353_1_,report,2 +p_i1353_2_,name,2 +p_i1356_1_,report,2 +p_i1359_1_,message,2 +p_i1359_2_,objects,2 +p_i1360_1_,message,2 +p_i1360_2_,replacements,2 +p_i1361_1_,message,2 +p_i1361_2_,replacements,2 +p_i1362_1_,message,2 +p_i1362_2_,replacements,2 +p_i1364_1_,message,2 +p_i1364_2_,replacements,2 +p_i1366_1_,defaultObjectIn,2 +p_i1368_1_,xCoord,2 +p_i1368_3_,yCoord,2 +p_i1368_5_,zCoord,2 +p_i1389_1_,data,2 +p_i1490_1_,bansFile,2 +p_i1491_1_,input,1 +p_i1491_2_,sender,1 +p_i1500_1_,server,2 +p_i1501_1_,mcServer,2 +p_i1503_1_,server,1 +p_i1508_1_,workDir,1 +p_i1513_1_,worldIn,2 +p_i1516_1_,theWorldIn,2 +p_i1517_1_,mcServerIn,2 +p_i1517_2_,worldServerIn,2 +p_i1518_2_,chunkX,2 +p_i1518_3_,chunkZ,2 +p_i1524_1_,worldIn,2 +p_i1525_1_,trackedEntityIn,2 +p_i1525_2_,trackingDistanceThresholdIn,2 +p_i1525_3_,updateFrequencyIn,2 +p_i1525_4_,sendVelocityUpdatesIn,2 +p_i1530_1_,server,2 +p_i1530_2_,networkManagerIn,2 +p_i1530_3_,playerIn,2 +p_i1533_1_,size,1 +p_i1535_2_,requestPacket,1 +p_i1537_2_,socket,1 +p_i1554_1_,profilerName,2 +p_i1554_2_,usePercentage,2 +p_i1554_4_,totalUsePercentage,2 +p_i1555_1_,aIn,2 +p_i1555_2_,bIn,2 +p_i1556_1_,itemWeightIn,2 +p_i1558_1_,stack,2 +p_i1558_2_,minimumChance,2 +p_i1558_3_,maximumChance,2 +p_i1558_4_,itemWeightIn,2 +p_i1561_1_,title,2 +p_i1561_2_,customName,2 +p_i1561_3_,slotCount,2 +p_i1563_1_,side,2 +p_i1563_2_,playerStatCollector,2 +p_i1563_3_,startTime,2 +p_i1564_1_,damageSrcIn,2 +p_i1564_3_,healthAmount,2 +p_i1564_4_,damageAmount,2 +p_i1564_6_,fallDistanceIn,2 +p_i1565_1_,fighterIn,2 +p_i1566_1_,damageTypeIn,2 +p_i1567_1_,damageTypeIn,2 +p_i1567_2_,damageSourceEntityIn,2 +p_i1568_1_,damageTypeIn,2 +p_i1568_2_,source,2 +p_i1568_3_,indirectEntityIn,2 +p_i1574_1_,id,2 +p_i1574_2_,effectDuration,2 +p_i1575_1_,id,2 +p_i1575_2_,effectDuration,2 +p_i1575_3_,effectAmplifier,2 +p_i1577_1_,other,2 +p_i1578_1_,worldIn,2 +p_i1582_1_,worldIn,2 +p_i1583_1_,id,2 +p_i1583_2_,baseColor,2 +p_i1583_3_,spotColor,2 +p_i1584_1_,armor,2 +p_i1585_1_,worldIn,2 +p_i1585_2_,x,2 +p_i1585_4_,y,2 +p_i1585_6_,z,2 +p_i1585_8_,expValue,2 +p_i1586_1_,worldIn,2 +p_i1587_1_,worldIn,2 +p_i1588_1_,worldIn,2 +p_i1590_1_,worldIn,2 +p_i1592_1_,worldIn,2 +p_i1594_1_,worldIn,2 +p_i1595_1_,worldIn,2 +p_i1596_3_,creatureClassIn,2 +p_i1596_4_,maxNumberOfCreatureIn,2 +p_i1596_5_,creatureMaterialIn,2 +p_i1596_6_,isPeacefulCreatureIn,2 +p_i1596_7_,isAnimalIn,2 +p_i1598_3_,titleIn,2 +p_i1598_4_,width,2 +p_i1598_5_,height,2 +p_i1598_6_,textureU,2 +p_i1598_7_,textureV,2 +p_i1599_1_,worldIn,2 +p_i1602_1_,worldIn,2 +p_i1603_1_,type,2 +p_i1603_2_,id,2 +p_i1603_3_,object,2 +p_i1604_1_,worldIn,2 +p_i1605_1_,nameIn,2 +p_i1605_2_,amountIn,2 +p_i1605_4_,operationIn,2 +p_i1606_1_,idIn,2 +p_i1606_2_,nameIn,2 +p_i1606_3_,amountIn,2 +p_i1606_5_,operationIn,2 +p_i1608_1_,attributeMapIn,2 +p_i1608_2_,genericAttributeIn,2 +p_i1612_1_,entityIn,2 +p_i1613_1_,entitylivingIn,2 +p_i1614_1_,entitylivingIn,2 +p_i1617_1_,wolf,2 +p_i1617_2_,minDistance,2 +p_i1618_1_,entityIn,2 +p_i1619_1_,animal,2 +p_i1619_2_,speedIn,2 +p_i1620_1_,entitylivingIn,2 +p_i1620_2_,maxspeed,2 +p_i1621_1_,entityIn,2 +p_i1623_1_,theCreatureIn,2 +p_i1623_2_,movementSpeedIn,2 +p_i1624_1_,entitylivingIn,2 +p_i1625_1_,thePetIn,2 +p_i1625_2_,followSpeedIn,2 +p_i1625_4_,minDistIn,2 +p_i1625_5_,maxDistIn,2 +p_i1626_1_,animal,2 +p_i1626_2_,speed,2 +p_i1627_2_,priorityIn,2 +p_i1627_3_,task,2 +p_i1628_1_,profilerIn,2 +p_i1629_1_,entitylivingIn,2 +p_i1629_2_,watchTargetClass,2 +p_i1629_3_,maxDistance,2 +p_i1629_4_,chanceIn,2 +p_i1630_1_,leapingEntity,2 +p_i1630_2_,leapMotionYIn,2 +p_i1631_1_,entitylivingIn,2 +p_i1631_2_,watchTargetClass,2 +p_i1631_3_,maxDistance,2 +p_i1632_1_,entitylivingIn,2 +p_i1632_2_,watchTargetClass,2 +p_i1632_3_,maxDistance,2 +p_i1632_4_,chanceIn,2 +p_i1633_1_,theMerchantIn,2 +p_i1634_1_,villagerIn,2 +p_i1635_1_,creature,2 +p_i1635_2_,targetClass,2 +p_i1635_3_,speedIn,2 +p_i1635_5_,useLongMemory,2 +p_i1636_1_,creature,2 +p_i1636_2_,speedIn,2 +p_i1636_4_,useLongMemory,2 +p_i1637_1_,entityObjIn,2 +p_i1638_1_,theEntityIn,2 +p_i1638_2_,movementSpeedIn,2 +p_i1638_4_,isNocturnalIn,2 +p_i1640_1_,creature,2 +p_i1640_2_,speedIn,2 +p_i1640_4_,targetMaxDistance,2 +p_i1641_1_,theEntityIn,2 +p_i1643_1_,theGolemIn,2 +p_i1644_1_,entitylivingIn,2 +p_i1644_2_,shouldClose,2 +p_i1645_1_,creature,2 +p_i1645_2_,speedIn,2 +p_i1646_1_,villagerObjIn,2 +p_i1646_2_,speedIn,2 +p_i1647_1_,entitylivingIn,2 +p_i1648_1_,creatureIn,2 +p_i1648_2_,speedIn,2 +p_i1649_1_,attacker,2 +p_i1649_2_,movespeed,2 +p_i1650_1_,attacker,2 +p_i1650_2_,movespeed,2 +p_i1650_5_,maxAttackTime,2 +p_i1650_6_,maxAttackDistanceIn,2 +p_i1651_1_,creatureIn,2 +p_i1652_1_,creature,2 +p_i1653_1_,horse,2 +p_i1653_2_,speedIn,2 +p_i1654_1_,entityIn,2 +p_i1655_1_,entitycreeperIn,2 +p_i1656_1_,theVillagerIn,2 +p_i1658_1_,villagerIn,2 +p_i1659_1_,ironGolemIn,2 +p_i1662_1_,theEntityIn,2 +p_i1667_1_,theDefendingTameableIn,2 +p_i1668_1_,theEntityTameableIn,2 +p_i1669_1_,creature,2 +p_i1669_2_,checkSight,2 +p_i1670_1_,creature,2 +p_i1670_2_,checkSight,2 +p_i1670_3_,onlyNearby,2 +p_i1671_1_,entitylivingIn,2 +p_i1671_2_,worldIn,2 +p_i1672_1_,entityObjIn,2 +p_i1675_1_,worldIn,2 +p_i1676_1_,worldIn,2 +p_i1677_1_,name,2 +p_i1678_1_,worldIn,2 +p_i1679_1_,worldIn,2 +p_i1680_1_,worldIn,2 +p_i1681_1_,worldIn,2 +p_i1682_1_,worldIn,2 +p_i1683_1_,worldIn,2 +p_i1684_1_,type,2 +p_i1684_2_,variant,2 +p_i1685_1_,worldIn,2 +p_i1686_1_,worldIn,2 +p_i1687_1_,worldIn,2 +p_i1688_1_,worldIn,2 +p_i1689_1_,worldIn,2 +p_i1691_1_,worldIn,2 +p_i1692_1_,worldIn,2 +p_i1693_1_,worldIn,2 +p_i1694_1_,worldIn,2 +p_i1695_1_,worldIn,2 +p_i1696_1_,worldIn,2 +p_i1697_1_,parent,2 +p_i1697_2_,partName,2 +p_i1697_3_,base,2 +p_i1697_4_,sizeHeight,2 +p_i1698_1_,worldIn,2 +p_i1699_1_,worldIn,0 +p_i1699_2_,x,0 +p_i1699_4_,y,0 +p_i1699_6_,z,0 +p_i1700_1_,worldIn,2 +p_i1701_1_,worldIn,2 +p_i1702_1_,worldIn,2 +p_i1703_1_,worldIn,2 +p_i1703_2_,posX,2 +p_i1703_4_,posY,2 +p_i1703_6_,posZ,2 +p_i1704_1_,worldIn,2 +p_i1705_1_,worldIn,2 +p_i1706_1_,worldIn,2 +p_i1709_1_,worldIn,2 +p_i1709_2_,x,2 +p_i1709_4_,y,2 +p_i1709_6_,z,2 +p_i1710_1_,worldIn,2 +p_i1710_2_,x,2 +p_i1710_4_,y,2 +p_i1710_6_,z,2 +p_i1710_8_,stack,2 +p_i1711_1_,worldIn,2 +p_i1712_1_,worldIn,2 +p_i1713_1_,worldIn,2 +p_i1713_2_,x,2 +p_i1713_4_,y,2 +p_i1713_6_,z,2 +p_i1714_1_,worldIn,2 +p_i1715_1_,worldIn,2 +p_i1715_2_,x,2 +p_i1715_4_,y,2 +p_i1715_6_,z,2 +p_i1716_1_,worldIn,2 +p_i1717_1_,worldIn,2 +p_i1717_2_,x,2 +p_i1717_4_,y,2 +p_i1717_6_,z,2 +p_i1718_1_,worldIn,2 +p_i1719_1_,worldIn,2 +p_i1719_2_,x,2 +p_i1719_4_,y,2 +p_i1719_6_,z,2 +p_i1720_1_,worldIn,2 +p_i1721_1_,worldIn,2 +p_i1721_2_,x,2 +p_i1721_4_,y,2 +p_i1721_6_,z,2 +p_i1722_1_,worldIn,2 +p_i1723_1_,worldIn,2 +p_i1723_2_,x,2 +p_i1723_4_,y,2 +p_i1723_6_,z,2 +p_i1725_1_,worldIn,2 +p_i1726_1_,worldIn,2 +p_i1727_1_,worldIn,2 +p_i1728_1_,worldIn,2 +p_i1728_2_,x,2 +p_i1728_4_,y,2 +p_i1728_6_,z,2 +p_i1729_1_,worldIn,2 +p_i1730_1_,worldIn,2 +p_i1730_2_,x,2 +p_i1730_4_,y,2 +p_i1730_6_,z,2 +p_i1730_8_,igniter,2 +p_i1731_1_,worldIn,2 +p_i1732_1_,worldIn,2 +p_i1733_1_,worldIn,2 +p_i1734_1_,worldIn,2 +p_i1735_1_,worldIn,2 +p_i1736_1_,worldIn,2 +p_i1737_1_,worldIn,2 +p_i1738_1_,worldIn,2 +p_i1739_1_,worldIn,2 +p_i1740_1_,worldIn,2 +p_i1741_1_,worldIn,2 +p_i1742_1_,worldIn,2 +p_i1743_1_,worldIn,2 +p_i1744_1_,worldIn,2 +p_i1745_1_,worldIn,2 +p_i1747_1_,worldIn,2 +p_i1748_1_,worldIn,2 +p_i1748_2_,professionId,2 +p_i1750_1_,playerIn,2 +p_i1753_1_,worldIn,2 +p_i1754_1_,worldIn,2 +p_i1754_2_,x,2 +p_i1754_4_,y,2 +p_i1754_6_,z,2 +p_i1755_1_,worldIn,2 +p_i1755_2_,shooter,2 +p_i1755_3_,target,2 +p_i1755_4_,velocity,2 +p_i1755_5_,innacuracy,2 +p_i1756_1_,worldIn,2 +p_i1756_2_,shooter,2 +p_i1756_3_,velocity,2 +p_i1757_1_,worldIn,2 +p_i1758_1_,worldIn,2 +p_i1758_2_,x,2 +p_i1758_4_,y,2 +p_i1758_6_,z,2 +p_i1759_1_,worldIn,2 +p_i1760_1_,worldIn,2 +p_i1760_10_,accelY,2 +p_i1760_12_,accelZ,2 +p_i1760_2_,x,2 +p_i1760_4_,y,2 +p_i1760_6_,z,2 +p_i1760_8_,accelX,2 +p_i1761_1_,worldIn,2 +p_i1761_2_,shooter,2 +p_i1761_3_,accelX,2 +p_i1761_5_,accelY,2 +p_i1761_7_,accelZ,2 +p_i1762_1_,worldIn,2 +p_i1763_1_,worldIn,2 +p_i1763_2_,x,2 +p_i1763_4_,y,2 +p_i1763_6_,z,2 +p_i1763_8_,givenItem,2 +p_i1764_1_,worldIn,2 +p_i1765_1_,worldIn,0 +p_i1765_2_,x,0 +p_i1765_4_,y,0 +p_i1765_6_,z,0 +p_i1765_8_,anglerIn,0 +p_i1766_1_,worldIn,2 +p_i1766_2_,fishingPlayer,2 +p_i1767_1_,worldIn,2 +p_i1768_1_,worldIn,0 +p_i1768_10_,accelY,0 +p_i1768_12_,accelZ,0 +p_i1768_2_,x,0 +p_i1768_4_,y,0 +p_i1768_6_,z,0 +p_i1768_8_,accelX,0 +p_i1769_1_,worldIn,2 +p_i1769_2_,shooter,2 +p_i1769_3_,accelX,2 +p_i1769_5_,accelY,2 +p_i1769_7_,accelZ,2 +p_i1770_1_,worldIn,2 +p_i1771_1_,worldIn,2 +p_i1771_2_,shooter,2 +p_i1771_3_,accelX,2 +p_i1771_5_,accelY,2 +p_i1771_7_,accelZ,2 +p_i1772_1_,worldIn,2 +p_i1772_10_,accelY,2 +p_i1772_12_,accelZ,2 +p_i1772_2_,x,2 +p_i1772_4_,y,2 +p_i1772_6_,z,2 +p_i1772_8_,accelX,2 +p_i1773_1_,worldIn,2 +p_i1774_1_,worldIn,2 +p_i1774_2_,throwerIn,2 +p_i1775_1_,worldIn,2 +p_i1775_2_,x,2 +p_i1775_4_,y,2 +p_i1775_6_,z,2 +p_i1776_1_,worldIn,2 +p_i1777_1_,worldIn,2 +p_i1777_2_,throwerIn,2 +p_i1778_1_,worldIn,2 +p_i1778_2_,x,2 +p_i1778_4_,y,2 +p_i1778_6_,z,2 +p_i1779_1_,worldIn,2 +p_i1780_1_,worldIn,2 +p_i1780_2_,throwerIn,2 +p_i1781_1_,worldIn,2 +p_i1781_2_,x,2 +p_i1781_4_,y,2 +p_i1781_6_,z,2 +p_i1783_1_,worldIn,2 +p_i1784_1_,worldIn,0 +p_i1784_2_,x,0 +p_i1784_4_,y,0 +p_i1784_6_,z,0 +p_i1785_1_,worldIn,2 +p_i1786_1_,worldIn,2 +p_i1787_1_,worldIn,2 +p_i1787_2_,x,2 +p_i1787_4_,y,2 +p_i1787_6_,z,2 +p_i1788_1_,worldIn,2 +p_i1789_1_,worldIn,2 +p_i1789_2_,throwerIn,2 +p_i1789_3_,meta,2 +p_i1790_1_,worldIn,2 +p_i1790_2_,throwerIn,2 +p_i1790_3_,potionDamageIn,2 +p_i1791_1_,worldIn,0 +p_i1791_2_,x,0 +p_i1791_4_,y,0 +p_i1791_6_,z,0 +p_i1792_1_,worldIn,2 +p_i1792_2_,x,2 +p_i1792_4_,y,2 +p_i1792_6_,z,2 +p_i1792_8_,potionDamageIn,2 +p_i1793_1_,worldIn,2 +p_i1794_1_,worldIn,2 +p_i1794_2_,shooter,2 +p_i1794_3_,accelX,2 +p_i1794_5_,accelY,2 +p_i1794_7_,accelZ,2 +p_i1795_1_,worldIn,0 +p_i1795_10_,accelY,0 +p_i1795_12_,accelZ,0 +p_i1795_2_,x,0 +p_i1795_4_,y,0 +p_i1795_6_,z,0 +p_i1795_8_,accelX,0 +p_i1796_1_,inventoryName,2 +p_i1796_2_,slotCount,2 +p_i1803_2_,inventoryIn,2 +p_i1803_3_,index,2 +p_i1803_4_,xPosition,2 +p_i1803_5_,yPosition,2 +p_i1804_1_,playerIn,2 +p_i1804_2_,inventoryIn,2 +p_i1804_3_,index,2 +p_i1804_4_,xPosition,2 +p_i1804_5_,yPosition,2 +p_i1807_1_,eventHandlerIn,2 +p_i1807_2_,width,2 +p_i1807_3_,height,2 +p_i1819_1_,playerInventory,2 +p_i1819_2_,localWorld,2 +p_i1819_3_,player,2 +p_i1820_1_,thePlayerIn,2 +p_i1820_2_,theMerchantIn,2 +p_i1821_1_,playerInventory,2 +p_i1821_2_,merchant,2 +p_i1821_3_,worldIn,2 +p_i1822_1_,player,2 +p_i1822_2_,merchant,2 +p_i1822_3_,merchantInventory,2 +p_i1822_4_,slotIndex,2 +p_i1822_5_,xPosition,2 +p_i1822_6_,yPosition,2 +p_i1824_1_,inventoryIn,2 +p_i1824_2_,index,2 +p_i1824_3_,xPosition,2 +p_i1824_4_,yPosition,2 +p_i1826_1_,block,2 +p_i1853_1_,index,2 +p_i1853_2_,label,2 +p_i1874_3_,harvestLevel,2 +p_i1874_4_,maxUses,2 +p_i1874_5_,efficiency,2 +p_i1874_6_,damageVsEntity,2 +p_i1874_7_,enchantability,2 +p_i1876_1_,blockIn,2 +p_i1877_1_,blockIn,2 +p_i1877_2_,amount,2 +p_i1878_1_,blockIn,2 +p_i1878_2_,amount,2 +p_i1878_3_,meta,2 +p_i1879_1_,itemIn,2 +p_i1880_1_,itemIn,2 +p_i1880_2_,amount,2 +p_i1881_1_,itemIn,2 +p_i1881_2_,amount,2 +p_i1881_3_,meta,2 +p_i1917_1_,width,2 +p_i1917_2_,height,2 +p_i1917_4_,output,2 +p_i1918_1_,output,2 +p_i1918_2_,inputList,2 +p_i1930_1_,enchantmentObj,2 +p_i1930_2_,enchLevel,2 +p_i1940_1_,tagCompound,2 +p_i1941_1_,buy1,2 +p_i1941_2_,buy2,2 +p_i1941_3_,sell,2 +p_i1942_1_,buy1,2 +p_i1942_2_,sell,2 +p_i1943_1_,buy1,2 +p_i1943_2_,sellItem,2 +p_i1944_1_,compound,2 +p_i1945_2_,tagCompound,2 +p_i1946_2_,tagCompound,2 +p_i1946_3_,type,2 +p_i1947_1_,x,2 +p_i1947_2_,z,2 +p_i1952_1_,worldIn,2 +p_i1955_1_,msg,2 +p_i1956_3_,typeId,2 +p_i1956_4_,nameIn,2 +p_i1957_1_,seedIn,2 +p_i1957_3_,gameType,2 +p_i1957_4_,enableMapFeatures,2 +p_i1957_5_,hardcoreMode,2 +p_i1957_6_,worldTypeIn,2 +p_i1958_1_,info,2 +p_i1959_1_,id,2 +p_i1959_2_,name,2 +p_i1960_1_,id,2 +p_i1960_2_,name,2 +p_i1960_3_,version,2 +p_i1963_1_,worldIn,2 +p_i1969_1_,id,2 +p_i1970_1_,entityclassIn,2 +p_i1970_2_,weight,2 +p_i1970_3_,groupCountMin,2 +p_i1970_4_,groupCountMax,2 +p_i1971_1_,id,2 +p_i1972_2_,x,2 +p_i1972_3_,z,2 +p_i1973_1_,chunkManagerIn,2 +p_i1976_1_,worldIn,2 +p_i1977_1_,id,2 +p_i1981_1_,id,2 +p_i1984_1_,id,2 +p_i1985_1_,id,2 +p_i1986_1_,id,2 +p_i1987_1_,id,2 +p_i1988_1_,id,2 +p_i1990_1_,id,2 +p_i1994_1_,worldIn,2 +p_i1994_2_,x,2 +p_i1994_3_,z,2 +p_i1995_1_,worldIn,2 +p_i1995_2_,x,2 +p_i1995_3_,z,2 +p_i1997_1_,y,2 +p_i1997_2_,storeSkylight,2 +p_i1998_1_,dataIn,2 +p_i1998_2_,depthBitsIn,2 +p_i1999_1_,xIn,2 +p_i1999_2_,zIn,2 +p_i2000_2_,x,2 +p_i2000_3_,z,2 +p_i2001_1_,fileNameIn,2 +p_i2003_1_,chunkSaveLocationIn,2 +p_i2004_1_,worldIn,2 +p_i2004_2_,seed,2 +p_i2004_4_,generateStructures,2 +p_i2004_5_,flatGeneratorSettings,2 +p_i2007_1_,worldIn,2 +p_i2007_2_,seed,2 +p_i2013_1_,notify,2 +p_i2031_1_,structurebb,2 +p_i2032_1_,xMin,2 +p_i2032_2_,yMin,2 +p_i2032_3_,zMin,2 +p_i2032_4_,xMax,2 +p_i2032_5_,yMax,2 +p_i2032_6_,zMax,2 +p_i2033_1_,xMin,2 +p_i2033_2_,zMin,2 +p_i2033_3_,xMax,2 +p_i2033_4_,zMax,2 +p_i2037_1_,type,2 +p_i2037_2_,rand,2 +p_i2037_3_,x,2 +p_i2037_4_,z,2 +p_i2039_1_,worldIn,2 +p_i2039_2_,rand,2 +p_i2039_3_,chunkX,2 +p_i2039_4_,chunkZ,2 +p_i2040_1_,worldIn,2 +p_i2060_1_,worldIn,2 +p_i2067_1_,worldIn,2 +p_i2091_1_,type,2 +p_i2092_1_,worldIn,2 +p_i2092_2_,rand,2 +p_i2092_3_,x,2 +p_i2092_4_,z,2 +p_i2092_5_,size,2 +p_i2104_1_,chunkManagerIn,2 +p_i2104_3_,rand,2 +p_i2107_1_,start,2 +p_i2107_2_,type,2 +p_i2108_1_,start,2 +p_i2108_2_,type,2 +p_i2109_1_,start,2 +p_i2109_3_,rand,2 +p_i2111_1_,seed,2 +p_i2111_2_,octavesIn,2 +p_i2112_1_,color,2 +p_i2113_1_,color,2 +p_i2114_1_,color,2 +p_i2116_1_,color,2 +p_i2117_1_,index,2 +p_i2117_2_,color,2 +p_i2118_1_,color,2 +p_i2135_1_,x,2 +p_i2135_2_,y,2 +p_i2135_3_,z,2 +p_i2136_1_,pathpoints,2 +p_i2138_2_,player,2 +p_i2140_1_,mapname,2 +p_i2141_1_,name,2 +p_i2142_1_,savesDirectory,2 +p_i2142_2_,directoryName,2 +p_i2142_3_,storePlayerdata,2 +p_i2144_1_,savesDirectoryIn,2 +p_i2146_1_,savesDirectory,2 +p_i2146_2_,directoryName,2 +p_i2146_3_,playersDirectoryIn,2 +p_i2147_1_,savesDirectoryIn,2 +p_i2157_1_,nbt,2 +p_i2158_1_,settings,2 +p_i2158_2_,name,2 +p_i2159_1_,worldInformation,2 +p_i2160_1_,exceptionMessage,0 +p_i2161_1_,fileNameIn,0 +p_i2161_10_,cheatsEnabledIn,0 +p_i2161_2_,displayNameIn,0 +p_i2161_3_,lastTimePlayedIn,0 +p_i2161_5_,sizeOnDiskIn,0 +p_i2161_7_,theEnumGameTypeIn,0 +p_i2161_8_,requiresConversionIn,0 +p_i2161_9_,hardcoreIn,0 +p_i2162_1_,saveHandlerIn,2 +p_i2300_1_,x1,2 +p_i2300_11_,z2,2 +p_i2300_3_,y1,2 +p_i2300_5_,z1,2 +p_i2300_7_,x2,2 +p_i2300_9_,y2,2 +p_i2302_1_,objectType,2 +p_i2302_2_,objectID,2 +p_i2304_1_,entityIn,2 +p_i2307_1_,theScoreboardIn,2 +p_i2307_2_,nameIn,2 +p_i2307_3_,objectiveCriteriaIn,2 +p_i2308_1_,theScoreboardIn,2 +p_i2308_2_,name,2 +p_i2309_1_,theScoreboardIn,2 +p_i2309_2_,theScoreObjectiveIn,2 +p_i2309_3_,scorePlayerNameIn,2 +p_i2310_1_,name,2 +p_i2311_1_,name,2 +p_i2312_1_,name,2 +p_i2341_1_,mcIn,0 +p_i2347_1_,creatureIn,2 +p_i2347_2_,speedIn,2 +p_i2348_2_,isBaby,2 +p_i2348_3_,isVillagerZombie,2 +p_i2350_1_,chestType,0 +p_i2362_1_,serverIn,1 +p_i2366_1_,server,1 +p_i2367_1_,serverIn,1 +p_i43000_1_,coords,2 +p_i43001_1_,name,2 +p_i43002_1_,chunkX,2 +p_i43002_2_,chunkZ,2 +p_i45001_1_,description,0 +p_i45001_2_,keyCode,0 +p_i45001_3_,category,0 +p_i45002_1_,mcIn,0 +p_i45004_3_,str,0 +p_i45004_4_,isFloat,0 +p_i45004_5_,isBoolean,0 +p_i45004_6_,valMin,0 +p_i45004_7_,valMax,0 +p_i45004_8_,valStep,0 +p_i45007_2_,mapdataIn,0 +p_i45009_1_,textureManagerIn,0 +p_i45010_1_,mcIn,0 +p_i45010_2_,widthIn,0 +p_i45010_3_,heightIn,0 +p_i45010_4_,topIn,0 +p_i45010_5_,bottomIn,0 +p_i45010_6_,slotHeightIn,0 +p_i45015_1_,mcIn,0 +p_i45020_1_,screen,0 +p_i45020_2_,reasonLocalizationKey,0 +p_i45020_3_,chatComp,0 +p_i45023_1_,netHandler,0 +p_i45026_1_,parentScreenIn,0 +p_i45026_2_,statFileWriterIn,0 +p_i45031_1_,controls,0 +p_i45031_2_,mcIn,0 +p_i45048_2_,serverIn,0 +p_i45049_1_,ownerIn,0 +p_i45049_2_,mcIn,0 +p_i45049_3_,widthIn,0 +p_i45049_4_,heightIn,0 +p_i45049_5_,topIn,0 +p_i45049_6_,bottomIn,0 +p_i45049_7_,slotHeightIn,0 +p_i45050_1_,parentScreenIn,0 +p_i45051_1_,resourcePacksGUIIn,0 +p_i45052_1_,resourcePacksGUIIn,0 +p_i45053_1_,resourcePacksGUIIn,0 +p_i45054_1_,mcIn,0 +p_i45055_1_,mcIn,0 +p_i45056_1_,mcIn,0 +p_i45059_1_,networkManagerIn,0 +p_i45059_2_,mcIn,0 +p_i45062_1_,mcIn,0 +p_i45062_2_,netHandler,0 +p_i45063_1_,netHandler,0 +p_i45063_2_,settings,0 +p_i45063_3_,dimension,0 +p_i45063_4_,difficulty,0 +p_i45063_5_,profilerIn,0 +p_i45073_1_,worldIn,0 +p_i45073_2_,xCoordIn,0 +p_i45073_4_,yCoordIn,0 +p_i45073_6_,zCoordIn,0 +p_i45074_1_,worldIn,0 +p_i45074_2_,playerProfile,0 +p_i45075_1_,worldIn,0 +p_i45075_2_,gameProfileIn,0 +p_i45076_1_,mcIn,0 +p_i45076_2_,resourceManagerIn,0 +p_i45087_1_,resourceManager,0 +p_i45087_2_,programName,0 +p_i45091_1_,type,0 +p_i45091_2_,shaderId,0 +p_i45091_3_,filename,0 +p_i45092_1_,name,0 +p_i45092_2_,type,0 +p_i45092_3_,count,0 +p_i45092_4_,manager,0 +p_i45095_1_,maxTextureWidth,0 +p_i45095_2_,maxTextureHeight,0 +p_i45095_5_,mipmapLevel,0 +p_i45101_1_,dirResourcepacksIn,0 +p_i45101_2_,dirServerResourcepacksIn,0 +p_i45101_3_,rprDefaultResourcePackIn,0 +p_i45101_4_,rprMetadataSerializerIn,0 +p_i45101_5_,settings,0 +p_i45103_1_,soundResource,0 +p_i45104_1_,location,0 +p_i45105_1_,minecartIn,0 +p_i45106_1_,playerRiding,0 +p_i45106_2_,minecart,0 +p_i45107_1_,soundResource,0 +p_i45107_2_,volume,0 +p_i45107_3_,pitch,0 +p_i45107_4_,xPosition,0 +p_i45107_5_,yPosition,0 +p_i45107_6_,zPosition,0 +p_i45108_1_,soundResource,0 +p_i45108_2_,volume,0 +p_i45108_3_,pitch,0 +p_i45108_4_,repeat,0 +p_i45108_5_,repeatDelay,0 +p_i45108_6_,attenuationType,0 +p_i45108_7_,xPosition,0 +p_i45108_8_,yPosition,0 +p_i45108_9_,zPosition,0 +p_i45110_3_,typeIn,0 +p_i45111_3_,location,0 +p_i45111_4_,minDelayIn,0 +p_i45111_5_,maxDelayIn,0 +p_i45112_1_,mcIn,0 +p_i45113_1_,locationIn,0 +p_i45113_2_,pitchIn,0 +p_i45113_4_,volumeIn,0 +p_i45113_6_,streamingSoundIn,0 +p_i45114_1_,locationIn,0 +p_i45120_1_,soundLocation,0 +p_i45120_2_,pitch,0 +p_i45120_4_,volume,0 +p_i45120_6_,category,0 +p_i45122_1_,manager,0 +p_i45122_2_,gameSettingsIn,0 +p_i45123_1_,entry,0 +p_i45123_2_,weight,0 +p_i45126_3_,name,0 +p_i45126_4_,id,0 +p_i45128_1_,data,2 +p_i45129_1_,data,2 +p_i45130_1_,data,2 +p_i45131_1_,data,2 +p_i45133_1_,data,2 +p_i45134_1_,data,2 +p_i45135_1_,data,2 +p_i45138_1_,json,2 +p_i45140_1_,cipherIn,2 +p_i45141_1_,cipher,2 +p_i45142_1_,cipher,2 +p_i45146_1_,inPacket,2 +p_i45146_2_,inFutureListeners,2 +p_i45152_3_,protocolId,2 +p_i45154_1_,wrapped,2 +p_i45155_3_,canonicalNameIn,2 +p_i45155_4_,allowedInChatIn,2 +p_i45156_1_,theAction,2 +p_i45156_2_,theValue,2 +p_i45157_3_,canonicalNameIn,2 +p_i45157_4_,allowedInChatIn,2 +p_i45158_1_,actionIn,2 +p_i45158_2_,valueIn,2 +p_i45159_1_,msg,2 +p_i45160_1_,translationKey,2 +p_i45160_2_,args,2 +p_i45161_1_,component,2 +p_i45161_2_,message,2 +p_i45162_1_,component,2 +p_i45162_2_,index,2 +p_i45163_1_,component,2 +p_i45163_2_,cause,2 +p_i45165_1_,entityIn,2 +p_i45165_2_,typeIn,2 +p_i45166_1_,entityIn,2 +p_i45166_2_,typeIn,2 +p_i45167_1_,xpOrb,2 +p_i45170_1_,painting,2 +p_i45171_1_,player,2 +p_i45172_1_,ent,2 +p_i45172_2_,animationType,2 +p_i45178_1_,matchesIn,2 +p_i45179_1_,component,2 +p_i45181_2_,crammedPositionsIn,2 +p_i45181_3_,chunkIn,2 +p_i45182_1_,windowIdIn,2 +p_i45182_2_,actionNumberIn,2 +p_i45183_1_,windowIdIn,2 +p_i45186_1_,windowIdIn,2 +p_i45187_1_,windowIdIn,2 +p_i45187_2_,varIndexIn,2 +p_i45187_3_,varValueIn,2 +p_i45188_1_,windowIdIn,2 +p_i45188_2_,slotIn,2 +p_i45188_3_,itemIn,2 +p_i45191_1_,entityIn,2 +p_i45192_1_,entityIn,2 +p_i45193_3_,y,2 +p_i45193_5_,z,2 +p_i45193_7_,strengthIn,2 +p_i45193_8_,affectedBlocksIn,2 +p_i45194_1_,stateIn,2 +p_i45195_1_,idIn,2 +p_i45196_1_,chunkIn,2 +p_i45197_1_,chunks,2 +p_i45200_1_,soundNameIn,2 +p_i45200_2_,soundX,2 +p_i45200_4_,soundY,2 +p_i45200_6_,soundZ,2 +p_i45200_8_,volume,2 +p_i45200_9_,pitch,2 +p_i45206_1_,entityIdIn,2 +p_i45208_1_,capabilities,2 +p_i45211_1_,entityIDsIn,2 +p_i45212_1_,entityIdIn,2 +p_i45212_2_,effect,2 +p_i45213_1_,dimensionIDIn,2 +p_i45213_2_,difficultyIn,2 +p_i45213_3_,worldTypeIn,2 +p_i45213_4_,gameTypeIn,2 +p_i45214_1_,entityIn,2 +p_i45215_1_,hotbarIndexIn,2 +p_i45216_1_,positionIn,2 +p_i45216_2_,scoreIn,2 +p_i45217_1_,entityIdIn,2 +p_i45218_1_,leashIn,2 +p_i45218_2_,entityIn,2 +p_i45218_3_,vehicle,2 +p_i45219_1_,entityIn,2 +p_i45220_1_,entityIDIn,2 +p_i45220_2_,motionXIn,2 +p_i45220_4_,motionYIn,2 +p_i45220_6_,motionZIn,2 +p_i45221_1_,entityIDIn,2 +p_i45221_3_,itemStackIn,2 +p_i45222_2_,totalExperienceIn,2 +p_i45222_3_,levelIn,2 +p_i45223_1_,healthIn,2 +p_i45223_2_,foodLevelIn,2 +p_i45223_3_,saturationIn,2 +p_i45225_1_,teamIn,2 +p_i45225_2_,actionIn,2 +p_i45226_1_,teamIn,2 +p_i45226_2_,playersIn,2 +p_i45226_3_,actionIn,2 +p_i45228_1_,nameIn,2 +p_i45230_1_,totalWorldTimeIn,2 +p_i45230_3_,totalTimeIn,2 +p_i45230_5_,doDayLightCycle,2 +p_i45232_1_,collectedItemEntityIdIn,2 +p_i45232_2_,entityIdIn,2 +p_i45233_1_,entityIn,2 +p_i45236_1_,entityIdIn,2 +p_i45237_1_,entityIdIn,2 +p_i45237_2_,effect,2 +p_i45239_1_,msg,2 +p_i45240_1_,messageIn,2 +p_i45242_1_,statusIn,2 +p_i45244_1_,windowId,0 +p_i45244_2_,uid,0 +p_i45244_3_,accepted,0 +p_i45245_1_,windowId,0 +p_i45245_2_,button,0 +p_i45246_1_,windowId,0 +p_i45246_2_,slotId,0 +p_i45246_3_,usedButton,0 +p_i45246_4_,mode,0 +p_i45246_5_,clickedItem,0 +p_i45246_6_,actionNumber,0 +p_i45247_1_,windowId,0 +p_i45251_1_,entity,0 +p_i45251_2_,action,0 +p_i45252_1_,key,0 +p_i45255_1_,playerYaw,0 +p_i45255_2_,playerPitch,0 +p_i45255_3_,isOnGround,0 +p_i45256_1_,isOnGround,0 +p_i45257_1_,capabilities,2 +p_i45261_1_,strafeSpeed,0 +p_i45261_2_,forwardSpeed,0 +p_i45261_3_,jumping,0 +p_i45261_4_,sneaking,0 +p_i45262_1_,slotId,0 +p_i45263_1_,slotIdIn,0 +p_i45263_2_,stackIn,0 +p_i45266_1_,version,0 +p_i45266_2_,ip,0 +p_i45266_3_,port,0 +p_i45266_4_,requestedState,0 +p_i45267_1_,profileIn,2 +p_i45268_1_,serverId,2 +p_i45268_2_,key,2 +p_i45268_3_,verifyToken,2 +p_i45269_1_,reasonIn,2 +p_i45270_1_,profileIn,2 +p_i45271_1_,secretKey,0 +p_i45271_2_,publicKey,0 +p_i45271_3_,verifyToken,0 +p_i45272_1_,time,2 +p_i45273_1_,responseIn,2 +p_i45274_1_,maxOnlinePlayers,2 +p_i45274_2_,onlinePlayers,2 +p_i45275_1_,nameIn,2 +p_i45275_2_,protocolIn,2 +p_i45276_1_,ping,0 +p_i45279_1_,message,0 +p_i45280_1_,message,0 +p_i45280_2_,cause,0 +p_i45281_1_,workDir,1 +p_i45281_2_,proxy,1 +p_i45285_1_,server,2 +p_i45285_2_,worldIn,2 +p_i45285_3_,profile,2 +p_i45285_4_,interactionManager,2 +p_i45286_1_,networkSystemIn,2 +p_i45287_1_,mcServerIn,0 +p_i45287_2_,networkManagerIn,0 +p_i45292_1_,server,2 +p_i45295_1_,serverIn,2 +p_i45295_2_,netManager,2 +p_i45298_1_,serverIn,2 +p_i45298_2_,networkManagerIn,2 +p_i45299_1_,serverIn,2 +p_i45299_2_,netManager,2 +p_i45300_1_,serverIn,1 +p_i45300_2_,threadName,1 +p_i45301_1_,statIdIn,2 +p_i45301_2_,unlocalizedName,2 +p_i45301_3_,column,2 +p_i45301_4_,row,2 +p_i45301_5_,blockIn,2 +p_i45301_6_,parent,2 +p_i45302_1_,statIdIn,2 +p_i45302_2_,unlocalizedName,2 +p_i45302_3_,column,2 +p_i45302_4_,row,2 +p_i45302_5_,stack,2 +p_i45302_6_,parent,2 +p_i45303_1_,statIdIn,2 +p_i45303_2_,statNameIn,2 +p_i45303_3_,typeIn,2 +p_i45304_1_,statIdIn,2 +p_i45304_2_,statNameIn,2 +p_i45306_1_,serverIn,2 +p_i45306_2_,statsFileIn,2 +p_i45307_1_,statIdIn,2 +p_i45307_2_,statNameIn,2 +p_i45307_3_,typeIn,2 +p_i45308_1_,statIdIn,2 +p_i45308_2_,statNameIn,2 +p_i45311_3_,minimumChance,2 +p_i45311_4_,maximumChance,2 +p_i45311_5_,itemWeightIn,2 +p_i45312_3_,difficultyIdIn,2 +p_i45312_4_,difficultyResourceKeyIn,2 +p_i45313_1_,owner,2 +p_i45314_1_,grassEaterEntityIn,2 +p_i45315_1_,ocelotIn,2 +p_i45316_1_,temptedEntityIn,2 +p_i45316_2_,speedIn,2 +p_i45316_4_,temptItemIn,2 +p_i45316_5_,scaredByPlayerMovementIn,2 +p_i45317_1_,returnStackIn,2 +p_i45317_2_,itemWeightIn,2 +p_i45321_1_,worldIn,2 +p_i45322_1_,worldIn,2 +p_i45322_2_,x,2 +p_i45322_4_,y,2 +p_i45322_6_,z,2 +p_i45323_3_,id,2 +p_i45323_4_,resourceKey,2 +p_i45324_1_,worldIn,2 +p_i45324_2_,gameProfileIn,2 +p_i45325_1_,material,2 +p_i45325_2_,renderIndex,2 +p_i45325_3_,armorType,2 +p_i45327_1_,material,2 +p_i45328_1_,block,2 +p_i45329_1_,block,2 +p_i45330_1_,healAmount,2 +p_i45331_1_,containedBlock,2 +p_i45332_1_,block,2 +p_i45332_2_,hasSubtypes,2 +p_i45333_1_,attackDamage,2 +p_i45333_2_,material,2 +p_i45333_3_,effectiveBlocks,2 +p_i45336_3_,meta,2 +p_i45336_4_,unlocalizedName,2 +p_i45336_5_,uncookedHeal,2 +p_i45336_6_,uncookedSaturation,2 +p_i45336_7_,cookedHeal,2 +p_i45336_8_,cookedSaturation,2 +p_i45337_3_,meta,2 +p_i45337_4_,unlocalizedName,2 +p_i45337_5_,uncookedHeal,2 +p_i45337_6_,uncookedSaturation,2 +p_i45338_1_,cooked,2 +p_i45339_1_,amount,2 +p_i45339_2_,saturation,2 +p_i45339_3_,isWolfFood,2 +p_i45340_1_,amount,2 +p_i45340_2_,isWolfFood,2 +p_i45341_1_,amount,2 +p_i45341_2_,saturation,2 +p_i45341_3_,isWolfFood,2 +p_i45342_1_,entityClass,2 +p_i45343_1_,material,2 +p_i45344_1_,block,2 +p_i45346_1_,block,2 +p_i45346_2_,block2,2 +p_i45346_3_,namesByMeta,2 +p_i45347_1_,material,2 +p_i45348_1_,block,2 +p_i45349_3_,color,2 +p_i45349_4_,name,2 +p_i45350_1_,name,2 +p_i45351_1_,healAmount,2 +p_i45351_2_,saturation,2 +p_i45351_3_,crops,2 +p_i45351_4_,soil,2 +p_i45352_1_,crops,2 +p_i45352_2_,soil,2 +p_i45353_1_,material,2 +p_i45356_1_,material,2 +p_i45357_1_,block,2 +p_i45358_1_,block,2 +p_i45366_1_,worldIn,2 +p_i45367_1_,worldIn,2 +p_i45371_1_,rootHeightIn,2 +p_i45371_2_,variationIn,2 +p_i45373_1_,id,2 +p_i45377_1_,id,2 +p_i45378_1_,id,2 +p_i45379_1_,id,2 +p_i45380_1_,id,2 +p_i45381_1_,id,2 +p_i45381_2_,biome,2 +p_i45383_1_,id,2 +p_i45384_1_,id,2 +p_i45385_1_,id,2 +p_i45386_1_,materialIn,2 +p_i45389_1_,isPowered,2 +p_i45393_1_,name,2 +p_i45393_2_,volume,2 +p_i45393_3_,frequency,2 +p_i45394_1_,materialIn,2 +p_i45395_1_,materialIn,2 +p_i45396_1_,wooden,2 +p_i45397_1_,type,2 +p_i45398_1_,materialIn,2 +p_i45399_1_,powered,2 +p_i45400_1_,powered,2 +p_i45401_1_,materialIn,2 +p_i45402_1_,materialIn,2 +p_i45403_1_,materialIn,2 +p_i45404_1_,materialIn,2 +p_i45405_1_,materialIn,2 +p_i45407_1_,isBurning,2 +p_i45408_1_,materialIn,2 +p_i45408_2_,ignoreSimilarity,2 +p_i45409_1_,materialIn,2 +p_i45413_1_,materialIn,2 +p_i45420_1_,isOn,2 +p_i45421_1_,isOn,2 +p_i45423_1_,isOn,2 +p_i45424_1_,powered,2 +p_i45425_1_,materialIn,2 +p_i45427_1_,materialIn,2 +p_i45429_1_,materialIn,2 +p_i45430_1_,crop,2 +p_i45433_1_,materialIn,2 +p_i45433_2_,fancyGraphics,2 +p_i45434_1_,materialIn,2 +p_i45435_1_,modelBlock,2 +p_i45442_1_,potItem,2 +p_i45442_2_,potData,2 +p_i45443_1_,isSticky,2 +p_i45448_1_,notify,2 +p_i45455_1_,blockIn,2 +p_i45482_1_,entityHitIn,2 +p_i45482_2_,hitVecIn,2 +p_i45483_1_,statIn,2 +p_i45487_1_,serverNameIn,0 +p_i45487_2_,serverPortIn,0 +p_i45488_1_,isDemoIn,0 +p_i45488_2_,versionIn,0 +p_i45489_1_,mcDataDirIn,0 +p_i45489_2_,resourcePacksDirIn,0 +p_i45489_3_,assetsDirIn,0 +p_i45489_4_,assetIndexIn,0 +p_i45490_1_,widthIn,0 +p_i45490_2_,heightIn,0 +p_i45490_3_,fullscreenIn,0 +p_i45490_4_,checkGlErrorsIn,0 +p_i45491_1_,userInfoIn,0 +p_i45491_2_,displayInfoIn,0 +p_i45491_3_,folderInfoIn,0 +p_i45491_4_,gameInfoIn,0 +p_i45491_5_,serverInfoIn,0 +p_i45498_1_,profileIn,0 +p_i45499_2_,mcIn,0 +p_i45500_3_,worldIn,0 +p_i45501_1_,playerInv,0 +p_i45501_2_,furnaceInv,0 +p_i45502_1_,inventory,0 +p_i45502_2_,worldIn,0 +p_i45503_1_,playerInv,0 +p_i45503_2_,dispenserInv,0 +p_i45504_1_,playerInv,0 +p_i45504_2_,worldIn,0 +p_i45505_1_,playerInv,0 +p_i45505_2_,worldIn,0 +p_i45505_3_,blockPosition,0 +p_i45506_1_,playerInv,0 +p_i45507_1_,playerInventory,0 +p_i45507_2_,tileBeaconIn,0 +p_i45508_1_,inventoryIn,0 +p_i45508_2_,worldIn,0 +p_i45509_2_,mcIn,0 +p_i45510_2_,mcIn,0 +p_i45511_2_,mcIn,0 +p_i45512_2_,mcIn,0 +p_i45513_2_,mcIn,0 +p_i45514_7_,playerModelParts,0 +p_i45516_1_,parentScreenIn,0 +p_i45517_2_,mcIn,0 +p_i45519_2_,mcIn,0 +p_i45525_2_,widthIn,0 +p_i45525_3_,heightIn,0 +p_i45525_4_,topIn,0 +p_i45525_5_,bottomIn,0 +p_i45525_6_,slotHeightIn,0 +p_i45526_1_,selectionList,0 +p_i45527_1_,mcIn,0 +p_i45529_1_,mcIn,0 +p_i45529_2_,guiIngameIn,0 +p_i45536_1_,mcIn,0 +p_i45536_2_,widthIn,0 +p_i45536_3_,heightIn,0 +p_i45536_4_,topIn,0 +p_i45536_5_,bottomIn,0 +p_i45536_6_,slotHeightIn,0 +p_i45539_1_,responder,0 +p_i45540_1_,fontRendererObj,0 +p_i45541_1_,guiResponder,0 +p_i45541_2_,idIn,0 +p_i45541_3_,x,0 +p_i45541_4_,y,0 +p_i45541_5_,name,0 +p_i45541_6_,min,0 +p_i45541_7_,max,0 +p_i45541_8_,defaultValue,0 +p_i45541_9_,formatter,0 +p_i45542_1_,componentId,0 +p_i45542_2_,fontrendererObj,0 +p_i45542_3_,x,0 +p_i45542_4_,y,0 +p_i45542_5_,par5Width,0 +p_i45542_6_,par6Height,0 +p_i45543_1_,mc,0 +p_i45546_1_,mcIn,0 +p_i45547_1_,gameConfig,0 +p_i45551_1_,hitVecIn,2 +p_i45551_2_,facing,2 +p_i45551_3_,blockPosIn,2 +p_i45552_2_,facing,2 +p_i45553_1_,typeOfHitIn,2 +p_i45553_2_,hitVecIn,2 +p_i45553_3_,sideHitIn,2 +p_i45553_4_,blockPosIn,2 +p_i45554_1_,pos1,2 +p_i45554_2_,pos2,2 +p_i45557_1_,nodeProcessorIn,2 +p_i45561_1_,start,2 +p_i45561_3_,rand,2 +p_i45561_5_,facing,2 +p_i45562_1_,start,2 +p_i45562_3_,rand,2 +p_i45562_5_,facing,2 +p_i45563_1_,start,2 +p_i45563_3_,rand,2 +p_i45563_5_,facing,2 +p_i45564_1_,start,2 +p_i45564_3_,rand,2 +p_i45564_5_,facing,2 +p_i45565_1_,start,2 +p_i45565_3_,rand,2 +p_i45565_5_,facing,2 +p_i45566_1_,start,2 +p_i45566_3_,rand,2 +p_i45566_5_,facing,2 +p_i45567_1_,start,2 +p_i45567_3_,rand,2 +p_i45567_5_,facing,2 +p_i45568_1_,start,2 +p_i45568_3_,rand,2 +p_i45568_5_,facing,2 +p_i45569_1_,start,2 +p_i45569_3_,rand,2 +p_i45569_5_,facing,2 +p_i45570_1_,start,2 +p_i45570_3_,rand,2 +p_i45570_5_,facing,2 +p_i45571_1_,start,2 +p_i45571_3_,rand,2 +p_i45571_5_,facing,2 +p_i45607_1_,worldIn,2 +p_i45623_1_,type,2 +p_i45623_2_,rand,2 +p_i45623_3_,structurebb,2 +p_i45623_4_,facing,2 +p_i45624_1_,type,2 +p_i45624_2_,rand,2 +p_i45624_3_,structurebb,2 +p_i45624_4_,facing,2 +p_i45625_1_,type,2 +p_i45625_2_,rand,2 +p_i45625_3_,structurebb,2 +p_i45625_4_,facing,2 +p_i45626_1_,vec1,2 +p_i45626_2_,vec2,2 +p_i45627_2_,height,2 +p_i45627_3_,layerMaterialIn,2 +p_i45630_1_,state,2 +p_i45630_2_,blockCount,2 +p_i45631_1_,state,2 +p_i45631_2_,blockCount,2 +p_i45636_1_,worldIn,2 +p_i45636_2_,seed,2 +p_i45636_4_,generateStructures,2 +p_i45636_5_,structuresJson,2 +p_i45637_1_,worldIn,2 +p_i45637_3_,seed,2 +p_i45638_1_,worldIn,2 +p_i45639_1_,settingsFactory,2 +p_i45645_1_,worldIn,2 +p_i45645_2_,primer,2 +p_i45645_3_,x,2 +p_i45645_4_,z,2 +p_i45646_1_,storageArray,2 +p_i45647_3_,id,2 +p_i45648_1_,name,2 +p_i45648_2_,min,2 +p_i45648_3_,max,2 +p_i45649_1_,name,2 +p_i45649_2_,valueClass,2 +p_i45649_3_,allowedValues,2 +p_i45650_1_,name,2 +p_i45650_2_,values,2 +p_i45651_1_,name,2 +p_i45652_1_,name,2 +p_i45652_2_,valueClass,2 +p_i45653_1_,blockStateIn,2 +p_i45654_1_,blockType,2 +p_i45657_1_,predicatesIn,2 +p_i45660_1_,blockIn,2 +p_i45660_2_,propertiesIn,2 +p_i45663_1_,blockIn,2 +p_i45663_2_,properties,2 +p_i45664_1_,worldIn,2 +p_i45664_2_,posIn,2 +p_i45664_3_,pistonFacing,2 +p_i45664_4_,extending,2 +p_i45665_1_,pistonStateIn,2 +p_i45665_2_,pistonFacingIn,2 +p_i45665_3_,extendingIn,2 +p_i45665_4_,shouldHeadBeRenderedIn,2 +p_i45666_3_,name,2 +p_i45670_3_,name,2 +p_i45670_4_,id,2 +p_i45671_3_,name,2 +p_i45671_4_,id,2 +p_i45671_5_,craftingItem,2 +p_i45672_3_,name,2 +p_i45672_4_,id,2 +p_i45672_5_,craftingTop,2 +p_i45672_6_,craftingMid,2 +p_i45672_7_,craftingBot,2 +p_i45673_3_,meta,2 +p_i45673_4_,name,2 +p_i45673_5_,unlocalizedName,2 +p_i45674_3_,name,2 +p_i45675_1_,materialIn,2 +p_i45675_2_,canDrop,2 +p_i45676_3_,meta,2 +p_i45676_4_,name,2 +p_i45679_3_,meta,2 +p_i45679_4_,name,2 +p_i45679_5_,unlocalizedName,2 +p_i45682_3_,name,2 +p_i45683_3_,name,2 +p_i45684_1_,modelState,2 +p_i45685_1_,materialIn,2 +p_i45686_1_,enumName,2 +p_i45686_2_,unused,2 +p_i45686_3_,meta,2 +p_i45686_4_,name,2 +p_i45686_5_,unlocalizedName,2 +p_i45687_3_,meta,2 +p_i45687_4_,name,2 +p_i45687_5_,unlocalizedName,2 +p_i45687_6_,mapColor,2 +p_i45688_1_,pos,2 +p_i45688_2_,time,2 +p_i45689_3_,name,2 +p_i45690_3_,meta,2 +p_i45690_4_,name,2 +p_i45690_5_,unlocalizedName,2 +p_i45691_3_,meta,2 +p_i45691_4_,name,2 +p_i45691_5_,unlocalizedName,2 +p_i45692_3_,meta,2 +p_i45692_4_,name,2 +p_i45692_5_,unlocalizedName,2 +p_i45693_1_,materialIn,2 +p_i45693_2_,sensitivityIn,2 +p_i45694_1_,worldIn,2 +p_i45704_3_,meta,2 +p_i45704_4_,name,2 +p_i45705_3_,meta,2 +p_i45705_4_,name,2 +p_i45705_5_,unlocalizedName,2 +p_i45708_3_,name,2 +p_i45709_3_,meta,2 +p_i45709_4_,name,2 +p_i45709_5_,facing,2 +p_i45710_3_,meta,2 +p_i45710_4_,name,2 +p_i45712_1_,materialIn,2 +p_i45712_2_,ignoreSimilarityIn,2 +p_i45713_3_,name,2 +p_i45714_1_,materialIn,2 +p_i45715_3_,name,2 +p_i45718_3_,blockType,2 +p_i45718_4_,meta,2 +p_i45718_5_,name,2 +p_i45719_3_,blockType,2 +p_i45719_4_,meta,2 +p_i45719_5_,name,2 +p_i45719_6_,unlocalizedName,2 +p_i45721_1_,materialIn,2 +p_i45722_3_,meta,2 +p_i45722_4_,name,2 +p_i45723_3_,meta,2 +p_i45723_4_,name,2 +p_i45723_5_,unlocalizedName,2 +p_i45724_1_,name,2 +p_i45729_1_,inverted,2 +p_i45730_1_,worldIn,2 +p_i45730_2_,pos,2 +p_i45731_3_,name,2 +p_i45735_3_,name,2 +p_i45737_1_,worldIn,2 +p_i45738_3_,meta,2 +p_i45738_4_,name,2 +p_i45739_2_,worldIn,2 +p_i45739_3_,pos,2 +p_i45739_4_,state,2 +p_i45740_1_,materialIn,2 +p_i45741_1_,worldIn,2 +p_i45741_2_,pos,2 +p_i45742_1_,parentIn,0 +p_i45742_2_,unlocalizedTitle,0 +p_i45742_3_,reasonIn,0 +p_i45744_1_,seed,2 +p_i45744_3_,worldTypeIn,2 +p_i45744_4_,options,2 +p_i45745_1_,positionIn,2 +p_i45745_2_,blockIn,2 +p_i45746_1_,worldIn,2 +p_i45746_2_,posFromIn,2 +p_i45746_3_,posToIn,2 +p_i45746_4_,subIn,2 +p_i45747_2_,pos,2 +p_i45747_3_,lastUpdate,2 +p_i45748_1_,worldIn,2 +p_i45749_1_,saveHandlerIn,2 +p_i45749_2_,info,2 +p_i45749_3_,providerIn,2 +p_i45749_4_,profilerIn,2 +p_i45749_5_,client,2 +p_i45751_1_,value,2 +p_i45751_2_,type,2 +p_i45752_1_,worldIn,0 +p_i45752_10_,affectedPositions,0 +p_i45752_2_,entityIn,0 +p_i45752_3_,x,0 +p_i45752_5_,y,0 +p_i45752_7_,z,0 +p_i45752_9_,size,0 +p_i45753_1_,worldIn,0 +p_i45753_10_,flaming,0 +p_i45753_11_,smoking,0 +p_i45753_12_,affectedPositions,0 +p_i45753_2_,entityIn,0 +p_i45753_3_,x,0 +p_i45753_5_,y,0 +p_i45753_7_,z,0 +p_i45753_9_,size,0 +p_i45754_1_,worldIn,2 +p_i45754_10_,flaming,2 +p_i45754_11_,smoking,2 +p_i45754_2_,entityIn,2 +p_i45754_3_,x,2 +p_i45754_5_,y,2 +p_i45754_7_,z,2 +p_i45754_9_,size,2 +p_i45755_3_,layerNameIn,0 +p_i45756_1_,pos,2 +p_i45756_2_,blockType,2 +p_i45756_3_,eventId,2 +p_i45757_2_,tagCompound,2 +p_i45757_3_,type,2 +p_i45757_4_,weight,2 +p_i45760_1_,buy1,2 +p_i45760_2_,buy2,2 +p_i45760_3_,sell,2 +p_i45760_4_,toolUsesIn,2 +p_i45760_5_,maxTradeUsesIn,2 +p_i45766_1_,enchID,2 +p_i45769_1_,enchID,2 +p_i45769_2_,enchName,2 +p_i45769_3_,enchWeight,2 +p_i45769_4_,enchType,2 +p_i45770_1_,enchID,2 +p_i45770_2_,enchName,2 +p_i45770_3_,enchWeight,2 +p_i45771_1_,enchID,2 +p_i45771_2_,enchName,2 +p_i45771_3_,enchWeight,2 +p_i45771_4_,enchType,2 +p_i45772_1_,enchID,2 +p_i45772_2_,enchName,2 +p_i45772_3_,enchWeight,2 +p_i45773_1_,enchID,2 +p_i45773_2_,enchName,2 +p_i45773_3_,enchWeight,2 +p_i45774_1_,enchID,2 +p_i45774_2_,enchName,2 +p_i45774_3_,enchWeight,2 +p_i45774_4_,classification,2 +p_i45775_1_,enchID,2 +p_i45775_2_,enchName,2 +p_i45775_3_,enchWeight,2 +p_i45776_1_,enchID,2 +p_i45776_2_,enchName,2 +p_i45776_3_,enchWeight,2 +p_i45777_1_,enchID,2 +p_i45777_2_,enchName,2 +p_i45777_3_,enchWeight,2 +p_i45778_1_,enchID,2 +p_i45778_2_,enchName,2 +p_i45778_3_,enchWeight,2 +p_i45781_1_,block,2 +p_i45782_1_,block,2 +p_i45782_2_,singleSlab,2 +p_i45782_3_,doubleSlab,2 +p_i45784_1_,block,2 +p_i45784_2_,block2,2 +p_i45784_3_,nameFunction,2 +p_i45785_1_,type,2 +p_i45786_3_,meta,2 +p_i45786_4_,dyeDamage,2 +p_i45786_5_,name,2 +p_i45786_6_,unlocalizedName,2 +p_i45786_7_,mapColorIn,2 +p_i45786_8_,chatColor,2 +p_i45787_1_,block,2 +p_i45787_2_,block2,2 +p_i45787_3_,nameFunction,2 +p_i45788_1_,block,2 +p_i45789_3_,name,2 +p_i45789_4_,maxDamage,2 +p_i45789_5_,reductionAmounts,2 +p_i45789_6_,enchantability,2 +p_i45790_1_,player,2 +p_i45790_2_,craftingInventory,2 +p_i45790_4_,slotIndex,2 +p_i45790_5_,xPosition,2 +p_i45790_6_,yPosition,2 +p_i45791_1_,playerInventory,2 +p_i45791_2_,horseInventoryIn,2 +p_i45791_3_,horse,2 +p_i45791_4_,player,2 +p_i45792_1_,playerInventory,2 +p_i45792_2_,hopperInventoryIn,2 +p_i45792_3_,player,2 +p_i45793_1_,player,2 +p_i45793_2_,inventoryIn,2 +p_i45793_3_,slotIndex,2 +p_i45793_4_,xPosition,2 +p_i45793_5_,yPosition,2 +p_i45794_1_,playerInventory,2 +p_i45794_2_,furnaceInventory,2 +p_i45795_1_,inventoryIn,2 +p_i45795_2_,slotIndex,2 +p_i45795_3_,xPosition,2 +p_i45795_4_,yPosition,2 +p_i45797_1_,playerInv,0 +p_i45797_2_,worldIn,0 +p_i45798_1_,playerInv,2 +p_i45798_2_,worldIn,2 +p_i45798_3_,pos,2 +p_i45799_1_,playerInventory,2 +p_i45799_2_,dispenserInventoryIn,2 +p_i45800_1_,playerInventory,2 +p_i45800_2_,worldIn,2 +p_i45800_3_,posIn,2 +p_i45801_1_,playerInventory,2 +p_i45801_2_,chestInventory,2 +p_i45801_3_,player,2 +p_i45802_1_,playerInventory,2 +p_i45802_2_,tileBrewingStandIn,2 +p_i45804_1_,playerInventory,2 +p_i45804_2_,tileBeaconIn,2 +p_i45805_6_,worldIn,2 +p_i45806_1_,playerInventory,0 +p_i45806_2_,worldIn,0 +p_i45806_3_,player,0 +p_i45807_1_,playerInventory,2 +p_i45807_2_,worldIn,2 +p_i45807_3_,blockPosIn,2 +p_i45807_4_,player,2 +p_i45808_1_,invTitle,0 +p_i45808_2_,slotCount,0 +p_i45809_3_,partIdIn,0 +p_i45809_4_,partNameIn,0 +p_i45811_1_,par1Item,2 +p_i45811_2_,priceInfo,2 +p_i45812_1_,stack,2 +p_i45812_2_,priceInfo,2 +p_i45815_1_,itemIn,2 +p_i45815_2_,priceIn,2 +p_i45818_1_,spider,2 +p_i45818_2_,classTarget,2 +p_i45819_1_,spider,2 +p_i45819_2_,targetClass,2 +p_i45820_1_,slimeIn,2 +p_i45821_1_,slimeIn,2 +p_i45822_1_,slimeIn,2 +p_i45823_1_,slimeIn,2 +p_i45824_1_,slimeIn,2 +p_i45826_1_,silverfishIn,2 +p_i45827_1_,silverfishIn,2 +p_i45831_1_,guardian,2 +p_i45832_1_,guardian,2 +p_i45833_1_,guardian,2 +p_i45835_1_,worldIn,2 +p_i45836_1_,ghast,2 +p_i45837_1_,ghast,2 +p_i45838_1_,ghast,2 +p_i45839_1_,ghast,2 +p_i45840_1_,worldIn,2 +p_i45847_3_,networkID,2 +p_i45847_4_,name,2 +p_i45848_1_,worldIn,2 +p_i45848_2_,x,2 +p_i45848_4_,y,2 +p_i45848_6_,z,2 +p_i45848_8_,fallingBlockState,2 +p_i45849_1_,worldIn,2 +p_i45849_2_,pos,2 +p_i45849_3_,facing,2 +p_i45850_1_,worldIn,0 +p_i45850_2_,pos,0 +p_i45850_3_,facing,0 +p_i45850_4_,title,0 +p_i45851_1_,worldIn,2 +p_i45851_2_,hangingPositionIn,2 +p_i45852_1_,worldIn,2 +p_i45853_1_,worldIn,2 +p_i45853_2_,hangingPositionIn,2 +p_i45854_1_,worldIn,2 +p_i45855_1_,worldIn,2 +p_i45855_2_,posX,2 +p_i45855_4_,posY,2 +p_i45855_6_,posZ,2 +p_i45858_1_,creature,2 +p_i45858_2_,classTarget,2 +p_i45858_3_,chance,2 +p_i45860_1_,rabbitIn,2 +p_i45861_1_,rabbit,2 +p_i45861_2_,speedIn,2 +p_i45862_1_,rabbit,2 +p_i45863_2_,rabbit,2 +p_i45864_1_,type,2 +p_i45866_1_,name,2 +p_i45866_2_,id,2 +p_i45866_3_,typeSpeed,2 +p_i45866_5_,typeDuration,2 +p_i45867_1_,rabbit,2 +p_i45869_1_,worldIn,2 +p_i45871_1_,pos,2 +p_i45872_1_,pos,2 +p_i45872_2_,facing,2 +p_i45872_3_,timestamp,2 +p_i45873_1_,entitylivingIn,2 +p_i45873_2_,worldIn,2 +p_i45874_1_,entityLivingIn,2 +p_i45874_2_,worldIn,2 +p_i45875_1_,entitylivingIn,2 +p_i45875_2_,worldIn,2 +p_i45876_1_,entityIn,2 +p_i45876_2_,classTarget,2 +p_i45876_3_,checkSight,2 +p_i45876_4_,targetSelector,2 +p_i45878_1_,creature,2 +p_i45878_2_,classTarget,2 +p_i45878_3_,checkSight,2 +p_i45879_1_,creature,2 +p_i45879_2_,classTarget,2 +p_i45879_3_,checkSight,2 +p_i45879_4_,onlyNearby,2 +p_i45880_1_,creature,2 +p_i45880_2_,classTarget,2 +p_i45880_3_,chance,2 +p_i45880_4_,checkSight,2 +p_i45880_5_,onlyNearby,2 +p_i45880_6_,targetSelector,2 +p_i45882_1_,entityLivingIn,2 +p_i45884_1_,mobIn,2 +p_i45885_1_,creatureIn,2 +p_i45885_2_,entityCallsForHelpIn,2 +p_i45885_3_,targetClassesIn,2 +p_i45886_1_,villagerIn,2 +p_i45887_1_,creatureIn,2 +p_i45887_2_,speedIn,2 +p_i45887_4_,chance,2 +p_i45888_1_,creature,2 +p_i45888_2_,speedIn,2 +p_i45888_4_,length,2 +p_i45889_1_,theVillagerIn,2 +p_i45889_2_,speedIn,2 +p_i45891_2_,unlocalizedNameIn,2 +p_i45891_3_,defaultValue,2 +p_i45891_5_,minimumValueIn,2 +p_i45891_7_,maximumValueIn,2 +p_i45892_2_,unlocalizedNameIn,2 +p_i45892_3_,defaultValueIn,2 +p_i45896_1_,id,2 +p_i45896_2_,effectDuration,2 +p_i45896_3_,effectAmplifier,2 +p_i45896_4_,ambient,2 +p_i45896_5_,showParticles,2 +p_i45897_1_,potionID,2 +p_i45897_2_,location,2 +p_i45897_3_,badEffect,2 +p_i45897_4_,potionColor,2 +p_i45898_1_,potionID,2 +p_i45898_2_,location,2 +p_i45898_3_,badEffect,2 +p_i45898_4_,potionColor,2 +p_i45899_1_,potionID,2 +p_i45899_2_,location,2 +p_i45899_3_,badEffect,2 +p_i45899_4_,potionColor,2 +p_i45900_1_,potionID,2 +p_i45900_2_,location,2 +p_i45900_3_,badEffect,2 +p_i45900_4_,potionColor,2 +p_i45901_1_,potionID,2 +p_i45901_2_,location,2 +p_i45901_3_,badEffect,2 +p_i45901_4_,potionColor,2 +p_i45902_1_,title,0 +p_i45902_2_,slotCount,0 +p_i45903_1_,code,2 +p_i45904_1_,worldDifficulty,2 +p_i45904_2_,worldTime,2 +p_i45904_4_,chunkInhabitedTime,2 +p_i45904_6_,moonPhaseFactor,2 +p_i45905_1_,nameIn,2 +p_i45905_2_,upperChestIn,2 +p_i45905_3_,lowerChestIn,2 +p_i45909_1_,baseClassIn,2 +p_i45910_3_,statNameIn,2 +p_i45921_1_,server,2 +p_i45921_2_,saveHandlerIn,2 +p_i45921_3_,info,2 +p_i45921_4_,dimensionId,2 +p_i45921_5_,profilerIn,2 +p_i45923_1_,server,2 +p_i45923_2_,saveHandlerIn,2 +p_i45923_3_,dimensionId,2 +p_i45923_4_,delegate,2 +p_i45923_5_,profilerIn,2 +p_i45924_1_,server,2 +p_i45924_2_,saveHandlerIn,2 +p_i45924_3_,worldInfoIn,2 +p_i45924_4_,dimensionId,2 +p_i45924_5_,profilerIn,2 +p_i45925_1_,miningPlayerEntIdIn,0 +p_i45925_2_,positionIn,0 +p_i45927_1_,domainIn,2 +p_i45927_2_,outStream,2 +p_i45928_2_,resourceName,2 +p_i45929_1_,compressionTresholdIn,2 +p_i45930_1_,stackIn,2 +p_i45931_1_,positionIn,2 +p_i45931_2_,placedBlockDirectionIn,2 +p_i45931_3_,stackIn,2 +p_i45931_4_,facingXIn,2 +p_i45931_5_,facingYIn,2 +p_i45931_6_,facingZIn,2 +p_i45932_1_,id,2 +p_i45933_1_,pos,0 +p_i45933_2_,lines,0 +p_i45934_2_,id,2 +p_i45935_1_,hashIn,0 +p_i45935_2_,statusIn,0 +p_i45937_1_,entity,0 +p_i45937_2_,action,0 +p_i45938_1_,entity,0 +p_i45938_2_,action,0 +p_i45938_3_,auxData,0 +p_i45940_1_,statusIn,0 +p_i45940_2_,posIn,0 +p_i45940_3_,facingIn,0 +p_i45941_1_,playerX,0 +p_i45941_3_,playerY,0 +p_i45941_5_,playerZ,0 +p_i45941_7_,playerYaw,0 +p_i45941_8_,playerPitch,0 +p_i45941_9_,playerIsOnGround,0 +p_i45942_1_,posX,0 +p_i45942_3_,posY,0 +p_i45942_5_,posZ,0 +p_i45942_7_,isOnGround,0 +p_i45944_1_,entity,0 +p_i45944_2_,hitVec,0 +p_i45945_1_,channelIn,0 +p_i45945_2_,dataIn,0 +p_i45946_1_,langIn,0 +p_i45946_2_,viewIn,0 +p_i45946_3_,chatVisibilityIn,0 +p_i45946_4_,enableColorsIn,0 +p_i45946_5_,modelPartFlagsIn,0 +p_i45948_1_,msg,2 +p_i45948_2_,target,2 +p_i45949_1_,entityIdIn,2 +p_i45949_2_,posXIn,2 +p_i45949_3_,posYIn,2 +p_i45949_4_,posZIn,2 +p_i45949_5_,yawIn,2 +p_i45949_6_,pitchIn,2 +p_i45949_7_,onGroundIn,2 +p_i45950_1_,headerIn,2 +p_i45951_1_,worldIn,2 +p_i45951_2_,blockPosIn,2 +p_i45951_3_,linesIn,2 +p_i45953_1_,type,2 +p_i45953_2_,message,2 +p_i45954_1_,fadeInTime,2 +p_i45954_2_,displayTime,2 +p_i45954_3_,fadeOutTime,2 +p_i45955_1_,type,2 +p_i45955_2_,message,2 +p_i45955_3_,fadeInTime,2 +p_i45955_4_,displayTime,2 +p_i45955_5_,fadeOutTime,2 +p_i45956_1_,spawnBlockPosIn,2 +p_i45958_1_,scoreIn,2 +p_i45959_1_,nameIn,2 +p_i45959_2_,objectiveIn,2 +p_i45960_1_,entityIn,2 +p_i45962_1_,border,2 +p_i45962_2_,actionIn,2 +p_i45963_1_,url,2 +p_i45963_2_,hash,2 +p_i45964_1_,player,2 +p_i45964_2_,bedPosIn,2 +p_i45965_2_,profile,2 +p_i45965_3_,pingIn,2 +p_i45965_4_,gamemodeIn,2 +p_i45965_5_,displayNameIn,2 +p_i45967_1_,actionIn,2 +p_i45967_2_,players,2 +p_i45968_1_,actionIn,2 +p_i45968_2_,players,2 +p_i45970_1_,combatTrackerIn,2 +p_i45970_2_,combatEventType,2 +p_i45971_1_,signPositionIn,2 +p_i45972_1_,entityIdIn,2 +p_i45972_2_,yawIn,2 +p_i45972_3_,pitchIn,2 +p_i45972_4_,onGroundIn,2 +p_i45974_1_,entityIdIn,2 +p_i45974_2_,x,2 +p_i45974_3_,y,2 +p_i45974_4_,z,2 +p_i45974_5_,onGroundIn,2 +p_i45975_1_,mapIdIn,2 +p_i45975_2_,scale,2 +p_i45975_3_,visiblePlayers,2 +p_i45975_4_,colors,2 +p_i45975_5_,minX,2 +p_i45975_6_,minY,2 +p_i45975_7_,maxX,2 +p_i45975_8_,maxY,2 +p_i45976_1_,entityIdIn,2 +p_i45976_2_,gameTypeIn,2 +p_i45976_3_,hardcoreModeIn,2 +p_i45976_4_,dimensionIn,2 +p_i45976_5_,difficultyIn,2 +p_i45976_6_,maxPlayersIn,2 +p_i45976_7_,worldTypeIn,2 +p_i45976_8_,reducedDebugInfoIn,2 +p_i45977_1_,particleTypeIn,2 +p_i45977_10_,particleCountIn,2 +p_i45977_11_,particleArgumentsIn,2 +p_i45977_2_,longDistanceIn,2 +p_i45977_3_,x,2 +p_i45977_4_,y,2 +p_i45977_5_,z,2 +p_i45977_6_,xOffsetIn,2 +p_i45977_7_,yOffset,2 +p_i45977_8_,zOffset,2 +p_i45977_9_,particleSpeedIn,2 +p_i45978_1_,soundTypeIn,2 +p_i45978_2_,soundPosIn,2 +p_i45978_3_,soundDataIn,2 +p_i45978_4_,serverWideIn,2 +p_i45979_1_,entityIdIn,2 +p_i45979_2_,tagCompoundIn,2 +p_i45980_1_,channelName,2 +p_i45980_2_,dataIn,2 +p_i45981_1_,incomingWindowId,2 +p_i45981_2_,incomingWindowTitle,2 +p_i45981_3_,windowTitleIn,2 +p_i45982_1_,windowIdIn,2 +p_i45982_2_,guiId,2 +p_i45982_3_,windowTitleIn,2 +p_i45982_4_,slotCountIn,2 +p_i45983_1_,windowIdIn,2 +p_i45983_2_,guiId,2 +p_i45983_3_,windowTitleIn,2 +p_i45983_4_,slotCountIn,2 +p_i45983_5_,incomingEntityId,2 +p_i45984_3_,state,2 +p_i45985_3_,chunkIn,2 +p_i45986_1_,message,2 +p_i45986_2_,typeIn,2 +p_i45987_1_,difficultyIn,2 +p_i45987_2_,lockedIn,2 +p_i45988_1_,worldIn,2 +p_i45988_2_,blockPositionIn,2 +p_i45989_1_,blockPositionIn,2 +p_i45989_2_,blockIn,2 +p_i45989_3_,instrumentIn,2 +p_i45989_4_,pitchIn,2 +p_i45990_1_,blockPosIn,2 +p_i45990_2_,metadataIn,2 +p_i45990_3_,nbtIn,2 +p_i45991_1_,breakerId,2 +p_i45991_2_,pos,2 +p_i45991_3_,progress,2 +p_i45993_1_,xIn,2 +p_i45993_3_,yIn,2 +p_i45993_5_,zIn,2 +p_i45993_7_,yawIn,2 +p_i45993_8_,pitchIn,2 +p_i45996_1_,selectorIn,2 +p_i45997_1_,nameIn,2 +p_i45997_2_,objectiveIn,2 +p_i45998_1_,direction,2 +p_i45999_1_,direction,2 +p_i46004_1_,packetDirection,2 +p_i46005_1_,treshold,2 +p_i46006_1_,treshold,2 +p_i46007_1_,xIn,2 +p_i46007_2_,yIn,2 +p_i46007_3_,zIn,2 +p_i46008_1_,xIn,2 +p_i46008_3_,yIn,2 +p_i46008_5_,zIn,2 +p_i46009_1_,x,2 +p_i46009_2_,y,2 +p_i46009_3_,z,2 +p_i46010_1_,nbt,2 +p_i46011_3_,particleNameIn,2 +p_i46011_4_,particleIDIn,2 +p_i46011_6_,argumentCountIn,2 +p_i46012_3_,particleNameIn,2 +p_i46012_4_,particleIDIn,2 +p_i46014_3_,offset,2 +p_i46014_4_,description,2 +p_i46015_3_,name,2 +p_i46015_4_,plane,2 +p_i46016_3_,indexIn,2 +p_i46016_4_,oppositeIn,2 +p_i46016_5_,horizontalIndexIn,2 +p_i46016_6_,nameIn,2 +p_i46016_7_,axisDirectionIn,2 +p_i46016_8_,axisIn,2 +p_i46016_9_,directionVecIn,2 +p_i46017_1_,defaultValueKeyIn,2 +p_i46018_1_,clazz,2 +p_i46018_2_,iterables,2 +p_i46020_1_,clazz,2 +p_i46020_2_,iterables,2 +p_i46023_1_,worldIn,2 +p_i46023_2_,posIn,2 +p_i46024_1_,x_,2 +p_i46024_2_,y_,2 +p_i46024_3_,z_,2 +p_i46030_1_,x,2 +p_i46030_2_,y,2 +p_i46030_3_,z,2 +p_i46031_1_,x,2 +p_i46031_3_,y,2 +p_i46031_5_,z,2 +p_i46032_1_,source,2 +p_i46033_1_,source,2 +p_i46034_1_,source,2 +p_i46037_1_,posIn,2 +p_i46037_2_,stateIn,2 +p_i46037_3_,compoundIn,2 +p_i46050_3_,id,2 +p_i46050_4_,name,2 +p_i46053_1_,proxy,0 +p_i46053_2_,workDir,0 +p_i46054_1_,workDir,2 +p_i46054_2_,proxy,2 +p_i46054_3_,profileCacheDir,2 +p_i46057_1_,mcIn,0 +p_i46057_2_,streamProperty,0 +p_i46070_1_,mcIn,0 +p_i46071_1_,guardian,0 +p_i46074_1_,model,0 +p_i46075_1_,bakedModel,0 +p_i46075_2_,texture,0 +p_i46076_1_,ambientOcclusion,0 +p_i46076_2_,gui3d,0 +p_i46076_3_,cameraTransforms,0 +p_i46077_1_,generalQuadsIn,0 +p_i46077_2_,faceQuadsIn,0 +p_i46077_3_,ambientOcclusionIn,0 +p_i46077_4_,gui3dIn,0 +p_i46077_5_,textureIn,0 +p_i46077_6_,cameraTransformsIn,0 +p_i46082_1_,textures,0 +p_i46090_1_,resourcePackNameIn,0 +p_i46090_2_,srResourceLocationIn,0 +p_i46090_3_,resourceInputStreamIn,0 +p_i46090_4_,mcmetaInputStreamIn,0 +p_i46090_5_,srMetadataSerializerIn,0 +p_i46092_2_,mcIn,0 +p_i46093_2_,location,0 +p_i46093_3_,resourcePack,0 +p_i46094_2_,index,0 +p_i46094_3_,displayNameIn,0 +p_i46095_3_,sizeIn,0 +p_i46095_4_,displayNameIn,0 +p_i46095_5_,glConstantIn,0 +p_i46096_1_,indexIn,0 +p_i46096_2_,typeIn,0 +p_i46096_3_,usageIn,0 +p_i46096_4_,count,0 +p_i46097_1_,vertexFormatIn,0 +p_i46098_1_,vertexFormatIn,0 +p_i46100_2_,iconCreatorIn,0 +p_i46101_1_,textureLocationIn,0 +p_i46102_1_,renderManager,0 +p_i46103_1_,renderManager,0 +p_i46103_2_,useSmallArms,0 +p_i46104_1_,wolfRendererIn,0 +p_i46105_1_,witherRendererIn,0 +p_i46106_1_,witchRendererIn,0 +p_i46107_1_,ironGolemRendererIn,0 +p_i46108_1_,rendererIn,0 +p_i46109_1_,spiderRendererIn,0 +p_i46110_1_,snowManRendererIn,0 +p_i46111_1_,slimeRendererIn,0 +p_i46112_1_,sheepRendererIn,0 +p_i46113_1_,pigRendererIn,0 +p_i46114_1_,mooshroomRendererIn,0 +p_i46115_1_,livingEntityRendererIn,0 +p_i46116_1_,rendererIn,0 +p_i46117_1_,endermanRendererIn,0 +p_i46118_1_,dragonRendererIn,0 +p_i46119_1_,playerRendererIn,0 +p_i46121_1_,creeperRendererIn,0 +p_i46122_1_,endermanRendererIn,0 +p_i46123_1_,playerRendererIn,0 +p_i46125_1_,rendererIn,0 +p_i46127_1_,renderManagerIn,0 +p_i46128_1_,renderManagerIn,0 +p_i46128_2_,modelBaseIn,0 +p_i46128_3_,shadowSizeIn,0 +p_i46129_1_,renderManagerIn,0 +p_i46130_1_,renderManagerIn,0 +p_i46131_1_,renderManagerIn,0 +p_i46132_1_,renderManagerIn,0 +p_i46133_1_,renderManagerIn,0 +p_i46134_1_,renderManagerIn,0 +p_i46135_1_,renderManagerIn,0 +p_i46136_1_,renderManagerIn,0 +p_i46136_2_,itemRendererIn,0 +p_i46137_1_,renderManagerIn,0 +p_i46138_1_,renderManagerIn,0 +p_i46138_2_,modelBaseIn,0 +p_i46138_3_,shadowSizeIn,0 +p_i46139_1_,renderManagerIn,0 +p_i46140_1_,renderManagerIn,0 +p_i46141_1_,renderManagerIn,0 +p_i46141_2_,modelBaseIn,0 +p_i46141_3_,shadowSizeIn,0 +p_i46143_1_,renderManagerIn,0 +p_i46144_1_,renderManagerIn,0 +p_i46145_1_,renderManagerIn,0 +p_i46145_2_,modelBaseIn,0 +p_i46145_3_,shadowSizeIn,0 +p_i46146_1_,renderManagerIn,0 +p_i46146_2_,modelBaseIn,0 +p_i46146_3_,shadowSizeIn,0 +p_i46148_1_,renderManagerIn,0 +p_i46149_1_,renderManagerIn,0 +p_i46149_2_,modelBaseIn,0 +p_i46149_3_,shadowSizeIn,0 +p_i46150_1_,renderManagerIn,0 +p_i46151_1_,renderManagerIn,0 +p_i46151_2_,modelBaseIn,0 +p_i46151_3_,shadowSizeIn,0 +p_i46152_1_,renderManagerIn,0 +p_i46152_2_,modelBaseIn,0 +p_i46152_3_,shadowSizeIn,0 +p_i46153_1_,rendermanagerIn,0 +p_i46153_2_,modelbaseIn,0 +p_i46153_3_,shadowsizeIn,0 +p_i46154_1_,renderManagerIn,0 +p_i46155_1_,renderManagerIn,0 +p_i46156_1_,renderManagerIn,0 +p_i46156_2_,modelBaseIn,0 +p_i46156_3_,shadowSizeIn,0 +p_i46157_1_,renderManagerIn,0 +p_i46158_1_,renderManagerIn,0 +p_i46159_1_,renderManagerIn,0 +p_i46165_1_,textureManager,0 +p_i46165_2_,modelManager,0 +p_i46166_1_,renderManagerIn,0 +p_i46166_2_,itemRendererIn,0 +p_i46167_1_,renderManagerIn,0 +p_i46168_1_,renderManagerIn,0 +p_i46168_2_,modelBipedIn,0 +p_i46168_3_,shadowSize,0 +p_i46169_1_,renderManagerIn,0 +p_i46169_2_,modelBipedIn,0 +p_i46169_3_,shadowSize,0 +p_i46170_1_,rendermanagerIn,0 +p_i46170_2_,model,0 +p_i46170_3_,shadowSizeIn,0 +p_i46171_1_,renderManagerIn,0 +p_i46173_1_,renderManagerIn,0 +p_i46173_2_,modelBaseIn,0 +p_i46173_3_,shadowSizeIn,0 +p_i46173_4_,scaleIn,0 +p_i46174_1_,renderManagerIn,0 +p_i46175_1_,renderManagerIn,0 +p_i46176_1_,renderManagerIn,0 +p_i46176_2_,scaleIn,0 +p_i46177_1_,renderManagerIn,0 +p_i46178_1_,renderManagerIn,0 +p_i46179_1_,renderManager,0 +p_i46180_1_,renderEngineIn,0 +p_i46180_2_,itemRendererIn,0 +p_i46181_1_,renderManagerIn,0 +p_i46182_1_,renderManagerIn,0 +p_i46183_1_,renderManagerIn,0 +p_i46184_1_,renderManagerIn,0 +p_i46185_1_,renderManagerIn,0 +p_i46186_1_,renderManagerIn,0 +p_i46187_1_,renderManagerIn,0 +p_i46187_2_,modelBaseIn,0 +p_i46187_3_,shadowSizeIn,0 +p_i46188_1_,renderManagerIn,0 +p_i46188_2_,modelBaseIn,0 +p_i46188_3_,shadowSizeIn,0 +p_i46189_1_,renderManagerIn,0 +p_i46190_1_,renderManagerIn,0 +p_i46191_1_,renderManagerIn,0 +p_i46192_1_,renderManagerIn,0 +p_i46193_1_,renderManagerIn,0 +p_i46197_1_,worldIn,0 +p_i46197_2_,renderGlobalIn,0 +p_i46197_3_,blockPosIn,0 +p_i46197_4_,indexIn,0 +p_i46198_1_,worldIn,0 +p_i46198_2_,renderGlobalIn,0 +p_i46198_3_,pos,0 +p_i46198_4_,indexIn,0 +p_i46202_1_,chunkRenderDispatcherIn,0 +p_i46202_2_,regionRenderCacheBuilderIn,0 +p_i46208_1_,renderChunkIn,0 +p_i46208_2_,typeIn,0 +p_i46210_1_,name,0 +p_i46210_2_,suffix,0 +p_i46210_3_,ignored,0 +p_i46214_1_,rotation,0 +p_i46214_2_,translation,0 +p_i46214_3_,scale,0 +p_i46215_3_,facing,0 +p_i46216_1_,spanFacingIn,0 +p_i46217_1_,quad,0 +p_i46217_2_,textureIn,0 +p_i46218_1_,nameIn,0 +p_i46218_2_,listVariantsIn,0 +p_i46219_1_,modelLocationIn,0 +p_i46219_2_,modelRotationIn,0 +p_i46219_3_,uvLockIn,0 +p_i46219_4_,weightIn,0 +p_i46225_1_,elementsIn,0 +p_i46225_2_,texturesIn,0 +p_i46225_3_,ambientOcclusionIn,0 +p_i46225_4_,gui3dIn,0 +p_i46225_5_,cameraTransformsIn,0 +p_i46226_1_,parentLocationIn,0 +p_i46226_2_,texturesIn,0 +p_i46226_3_,ambientOcclusionIn,0 +p_i46226_4_,gui3dIn,0 +p_i46226_5_,cameraTransformsIn,0 +p_i46227_1_,parentLocationIn,0 +p_i46227_2_,elementsIn,0 +p_i46227_3_,texturesIn,0 +p_i46227_4_,ambientOcclusionIn,0 +p_i46227_5_,gui3dIn,0 +p_i46227_6_,cameraTransformsIn,0 +p_i46228_1_,uvsIn,0 +p_i46228_2_,rotationIn,0 +p_i46229_1_,originIn,0 +p_i46229_2_,axisIn,0 +p_i46229_3_,angleIn,0 +p_i46229_4_,rescaleIn,0 +p_i46230_1_,cullFaceIn,0 +p_i46230_2_,tintIndexIn,0 +p_i46230_3_,textureIn,0 +p_i46230_4_,blockFaceUVIn,0 +p_i46231_1_,positionFromIn,0 +p_i46231_2_,positionToIn,0 +p_i46231_3_,mapFacesIn,0 +p_i46231_4_,partRotationIn,0 +p_i46231_5_,shadeIn,0 +p_i46232_1_,vertexDataIn,0 +p_i46232_2_,tintIndexIn,0 +p_i46232_3_,faceIn,0 +p_i46237_1_,blockModelShapesIn,0 +p_i46237_2_,gameSettingsIn,0 +p_i46245_1_,manager,0 +p_i46246_1_,worldIn,0 +p_i46246_2_,renderDistanceChunks,0 +p_i46246_4_,renderChunkFactory,0 +p_i46248_2_,renderChunkIn,0 +p_i46248_3_,facingIn,0 +p_i46248_4_,counterIn,0 +p_i46250_1_,modelManager,0 +p_i46265_1_,redIn,0 +p_i46265_2_,greenIn,0 +p_i46265_3_,blueIn,0 +p_i46265_4_,alphaIn,0 +p_i46267_1_,capabilityIn,0 +p_i46270_1_,xIndexIn,0 +p_i46270_2_,yIndexIn,0 +p_i46270_3_,zIndexIn,0 +p_i46272_3_,vertexInfosIn,0 +p_i46273_1_,worldIn,0 +p_i46273_2_,posFromIn,0 +p_i46273_3_,posToIn,0 +p_i46273_4_,subIn,0 +p_i46275_1_,bufferSizeIn,0 +p_i46276_1_,id,0 +p_i46276_2_,title,0 +p_i46276_3_,slotCount,0 +p_i46277_1_,guiIdIn,0 +p_i46277_2_,displayNameIn,0 +p_i46278_1_,mcIn,0 +p_i46278_2_,worldIn,0 +p_i46278_3_,netHandler,0 +p_i46278_4_,statFile,0 +p_i46279_1_,worldIn,0 +p_i46279_3_,particleTypesIn,0 +p_i46280_1_,worldIn,0 +p_i46280_10_,ySpeedIn,0 +p_i46280_12_,zSpeedIn,0 +p_i46280_14_,state,0 +p_i46280_2_,xCoordIn,0 +p_i46280_4_,yCoordIn,0 +p_i46280_6_,zCoordIn,0 +p_i46280_8_,xSpeedIn,0 +p_i46281_1_,worldIn,0 +p_i46281_10_,ySpeedIn,0 +p_i46281_12_,zSpeedIn,0 +p_i46281_14_,state,0 +p_i46281_2_,xCoordIn,0 +p_i46281_4_,yCoordIn,0 +p_i46281_6_,zCoordIn,0 +p_i46281_8_,xSpeedIn,0 +p_i46283_1_,worldIn,0 +p_i46283_2_,xCoordIn,0 +p_i46283_4_,yCoordIn,0 +p_i46283_6_,zCoordIn,0 +p_i46284_1_,worldIn,0 +p_i46284_2_,xCoordIn,0 +p_i46284_4_,yCoordIn,0 +p_i46284_6_,zCoordIn,0 +p_i46285_1_,worldIn,0 +p_i46285_2_,xCoordIn,0 +p_i46285_4_,yCoordIn,0 +p_i46285_6_,zCoordIn,0 +p_i46286_1_,worldIn,0 +p_i46291_3_,formattingName,2 +p_i46291_4_,formattingCodeIn,2 +p_i46291_5_,colorIndex,2 +p_i46292_3_,formattingName,2 +p_i46292_4_,formattingCodeIn,2 +p_i46292_5_,fancyStylingIn,2 +p_i46293_3_,formattingName,2 +p_i46293_4_,formattingCodeIn,2 +p_i46293_5_,fancyStylingIn,2 +p_i46293_6_,colorIndex,2 +p_i46300_1_,mcIn,0 +p_i46301_1_,renderer,0 +p_i46301_2_,textureX,0 +p_i46301_3_,textureY,0 +p_i46307_1_,modelSize,0 +p_i46308_1_,modelSize,0 +p_i46308_2_,textureWidthIn,0 +p_i46308_3_,textureHeightIn,0 +p_i46310_1_,server,1 +p_i46311_1_,parentScreenIn,0 +p_i46314_1_,mc,0 +p_i46315_1_,upperInv,0 +p_i46315_2_,lowerInv,0 +p_i46317_1_,parentScreenIn,0 +p_i46317_2_,saveNameIn,0 +p_i46321_1_,realmsButtonIn,0 +p_i46321_2_,buttonId,0 +p_i46321_3_,x,0 +p_i46321_4_,y,0 +p_i46321_5_,text,0 +p_i46322_1_,mcIn,0 +p_i46323_1_,buttonId,0 +p_i46323_2_,x,0 +p_i46323_3_,y,0 +p_i46323_4_,widthIn,0 +p_i46323_5_,heightIn,0 +p_i46323_6_,buttonText,0 +p_i46325_1_,mcIn,0 +p_i46326_1_,mcIn,0 +p_i46326_2_,optionsFileIn,0 +p_i46327_1_,statIdIn,2 +p_i46327_2_,unlocalizedName,2 +p_i46327_3_,column,2 +p_i46327_4_,row,2 +p_i46327_5_,itemIn,2 +p_i46327_6_,parent,2 +p_i46330_1_,valueIn,2 +p_i46331_1_,json,2 +p_i46333_2_,gameProfileIn,2 +p_i46333_3_,expirationDateIn,2 +p_i46334_1_,valueIn,2 +p_i46334_2_,startDate,2 +p_i46334_3_,banner,2 +p_i46334_4_,endDate,2 +p_i46334_5_,banReason,2 +p_i46335_1_,entityIn,2 +p_i46335_2_,opCodeIn,2 +p_i46336_1_,reasonIn,2 +p_i46342_1_,max,2 +p_i46346_1_,mapAssetsIn,0 +p_i46347_1_,worldIn,0 +p_i46347_2_,xCoordIn,0 +p_i46347_4_,yCoordIn,0 +p_i46347_6_,zCoordIn,0 +p_i46348_1_,worldIn,0 +p_i46348_2_,xCoordIn,0 +p_i46348_4_,yCoordIn,0 +p_i46348_6_,zCoordIn,0 +p_i46349_1_,worldIn,0 +p_i46349_2_,xCoordIn,0 +p_i46349_4_,yCoordIn,0 +p_i46349_6_,zCoordIn,0 +p_i46350_1_,worldIn,0 +p_i46350_2_,xCoordIn,0 +p_i46350_4_,yCoordIn,0 +p_i46350_6_,zCoordIn,0 +p_i46351_1_,worldIn,0 +p_i46351_10_,ySpeedIn,0 +p_i46351_12_,zSpeedIn,0 +p_i46351_2_,xCoordIn,0 +p_i46351_4_,yCoordIn,0 +p_i46351_6_,zCoordIn,0 +p_i46351_8_,xSpeedIn,0 +p_i46352_1_,worldIn,0 +p_i46352_2_,posXIn,0 +p_i46352_4_,posYIn,0 +p_i46352_6_,posZIn,0 +p_i46353_1_,worldIn,0 +p_i46353_2_,xCoordIn,0 +p_i46353_4_,yCoordIn,0 +p_i46353_6_,zCoordIn,0 +p_i46354_1_,worldIn,0 +p_i46354_14_,scale,0 +p_i46354_2_,xCoordIn,0 +p_i46354_4_,yCoordIn,0 +p_i46354_6_,zCoordIn,0 +p_i46358_1_,model,0 +p_i46358_2_,texOffX,0 +p_i46358_3_,texOffY,0 +p_i46359_1_,renderer,0 +p_i46363_1_,textureVertex,0 +p_i46363_2_,texturePositionXIn,0 +p_i46363_3_,texturePositionYIn,0 +p_i46364_1_,vertices,0 +p_i46372_1_,propertiesFile,1 +p_i46373_1_,eulaFile,1 +p_i46375_1_,sessionIn,0 +p_i46375_2_,userPropertiesIn,0 +p_i46375_3_,profilePropertiesIn,0 +p_i46375_4_,proxyIn,0 +p_i46378_1_,posIn,2 +p_i46378_2_,fingerIn,2 +p_i46378_3_,thumbIn,2 +p_i46378_4_,lcacheIn,2 +p_i46399_1_,blockMaterialIn,2 +p_i46399_2_,blockMapColorIn,2 +p_i46403_1_,rabbit,2 +p_i46404_1_,theEntityIn,2 +p_i46404_2_,classToAvoidIn,2 +p_i46404_3_,avoidDistanceIn,2 +p_i46404_4_,farSpeedIn,2 +p_i46404_6_,nearSpeedIn,2 +p_i46405_1_,theEntityIn,2 +p_i46405_2_,classToAvoidIn,2 +p_i46405_3_,avoidTargetSelectorIn,2 +p_i46405_4_,avoidDistanceIn,2 +p_i46405_5_,farSpeedIn,2 +p_i46405_7_,nearSpeedIn,2 +p_i46420_1_,name,0 +p_i46420_2_,ip,0 +p_i46420_3_,isLan,0 +p_i46443_1_,transforms,0 +p_i46444_1_,thirdPersonIn,0 +p_i46444_2_,firstPersonIn,0 +p_i46444_3_,headIn,0 +p_i46444_4_,guiIn,0 +p_i46444_5_,groundIn,0 +p_i46444_6_,fixedIn,0 +p_i46451_1_,worldIn,2 +p_i46451_2_,posIn,2 +p_i46453_2_,buffer,0 +p_i46453_3_,format,0 +p_i46455_1_,worldIn,2 +p_i46456_1_,vIn,0 +p_i46460_1_,worldIn,2 +p_i46463_1_,vIn,0 +p_i46492_1_,player,2 +p_i46492_2_,permissionLevelIn,2 +p_i46492_3_,bypassesPlayerLimitIn,2 diff --git a/mappings/mappingCreator.js b/mappings/mappingCreator.js new file mode 100644 index 0000000..4a80af2 --- /dev/null +++ b/mappings/mappingCreator.js @@ -0,0 +1,302 @@ +new Thread(()=>{ + console.log("Loading joined data... (reading from file)") + let joinedFile = FileLib.read("SoopyV2", "mappings/data/joined.tsrg") + console.log("Loading joined data... (parsing file 1/2)") + joinedFile = joinedFile.split("\n") + console.log("Loading joined data... (parsing file 2/2)") + let joinedData = {} + let joinedData2 = {} + let currThing = [] + joinedFile.forEach(line=>{ + if(line.startsWith(" ")){ + line = line.split(" ") + let thingo = line.pop() + let thingo2 = line.pop() + joinedData[thingo] = currThing[1].split("/").pop() + if(thingo2.includes(")")){ + joinedData2[thingo] = thingo2.replace("(", "").replace(";", "").replace(")", "_") + } + }else{ + currThing = line.split(" ") + } + }) + console.log("Loaded joined data!") + console.log("Loading methods mapping data... (reading from file)") + let methodsFile = FileLib.read("SoopyV2", "mappings/data/methods.csv") + console.log("Loading methods mapping data... (parsing file 1/2)") + let methodsArr = methodsFile.split("\n") + methodsArr.shift() + console.log("Loading methods mapping data... (parsing file 2/2)") + let methodsData = {} + methodsArr.forEach(method => { + let [searge,name,side,desc] = method.split(",") + + if(!methodsData[name]) methodsData[name] = {} + methodsData[name][joinedData[searge]] = { + searge: searge, + name: name, + side: side, + desc: desc + } + }) + console.log("Loaded methods mapping data!") + // console.log("Loading params mapping data... (reading from file)") + // let paramsFile = FileLib.read("SoopyV2", "mappings/data/params.csv") + // console.log("Loading params mapping data... (parsing file 1/2)") + // let paramsArr = paramsFile.split("\n") + // paramsArr.shift() + // console.log("Loading params mapping data... (parsing file 2/2)") + // let paramsData = {} + // paramsArr.forEach(method => { + // let [searge,name,side] = method.split(",") + + // if(!paramsData[name]) paramsData[name] = {} + // paramsData[name][joinedData[searge]] = { + // searge: searge, + // name: name, + // side: side + // } + // }) + // console.log("Loaded params mapping data!") + console.log("Loading fields mapping data... (reading from file)") + let fieldsFile = FileLib.read("SoopyV2", "mappings/data/fields.csv") + console.log("Loading fields mapping data... (parsing file 1/2)") + let fieldsArr = fieldsFile.split("\n") + fieldsArr.shift() + console.log("Loading fields mapping data... (parsing file 2/2)") + let fieldsData = {} + fieldsArr.forEach(method => { + let [searge,name,side,desc] = method.split(",") + + if(!fieldsData[name]) fieldsData[name] = {} + fieldsData[name][joinedData[searge]] = { + searge: searge, + name: name, + side: side, + desc: desc + } + }) + console.log("Loaded fields mapping data!") + console.log("Creating mappings.js ...") + let mappingsJs = "" + mappingsJs += "let m = {}\nlet f = {}\nif(false){\n" + let methodNameKeys = Object.keys(methodsData) + methodNameKeys.forEach((methodName, i)=>{ + let keys = Object.keys(methodsData[methodName]) + if(keys.length === 1){ + mappingsJs += `/** \n * ${(methodsData[methodName][keys[0]].desc||"").replace(/\\n/g, "\n * ")}\n * \n * Parent Class: ${keys[0].split("_").pop()}\n */\n` + mappingsJs += `m.${methodName} = "${methodsData[methodName][keys[0]].searge}"\n` + }else{ + mappingsJs += `m.${methodName} = {}\n` + let keysData = {} + keys.forEach(key=>{ + if(!keysData[key.split("_").pop()]) keysData[key.split("_").pop()] = [] + + keysData[key.split("_").pop()].push(methodsData[methodName][key]) + }) + keys.forEach(key=>{ + // console.log(keysData[key.split("_").pop()].length) + if(keysData[key.split("_").pop()].length === 0) return + if(keysData[key.split("_").pop()].length === 1){ + mappingsJs += `/** \n * ${(methodsData[methodName][key].desc||"").replace(/\\n/g, "\n * ")}\n * \n * Parent Class: ${key.split("_").pop()}\n */\n` + mappingsJs += `m.${methodName}.${key.split("_").pop()} = "${methodsData[methodName][key].searge}"\n` + }else{ + mappingsJs += `m.${methodName}.${key.split("_").pop()} = {}\n` + keysData[key.split("_").pop()].forEach((method)=>{ + // console.log(joinedData2[method.searge]) + mappingsJs += `/** \n * ${(method.desc||"").replace(/\\n/g, "\n * ")}\n * \n * Parent Class: ${key.split("_").pop()}\n */\n` + mappingsJs += `m.${methodName}.${key.split("_").pop()}.${joinedData2[method.searge]} = "${method.searge}",` + }) + + keysData[key.split("_").pop()] = [] + } + }) + mappingsJs += "\n" + } + }) + let fieldNameKeys = Object.keys(fieldsData) + fieldNameKeys.forEach((fieldName, i)=>{ + let keys = Object.keys(fieldsData[fieldName]) + if(keys.length === 1){ + mappingsJs += `/** \n * ${(fieldsData[fieldName][keys[0]].desc||"").replace(/\\n/g, "\n * ")}\n * \n * Parent Class: ${keys[0].split("_").pop()}\n */\n` + mappingsJs += `f.${fieldName} = "${fieldsData[fieldName][keys[0]].searge}"\n` + }else{ + mappingsJs += `f.${fieldName} = {}\n` + let keysData = {} + keys.forEach(key=>{ + if(!keysData[key.split("_").pop()]) keysData[key.split("_").pop()] = [] + + keysData[key.split("_").pop()].push(fieldsData[fieldName][key]) + }) + keys.forEach(key=>{ + // console.log(keysData[key.split("_").pop()].length) + if(keysData[key.split("_").pop()].length === 0) return + if(keysData[key.split("_").pop()].length === 1){ + mappingsJs += `/** \n * ${(fieldsData[fieldName][key].desc||"").replace(/\\n/g, "\n * ")}\n * \n * Parent Class: ${key.split("_").pop()}\n */\n` + mappingsJs += `f.${fieldName}.${key.split("_").pop()} = "${fieldsData[fieldName][key].searge}"\n` + }else{ + mappingsJs += `f.${fieldName}.${key.split("_").pop()} = {}\n` + keysData[key.split("_").pop()].forEach((field)=>{ + // console.log(joinedData2[field.searge]) + mappingsJs += `/** \n * ${(field.desc||"").replace(/\\n/g, "\n * ")}\n * \n * Parent Class: ${key.split("_").pop()}\n */\n` + mappingsJs += `f.${fieldName}.${key.split("_").pop()}.${joinedData2[field.searge]} = "${field.searge}",` + }) + + keysData[key.split("_").pop()] = [] + } + }) + mappingsJs += "\n" + } + }) + // mappingsJs += "\nlet p = {}\n\n" + // let paramNameKeys = Object.keys(paramsData) + // paramNameKeys.forEach((paramName, i)=>{ + // let keys = Object.keys(paramsData[paramName]) + // if(keys.length === 1){ + // mappingsJs += `/** \n * Parent Class: ${keys[0].split("_").pop()}\n */\n` + // mappingsJs += `p.${paramName} = "${paramsData[paramName][keys[0]].searge}"\n` + // }else{ + // mappingsJs += `p.${paramName} = {}\n` + // let keysData = {} + // keys.forEach(key=>{ + // if(!keysData[key.split("_").pop()]) keysData[key.split("_").pop()] = [] + + // keysData[key.split("_").pop()].push(paramsData[paramName][key]) + // }) + // keys.forEach(key=>{ + // // console.log(keysData[key.split("_").pop()].length) + // if(keysData[key.split("_").pop()].length === 0) return + // if(keysData[key.split("_").pop()].length === 1){ + // mappingsJs += `/** \n * Parent Class: ${key.split("_").pop()}\n */\n` + // mappingsJs += `p.${paramName}.${key.split("_").pop()} = "${paramsData[paramName][keys[0]].searge}"\n` + // }else{ + // mappingsJs += `p.${paramName}.${key.split("_").pop()} = {}\n` + // keysData[key.split("_").pop()].forEach((param)=>{ + // // console.log(joinedData2[param.searge]) + // mappingsJs += `/** \n * Parent Class: ${key.split("_").pop()}\n */\n` + // mappingsJs += `p.${paramName}.${key.split("_").pop()}.${joinedData2[param.searge]} = "${param.searge}",` + // }) + + // keysData[key.split("_").pop()] = [] + // } + // }) + // mappingsJs += "\n" + // } + // }) + mappingsJs += "\nmodule.exports = {m:m,f:f}\n}else{\n" + + mappingsJs += +`if(!global.soopyv2mappings){ + + let joinedFile = FileLib.read("SoopyV2", "mappings/data/joined.tsrg") + joinedFile = joinedFile.split("\\n") + let joinedData = {} + let joinedData2 = {} + let currThing = [] + joinedFile.forEach(line=>{ + if(line.startsWith(" ")){ + line = line.split(" ") + let thingo = line.pop() + let thingo2 = line.pop() + joinedData[thingo] = currThing[1].split("/").pop() + if(thingo2.includes(")")){ + joinedData2[thingo] = thingo2.replace("(", "").replace(";", "").replace(")", "_") + } + }else{ + currThing = line.split(" ") + } + }) + let methodsFile = FileLib.read("SoopyV2", "mappings/data/methods.csv") + let methodsArr = methodsFile.split("\\n") + methodsArr.shift() + let methodsData = {} + methodsArr.forEach(method => { + let [searge,name,side,desc] = method.split(",") + + if(!methodsData[name]) methodsData[name] = {} + methodsData[name][joinedData[searge]] = { + searge: searge, + name: name, + side: side, + desc: desc + } + }) + let fieldsFile = FileLib.read("SoopyV2", "mappings/data/fields.csv") + let fieldsArr = fieldsFile.split("\\n") + fieldsArr.shift() + let fieldsData = {} + fieldsArr.forEach(method => { + let [searge,name,side,desc] = method.split(",") + + if(!fieldsData[name]) fieldsData[name] = {} + fieldsData[name][joinedData[searge]] = { + searge: searge, + name: name, + side: side, + desc: desc + } + }) + let methodNameKeys = Object.keys(methodsData) + methodNameKeys.forEach((methodName, i)=>{ + let keys = Object.keys(methodsData[methodName]) + if(keys.length === 1){ + m[methodName] = methodsData[methodName][keys[0]].searge + }else{ + m[methodName] = {} + let keysData = {} + keys.forEach(key=>{ + if(!keysData[key.split("_").pop()]) keysData[key.split("_").pop()] = [] + + keysData[key.split("_").pop()].push(methodsData[methodName][key]) + }) + keys.forEach(key=>{ + if(keysData[key.split("_").pop()].length === 0) return + if(keysData[key.split("_").pop()].length === 1){ + m[methodName][key.split("_").pop()] = methodsData[methodName][key].searge + }else{ + m[methodName][key.split("_").pop()] = {} + keysData[key.split("_").pop()].forEach((method)=>{ + m[methodName][key.split("_").pop()][joinedData2[method.searge]] = method.searge + }) + + keysData[key.split("_").pop()] = [] + } + }) + } + }) + let fieldNameKeys = Object.keys(fieldsData) + fieldNameKeys.forEach((fieldName, i)=>{ + let keys = Object.keys(fieldsData[fieldName]) + if(keys.length === 1){ + f[fieldName] = fieldsData[fieldName][keys[0]].searge + }else{ + f[fieldName] = {} + let keysData = {} + keys.forEach(key=>{ + if(!keysData[key.split("_").pop()]) keysData[key.split("_").pop()] = [] + + keysData[key.split("_").pop()].push(fieldsData[fieldName][key]) + }) + keys.forEach(key=>{ + if(keysData[key.split("_").pop()].length === 0) return + if(keysData[key.split("_").pop()].length === 1){ + f[fieldName][key.split("_").pop()] = fieldsData[fieldName][key].searge + }else{ + f[fieldName][key.split("_").pop()] = {} + keysData[key.split("_").pop()].forEach((field)=>{ + f[fieldName][key.split("_").pop()][joinedData2[field.searge]] = field.searge + }) + + keysData[key.split("_").pop()] = [] + } + }) + } + }) + global.soopyv2mappings = [m, f] +} +[m, f] = global.soopyv2mappings +} +module.exports = {m:m,f:f}` + + FileLib.write("SoopyV2", "mappings/mappings.js", mappingsJs) +}).start()
\ No newline at end of file diff --git a/mappings/mappings.js b/mappings/mappings.js new file mode 100644 index 0000000..bae3abe --- /dev/null +++ b/mappings/mappings.js @@ -0,0 +1,81545 @@ +let m = {} +let f = {} +if(false){ +/** + * + * + * Parent Class: PotionEffect + */ +m.getIsPotionDurationMax = "func_100011_g" +/** + * Toggle the isPotionDurationMax field. + * + * Parent Class: PotionEffect + */ +m.setPotionDurationMax = "func_100012_b" +m.isKeyDown = {} +/** + * Returns whether the specified key binding is currently being pressed. + * + * @param key The key tested + * + * Parent Class: GameSettings + */ +m.isKeyDown.GameSettings = "func_100015_a" +/** + * Returns true if the key is pressed (used for continuous querying). Should be used in tickers. + * + * Parent Class: KeyBinding + */ +m.isKeyDown.KeyBinding = "func_151470_d" + +/** + * + * + * Parent Class: EntityLiving + */ +m.isNoDespawnRequired = "func_104002_bU" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setForceGamemode = "func_104055_i" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getForceGamemode = "func_104056_am" +m.saveExtraData = {} +/** + * "Save extra data not associated with any Chunk. Not saved during autosave + * + * Parent Class: ChunkProviderServer + */ +m.saveExtraData.ChunkProviderServer = "func_104112_b" +/** + * "Save extra data not associated with any Chunk. Not saved during autosave + * + * Parent Class: AnvilChunkLoader + */ +m.saveExtraData.AnvilChunkLoader = "func_75818_b" + +m.saveChunkData = {} +/** + * saves chunk data - currently only called during execution of the Save All command + * + * Parent Class: WorldServer + */ +m.saveChunkData.WorldServer = "func_104140_m" +/** + * + * + * Parent Class: ChunkProviderServer + */ +m.saveChunkData.ChunkProviderServer = "func_73242_b" + +m.isNullOrEmpty = {} +/** + * + * + * Parent Class: Main + */ +m.isNullOrEmpty.Main = "func_110121_a" +/** + * Returns a value indicating whether the given string is null or empty. + * + * Parent Class: StringUtils + */ +m.isNullOrEmpty.StringUtils = "func_151246_b" + +m.onChunkLoad = {} +/** + * + * + * Parent Class: Entity + */ +m.onChunkLoad.Entity = "func_110123_P" +/** + * Called when this Chunk is loaded by the ChunkProvider + * + * Parent Class: Chunk + */ +m.onChunkLoad.Chunk = "func_76631_c" + +m.getUniqueID = {} +/** + * + * + * Parent Class: Entity + */ +m.getUniqueID.Entity = "func_110124_au" +/** + * + * + * Parent Class: PlayerUsageSnooper + */ +m.getUniqueID.PlayerUsageSnooper = "func_80006_f" + +/** + * Called when this entity is broken. Entity parameter may be null. + * + * Parent Class: EntityPainting + */ +m.onBroken = "func_110128_b" +/** + * Removes the dot representing this frame's position from the map when the item frame is broken. + * + * Parent Class: EntityItemFrame + */ +m.removeFrameFromMap = "func_110131_b" +/** + * removes the specified IInvBasic from receiving further change notices + * + * @param listener the listener to remove + * + * Parent Class: InventoryBasic + */ +m.removeInventoryChangeListener = "func_110132_b" +m.setCustomName = {} +/** + * Sets the name of this inventory. This is displayed to the client on opening. + * + * Parent Class: InventoryBasic + */ +m.setCustomName.InventoryBasic = "func_110133_a" +/** + * + * + * Parent Class: TileEntityHopper + */ +m.setCustomName.TileEntityHopper = "func_145886_a" +/** + * + * + * Parent Class: TileEntityEnchantmentTable + */ +m.setCustomName.TileEntityEnchantmentTable = "func_145920_a" +/** + * + * + * Parent Class: TileEntityChest + */ +m.setCustomName.TileEntityChest = "func_145976_a" +/** + * + * + * Parent Class: TileEntityDispenser + */ +m.setCustomName.TileEntityDispenser = "func_146018_a" + +/** + * Add a listener that will be notified when any item in this inventory is modified. + * + * @param listener the listener to add + * + * Parent Class: InventoryBasic + */ +m.addInventoryChangeListener = "func_110134_a" +/** + * + * + * Parent Class: IBossDisplayData + */ +m.getMaxHealth = "func_110138_aP" +/** + * + * + * Parent Class: EntityPlayer + */ +m.getAbsorptionAmount = "func_110139_bj" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.getAttributeMap = "func_110140_aT" +/** + * 1.8.9 + * + * Parent Class: EntityLivingBase + */ +m.getCombatTracker = "func_110142_aN" +m.getHealth = {} +/** + * + * + * Parent Class: IBossDisplayData + */ +m.getHealth.IBossDisplayData = "func_110143_aJ" +/** + * + * + * Parent Class: S06PacketUpdateHealth + */ +m.getHealth.S06PacketUpdateHealth = "func_149332_c" + +/** + * + * + * Parent Class: EntityLivingBase + */ +m.getLastAttacker = "func_110144_aD" +/** + * Moves the entity to a position out of the way of its mount. + * + * Parent Class: EntityLivingBase + */ +m.dismountEntity = "func_110145_l" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.updateDistance = "func_110146_f" +/** + * + * + * Parent Class: EntityPlayer + */ +m.applyEntityAttributes = "func_110147_ax" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.getEntityAttribute = "func_110148_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.setAbsorptionAmount = "func_110149_m" +/** + * "Applies logic related to leashes + * + * Parent Class: EntityCreature + */ +m.updateLeashedState = "func_110159_bB" +/** + * Removes the leash from this entity + * + * Parent Class: EntityLiving + */ +m.clearLeashed = "func_110160_i" +/** + * Sets the entity to be leashed to. + * + * Parent Class: EntityLiving + */ +m.setLeashedToEntity = "func_110162_b" +/** + * Enable the Entity persistence + * + * Parent Class: EntityLiving + */ +m.enablePersistence = "func_110163_bv" +/** + * + * + * Parent Class: EntityVillager + */ +m.allowLeashing = "func_110164_bC" +/** + * + * + * Parent Class: EntityLiving + */ +m.recreateLeash = "func_110165_bF" +/** + * + * + * Parent Class: EntityLiving + */ +m.getLeashedToEntity = "func_110166_bE" +/** + * + * + * Parent Class: EntityLiving + */ +m.getLeashed = "func_110167_bD" +/** + * + * + * Parent Class: EntityCreature + */ +m.isWithinHomeDistanceCurrentPosition = "func_110173_bK" +/** + * + * + * Parent Class: EntityCreature + */ +m.getMaximumHomeDistance = "func_110174_bM" +/** + * Returns whether a home area is defined for this entity. + * + * Parent Class: EntityCreature + */ +m.hasHome = "func_110175_bO" +/** + * + * + * Parent Class: EntityCreature + */ +m.detachHome = "func_110177_bN" +/** + * + * + * Parent Class: EntityGhast + */ +m.isAttacking = "func_110182_bF" +/** + * """Adds the value of the parameter times 20 to the age of this entity. If the entity is an adult (if the entity's age is greater than 0) + * + * Parent Class: EntityAgeable + */ +m.addGrowth = "func_110195_a" +/** + * + * + * Parent Class: EntityHorse + */ +m.increaseTemper = "func_110198_t" +/** + * + * + * Parent Class: EntityHorse + */ +m.openGUI = "func_110199_f" +/** + * "Return true if the horse entity ready to mate. (no rider + * + * Parent Class: EntityHorse + */ +m.canMate = "func_110200_cJ" +/** + * + * + * Parent Class: EntityHorse + */ +m.getMouthOpennessAngle = "func_110201_q" +/** + * + * + * Parent Class: EntityHorse + */ +m.getHorseVariant = "func_110202_bQ" +/** + * Returns randomized movement speed + * + * Parent Class: EntityHorse + */ +m.getModifiedMovementSpeed = "func_110203_cN" +/** + * + * + * Parent Class: EntityHorse + */ +m.isEatingHaystack = "func_110204_cc" +/** + * + * + * Parent Class: EntityHorse + */ +m.isBreeding = "func_110205_ce" +/** + * + * + * Parent Class: EntityHorse + */ +m.setJumpPower = "func_110206_u" +/** + * + * + * Parent Class: EntityHorse + */ +m.setChested = "func_110207_m" +/** + * + * + * Parent Class: EntityHorse + */ +m.setHorseWatchableBoolean = "func_110208_b" +/** + * + * + * Parent Class: EntityHorse + */ +m.isRearing = "func_110209_cd" +/** + * + * + * Parent Class: EntityHorse + */ +m.getVariantTexturePaths = "func_110212_cp" +/** + * + * + * Parent Class: EntityHorse + */ +m.setHorseType = "func_110214_p" +/** + * + * + * Parent Class: EntityHorse + */ +m.getHorseJumpStrength = "func_110215_cj" +/** + * """Spawns particles for the horse entity. par1 tells whether to spawn hearts. If it is false + * + * Parent Class: EntityHorse + */ +m.spawnHorseParticles = "func_110216_r" +/** + * + * + * Parent Class: EntityHorse + */ +m.getAngrySoundName = "func_110217_cl" +/** + * + * + * Parent Class: EntityHorse + */ +m.getMaxTemper = "func_110218_cm" +/** + * + * + * Parent Class: EntityHorse + */ +m.setRearing = "func_110219_q" +/** + * + * + * Parent Class: EntityHorse + */ +m.makeHorseRear = "func_110220_cK" +/** + * + * + * Parent Class: EntityHorse + */ +m.setHasReproduced = "func_110221_n" +/** + * Return true if the horse entity is sterile (Undead || Mule) + * + * Parent Class: EntityHorse + */ +m.isSterile = "func_110222_cv" +/** + * + * + * Parent Class: EntityHorse + */ +m.getRearingAmount = "func_110223_p" +/** + * + * + * Parent Class: EntityHorse + */ +m.dropChests = "func_110224_ci" +/** + * Returns number of slots depending horse type + * + * Parent Class: EntityHorse + */ +m.getChestSize = "func_110225_cC" +/** + * + * + * Parent Class: EntityHorse + */ +m.initHorseChest = "func_110226_cD" +/** + * + * + * Parent Class: EntityHorse + */ +m.setEatingHaystack = "func_110227_p" +/** + * + * + * Parent Class: EntityHorse + */ +m.isAdultHorse = "func_110228_bR" +/** + * Return true if the horse entity can carry a chest. + * + * Parent Class: EntityHorse + */ +m.canCarryChest = "func_110229_cs" +/** + * + * + * Parent Class: EntityHorse + */ +m.resetTexturePrefix = "func_110230_cF" +/** + * + * + * Parent Class: EntityHorse + */ +m.makeHorseRearWithSound = "func_110231_cz" +/** + * Updates the items in the saddle and armor slots of the horse's inventory. + * + * Parent Class: EntityHorse + */ +m.updateHorseSlots = "func_110232_cE" +/** + * + * + * Parent Class: EntityHorse + */ +m.getHorseWatchableBoolean = "func_110233_w" +/** + * + * + * Parent Class: EntityHorse + */ +m.setHorseTamed = "func_110234_j" +/** + * + * + * Parent Class: EntityHorse + */ +m.setHorseVariant = "func_110235_q" +/** + * + * + * Parent Class: EntityHorse + */ +m.mountTo = "func_110237_h" +/** + * + * + * Parent Class: EntityHorse + */ +m.setTemper = "func_110238_s" +/** + * + * + * Parent Class: EntityHorse + */ +m.dropItemsInChest = "func_110240_a" +/** + * "Returns type of armor from DataWatcher (0 = iron + * + * Parent Class: EntityHorse + */ +m.getHorseArmorIndexSynced = "func_110241_cb" +/** + * + * + * Parent Class: EntityHorse + */ +m.setBreeding = "func_110242_l" +/** + * + * + * Parent Class: EntityHorse + */ +m.getHasReproduced = "func_110243_cf" +/** + * + * + * Parent Class: EntityHorse + */ +m.dropChestItems = "func_110244_cA" +/** + * Returns randomized jump strength + * + * Parent Class: EntityHorse + */ +m.getModifiedJumpStrength = "func_110245_cM" +/** + * + * + * Parent Class: EntityHorse + */ +m.isHorseJumping = "func_110246_bZ" +/** + * + * + * Parent Class: EntityHorse + */ +m.setHorseTexturePaths = "func_110247_cG" +/** + * + * + * Parent Class: EntityHorse + */ +m.isTame = "func_110248_bS" +/** + * + * + * Parent Class: EntityHorse + */ +m.openHorseMouth = "func_110249_cI" +/** + * + * + * Parent Class: EntityHorse + */ +m.getClosestHorse = "func_110250_a" +/** + * + * + * Parent Class: EntityHorse + */ +m.setHorseSaddled = "func_110251_o" +/** + * + * + * Parent Class: EntityHorse + */ +m.getTemper = "func_110252_cg" +/** + * + * + * Parent Class: EntityHorse + */ +m.getHorseSize = "func_110254_bY" +/** + * + * + * Parent Class: EntityHorse + */ +m.setHorseJumping = "func_110255_k" +/** + * "Used to know if the horse can be leashed + * + * Parent Class: EntityHorse + */ +m.isUndead = "func_110256_cu" +/** + * + * + * Parent Class: EntityHorse + */ +m.isHorseSaddled = "func_110257_ck" +/** + * + * + * Parent Class: EntityHorse + */ +m.getGrassEatingAmount = "func_110258_o" +/** + * Return true if the horse entity can wear an armor + * + * Parent Class: EntityHorse + */ +m.canWearArmor = "func_110259_cr" +/** + * "0 = iron + * + * Parent Class: EntityHorse + */ +m.getHorseArmorIndex = "func_110260_d" +/** + * + * + * Parent Class: EntityHorse + */ +m.isChested = "func_110261_ca" +/** + * + * + * Parent Class: EntityHorse + */ +m.prepareChunkForSpawn = "func_110262_ch" +/** + * + * + * Parent Class: EntityHorse + */ +m.setTamedBy = "func_110263_g" +/** + * + * + * Parent Class: EntityHorse + */ +m.getHorseTexture = "func_110264_co" +/** + * "Returns the horse type. 0 = Normal + * + * Parent Class: EntityHorse + */ +m.getHorseType = "func_110265_bP" +/** + * Returns randomized max health + * + * Parent Class: EntityHorse + */ +m.getModifiedMaxHealth = "func_110267_cL" +/** + * "Notifies the merchant of a possible merchantrecipe being fulfilled or not. Usually + * + * Parent Class: EntityVillager + */ +m.verifySellingItem = "func_110297_a_" +/** + * + * + * Parent Class: EntityPlayer + */ +m.displayGUIHorse = "func_110298_a" +m.getLocationCape = {} +/** + * + * + * Parent Class: AbstractClientPlayer + */ +m.getLocationCape.AbstractClientPlayer = "func_110303_q" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +m.getLocationCape.NetworkPlayerInfo = "func_178861_h" + +/** + * + * + * Parent Class: AbstractClientPlayer + */ +m.getDownloadImageSkin = "func_110304_a" +m.getLocationSkin = {} +/** + * Returns true if the username has an associated skin. + * + * Parent Class: AbstractClientPlayer + */ +m.getLocationSkin.AbstractClientPlayer = "func_110311_f" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +m.getLocationSkin.NetworkPlayerInfo = "func_178837_g" + +m.isRidingHorse = {} +/** + * + * + * Parent Class: EntityPlayerSP + */ +m.isRidingHorse.EntityPlayerSP = "func_110317_t" +/** + * "Checks if the player is riding a horse + * + * Parent Class: PlayerControllerMP + */ +m.isRidingHorse.PlayerControllerMP = "func_110738_j" + +/** + * + * + * Parent Class: EntityPlayerSP + */ +m.sendHorseJump = "func_110318_g" +/** + * + * + * Parent Class: EntityPlayerSP + */ +m.getHorseJumpPower = "func_110319_bJ" +/** + * + * + * Parent Class: GuiIngame + */ +m.setRecordPlaying = "func_175188_a" +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.setEntityActionState = "func_110430_a" +/** + * + * + * Parent Class: Minecraft + */ +m.getSession = "func_110432_I" +/** + * + * + * Parent Class: Minecraft + */ +m.getTextureManager = "func_110434_K" +/** + * + * + * Parent Class: Minecraft + */ +m.refreshResources = "func_110436_a" +/** + * + * + * Parent Class: Minecraft + */ +m.getProxy = "func_110437_J" +/** + * + * + * Parent Class: Minecraft + */ +m.getResourcePackRepository = "func_110438_M" +/** + * + * + * Parent Class: Minecraft + */ +m.updateDisplayMode = "func_110441_Q" +/** + * + * + * Parent Class: Minecraft + */ +m.getResourceManager = "func_110442_L" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getServerProxy = "func_110454_ao" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getOpPermissionLevel = "func_110455_j" +/** + * + * + * Parent Class: PackMetadataSection + */ +m.getPackFormat = "func_110462_b" +m.getFrameIndex = {} +/** + * + * + * Parent Class: AnimationMetadataSection + */ +m.getFrameIndex.AnimationMetadataSection = "func_110468_c" +/** + * + * + * Parent Class: AnimationFrame + */ +m.getFrameIndex.AnimationFrame = "func_110496_c" + +m.getFrameTime = {} +/** + * + * + * Parent Class: AnimationMetadataSection + */ +m.getFrameTime.AnimationMetadataSection = "func_110469_d" +/** + * + * + * Parent Class: AnimationFrame + */ +m.getFrameTime.AnimationFrame = "func_110497_b" + +/** + * + * + * Parent Class: AnimationMetadataSection + */ +m.frameHasTime = "func_110470_b" +/** + * + * + * Parent Class: AnimationMetadataSection + */ +m.getFrameHeight = "func_110471_a" +/** + * + * + * Parent Class: AnimationMetadataSection + */ +m.getFrameTimeSingle = "func_110472_a" +m.getFrameCount = {} +/** + * + * + * Parent Class: AnimationMetadataSection + */ +m.getFrameCount.AnimationMetadataSection = "func_110473_c" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.getFrameCount.TextureAtlasSprite = "func_110970_k" + +/** + * + * + * Parent Class: AnimationMetadataSection + */ +m.getFrameWidth = "func_110474_b" +/** + * + * + * Parent Class: TextureMetadataSection + */ +m.getTextureBlur = "func_110479_a" +/** + * + * + * Parent Class: TextureMetadataSection + */ +m.getTextureClamp = "func_110480_b" +/** + * The name of this section type as it appears in JSON. + * + * Parent Class: TextureMetadataSectionSerializer + */ +m.getSectionName = "func_110483_a" +/** + * + * + * Parent Class: AnimationMetadataSectionSerializer + */ +m.parseAnimationFrame = "func_110492_a" +/** + * + * + * Parent Class: AnimationFrame + */ +m.hasNoTime = "func_110495_a" +/** + * + * + * Parent Class: IMetadataSerializer + */ +m.parseMetadataSection = "func_110503_a" +/** + * + * + * Parent Class: IMetadataSerializer + */ +m.registerMetadataSectionType = "func_110504_a" +/** + * Returns a Gson instance with type adapters registered for metadata sections. + * + * Parent Class: IMetadataSerializer + */ +m.getGson = "func_110505_a" +/** + * + * + * Parent Class: ResourcePackRepository$Entry + */ +m.getResourcePack = "func_110514_c" +m.getResourcePackName = {} +/** + * + * + * Parent Class: ResourcePackRepository$Entry + */ +m.getResourcePackName.ResourcePackRepository$Entry = "func_110515_d" +/** + * + * + * Parent Class: SimpleResource + */ +m.getResourcePackName.SimpleResource = "func_177240_d" + +/** + * + * + * Parent Class: ResourcePackRepository$Entry + */ +m.updateResourcePack = "func_110516_a" +/** + * + * + * Parent Class: ResourcePackRepository$Entry + */ +m.closeResourcePack = "func_110517_b" +/** + * + * + * Parent Class: ResourcePackRepository$Entry + */ +m.bindTexturePackIcon = "func_110518_a" +/** + * + * + * Parent Class: ResourcePackRepository$Entry + */ +m.getTexturePackDescription = "func_110519_e" +m.getMetadata = {} +/** + * + * + * Parent Class: SimpleResource + */ +m.getMetadata.SimpleResource = "func_110526_a" +/** + * Gets the item damage value on an ItemStack that represents this fish type + * + * Parent Class: ItemFishFood$FishType + */ +m.getMetadata.ItemFishFood$FishType = "func_150976_a" +/** + * + * + * Parent Class: BlockStoneBrick$EnumType + */ +m.getMetadata.BlockStoneBrick$EnumType = "func_176612_a" +/** + * + * + * Parent Class: BlockStoneSlab$EnumType + */ +m.getMetadata.BlockStoneSlab$EnumType = "func_176624_a" +/** + * Returns the EnumType's metadata value. + * + * Parent Class: BlockStone$EnumType + */ +m.getMetadata.BlockStone$EnumType = "func_176642_a" +/** + * + * + * Parent Class: BlockWall$EnumType + */ +m.getMetadata.BlockWall$EnumType = "func_176657_a" +/** + * + * + * Parent Class: BlockSandStone$EnumType + */ +m.getMetadata.BlockSandStone$EnumType = "func_176675_a" +/** + * + * + * Parent Class: BlockSand$EnumType + */ +m.getMetadata.BlockSand$EnumType = "func_176688_a" +/** + * + * + * Parent Class: EnumDyeColor + */ +m.getMetadata.EnumDyeColor = "func_176765_a" +/** + * + * + * Parent Class: BlockQuartz$EnumType + */ +m.getMetadata.BlockQuartz$EnumType = "func_176796_a" +/** + * + * + * Parent Class: BlockPrismarine$EnumType + */ +m.getMetadata.BlockPrismarine$EnumType = "func_176807_a" +/** + * + * + * Parent Class: BlockRedSandstone$EnumType + */ +m.getMetadata.BlockRedSandstone$EnumType = "func_176827_a" +/** + * + * + * Parent Class: BlockPlanks$EnumType + */ +m.getMetadata.BlockPlanks$EnumType = "func_176839_a" +/** + * + * + * Parent Class: BlockLever$EnumOrientation + */ +m.getMetadata.BlockLever$EnumOrientation = "func_176855_a" +/** + * + * + * Parent Class: BlockSilverfish$EnumType + */ +m.getMetadata.BlockSilverfish$EnumType = "func_176881_a" +/** + * + * + * Parent Class: BlockHugeMushroom$EnumType + */ +m.getMetadata.BlockHugeMushroom$EnumType = "func_176896_a" +/** + * + * + * Parent Class: BlockStoneSlabNew$EnumType + */ +m.getMetadata.BlockStoneSlabNew$EnumType = "func_176915_a" +/** + * + * + * Parent Class: BlockDirt$DirtType + */ +m.getMetadata.BlockDirt$DirtType = "func_176925_a" +/** + * + * + * Parent Class: BlockRailBase$EnumRailDirection + */ +m.getMetadata.BlockRailBase$EnumRailDirection = "func_177015_a" +/** + * + * + * Parent Class: ItemModelMesher + */ +m.getMetadata.ItemModelMesher = "func_178084_b" +/** + * Converts the given ItemStack damage value into a metadata value to be placed in the world when this Item is placed as a Block (mostly used with ItemBlocks). + * + * Parent Class: Item + */ +m.getMetadata.Item = "func_77647_b" +/** + * + * + * Parent Class: ItemStack + */ +m.getMetadata.ItemStack = "func_77960_j" + +m.getInputStream = {} +/** + * + * + * Parent Class: SimpleResource + */ +m.getInputStream.SimpleResource = "func_110527_b" +/** + * + * + * Parent Class: IResourcePack + */ +m.getInputStream.IResourcePack = "func_110590_a" +/** + * + * + * Parent Class: FallbackResourceManager + */ +m.getInputStream.FallbackResourceManager = "func_177245_a" + +/** + * + * + * Parent Class: SimpleResource + */ +m.hasMetadata = "func_110528_c" +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +m.getResource = "func_110536_a" +/** + * + * + * Parent Class: FallbackResourceManager + */ +m.getLocationMcmeta = "func_110537_b" +/** + * + * + * Parent Class: FallbackResourceManager + */ +m.addResourcePack = "func_110538_a" +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +m.reloadResources = "func_110541_a" +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +m.registerReloadListener = "func_110542_a" +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +m.clearResources = "func_110543_a" +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +m.notifyReloadListeners = "func_110544_b" +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +m.reloadResourcePack = "func_110545_a" +/** + * + * + * Parent Class: SoundHandler + */ +m.onResourceManagerReload = "func_110549_a" +m.tick = {} +/** + * + * + * Parent Class: ITickable + */ +m.tick.ITickable = "func_110550_d" +/** + * Main function called by run() every loop. + * + * Parent Class: MinecraftServer + */ +m.tick.MinecraftServer = "func_71217_p" +/** + * Runs a single tick for the world + * + * Parent Class: WorldServer + */ +m.tick.WorldServer = "func_72835_b" +/** + * Runs a single tick for the village siege + * + * Parent Class: VillageSiege + */ +m.tick.VillageSiege = "func_75528_a" +/** + * Runs a single tick for the village collection + * + * Parent Class: VillageCollection + */ +m.tick.VillageCollection = "func_75544_a" +/** + * Called periodically by VillageCollection + * + * Parent Class: Village + */ +m.tick.Village = "func_75560_a" + +m.loadTexture = {} +/** + * + * + * Parent Class: ITextureObject + */ +m.loadTexture.ITextureObject = "func_110551_a" +/** + * + * + * Parent Class: TextureManager + */ +m.loadTexture.TextureManager = "func_110579_a" + +/** + * + * + * Parent Class: ITextureObject + */ +m.getGlTextureId = "func_110552_b" +/** + * + * + * Parent Class: DynamicTexture + */ +m.updateDynamicTexture = "func_110564_a" +/** + * + * + * Parent Class: DynamicTexture + */ +m.getTextureData = "func_110565_c" +/** + * + * + * Parent Class: TextureMap + */ +m.initMissingImage = "func_110569_e" +/** + * + * + * Parent Class: TextureMap + */ +m.loadTextureAtlas = "func_110571_b" +m.getAtlasSprite = {} +/** + * + * + * Parent Class: TextureMap + */ +m.getAtlasSprite.TextureMap = "func_110572_b" +/** + * + * + * Parent Class: Stitcher$Holder + */ +m.getAtlasSprite.Stitcher$Holder = "func_98150_a" + +m.bindTexture = {} +/** + * + * + * Parent Class: TextureManager + */ +m.bindTexture.TextureManager = "func_110577_a" +/** + * + * + * Parent Class: Render + */ +m.bindTexture.Render = "func_110776_a" +/** + * + * + * Parent Class: TileEntitySpecialRenderer + */ +m.bindTexture.TileEntitySpecialRenderer = "func_147499_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.bindTexture.GlStateManager = "func_179144_i" +/** + * + * + * Parent Class: TextureUtil + */ +m.bindTexture.TextureUtil = "func_94277_a" + +/** + * + * + * Parent Class: TextureManager + */ +m.getDynamicTextureLocation = "func_110578_a" +/** + * + * + * Parent Class: TextureManager + */ +m.loadTickableTexture = "func_110580_a" +m.getTexture = {} +/** + * + * + * Parent Class: TextureManager + */ +m.getTexture.TextureManager = "func_110581_b" +/** + * + * + * Parent Class: BlockModelShapes + */ +m.getTexture.BlockModelShapes = "func_178122_a" + +/** + * + * + * Parent Class: IResourcePack + */ +m.getPackImage = "func_110586_a" +m.getResourceDomains = {} +/** + * + * + * Parent Class: IResourcePack + */ +m.getResourceDomains.IResourcePack = "func_110587_b" +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +m.getResourceDomains.SimpleReloadableResourceManager = "func_135055_a" + +/** + * + * + * Parent Class: IResourcePack + */ +m.resourceExists = "func_110589_b" +/** + * + * + * Parent Class: FolderResourcePack + */ +m.getInputStreamByName = "func_110591_a" +/** + * + * + * Parent Class: AbstractResourcePack + */ +m.locationToName = "func_110592_c" +/** + * + * + * Parent Class: FolderResourcePack + */ +m.hasResourceName = "func_110593_b" +/** + * + * + * Parent Class: AbstractResourcePack + */ +m.logNameNotLowercase = "func_110594_c" +/** + * + * + * Parent Class: AbstractResourcePack + */ +m.getRelativeName = "func_110595_a" +/** + * + * + * Parent Class: AbstractResourcePack + */ +m.readMetadata = "func_110596_a" +/** + * + * + * Parent Class: FileResourcePack + */ +m.getResourcePackZipFile = "func_110599_c" +/** + * + * + * Parent Class: DefaultResourcePack + */ +m.getResourceStream = "func_110605_c" +/** + * + * + * Parent Class: ResourcePackRepository + */ +m.getRepositoryEntriesAll = "func_110609_b" +/** + * + * + * Parent Class: ResourcePackRepository + */ +m.updateRepositoryEntriesAll = "func_110611_a" +/** + * + * + * Parent Class: ResourcePackRepository + */ +m.getDirResourcepacks = "func_110612_e" +/** + * + * + * Parent Class: ResourcePackRepository + */ +m.getRepositoryEntries = "func_110613_c" +/** + * + * + * Parent Class: ResourcePackRepository + */ +m.getResourcePackFiles = "func_110614_g" +/** + * + * + * Parent Class: ResourcePackRepository + */ +m.fixDirResourcepacks = "func_110616_f" +/** + * + * + * Parent Class: ResourceLocation + */ +m.getResourcePath = "func_110623_a" +/** + * + * + * Parent Class: ResourceLocation + */ +m.getResourceDomain = "func_110624_b" +/** + * "Returns a copy of the given string + * + * Parent Class: EnumChatFormatting + */ +m.getTextWithoutFormattingCodes = "func_110646_a" +/** + * + * + * Parent Class: Util + */ +m.getOSType = "func_110647_a" +/** + * Sets the rotations for a ModelRenderer in the ModelHorse class. + * + * Parent Class: ModelHorse + */ +m.setBoxRotation = "func_110682_a" +/** + * Fixes and offsets a rotation in the ModelHorse class. + * + * Parent Class: ModelHorse + */ +m.updateHorseRotation = "func_110683_a" +/** + * Returns the location of an entity's texture. Doesn't seem to be called unless you call Render.bindEntityTexture. + * + * Parent Class: RenderPlayer + */ +m.getEntityTexture = "func_110775_a" +/** + * + * + * Parent Class: RenderLiving + */ +m.renderLeash = "func_110827_b" +/** + * Gets the value between start and end according to pct + * + * Parent Class: RenderLiving + */ +m.interpolateValue = "func_110828_a" +/** + * + * + * Parent Class: Stitcher + */ +m.addSprite = "func_110934_a" +/** + * + * + * Parent Class: Stitcher + */ +m.getCurrentWidth = "func_110935_a" +/** + * + * + * Parent Class: Stitcher + */ +m.getCurrentHeight = "func_110936_b" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.setIconWidth = "func_110966_b" +m.getOriginY = {} +/** + * "Returns the Y position of this icon on its texture sheet + * + * Parent Class: TextureAtlasSprite + */ +m.getOriginY.TextureAtlasSprite = "func_110967_i" +/** + * + * + * Parent Class: Stitcher$Slot + */ +m.getOriginY.Stitcher$Slot = "func_94185_c" + +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.setFramesTextureData = "func_110968_a" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.setIconHeight = "func_110969_c" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.initSprite = "func_110971_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.updateAnaglyph = "func_110985_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.readImageData = "func_110986_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.uploadTextureImage = "func_110987_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.uploadTexture = "func_110988_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.uploadTextureImageAllocate = "func_110989_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.copyToBuffer = "func_110990_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.allocateTexture = "func_110991_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.uploadTextureImageSubImpl = "func_110993_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.copyToBufferPos = "func_110994_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.uploadTextureImageSub = "func_110995_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.glGenTextures = "func_110996_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.setTextureClamped = "func_110997_a" +/** + * + * + * Parent Class: BaseAttribute + */ +m.getAttributeUnlocalizedName = "func_111108_a" +/** + * + * + * Parent Class: RangedAttribute + */ +m.clampValue = "func_111109_a" +/** + * + * + * Parent Class: BaseAttribute + */ +m.getDefaultValue = "func_111110_b" +/** + * + * + * Parent Class: BaseAttribute + */ +m.getShouldWatch = "func_111111_c" +/** + * + * + * Parent Class: BaseAttribute + */ +m.setShouldWatch = "func_111112_a" +m.getDescription = {} +/** + * + * + * Parent Class: RangedAttribute + */ +m.getDescription.RangedAttribute = "func_111116_f" +/** + * Returns the description of the Crash Report. + * + * Parent Class: CrashReport + */ +m.getDescription.CrashReport = "func_71501_a" +/** + * Returns the fully description of the achievement - ready to be displayed on screen. + * + * Parent Class: Achievement + */ +m.getDescription.Achievement = "func_75989_e" + +/** + * + * + * Parent Class: RangedAttribute + */ +m.setDescription = "func_111117_a" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +m.applyModifier = "func_111121_a" +/** + * Get the Attribute this is an instance of + * + * Parent Class: ModifiableAttributeInstance + */ +m.getAttribute = "func_111123_a" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +m.removeModifier = "func_111124_b" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +m.getBaseValue = "func_111125_b" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +m.getAttributeValue = "func_111126_e" +/** + * "Returns attribute modifier + * + * Parent Class: ModifiableAttributeInstance + */ +m.getModifier = "func_111127_a" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +m.setBaseValue = "func_111128_a" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +m.computeValue = "func_111129_g" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +m.getModifiersByOperation = "func_111130_a" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +m.flagForUpdate = "func_111131_f" +/** + * + * + * Parent Class: DataWatcher + */ +m.getWatchableObjectFloat = "func_111145_d" +/** + * + * + * Parent Class: BaseAttributeMap + */ +m.getAllAttributes = "func_111146_a" +/** + * + * + * Parent Class: BaseAttributeMap + */ +m.applyAttributeModifiers = "func_111147_b" +/** + * + * + * Parent Class: BaseAttributeMap + */ +m.removeAttributeModifiers = "func_111148_a" +/** + * "Registers an attribute with this AttributeMap + * + * Parent Class: ServersideAttributeMap + */ +m.registerAttribute = "func_111150_b" +/** + * + * + * Parent Class: ServersideAttributeMap + */ +m.getAttributeInstance = "func_111151_a" +/** + * + * + * Parent Class: ServersideAttributeMap + */ +m.getAttributeInstanceByName = "func_111152_a" +/** + * + * + * Parent Class: ServersideAttributeMap + */ +m.getWatchedAttributes = "func_111160_c" +/** + * + * + * Parent Class: ServersideAttributeMap + */ +m.getAttributeInstanceSet = "func_111161_b" +/** + * + * + * Parent Class: AttributeModifier + */ +m.getAmount = "func_111164_d" +/** + * @see #isSaved + * + * Parent Class: AttributeModifier + */ +m.isSaved = "func_111165_e" +m.getName = {} +/** + * + * + * Parent Class: AttributeModifier + */ +m.getName.AttributeModifier = "func_111166_b" +/** + * + * + * Parent Class: S3EPacketTeams + */ +m.getName.S3EPacketTeams = "func_149312_c" +/** + * + * + * Parent Class: ServerStatusResponse$MinecraftProtocolVersionIdentifier + */ +m.getName.ServerStatusResponse$MinecraftProtocolVersionIdentifier = "func_151303_a" +/** + * Returns the name of the save format. + * + * Parent Class: ISaveFormat + */ +m.getName.ISaveFormat = "func_154333_a" +/** + * + * + * Parent Class: EnumDyeColor + */ +m.getName.EnumDyeColor = "func_176610_l" +/** + * Get the name for the given value. + * + * Parent Class: IProperty + */ +m.getName.IProperty = "func_177702_a" +/** + * + * + * Parent Class: ItemArmor$ArmorMaterial + */ +m.getName.ItemArmor$ArmorMaterial = "func_179242_c" +/** + * + * + * Parent Class: ChatComponentScore + */ +m.getName.ChatComponentScore = "func_179995_g" +/** + * + * + * Parent Class: EntityMinecart$EnumMinecartType + */ +m.getName.EntityMinecart$EnumMinecartType = "func_180040_b" +/** + * Get the name of this object. For players this returns their username + * + * Parent Class: InventoryCraftResult + */ +m.getName.InventoryCraftResult = "func_70005_c_" +/** + * returns the name of the potion + * + * Parent Class: Potion + */ +m.getName.Potion = "func_76393_a" +/** + * Returns the name of this game type + * + * Parent Class: WorldSettings$GameType + */ +m.getName.WorldSettings$GameType = "func_77149_b" +/** + * Return the name of key in translation table of this enchantment. + * + * Parent Class: EnchantmentProtection + */ +m.getName.EnchantmentProtection = "func_77320_a" +/** + * + * + * Parent Class: IScoreObjectiveCriteria + */ +m.getName.IScoreObjectiveCriteria = "func_96636_a" +/** + * + * + * Parent Class: ScoreObjective + */ +m.getName.ScoreObjective = "func_96679_b" + +m.getID = {} +/** + * + * + * Parent Class: AttributeModifier + */ +m.getID.AttributeModifier = "func_111167_a" +/** + * "Returns an integer that represents the state of the world border. Growing + * + * Parent Class: EnumBorderStatus + */ +m.getID.EnumBorderStatus = "func_177766_a" +/** + * Returns the ID of this game type + * + * Parent Class: WorldSettings$GameType + */ +m.getID.WorldSettings$GameType = "func_77148_a" + +/** + * @see #isSaved + * + * Parent Class: AttributeModifier + */ +m.setSaved = "func_111168_a" +/** + * + * + * Parent Class: AttributeModifier + */ +m.getOperation = "func_111169_c" +/** + * + * + * Parent Class: EntityAITarget + */ +m.getTargetDistance = "func_111175_f" +/** + * + * + * Parent Class: Potion + */ +m.getAttributeModifierAmount = "func_111183_a" +/** + * Used by potions to register the attribute they modify. + * + * Parent Class: Potion + */ +m.registerPotionAttributeModifier = "func_111184_a" +/** + * + * + * Parent Class: Potion + */ +m.applyAttributesModifiersToEntity = "func_111185_a" +/** + * + * + * Parent Class: Potion + */ +m.getAttributeModifierMap = "func_111186_k" +/** + * + * + * Parent Class: Potion + */ +m.removeAttributesModifiersFromEntity = "func_111187_a" +/** + * "Sends the entity metadata (DataWatcher) and attributes to all players tracking this entity + * + * Parent Class: EntityTrackerEntry + */ +m.sendMetadataToAllAssociatedPlayers = "func_111190_b" +/** + * This method currently only increases chunk inhabited time. Extension is possible in next versions + * + * Parent Class: PlayerManager$PlayerInstance + */ +m.processChunk = "func_111194_a" +/** + * Increases chunk inhabited time every 8000 ticks + * + * Parent Class: PlayerManager$PlayerInstance + */ +m.increaseInhabitedTime = "func_111196_a" +/** + * "Gets a map of item attribute modifiers + * + * Parent Class: Item + */ +m.getItemAttributeModifiers = "func_111205_h" +/** + * "Tries to get an Item by it's name (e.g. minecraft:apple) or a String representation of a numerical ID. If both fail + * + * Parent Class: Item + */ +m.getByNameOrId = "func_111206_d" +/** + * "Returns true if the item can be used on the given entity + * + * Parent Class: Item + */ +m.itemInteractionForEntity = "func_111207_a" +/** + * Returns the enchantment types relevant to this tab + * + * Parent Class: CreativeTabs + */ +m.getRelevantEnchantmentTypes = "func_111225_m" +/** + * + * + * Parent Class: CreativeTabs + */ +m.hasRelevantEnchantmentType = "func_111226_a" +/** + * Sets the enchantment types for populating this tab with enchanting books + * + * Parent Class: CreativeTabs + */ +m.setRelevantEnchantmentTypes = "func_111229_a" +/** + * "Actualy only call when we want to render the white square effect over the slots. Return always True + * + * Parent Class: Slot + */ +m.canBeHovered = "func_111238_b" +/** + * "Creates an NBTTagList from a BaseAttributeMap + * + * Parent Class: SharedMonsterAttributes + */ +m.writeBaseAttributeMapToNBT = "func_111257_a" +/** + * + * + * Parent Class: SharedMonsterAttributes + */ +m.applyModifiersToAttributeInstance = "func_111258_a" +/** + * Creates an AttributeModifier from an NBTTagCompound + * + * Parent Class: SharedMonsterAttributes + */ +m.readAttributeModifierFromNBT = "func_111259_a" +/** + * "Creates an NBTTagCompound from an AttributeInstance + * + * Parent Class: SharedMonsterAttributes + */ +m.writeAttributeInstanceToNBT = "func_111261_a" +/** + * Creates an NBTTagCompound from an AttributeModifier + * + * Parent Class: SharedMonsterAttributes + */ +m.writeAttributeModifierToNBT = "func_111262_a" +/** + * Gets the maximum distance that the path finding will search in. + * + * Parent Class: PathNavigate + */ +m.getPathSearchRange = "func_111269_d" +/** + * + * + * Parent Class: AxisAlignedBB + */ +m.union = "func_111270_a" +/** + * + * + * Parent Class: FontRenderer + */ +m.getUnicodePageLocation = "func_111271_a" +/** + * + * + * Parent Class: FontRenderer + */ +m.readFontTexture = "func_111272_d" +/** + * + * + * Parent Class: ItemStack + */ +m.interactWithEntity = "func_111282_a" +/** + * Gets the attribute modifiers for this ItemStack. + * Will check for an NBT tag list containing modifiers for the stack. + * + * Parent Class: ItemStack + */ +m.getAttributeModifiers = "func_111283_C" +/** + * + * + * Parent Class: Session + */ +m.getUsername = "func_111285_a" +/** + * + * + * Parent Class: Session + */ +m.getSessionID = "func_111286_b" +/** + * + * + * Parent Class: DedicatedServer + */ +m.setGuiEnabled = "func_120011_ar" +/** + * Creates the server GUI and sets it visible for the user. + * + * Parent Class: MinecraftServerGui + */ +m.createServerGui = "func_120016_a" +/** + * + * + * Parent Class: MinecraftServerGui + */ +m.getLogComponent = "func_120018_d" +/** + * Generates new StatsComponent and returns it. + * + * Parent Class: MinecraftServerGui + */ +m.getStatsComponent = "func_120019_b" +/** + * Generates new PlayerListComponent and returns it. + * + * Parent Class: MinecraftServerGui + */ +m.getPlayerListComponent = "func_120020_c" +/** + * "gets the current fullness of the moon expressed as a float between 1.0 and 0.0 + * + * Parent Class: World + */ +m.getCurrentMoonPhaseFactor = "func_130001_d" +/** + * First layer of player interaction + * + * Parent Class: EntityMinecartEmpty + */ +m.interactFirst = "func_130002_c" +m.getOriginX = {} +/** + * "Returns the X position of this icon on its texture sheet + * + * Parent Class: TextureAtlasSprite + */ +m.getOriginX.TextureAtlasSprite = "func_130010_a" +/** + * + * + * Parent Class: Stitcher$Slot + */ +m.getOriginX.Stitcher$Slot = "func_94186_b" + +/** + * + * + * Parent Class: EntityLivingBase + */ +m.setLastAttacker = "func_130011_c" +/** + * "Get the world + * + * Parent Class: EntityMinecartCommandBlock$1 + */ +m.getEntityWorld = "func_130014_f_" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getCurrentTimeMillis = "func_130071_aq" +/** + * + * + * Parent Class: AnimationMetadataSection + */ +m.getAnimationFrame = "func_130072_d" +/** + * + * + * Parent Class: AnimationMetadataSection + */ +m.getFrameIndexSet = "func_130073_e" +/** + * + * + * Parent Class: IResourcePack + */ +m.getPackName = "func_130077_b" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.hasAnimationMetadata = "func_130098_m" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.allocateFrameTextureData = "func_130099_d" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.resetSprite = "func_130102_n" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.clearFramesTextureData = "func_130103_l" +/** + * Returns the saved value of System#currentTimeMillis when the game started + * + * Parent Class: PlayerUsageSnooper + */ +m.getMinecraftStartTimeMillis = "func_130105_g" +/** + * + * + * Parent Class: Minecraft + */ +m.getLanguageManager = "func_135016_M" +m.getLanguages = {} +/** + * + * + * Parent Class: LanguageMetadataSection + */ +m.getLanguages.LanguageMetadataSection = "func_135018_a" +/** + * + * + * Parent Class: LanguageManager + */ +m.getLanguages.LanguageManager = "func_135040_d" + +/** + * Loads the locale data for the list of resources. + * + * Parent Class: Locale + */ +m.loadLocaleData = "func_135028_a" +/** + * "For each domain $D and language $L + * + * Parent Class: Locale + */ +m.loadLocaleDataFiles = "func_135022_a" +/** + * "Calls String.format(translateKey(key) + * + * Parent Class: Locale + */ +m.formatMessage = "func_135023_a" +/** + * + * + * Parent Class: Locale + */ +m.checkUnicode = "func_135024_b" +m.isUnicode = {} +/** + * + * + * Parent Class: Locale + */ +m.isUnicode.Locale = "func_135025_a" +/** + * + * + * Parent Class: Minecraft + */ +m.isUnicode.Minecraft = "func_152349_b" + +/** + * "Returns the translation + * + * Parent Class: Locale + */ +m.translateKeyPrivate = "func_135026_c" +/** + * + * + * Parent Class: Language + */ +m.getLanguageCode = "func_135034_a" +/** + * + * + * Parent Class: Language + */ +m.isBidirectional = "func_135035_b" +/** + * + * + * Parent Class: LanguageManager + */ +m.getCurrentLanguage = "func_135041_c" +/** + * + * + * Parent Class: LanguageManager + */ +m.isCurrentLocaleUnicode = "func_135042_a" +/** + * + * + * Parent Class: LanguageManager + */ +m.parseLanguageMetadata = "func_135043_a" +/** + * + * + * Parent Class: LanguageManager + */ +m.isCurrentLanguageBidirectional = "func_135044_b" +/** + * + * + * Parent Class: LanguageManager + */ +m.setCurrentLanguage = "func_135045_a" +/** + * + * + * Parent Class: I18n + */ +m.setLocale = "func_135051_a" +m.format = {} +/** + * "format(a + * + * Parent Class: I18n + */ +m.format.I18n = "func_135052_a" +/** + * Formats a given stat for human consumption. + * + * Parent Class: IStatType + */ +m.format.IStatType = "func_75843_a" +/** + * + * + * Parent Class: StatBase + */ +m.format.StatBase = "func_75968_a" + +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +m.getAllResources = "func_135056_b" +/** + * + * + * Parent Class: IResourcePack + */ +m.getPackMetadata = "func_135058_a" +/** + * Replaces all the current instance's translations with the ones that are passed in. + * + * Parent Class: StringTranslate + */ +m.replaceWith = "func_135063_a" +/** + * Tries to look up a translation for the given key; spits back the key if no result was found. + * + * Parent Class: StringTranslate + */ +m.tryTranslateKey = "func_135064_c" +/** + * Clear any custom name set for this ItemStack + * + * Parent Class: ItemStack + */ +m.clearCustomName = "func_135074_t" +/** + * + * + * Parent Class: GuiMainMenu + */ +m.switchToRealms = "func_140005_i" +/** + * + * + * Parent Class: EntityHanging + */ +m.shouldSetPosAfterLoading = "func_142008_O" +/** + * Returns true if the entity is on a specific team. + * + * Parent Class: EntityLivingBase + */ +m.isOnTeam = "func_142012_a" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.getLastAttackerTime = "func_142013_aG" +/** + * + * + * Parent Class: EntityTameable + */ +m.isOnSameTeam = "func_142014_c" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.getRevengeTimer = "func_142015_aE" +/** + * + * + * Parent Class: EntityWolf + */ +m.shouldAttackEntity = "func_142018_a" +/** + * + * + * Parent Class: EntityPlayerSP + */ +m.getClientBrand = "func_142021_k" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +m.removeAllModifiers = "func_142049_d" +m.formatString = {} +/** + * + * + * Parent Class: Team + */ +m.formatString.Team = "func_142053_d" +/** + * Formats the strings based on 'IStatStringFormat' interface. + * + * @param str The String to format + * + * Parent Class: IStatStringFormat + */ +m.formatString.IStatStringFormat = "func_74535_a" + +/** + * Same as == + * + * Parent Class: Team + */ +m.isSameTeam = "func_142054_a" +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.markPlayerActive = "func_143004_u" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setPlayerIdleTimeout = "func_143006_e" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getMaxPlayerIdleMinutes = "func_143007_ar" +/** + * "Reads and sets structure base data (boundingbox + * + * Parent Class: StructureComponent + */ +m.readStructureBaseNBT = "func_143009_a" +/** + * "Writes structure base data (id + * + * Parent Class: StructureComponent + */ +m.createStructureBaseNBT = "func_143010_b" +/** + * (abstract) Helper method to read subclass data from NBT + * + * Parent Class: StructureVillagePieces$Village + */ +m.readStructureFromNBT = "func_143011_b" +/** + * (abstract) Helper method to write subclass data to NBT + * + * Parent Class: StructureVillagePieces$Village + */ +m.writeStructureToNBT = "func_143012_a" +/** + * + * + * Parent Class: StructureVillagePieces + */ +m.registerVillagePieces = "func_143016_a" +m.readFromNBT = {} +/** + * + * + * Parent Class: MapGenVillage$Start + */ +m.readFromNBT.MapGenVillage$Start = "func_143017_b" +/** + * + * + * Parent Class: TileEntityPiston + */ +m.readFromNBT.TileEntityPiston = "func_145839_a" +/** + * Reads the entity from NBT (calls an abstract helper method to read specialized data) + * + * Parent Class: Entity + */ +m.readFromNBT.Entity = "func_70020_e" +/** + * Reads from the given tag list and fills the slots in the inventory with the correct items. + * + * @param nbtTagListIn tagList to read from + * + * Parent Class: InventoryPlayer + */ +m.readFromNBT.InventoryPlayer = "func_70443_b" +/** + * reads in data from the NBTTagCompound into this MapDataBase + * + * Parent Class: VillageCollection + */ +m.readFromNBT.VillageCollection = "func_76184_a" +/** + * Read the stack fields from a NBT object. + * + * Parent Class: ItemStack + */ +m.readFromNBT.ItemStack = "func_77963_c" +/** + * Set defined game rules from NBT. + * + * Parent Class: GameRules + */ +m.readFromNBT.GameRules = "func_82768_a" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +m.readFromNBT.MobSpawnerBaseLogic = "func_98270_a" + +/** + * + * + * Parent Class: StructureStart + */ +m.getChunkPosZ = "func_143018_f" +/** + * + * + * Parent Class: StructureStart + */ +m.getChunkPosX = "func_143019_e" +/** + * + * + * Parent Class: StructureStart + */ +m.readStructureComponentsFromNBT = "func_143020_a" +/** + * + * + * Parent Class: StructureStart + */ +m.writeStructureComponentsToNBT = "func_143021_a" +m.writeToNBT = {} +/** + * + * + * Parent Class: MapGenVillage$Start + */ +m.writeToNBT.MapGenVillage$Start = "func_143022_a" +/** + * + * + * Parent Class: TileEntityPiston + */ +m.writeToNBT.TileEntityPiston = "func_145841_b" +/** + * + * + * Parent Class: Rotations + */ +m.writeToNBT.Rotations = "func_179414_a" +/** + * Save the entity to NBT (calls an abstract helper method to write extra data) + * + * Parent Class: Entity + */ +m.writeToNBT.Entity = "func_70109_d" +/** + * "Writes the inventory out as a list of compound tags. This is where the slot indices are used (+100 for armor + * + * Parent Class: InventoryPlayer + */ +m.writeToNBT.InventoryPlayer = "func_70442_a" +/** + * "write data to NBTTagCompound from this MapDataBase + * + * Parent Class: VillageCollection + */ +m.writeToNBT.VillageCollection = "func_76187_b" +/** + * Write the stack fields to a NBT object. Return the new NBT object. + * + * Parent Class: ItemStack + */ +m.writeToNBT.ItemStack = "func_77955_b" +/** + * Return the defined game rules as NBT. + * + * Parent Class: GameRules + */ +m.writeToNBT.GameRules = "func_82770_a" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +m.writeToNBT.MobSpawnerBaseLogic = "func_98280_b" + +/** + * + * + * Parent Class: MapGenVillage + */ +m.getStructureName = "func_143025_a" +/** + * + * + * Parent Class: MapGenStructure + */ +m.setStructureStart = "func_143026_a" +/** + * + * + * Parent Class: MapGenStructure + */ +m.initializeStructureData = "func_143027_a" +/** + * + * + * Parent Class: MapGenStructureIO + */ +m.registerStructureComponent = "func_143031_a" +/** + * + * + * Parent Class: MapGenStructureIO + */ +m.getStructureComponent = "func_143032_b" +/** + * + * + * Parent Class: MapGenStructureIO + */ +m.getStructureStartName = "func_143033_a" +/** + * + * + * Parent Class: MapGenStructureIO + */ +m.registerStructure = "func_143034_b" +m.getStructureStart = {} +/** + * + * + * Parent Class: MapGenStructureIO + */ +m.getStructureStart.MapGenStructureIO = "func_143035_a" +/** + * + * + * Parent Class: MapGenVillage + */ +m.getStructureStart.MapGenVillage = "func_75049_b" + +/** + * + * + * Parent Class: MapGenStructureIO + */ +m.getStructureComponentName = "func_143036_a" +m.getTagCompound = {} +/** + * + * + * Parent Class: MapGenStructureData + */ +m.getTagCompound.MapGenStructureData = "func_143041_a" +/** + * + * + * Parent Class: S49PacketUpdateEntityNBT + */ +m.getTagCompound.S49PacketUpdateEntityNBT = "func_179763_a" +/** + * Returns the NBTTagCompound of the ItemStack. + * + * Parent Class: ItemStack + */ +m.getTagCompound.ItemStack = "func_77978_p" + +/** + * + * + * Parent Class: MapGenStructureData + */ +m.formatChunkCoords = "func_143042_b" +/** + * "Writes the NBT tag of an instance of this structure type to the internal NBT tag + * + * Parent Class: MapGenStructureData + */ +m.writeInstance = "func_143043_a" +/** + * + * + * Parent Class: ComponentScatteredFeaturePieces + */ +m.registerScatteredFeaturePieces = "func_143045_a" +/** + * + * + * Parent Class: StructureStrongholdPieces + */ +m.registerStrongholdPieces = "func_143046_a" +/** + * + * + * Parent Class: StructureMineshaftPieces + */ +m.registerStructurePieces = "func_143048_a" +/** + * + * + * Parent Class: StructureNetherBridgePieces + */ +m.registerNetherFortressPieces = "func_143049_a" +/** + * Send a chat message to the CommandSender + * + * Parent Class: Entity + */ +m.addChatMessage = "func_145747_a" +m.getDisplayName = {} +/** + * Get the formatted ChatComponent that will be used for the sender's username in chat + * + * Parent Class: InventoryCraftResult + */ +m.getDisplayName.InventoryCraftResult = "func_145748_c_" +/** + * + * + * Parent Class: S3EPacketTeams + */ +m.getDisplayName.S3EPacketTeams = "func_149306_d" +/** + * + * + * Parent Class: VertexFormatElement$EnumUsage + */ +m.getDisplayName.VertexFormatElement$EnumUsage = "func_177384_a" +/** + * + * + * Parent Class: VertexFormatElement$EnumType + */ +m.getDisplayName.VertexFormatElement$EnumType = "func_177396_b" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +m.getDisplayName.NetworkPlayerInfo = "func_178854_k" +/** + * + * + * Parent Class: S38PacketPlayerListItem$AddPlayerData + */ +m.getDisplayName.S38PacketPlayerListItem$AddPlayerData = "func_179961_d" +/** + * return the display name of the save + * + * Parent Class: SaveFormatComparator + */ +m.getDisplayName.SaveFormatComparator = "func_75788_b" +/** + * returns the display name of the itemstack + * + * Parent Class: ItemStack + */ +m.getDisplayName.ItemStack = "func_82833_r" +/** + * + * + * Parent Class: ScoreObjective + */ +m.getDisplayName.ScoreObjective = "func_96678_d" + +/** + * Returns the lastOutput. + * + * Parent Class: CommandBlockLogic + */ +m.getLastOutput = "func_145749_h" +/** + * + * + * Parent Class: CommandBlockLogic + */ +m.setLastOutput = "func_145750_b" +/** + * Sets the command. + * + * Parent Class: TileEntityCommandBlock$1 + */ +m.setCommand = "func_145752_a" +/** + * Returns the command of the command block. + * + * Parent Class: CommandBlockLogic + */ +m.getCommand = "func_145753_i" +m.setName = {} +/** + * + * + * Parent Class: CommandBlockLogic + */ +m.setName.CommandBlockLogic = "func_145754_b" +/** + * + * + * Parent Class: TileEntityBrewingStand + */ +m.setName.TileEntityBrewingStand = "func_145937_a" +/** + * + * + * Parent Class: TileEntityBeacon + */ +m.setName.TileEntityBeacon = "func_145999_a" +/** + * Sets the enchantment name + * + * Parent Class: Enchantment + */ +m.setName.Enchantment = "func_77322_b" + +/** + * + * + * Parent Class: CommandBlockLogic + */ +m.trigger = "func_145755_a" +/** + * + * + * Parent Class: EntityMinecartCommandBlock$1 + */ +m.updateCommand = "func_145756_e" +/** + * Stores data to NBT format. + * + * Parent Class: CommandBlockLogic + */ +m.writeDataToNBT = "func_145758_a" +/** + * Reads NBT formatting and stored data into variables. + * + * Parent Class: CommandBlockLogic + */ +m.readDataFromNBT = "func_145759_b" +/** + * returns the successCount int. + * + * Parent Class: CommandBlockLogic + */ +m.getSuccessCount = "func_145760_g" +/** + * + * + * Parent Class: Entity + */ +m.setEntityId = "func_145769_d" +/** + * + * + * Parent Class: Entity + */ +m.isInRangeToRender3d = "func_145770_h" +/** + * + * + * Parent Class: Entity + */ +m.pushOutOfBlocks = "func_145771_j" +/** + * Return whether this entity should NOT trigger a pressure plate or a tripwire. + * + * Parent Class: EntityBat + */ +m.doesEntityNotTriggerPressurePlate = "func_145773_az" +/** + * + * + * Parent Class: Entity + */ +m.doBlockCollisions = "func_145775_I" +/** + * + * + * Parent Class: EntityPlayer + */ +m.getSwimSound = "func_145776_H" +/** + * + * + * Parent Class: EntityPlayer + */ +m.getSplashSound = "func_145777_O" +/** + * + * + * Parent Class: Entity + */ +m.dropItemWithOffset = "func_145778_a" +m.dropItem = {} +/** + * + * + * Parent Class: Entity + */ +m.dropItem.Entity = "func_145779_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.dropItem.EntityPlayer = "func_146097_a" + +/** + * + * + * Parent Class: EntitySlime + */ +m.onDataWatcherUpdate = "func_145781_i" +m.getEntityId = {} +/** + * + * + * Parent Class: Entity + */ +m.getEntityId.Entity = "func_145782_y" +/** + * + * + * Parent Class: S2DPacketOpenWindow + */ +m.getEntityId.S2DPacketOpenWindow = "func_148897_h" +/** + * + * + * Parent Class: S1EPacketRemoveEntityEffect + */ +m.getEntityId.S1EPacketRemoveEntityEffect = "func_149076_c" +/** + * + * + * Parent Class: S01PacketJoinGame + */ +m.getEntityId.S01PacketJoinGame = "func_149197_c" +/** + * + * + * Parent Class: S1CPacketEntityMetadata + */ +m.getEntityId.S1CPacketEntityMetadata = "func_149375_d" +/** + * + * + * Parent Class: S1BPacketEntityAttach + */ +m.getEntityId.S1BPacketEntityAttach = "func_149403_d" +/** + * + * + * Parent Class: S1DPacketEntityEffect + */ +m.getEntityId.S1DPacketEntityEffect = "func_149426_d" +/** + * + * + * Parent Class: S20PacketEntityProperties + */ +m.getEntityId.S20PacketEntityProperties = "func_149442_c" +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +m.getEntityId.S18PacketEntityTeleport = "func_149451_c" + +/** + * + * + * Parent Class: EntityItem + */ +m.setOwner = "func_145797_a" +m.getOwner = {} +/** + * + * + * Parent Class: EntityItem + */ +m.getOwner.EntityItem = "func_145798_i" +/** + * + * + * Parent Class: EntityTameable + */ +m.getOwner.EntityTameable = "func_70902_q" + +/** + * + * + * Parent Class: EntityItem + */ +m.setThrower = "func_145799_b" +m.getThrower = {} +/** + * + * + * Parent Class: EntityItem + */ +m.getThrower.EntityItem = "func_145800_j" +/** + * + * + * Parent Class: EntityThrowable + */ +m.getThrower.EntityThrowable = "func_85052_h" + +/** + * + * + * Parent Class: EntityFallingBlock + */ +m.setHurtEntities = "func_145806_a" +/** + * + * + * Parent Class: EntityFallingBlock + */ +m.getWorldObj = "func_145807_e" +/** + * Returns true if this thing is named + * + * Parent Class: InventoryCraftResult + */ +m.hasCustomName = "func_145818_k_" +m.getCommandBlockLogic = {} +/** + * + * + * Parent Class: EntityMinecartCommandBlock + */ +m.getCommandBlockLogic.EntityMinecartCommandBlock = "func_145822_e" +/** + * + * + * Parent Class: TileEntityCommandBlock + */ +m.getCommandBlockLogic.TileEntityCommandBlock = "func_145993_a" + +m.addMapping = {} +/** + * Adds a new two-way mapping between the class and its string name in both hashmaps. + * + * Parent Class: TileEntity + */ +m.addMapping.TileEntity = "func_145826_a" +/** + * adds a mapping between Entity classes and both a string representation and an ID + * + * Parent Class: EntityList + */ +m.addMapping.EntityList = "func_75618_a" + +/** + * Creates a new entity and loads its data from the specified NBT. + * + * Parent Class: TileEntity + */ +m.createAndLoadEntity = "func_145827_c" +/** + * + * + * Parent Class: TileEntity + */ +m.addInfoToCrashReport = "func_145828_a" +/** + * validates a tile entity + * + * Parent Class: TileEntity + */ +m.validate = "func_145829_t" +/** + * Returns true if the worldObj isn't null. + * + * Parent Class: TileEntity + */ +m.hasWorldObj = "func_145830_o" +m.getWorld = {} +/** + * Returns the worldObj for this tileEntity. + * + * Parent Class: EntityMinecartHopper + */ +m.getWorld.EntityMinecartHopper = "func_145831_w" +/** + * + * + * Parent Class: Chunk + */ +m.getWorld.Chunk = "func_177412_p" +/** + * + * + * Parent Class: TileEntitySpecialRenderer + */ +m.getWorld.TileEntitySpecialRenderer = "func_178459_a" +/** + * + * + * Parent Class: EntityDragon + */ +m.getWorld.EntityDragon = "func_82194_d" +/** + * + * + * Parent Class: ILocation + */ +m.getWorld.ILocation = "func_82618_k" + +m.getBlockMetadata = {} +/** + * + * + * Parent Class: TileEntityPiston + */ +m.getBlockMetadata.TileEntityPiston = "func_145832_p" +/** + * Return the metadata corresponding to the given coordinates inside a chunk. + * + * Parent Class: Chunk + */ +m.getBlockMetadata.Chunk = "func_76628_c" +/** + * + * + * Parent Class: BlockSourceImpl + */ +m.getBlockMetadata.BlockSourceImpl = "func_82620_h" + +/** + * + * + * Parent Class: TileEntity + */ +m.getMaxRenderDistanceSquared = "func_145833_n" +/** + * Sets the worldObj for this tileEntity. + * + * Parent Class: TileEntity + */ +m.setWorldObj = "func_145834_a" +m.getDistanceSq = {} +/** + * Returns the square of the distance between this entity and the passed in coordinates. + * + * Parent Class: TileEntity + */ +m.getDistanceSq.TileEntity = "func_145835_a" +/** + * "Gets the squared distance to the position. Args: x + * + * Parent Class: Entity + */ +m.getDistanceSq.Entity = "func_70092_e" +/** + * + * + * Parent Class: WorldRenderer + */ +m.getDistanceSq.WorldRenderer = "func_181665_a" + +/** + * + * + * Parent Class: TileEntityChest + */ +m.updateContainingBlockInfo = "func_145836_u" +/** + * + * + * Parent Class: TileEntity + */ +m.isInvalid = "func_145837_r" +m.getBlockType = {} +/** + * Gets the block type at the location of this entity (client-only). + * + * Parent Class: TileEntity + */ +m.getBlockType.TileEntity = "func_145838_q" +/** + * + * + * Parent Class: S24PacketBlockAction + */ +m.getBlockType.S24PacketBlockAction = "func_148868_c" +/** + * Get the Type of this flower (Yellow/Red) + * + * Parent Class: BlockYellowFlower + */ +m.getBlockType.BlockYellowFlower = "func_176495_j" +/** + * + * + * Parent Class: BlockFlower$EnumFlowerType + */ +m.getBlockType.BlockFlower$EnumFlowerType = "func_176964_a" + +/** + * + * + * Parent Class: TileEntityMobSpawner + */ +m.receiveClientEvent = "func_145842_c" +/** + * invalidates a tile entity + * + * Parent Class: TileEntityEnderChest + */ +m.invalidate = "func_145843_s" +/** + * Allows for a specialized description packet to be created. This is often used to sync tile entity data from the server to the client easily. For example this is used by signs to synchronise the text to be displayed. + * + * Parent Class: TileEntitySkull + */ +m.getDescriptionPacket = "func_145844_m" +m.getRecord = {} +/** + * + * + * Parent Class: BlockJukebox$TileEntityJukebox + */ +m.getRecord.BlockJukebox$TileEntityJukebox = "func_145856_a" +/** + * Return the record item corresponding to the given name. + * + * Parent Class: ItemRecord + */ +m.getRecord.ItemRecord = "func_150926_b" + +/** + * + * + * Parent Class: BlockJukebox$TileEntityJukebox + */ +m.setRecord = "func_145857_a" +m.getProgress = {} +/** + * Get interpolated progress value (between lastProgress and progress) given the fractional time between ticks as an argument + * + * Parent Class: TileEntityPiston + */ +m.getProgress.TileEntityPiston = "func_145860_a" +/** + * + * + * Parent Class: S25PacketBlockBreakAnim + */ +m.getProgress.S25PacketBlockBreakAnim = "func_148846_g" + +/** + * + * + * Parent Class: TileEntityPiston + */ +m.launchWithSlimeBlock = "func_145863_a" +/** + * "removes a piston's tile entity (and if the piston is moving + * + * Parent Class: TileEntityPiston + */ +m.clearPistonTileEntity = "func_145866_f" +/** + * + * + * Parent Class: TileEntityPiston + */ +m.shouldPistonHeadBeRendered = "func_145867_d" +/** + * Returns true if a piston is extending + * + * Parent Class: TileEntityPiston + */ +m.isExtending = "func_145868_b" +/** + * change pitch by -> (currentPitch + 1) % 25 + * + * Parent Class: TileEntityNote + */ +m.changePitch = "func_145877_a" +/** + * + * + * Parent Class: TileEntityMobSpawner + */ +m.getSpawnerBaseLogic = "func_145881_a" +/** + * + * + * Parent Class: TileEntityHopper + */ +m.transferItemsOut = "func_145883_k" +/** + * Returns the IInventory for the specified hopper + * + * Parent Class: TileEntityHopper + */ +m.getHopperInventory = "func_145884_b" +/** + * + * + * Parent Class: TileEntityHopper + */ +m.updateHopper = "func_145887_i" +/** + * + * + * Parent Class: TileEntityHopper + */ +m.isOnTransferCooldown = "func_145888_j" +/** + * + * + * Parent Class: TileEntityHopper + */ +m.captureDroppedItems = "func_145891_a" +/** + * Returns the IInventory (if applicable) of the TileEntity at the specified position + * + * Parent Class: TileEntityHopper + */ +m.getInventoryAtPosition = "func_145893_b" +/** + * + * + * Parent Class: TileEntityHopper + */ +m.canCombine = "func_145894_a" +/** + * Returns the IInventory that this hopper is pointing into + * + * Parent Class: TileEntityHopper + */ +m.getInventoryForHopperTransfer = "func_145895_l" +/** + * + * + * Parent Class: TileEntityHopper + */ +m.setTransferCooldown = "func_145896_c" +/** + * Attempts to place the passed EntityItem's stack into the inventory using as many slots as possible. Returns false if the stackSize of the drop was not depleted. + * + * Parent Class: TileEntityHopper + */ +m.putDropInInventoryAllSlots = "func_145898_a" +/** + * + * + * Parent Class: TileEntitySkull + */ +m.setSkullRotation = "func_145903_a" +/** + * + * + * Parent Class: TileEntitySkull + */ +m.getSkullType = "func_145904_a" +/** + * + * + * Parent Class: TileEntitySkull + */ +m.getSkullRotation = "func_145906_b" +m.getPlayer = {} +/** + * + * + * Parent Class: TileEntitySign + */ +m.getPlayer.TileEntitySign = "func_145911_b" +/** + * + * + * Parent Class: S0APacketUseBed + */ +m.getPlayer.S0APacketUseBed = "func_149091_a" +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +m.getPlayer.S0CPacketSpawnPlayer = "func_179819_c" +/** + * + * + * Parent Class: CommandBase + */ +m.getPlayer.CommandBase = "func_82359_c" + +m.setPlayer = {} +/** + * + * + * Parent Class: TileEntitySign + */ +m.setPlayer.TileEntitySign = "func_145912_a" +/** + * + * + * Parent Class: CommandScoreboard + */ +m.setPlayer.CommandScoreboard = "func_147197_m" + +/** + * Sets the sign's isEditable flag to the specified parameter. + * + * Parent Class: TileEntitySign + */ +m.setEditable = "func_145913_a" +/** + * + * + * Parent Class: TileEntitySign + */ +m.getIsEditable = "func_145914_a" +/** + * + * + * Parent Class: TileEntityBrewingStand + */ +m.canBrew = "func_145934_k" +/** + * The result of brewing a potion of the specified damage value with an ingredient itemstack. + * + * Parent Class: TileEntityBrewingStand + */ +m.getPotionResult = "func_145936_c" +/** + * + * + * Parent Class: TileEntityBrewingStand + */ +m.brewPotions = "func_145940_l" +/** + * "Returns true if the furnace can smelt an item + * + * Parent Class: TileEntityFurnace + */ +m.canSmelt = "func_145948_k" +/** + * Turn one item from the furnace source stack into the appropriate smelted item in the furnace result stack + * + * Parent Class: TileEntityFurnace + */ +m.smeltItem = "func_145949_j" +m.isBurning = {} +/** + * + * + * Parent Class: TileEntityFurnace + */ +m.isBurning.TileEntityFurnace = "func_174903_a" +/** + * Returns true if the entity is on fire. Used by render to add the fire effect on rendering. + * + * Parent Class: EntityWitherSkull + */ +m.isBurning.EntityWitherSkull = "func_70027_ad" + +/** + * + * + * Parent Class: TileEntityFurnace + */ +m.setCustomInventoryName = "func_145951_a" +/** + * "Returns the number of ticks that the supplied fuel item will keep the furnace burning + * + * Parent Class: TileEntityFurnace + */ +m.getItemBurnTime = "func_145952_a" +/** + * + * + * Parent Class: TileEntityFurnace + */ +m.isItemFuel = "func_145954_b" +/** + * + * + * Parent Class: TileEntityFlowerPot + */ +m.setFlowerPotData = "func_145964_a" +/** + * + * + * Parent Class: TileEntityFlowerPot + */ +m.getFlowerPotItem = "func_145965_a" +/** + * + * + * Parent Class: TileEntityFlowerPot + */ +m.getFlowerPotData = "func_145966_b" +/** + * + * + * Parent Class: TileEntityEnderChest + */ +m.openChest = "func_145969_a" +/** + * + * + * Parent Class: TileEntityEnderChest + */ +m.closeChest = "func_145970_b" +/** + * + * + * Parent Class: TileEntityEnderChest + */ +m.canBeUsed = "func_145971_a" +/** + * Performs the check for adjacent chests to determine if this chest is double or not. + * + * Parent Class: TileEntityChest + */ +m.checkForAdjacentChests = "func_145979_i" +/** + * + * + * Parent Class: TileEntityChest + */ +m.getChestType = "func_145980_j" +/** + * + * + * Parent Class: TileEntityComparator + */ +m.setOutputSignal = "func_145995_a" +/** + * + * + * Parent Class: TileEntityComparator + */ +m.getOutputSignal = "func_145996_a" +/** + * + * + * Parent Class: TileEntityBeacon + */ +m.addEffectsToPlayers = "func_146000_x" +/** + * + * + * Parent Class: TileEntityBeacon + */ +m.shouldBeamRender = "func_146002_i" +/** + * + * + * Parent Class: TileEntityBeacon + */ +m.updateSegmentColors = "func_146003_y" +/** + * + * + * Parent Class: TileEntityDispenser + */ +m.getDispenseSlot = "func_146017_i" +/** + * Add the given ItemStack to this Dispenser. Return the Slot the Item was placed in or -1 if no free slot is available. + * + * Parent Class: TileEntityDispenser + */ +m.addItemStack = "func_146019_a" +m.getStrVsBlock = {} +/** + * + * + * Parent Class: InventoryPlayer + */ +m.getStrVsBlock.InventoryPlayer = "func_146023_a" +/** + * + * + * Parent Class: Item + */ +m.getStrVsBlock.Item = "func_150893_a" +/** + * + * + * Parent Class: ItemStack + */ +m.getStrVsBlock.ItemStack = "func_150997_a" + +/** + * + * + * Parent Class: InventoryPlayer + */ +m.getInventorySlotContainItemAndDamage = "func_146024_c" +/** + * + * + * Parent Class: InventoryPlayer + */ +m.canHeldItemHarvest = "func_146025_b" +/** + * "removed one item of specified Item from inventory (if it is in a stack + * + * Parent Class: InventoryPlayer + */ +m.consumeInventoryItem = "func_146026_a" +/** + * Checks if a specified Item is inside the inventory + * + * Parent Class: InventoryPlayer + */ +m.hasItem = "func_146028_b" +/** + * + * + * Parent Class: InventoryPlayer + */ +m.getInventorySlotContainItem = "func_146029_c" +/** + * + * + * Parent Class: InventoryPlayer + */ +m.setCurrentItem = "func_146030_a" +/** + * + * + * Parent Class: InventoryEnderChest + */ +m.setChestTileEntity = "func_146031_a" +/** + * + * + * Parent Class: EntityFishHook + */ +m.getFishingResult = "func_146033_f" +/** + * + * + * Parent Class: EntityFishHook + */ +m.handleHookRetraction = "func_146034_e" +/** + * + * + * Parent Class: EntityFishHook + */ +m.handleHookCasting = "func_146035_c" +/** + * + * + * Parent Class: EntityItemFrame + */ +m.dropItemOrSelf = "func_146065_b" +/** + * Entity won't drop items or experience points if this returns false + * + * Parent Class: EntityMob + */ +m.canDropLoot = "func_146066_aG" +/** + * + * + * Parent Class: EntityPlayer + */ +m.getFallSoundString = "func_146067_o" +/** + * + * + * Parent Class: EntityZombie + */ +m.getDropItem = "func_146068_u" +/** + * Multiplies the height and width by the provided float. + * + * Parent Class: EntityZombie + */ +m.multiplySize = "func_146069_a" +/** + * Sets or removes EntityAIBreakDoor task + * + * Parent Class: EntityZombie + */ +m.setBreakDoorsAItask = "func_146070_a" +/** + * sets the size of the entity to be half of its current size if true. + * + * Parent Class: EntityZombie + */ +m.setChildSize = "func_146071_k" +/** + * + * + * Parent Class: EntityZombie + */ +m.isBreakDoorsTaskSet = "func_146072_bX" +m.explode = {} +/** + * Creates an explosion as determined by this creeper's power and explosion radius. + * + * Parent Class: EntityCreeper + */ +m.explode.EntityCreeper = "func_146077_cc" +/** + * + * + * Parent Class: BlockTNT + */ +m.explode.BlockTNT = "func_180692_a" +/** + * + * + * Parent Class: EntityTNTPrimed + */ +m.explode.EntityTNTPrimed = "func_70515_d" + +/** + * + * + * Parent Class: EntityCreeper + */ +m.hasIgnited = "func_146078_ca" +m.ignite = {} +/** + * + * + * Parent Class: EntityCreeper + */ +m.ignite.EntityCreeper = "func_146079_cb" +/** + * Ignites this TNT cart. + * + * Parent Class: EntityMinecartTNT + */ +m.ignite.EntityMinecartTNT = "func_94105_c" + +/** + * + * + * Parent Class: EntityAnimal + */ +m.setInLove = "func_146082_f" +/** + * + * + * Parent Class: EntityAnimal + */ +m.getPlayerInLove = "func_146083_cb" +/** + * Returns true if given item is horse armor + * + * Parent Class: EntityHorse + */ +m.isArmorItem = "func_146085_a" +/** + * Set horse armor stack (for example: new ItemStack(Items.iron_horse_armor)) + * + * Parent Class: EntityHorse + */ +m.setHorseArmorStack = "func_146086_d" +/** + * Gets a players UUID given their GameProfie + * + * Parent Class: EntityPlayer + */ +m.getUUID = "func_146094_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.openEditCommandBlock = "func_146095_a" +m.canHarvestBlock = {} +/** + * Checks if the player has the ability to harvest a block (checks current inventory item for a tool if necessary) + * + * Parent Class: EntityPlayer + */ +m.canHarvestBlock.EntityPlayer = "func_146099_a" +/** + * Check whether this Item can harvest the given Block + * + * Parent Class: Item + */ +m.canHarvestBlock.Item = "func_150897_b" +/** + * Check whether the given Block can be harvested using this ItemStack. + * + * Parent Class: ItemStack + */ +m.canHarvestBlock.ItemStack = "func_150998_b" + +m.getGameProfile = {} +/** + * Returns the GameProfile for this player + * + * Parent Class: EntityPlayer + */ +m.getGameProfile.EntityPlayer = "func_146103_bH" +/** + * "Get a GameProfile given the MinecraftServer and the player's username. + * + * The UUID of the GameProfile will <b>not</b> be null. If the server is offline + * + * Parent Class: PlayerProfileCache + */ +m.getGameProfile.PlayerProfileCache = "func_152650_a" +/** + * Get the player's GameProfile + * + * Parent Class: PlayerProfileCache$ProfileEntry + */ +m.getGameProfile.PlayerProfileCache$ProfileEntry = "func_152668_a" +/** + * + * + * Parent Class: NetHandlerPlayClient + */ +m.getGameProfile.NetHandlerPlayClient = "func_175105_e" +/** + * Returns the GameProfile for the player represented by this NetworkPlayerInfo instance + * + * Parent Class: NetworkPlayerInfo + */ +m.getGameProfile.NetworkPlayerInfo = "func_178845_a" + +/** + * + * + * Parent Class: EntityPlayer + */ +m.addChatComponentMessage = "func_146105_b" +/** + * + * + * Parent Class: EntityPlayerSP + */ +m.getStatFileWriter = "func_146107_m" +/** + * "Draws a textured rectangle at z = 0. Args: x + * + * Parent Class: Gui + */ +m.drawModalRectWithCustomSizedTexture = "func_146110_a" +/** + * + * + * Parent Class: GuiBeacon$PowerButton + */ +m.drawButtonForegroundLayer = "func_146111_b" +/** + * Draws this button to the screen. + * + * Parent Class: GuiMerchant$MerchantButton + */ +m.drawButton = "func_146112_a" +/** + * + * + * Parent Class: GuiScreenOptionsSounds$Button + */ +m.playPressSound = "func_146113_a" +/** + * "Returns 0 if the button is disabled + * + * Parent Class: GuiScreenOptionsSounds$Button + */ +m.getHoverState = "func_146114_a" +/** + * Whether the mouse cursor is currently over the button. + * + * Parent Class: GuiButton + */ +m.isMouseOver = "func_146115_a" +m.mousePressed = {} +/** + * Returns true if the mouse has been pressed on this control. Equivalent of MouseListener.mousePressed(MouseEvent e). + * + * Parent Class: GuiScreenOptionsSounds$Button + */ +m.mousePressed.GuiScreenOptionsSounds$Button = "func_146116_c" +/** + * Returns true if the mouse has been pressed on this control. + * + * Parent Class: ResourcePackListEntry + */ +m.mousePressed.ResourcePackListEntry = "func_148278_a" + +/** + * + * + * Parent Class: GuiButtonRealmsProxy + */ +m.getButtonWidth = "func_146117_b" +m.mouseReleased = {} +/** + * Fired when the mouse button is released. Equivalent of MouseListener.mouseReleased(MouseEvent e). + * + * Parent Class: GuiScreenOptionsSounds$Button + */ +m.mouseReleased.GuiScreenOptionsSounds$Button = "func_146118_a" +/** + * "Called when a mouse button is released. Args : mouseX + * + * Parent Class: GuiScreenResourcePacks + */ +m.mouseReleased.GuiScreenResourcePacks = "func_146286_b" +/** + * + * + * Parent Class: GuiListExtended + */ +m.mouseReleased.GuiListExtended = "func_148181_b" +/** + * "Fired when the mouse button is released. Arguments: index + * + * Parent Class: ResourcePackListEntry + */ +m.mouseReleased.ResourcePackListEntry = "func_148277_b" + +/** + * Fired when the mouse button is dragged. Equivalent of MouseListener.mouseDragged(MouseEvent e). + * + * Parent Class: GuiScreenOptionsSounds$Button + */ +m.mouseDragged = "func_146119_b" +/** + * + * + * Parent Class: GuiOptionButton + */ +m.returnEnumOptions = "func_146136_c" +/** + * "returns a pointer to the persistant Chat GUI + * + * Parent Class: GuiIngame + */ +m.getChatGUI = "func_146158_b" +/** + * + * + * Parent Class: GuiLabel + */ +m.drawLabel = "func_146159_a" +/** + * + * + * Parent Class: GuiLabel + */ +m.drawLabelBackground = "func_146160_b" +/** + * "delete the selected text + * + * Parent Class: GuiTextField + */ +m.deleteFromCursor = "func_146175_b" +/** + * returns true if this textbox is visible + * + * Parent Class: GuiTextField + */ +m.getVisible = "func_146176_q" +/** + * Deletes the specified number of words starting at the cursor position. Negative numbers will delete words left of the cursor. + * + * Parent Class: GuiTextField + */ +m.deleteWords = "func_146177_a" +/** + * Increments the cursor counter + * + * Parent Class: GuiTextField + */ +m.updateCursorCounter = "func_146178_a" +m.getText = {} +/** + * Returns the contents of the textbox + * + * Parent Class: GuiTextField + */ +m.getText.GuiTextField = "func_146179_b" +/** + * + * + * Parent Class: GuiCustomizeWorldScreen + */ +m.getText.GuiCustomizeWorldScreen = "func_175318_a" + +m.setText = {} +/** + * Sets the text of the textbox + * + * Parent Class: GuiTextField + */ +m.setText.GuiTextField = "func_146180_a" +/** + * + * + * Parent Class: GuiButtonRealmsProxy + */ +m.setText.GuiButtonRealmsProxy = "func_154311_a" +/** + * Sets the text of the chat + * + * Parent Class: GuiScreen + */ +m.setText.GuiScreen = "func_175274_a" + +/** + * get enable drawing background and outline + * + * Parent Class: GuiTextField + */ +m.getEnableBackgroundDrawing = "func_146181_i" +/** + * Moves the text cursor by a specified number of characters and clears the selection + * + * Parent Class: GuiTextField + */ +m.moveCursorBy = "func_146182_d" +/** + * "gets the position of the nth word. N may be negative + * + * Parent Class: GuiTextField + */ +m.getNthWordFromPos = "func_146183_a" +m.setEnabled = {} +/** + * + * + * Parent Class: GuiTextField + */ +m.setEnabled.GuiTextField = "func_146184_c" +/** + * + * + * Parent Class: GuiSlot + */ +m.setEnabled.GuiSlot = "func_148143_b" +/** + * + * + * Parent Class: GuiButtonRealmsProxy + */ +m.setEnabled.GuiButtonRealmsProxy = "func_154313_b" +/** + * + * + * Parent Class: GlStateManager$BooleanState + */ +m.setEnabled.GlStateManager$BooleanState = "func_179200_b" + +/** + * enable drawing background and outline + * + * Parent Class: GuiTextField + */ +m.setEnableBackgroundDrawing = "func_146185_a" +/** + * "the side of the selection that is not the cursor + * + * Parent Class: GuiTextField + */ +m.getSelectionEnd = "func_146186_n" +/** + * "see @getNthNextWordFromPos() params: N + * + * Parent Class: GuiTextField + */ +m.getNthWordFromCursor = "func_146187_c" +/** + * draws the vertical line cursor in the textbox + * + * Parent Class: GuiTextField + */ +m.drawCursorVertical = "func_146188_c" +m.setVisible = {} +/** + * Sets whether or not this textbox is visible + * + * Parent Class: GuiTextField + */ +m.setVisible.GuiTextField = "func_146189_e" +/** + * + * + * Parent Class: SetVisibility + */ +m.setVisible.SetVisibility = "func_178619_a" + +/** + * sets the position of the cursor to the provided index + * + * Parent Class: GuiTextField + */ +m.setCursorPosition = "func_146190_e" +/** + * "replaces selected text + * + * Parent Class: GuiTextField + */ +m.writeText = "func_146191_b" +m.mouseClicked = {} +/** + * "Args: x + * + * Parent Class: GuiTextField + */ +m.mouseClicked.GuiTextField = "func_146192_a" +/** + * + * + * Parent Class: GuiPageButtonList + */ +m.mouseClicked.GuiPageButtonList = "func_148179_a" +/** + * "Called when the mouse is clicked. Args : mouseX + * + * Parent Class: GuiScreenResourcePacks + */ +m.mouseClicked.GuiScreenResourcePacks = "func_73864_a" + +/** + * Sets the text colour for this textbox (disabled text will not use this colour) + * + * Parent Class: GuiTextField + */ +m.setTextColor = "func_146193_g" +/** + * Draws the textbox + * + * Parent Class: GuiTextField + */ +m.drawTextBox = "func_146194_f" +/** + * Sets focus to this gui element + * + * Parent Class: GuiTextField + */ +m.setFocused = "func_146195_b" +/** + * sets the cursors position to the beginning + * + * Parent Class: GuiTextField + */ +m.setCursorPositionZero = "func_146196_d" +/** + * returns the current position of the cursor + * + * Parent Class: GuiTextField + */ +m.getCursorPosition = "func_146198_h" +/** + * Sets the position of the selection anchor (i.e. position the selection was started at) + * + * Parent Class: GuiTextField + */ +m.setSelectionPos = "func_146199_i" +m.getWidth = {} +/** + * returns the width of the textbox depending on if background drawing is enabled + * + * Parent Class: GuiTextField + */ +m.getWidth.GuiTextField = "func_146200_o" +/** + * + * + * Parent Class: GuiSlotRealmsProxy + */ +m.getWidth.GuiSlotRealmsProxy = "func_154338_k" +/** + * + * + * Parent Class: InventoryCrafting + */ +m.getWidth.InventoryCrafting = "func_174922_i" +/** + * + * + * Parent Class: GuiSimpleScrolledSelectionListProxy + */ +m.getWidth.GuiSimpleScrolledSelectionListProxy = "func_178048_e" +/** + * + * + * Parent Class: Stitcher$Holder + */ +m.getWidth.Stitcher$Holder = "func_94197_a" + +/** + * Call this method from your GuiScreen to process the keys into the textbox + * + * Parent Class: GuiTextField + */ +m.textboxKeyTyped = "func_146201_a" +/** + * sets the cursors position to after the text + * + * Parent Class: GuiTextField + */ +m.setCursorPositionEnd = "func_146202_e" +/** + * + * + * Parent Class: GuiTextField + */ +m.setMaxStringLength = "func_146203_f" +/** + * + * + * Parent Class: GuiTextField + */ +m.setDisabledTextColour = "func_146204_h" +/** + * if true the textbox can lose focus by clicking elsewhere on the screen + * + * Parent Class: GuiTextField + */ +m.setCanLoseFocus = "func_146205_d" +/** + * Getter for the focused field + * + * Parent Class: GuiTextField + */ +m.isFocused = "func_146206_l" +/** + * returns the text between the cursor and selectionEnd + * + * Parent Class: GuiTextField + */ +m.getSelectedText = "func_146207_c" +/** + * returns the maximum number of character that can be contained in this textbox + * + * Parent Class: GuiTextField + */ +m.getMaxStringLength = "func_146208_g" +/** + * + * + * Parent Class: GuiNewChat + */ +m.printChatMessage = "func_146227_a" +/** + * + * + * Parent Class: GuiNewChat + */ +m.getChatWidth = "func_146228_f" +/** + * Scrolls the chat by the given number of lines. + * + * @param amount The amount to scroll + * + * Parent Class: GuiNewChat + */ +m.scroll = "func_146229_b" +/** + * + * + * Parent Class: GuiNewChat + */ +m.drawChat = "func_146230_a" +/** + * Clears the chat. + * + * Parent Class: GuiNewChat + */ +m.clearChatMessages = "func_146231_a" +/** + * + * + * Parent Class: GuiNewChat + */ +m.getLineCount = "func_146232_i" +/** + * + * + * Parent Class: GuiNewChat + */ +m.calculateChatboxWidth = "func_146233_a" +/** + * "prints the ChatComponent to Chat. If the ID is not 0 + * + * Parent Class: GuiNewChat + */ +m.printChatMessageWithOptionalDeletion = "func_146234_a" +m.getChatComponent = {} +/** + * Gets the chat component under the mouse + * + * @param mouseX The x position of the mouse + * @param mouseY The y position of the mouse + * + * Parent Class: GuiNewChat + */ +m.getChatComponent.GuiNewChat = "func_146236_a" +/** + * + * + * Parent Class: S02PacketChat + */ +m.getChatComponent.S02PacketChat = "func_148915_c" +/** + * Get a ChatComponent for this Item's display name that shows this Item on hover + * + * Parent Class: ItemStack + */ +m.getChatComponent.ItemStack = "func_151000_E" +/** + * + * + * Parent Class: ChatLine + */ +m.getChatComponent.ChatLine = "func_151461_a" + +/** + * + * + * Parent Class: GuiNewChat + */ +m.setChatLine = "func_146237_a" +/** + * Gets the list of messages previously sent through the chat GUI + * + * Parent Class: GuiNewChat + */ +m.getSentMessages = "func_146238_c" +/** + * "Adds this string to the list of sent messages + * + * Parent Class: GuiNewChat + */ +m.addToSentMessages = "func_146239_a" +/** + * "Resets the chat scroll (executed when the GUI is closed + * + * Parent Class: GuiNewChat + */ +m.resetScroll = "func_146240_d" +/** + * Returns true if the chat GUI is open + * + * Parent Class: GuiNewChat + */ +m.getChatOpen = "func_146241_e" +/** + * finds and deletes a Chat line by ID + * + * @param id The ChatLine's id to delete + * + * Parent Class: GuiNewChat + */ +m.deleteChatLine = "func_146242_c" +/** + * + * + * Parent Class: GuiNewChat + */ +m.calculateChatboxHeight = "func_146243_b" +/** + * Returns the chatscale from mc.gameSettings.chatScale + * + * Parent Class: GuiNewChat + */ +m.getChatScale = "func_146244_h" +/** + * + * + * Parent Class: GuiNewChat + */ +m.refreshChat = "func_146245_b" +/** + * + * + * Parent Class: GuiNewChat + */ +m.getChatHeight = "func_146246_g" +/** + * + * + * Parent Class: GuiAchievement + */ +m.updateAchievementWindow = "func_146254_a" +/** + * + * + * Parent Class: GuiAchievement + */ +m.displayUnformattedAchievement = "func_146255_b" +/** + * + * + * Parent Class: GuiAchievement + */ +m.displayAchievement = "func_146256_a" +/** + * + * + * Parent Class: GuiAchievement + */ +m.clearAchievements = "func_146257_b" +/** + * + * + * Parent Class: GuiAchievement + */ +m.updateAchievementWindowScale = "func_146258_c" +/** + * Delegates mouse and keyboard input. + * + * Parent Class: GuiScreen + */ +m.handleInput = "func_146269_k" +/** + * + * + * Parent Class: GuiScreen + */ +m.drawWorldBackground = "func_146270_b" +/** + * Returns true if either windows ctrl key is down or if either mac meta key is down + * + * Parent Class: GuiScreen + */ +m.isCtrlKeyDown = "func_146271_m" +/** + * Returns true if either shift key is down + * + * Parent Class: GuiScreen + */ +m.isShiftKeyDown = "func_146272_n" +/** + * "Called when a mouse button is pressed and the mouse is moved around. Parameters are : mouseX + * + * Parent Class: GuiContainer + */ +m.mouseClickMove = "func_146273_a" +m.handleMouseInput = {} +/** + * Handles mouse input. + * + * Parent Class: GuiIngestServers + */ +m.handleMouseInput.GuiIngestServers = "func_146274_d" +/** + * + * + * Parent Class: GuiSimpleScrolledSelectionListProxy + */ +m.handleMouseInput.GuiSimpleScrolledSelectionListProxy = "func_178039_p" + +/** + * Stores the given string in the system clipboard + * + * Parent Class: GuiScreen + */ +m.setClipboardString = "func_146275_d" +/** + * Draws either a gradient over the background screen (when it exists) or a flat gradient over background.png + * + * Parent Class: GuiScreen + */ +m.drawDefaultBackground = "func_146276_q_" +/** + * Returns a string stored in the system clipboard. + * + * Parent Class: GuiScreen + */ +m.getClipboardString = "func_146277_j" +m.drawBackground = {} +/** + * Draws the background (i is always 0 as of 1.2.2) + * + * Parent Class: GuiScreen + */ +m.drawBackground.GuiScreen = "func_146278_c" +/** + * + * + * Parent Class: GuiIngestServers$ServerList + */ +m.drawBackground.GuiIngestServers$ServerList = "func_148123_a" + +/** + * "Draws the text when mouse is over creative inventory tab. Params: current creative tab to be checked + * + * Parent Class: GuiScreen + */ +m.drawCreativeTabHoveringText = "func_146279_a" +/** + * Causes the screen to lay out its subcomponents again. This is the equivalent of the Java call Container.validate() + * + * Parent Class: GuiScreen + */ +m.setWorldAndResolution = "func_146280_a" +/** + * Called when the screen is unloaded. Used to disable keyboard repeat events + * + * Parent Class: GuiStreamUnavailable + */ +m.onGuiClosed = "func_146281_b" +/** + * Handles keyboard input. + * + * Parent Class: GuiScreen + */ +m.handleKeyboardInput = "func_146282_l" +/** + * Draws a List of strings as a tooltip. Every entry is drawn on a seperate line. + * + * Parent Class: GuiScreen + */ +m.drawHoveringText = "func_146283_a" +m.actionPerformed = {} +/** + * Called by the controls from the buttonList when activated. (Mouse pressed for buttons) + * + * Parent Class: GuiTwitchUserMode + */ +m.actionPerformed.GuiTwitchUserMode = "func_146284_a" +/** + * + * + * Parent Class: GuiSlot + */ +m.actionPerformed.GuiSlot = "func_148147_a" + +/** + * + * + * Parent Class: GuiContainerCreative + */ +m.renderToolTip = "func_146285_a" +/** + * Determine a save-directory name from the world name + * + * Parent Class: GuiCreateWorld + */ +m.calcSaveDirName = "func_146314_g" +/** + * "Toggles between initial world-creation display + * + * Parent Class: GuiCreateWorld + */ +m.toggleMoreWorldOptions = "func_146315_i" +/** + * "Shows additional world-creation options if toggle is true + * + * Parent Class: GuiCreateWorld + */ +m.showMoreWorldOptions = "func_146316_a" +/** + * "Ensures that a proposed directory name doesn't collide with existing names. + * Returns the name + * + * Parent Class: GuiCreateWorld + */ +m.getUncollidingSaveDirName = "func_146317_a" +/** + * "Set the initial values of a new world to create + * + * Parent Class: GuiCreateWorld + */ +m.recreateFromExistingWorld = "func_146318_a" +/** + * Sets displayed GUI elements according to the current settings state + * + * Parent Class: GuiCreateWorld + */ +m.updateDisplayState = "func_146319_h" +/** + * Sets the number of ticks to wait before enabling the buttons. + * + * Parent Class: GuiYesNo + */ +m.setButtonDelay = "func_146350_a" +/** + * + * + * Parent Class: GuiConfirmOpenLink + */ +m.disableSecurityWarning = "func_146358_g" +/** + * Copies the link to the system clipboard. + * + * Parent Class: GuiConfirmOpenLink + */ +m.copyLinkToClipboard = "func_146359_e" +/** + * + * + * Parent Class: GuiConnecting + */ +m.connect = "func_146367_a" +/** + * "input is relative and is applied directly to the sentHistoryCursor so -1 is the previous message + * + * Parent Class: GuiChat + */ +m.getSentHistory = "func_146402_a" +/** + * + * + * Parent Class: GuiChat + */ +m.autocompletePlayerNames = "func_146404_p_" +/** + * + * + * Parent Class: GuiChat + */ +m.sendAutocompleteRequest = "func_146405_a" +/** + * + * + * Parent Class: GuiChat + */ +m.onAutocompleteResponse = "func_146406_a" +/** + * + * + * Parent Class: GuiSleepMP + */ +m.wakeFromSleep = "func_146418_g" +/** + * Returns the entire text of the current page as determined by currPage + * + * Parent Class: GuiScreenBook + */ +m.pageGetCurrent = "func_146456_p" +/** + * Sets the text of the current page as determined by currPage + * + * Parent Class: GuiScreenBook + */ +m.pageSetCurrent = "func_146457_a" +/** + * "Processes any text getting inserted into the current page + * + * Parent Class: GuiScreenBook + */ +m.pageInsertIntoCurrent = "func_146459_b" +/** + * Processes keystrokes when editing the title of a book + * + * Parent Class: GuiScreenBook + */ +m.keyTypedInTitle = "func_146460_c" +/** + * + * + * Parent Class: GuiScreenBook + */ +m.addNewPage = "func_146461_i" +/** + * + * + * Parent Class: GuiScreenBook + */ +m.sendBookToServer = "func_146462_a" +/** + * Processes keystrokes when editing the text of a book + * + * Parent Class: GuiScreenBook + */ +m.keyTypedInBook = "func_146463_b" +/** + * + * + * Parent Class: GuiScreenBook + */ +m.updateButtons = "func_146464_h" +m.getSoundVolume = {} +/** + * + * + * Parent Class: GuiScreenOptionsSounds + */ +m.getSoundVolume.GuiScreenOptionsSounds = "func_146504_a" +/** + * Returns the volume for the sounds this mob makes. + * + * Parent Class: EntitySlime + */ +m.getSoundVolume.EntitySlime = "func_70599_aP" + +/** + * + * + * Parent Class: IProgressMeter + */ +m.doneLoading = "func_146509_g" +/** + * + * + * Parent Class: GuiStats + */ +m.drawStatsScreen = "func_146521_a" +/** + * Draws a sprite from assets/textures/gui/container/stats_icons.png + * + * Parent Class: GuiStats + */ +m.drawSprite = "func_146527_c" +/** + * Draws a gray box that serves as a button background. + * + * Parent Class: GuiStats + */ +m.drawButtonBackground = "func_146531_b" +m.createButtons = {} +/** + * + * + * Parent Class: GuiStats + */ +m.createButtons.GuiStats = "func_146541_h" +/** + * + * + * Parent Class: GuiMultiplayer + */ +m.createButtons.GuiMultiplayer = "func_146794_g" + +/** + * + * + * Parent Class: GuiAchievements + */ +m.drawAchievementScreen = "func_146552_b" +/** + * + * + * Parent Class: GuiAchievements + */ +m.drawTitle = "func_146553_h" +/** + * + * + * Parent Class: GuiWinGame + */ +m.sendRespawnPacket = "func_146574_g" +/** + * + * + * Parent Class: GuiWinGame + */ +m.drawWinGameScreen = "func_146575_b" +/** + * + * + * Parent Class: IProgressUpdate + */ +m.setDoneWorking = "func_146586_a" +/** + * + * + * Parent Class: GuiSelectWorld + */ +m.addWorldSelectionButtons = "func_146618_g" +/** + * Load the existing world saves for display + * + * Parent Class: GuiSelectWorld + */ +m.loadLevelList = "func_146627_h" +/** + * + * + * Parent Class: GuiMultiplayer + */ +m.getOldServerPinger = "func_146789_i" +/** + * + * + * Parent Class: GuiMultiplayer + */ +m.selectServer = "func_146790_a" +/** + * + * + * Parent Class: GuiMultiplayer + */ +m.connectToServer = "func_146791_a" +/** + * + * + * Parent Class: GuiMultiplayer + */ +m.refreshServerList = "func_146792_q" +/** + * + * + * Parent Class: GuiMultiplayer + */ +m.setHoveringText = "func_146793_a" +/** + * + * + * Parent Class: GuiMultiplayer + */ +m.getServerList = "func_146795_p" +/** + * + * + * Parent Class: GuiMultiplayer + */ +m.connectToSelected = "func_146796_h" +/** + * + * + * Parent Class: GuiScreenResourcePacks + */ +m.hasResourcePackEntry = "func_146961_a" +/** + * "Returns the list containing the resource pack entry + * + * Parent Class: GuiScreenResourcePacks + */ +m.getListContaining = "func_146962_b" +/** + * Returns a list containing the selected resource packs + * + * Parent Class: GuiScreenResourcePacks + */ +m.getSelectedResourcePacks = "func_146963_h" +/** + * Returns a list containing the available resource packs + * + * Parent Class: GuiScreenResourcePacks + */ +m.getAvailableResourcePacks = "func_146964_g" +/** + * Returns the slot at the given coordinates or null if there is none. + * + * Parent Class: GuiContainer + */ +m.getSlotAtPosition = "func_146975_c" +/** + * "Args : renderPartialTicks + * + * Parent Class: GuiMerchant + */ +m.drawGuiContainerBackgroundLayer = "func_146976_a" +m.drawSlot = {} +/** + * + * + * Parent Class: GuiContainer + */ +m.drawSlot.GuiContainer = "func_146977_a" +/** + * + * + * Parent Class: GuiIngestServers$ServerList + */ +m.drawSlot.GuiIngestServers$ServerList = "func_180791_a" + +/** + * "Test if the 2D point is in a rectangle (relative to the GUI). Args : rectX + * + * Parent Class: GuiContainer + */ +m.isPointInRegion = "func_146978_c" +/** + * "Draw the foreground layer for the GuiContainer (everything in front of the items). Args : mouseX + * + * Parent Class: GuiMerchant + */ +m.drawGuiContainerForegroundLayer = "func_146979_b" +/** + * + * + * Parent Class: GuiContainer + */ +m.updateDragSplitting = "func_146980_g" +/** + * "Returns if the passed mouse position is over the specified slot. Args : slot + * + * Parent Class: GuiContainer + */ +m.isMouseOverSlot = "func_146981_a" +/** + * "Render an ItemStack. Args : stack + * + * Parent Class: GuiContainer + */ +m.drawItemStack = "func_146982_a" +/** + * "This function is what controls the hotbar shortcut check when you press a number key when hovering a stack. Args : keyCode + * + * Parent Class: GuiContainer + */ +m.checkHotbarKeys = "func_146983_a" +/** + * Called when the mouse is clicked over a slot or outside the gui. + * + * Parent Class: GuiContainerCreative + */ +m.handleMouseClick = "func_146984_a" +/** + * + * + * Parent Class: GuiMerchant + */ +m.getMerchant = "func_147035_g" +/** + * Display the potion effects list + * + * Parent Class: InventoryEffectRenderer + */ +m.drawActivePotionEffects = "func_147044_g" +/** + * "Draws the entity to the screen. Args: xPos + * + * Parent Class: GuiInventory + */ +m.drawEntityOnScreen = "func_147046_a" +/** + * + * + * Parent Class: GuiContainerCreative + */ +m.setCurrentCreativeTab = "func_147050_b" +/** + * "Renders the creative inventory hovering text if mouse is over it. Returns true if did render or false otherwise. Params: current creative tab to be checked + * + * Parent Class: GuiContainerCreative + */ +m.renderCreativeInventoryHoveringText = "func_147052_b" +/** + * + * + * Parent Class: GuiContainerCreative + */ +m.updateCreativeSearch = "func_147053_i" +/** + * returns (if you are not on the inventoryTab) and (the flag isn't set) and (you have more than 1 page of items) + * + * Parent Class: GuiContainerCreative + */ +m.needsScrollBars = "func_147055_p" +/** + * + * + * Parent Class: GuiContainerCreative + */ +m.getSelectedTabIndex = "func_147056_g" +/** + * + * + * Parent Class: GuiRepair + */ +m.renameItem = "func_147090_g" +m.getChatVisibility = {} +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.getChatVisibility.EntityPlayerMP = "func_147096_v" +/** + * + * + * Parent Class: C15PacketClientSettings + */ +m.getChatVisibility.C15PacketClientSettings = "func_149523_e" +/** + * + * + * Parent Class: EntityPlayer$EnumChatVisibility + */ +m.getChatVisibility.EntityPlayer$EnumChatVisibility = "func_151428_a" + +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.sendTileEntityUpdate = "func_147097_b" +/** + * Updates all biomes that have been explored by this player and triggers Adventuring Time if player qualifies. + * + * Parent Class: EntityPlayerMP + */ +m.updateBiomesExplored = "func_147098_j" +/** + * Gets the stats file for reading achievements + * + * Parent Class: EntityPlayerMP + */ +m.getStatFile = "func_147099_x" +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.handleClientSettings = "func_147100_a" +/** + * + * + * Parent Class: Minecraft + */ +m.getCurrentServerData = "func_147104_D" +/** + * + * + * Parent Class: Minecraft + */ +m.isFramerateLimitBelowMax = "func_147107_h" +/** + * Sets the argument GuiScreen as the main (topmost visible) screen. + * + * Parent Class: Minecraft + */ +m.displayGuiScreen = "func_147108_a" +/** + * + * + * Parent Class: Minecraft + */ +m.getAmbientMusicType = "func_147109_W" +m.getFramebuffer = {} +/** + * + * + * Parent Class: Minecraft + */ +m.getFramebuffer.Minecraft = "func_147110_a" +/** + * + * + * Parent Class: ShaderGroup + */ +m.getFramebuffer.ShaderGroup = "func_148017_a" + +/** + * + * + * Parent Class: Minecraft + */ +m.isJava64bit = "func_147111_S" +/** + * Called when user clicked he's mouse middle button (pick block) + * + * Parent Class: Minecraft + */ +m.middleClickMouse = "func_147112_ai" +/** + * + * + * Parent Class: Minecraft + */ +m.isGamePaused = "func_147113_T" +m.getNetHandler = {} +/** + * + * + * Parent Class: Minecraft + */ +m.getNetHandler.Minecraft = "func_147114_u" +/** + * Gets the current handler for processing packets + * + * Parent Class: NetworkManager + */ +m.getNetHandler.NetworkManager = "func_150729_e" + +/** + * + * + * Parent Class: Minecraft + */ +m.sendClickBlockToController = "func_147115_a" +/** + * + * + * Parent Class: Minecraft + */ +m.clickMouse = "func_147116_af" +/** + * + * + * Parent Class: Minecraft + */ +m.getTextureMapBlocks = "func_147117_R" +/** + * + * + * Parent Class: Minecraft + */ +m.getSoundHandler = "func_147118_V" +/** + * + * + * Parent Class: Minecraft + */ +m.updateFramebufferSize = "func_147119_ah" +/** + * Called when user clicked he's mouse right button (place) + * + * Parent Class: Minecraft + */ +m.rightClickMouse = "func_147121_ag" +/** + * + * + * Parent Class: Minecraft + */ +m.isJvm64bit = "func_147122_X" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getMinecraftSessionService = "func_147130_as" +/** + * + * + * Parent Class: MinecraftServer + */ +m.refreshStatusNextTick = "func_147132_au" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getResourcePackUrl = "func_147133_T" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getServerStatusResponse = "func_147134_at" +m.getDifficulty = {} +/** + * Get the server's difficulty + * + * Parent Class: MinecraftServer + */ +m.getDifficulty.MinecraftServer = "func_147135_j" +/** + * + * + * Parent Class: S07PacketRespawn + */ +m.getDifficulty.S07PacketRespawn = "func_149081_d" +/** + * + * + * Parent Class: S01PacketJoinGame + */ +m.getDifficulty.S01PacketJoinGame = "func_149192_g" +/** + * + * + * Parent Class: World + */ +m.getDifficulty.World = "func_175659_aa" +/** + * + * + * Parent Class: WorldInfo + */ +m.getDifficulty.WorldInfo = "func_176130_y" +/** + * + * + * Parent Class: S41PacketServerDifficulty + */ +m.getDifficulty.S41PacketServerDifficulty = "func_179831_b" + +/** + * + * + * Parent Class: MinecraftServer + */ +m.isAnnouncingPlayerAchievements = "func_147136_ar" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getNetworkSystem = "func_147137_ag" +/** + * + * + * Parent Class: MinecraftServer + */ +m.addFaviconToStatusResponse = "func_147138_a" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setDifficultyForAllWorlds = "func_147139_a" +/** + * Saves this CrashReport to the given file and returns a value indicating whether we were successful at doing so. + * + * Parent Class: CrashReport + */ +m.saveToFile = "func_147149_a" +/** + * + * + * Parent Class: CrashReportCategory + */ +m.getStackTrace = "func_147152_a" +m.getCategory = {} +/** + * + * + * Parent Class: SoundCategory + */ +m.getCategory.SoundCategory = "func_147154_a" +/** + * + * + * Parent Class: CrashReport + */ +m.getCategory.CrashReport = "func_85056_g" + +/** + * + * + * Parent Class: SoundCategory + */ +m.getCategoryName = "func_147155_a" +/** + * + * + * Parent Class: SoundCategory + */ +m.getCategoryId = "func_147156_b" +/** + * + * + * Parent Class: CommandBase + */ +m.getChatComponentFromNthArg = "func_147178_a" +/** + * "Gets the Item specified by the given text string. First checks the item registry + * + * Parent Class: CommandBase + */ +m.getItemByText = "func_147179_f" +/** + * "Gets the Block specified by the given text string. First checks the block registry + * + * Parent Class: CommandBase + */ +m.getBlockByText = "func_147180_g" +m.getTeam = {} +/** + * + * + * Parent Class: CommandScoreboard + */ +m.getTeam.CommandScoreboard = "func_147183_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.getTeam.EntityPlayer = "func_96124_cp" +/** + * Retrieve the ScorePlayerTeam instance identified by the passed team name + * + * Parent Class: Scoreboard + */ +m.getTeam.Scoreboard = "func_96508_e" + +/** + * + * + * Parent Class: CommandScoreboard + */ +m.addTeam = "func_147185_d" +/** + * + * + * Parent Class: CommandScoreboard + */ +m.listTeams = "func_147186_g" +/** + * + * + * Parent Class: CommandScoreboard + */ +m.resetPlayers = "func_147187_n" +/** + * + * + * Parent Class: CommandScoreboard + */ +m.emptyTeam = "func_147188_j" +m.getObjective = {} +/** + * + * + * Parent Class: CommandScoreboard + */ +m.getObjective.CommandScoreboard = "func_147189_a" +/** + * + * + * Parent Class: ChatComponentScore + */ +m.getObjective.ChatComponentScore = "func_179994_h" +/** + * Returns a ScoreObjective for the objective name + * + * Parent Class: Scoreboard + */ +m.getObjective.Scoreboard = "func_96518_b" +/** + * + * + * Parent Class: Score + */ +m.getObjective.Score = "func_96645_d" + +/** + * + * + * Parent Class: CommandScoreboard + */ +m.joinTeam = "func_147190_h" +m.removeObjective = {} +/** + * + * + * Parent Class: CommandScoreboard + */ +m.removeObjective.CommandScoreboard = "func_147191_h" +/** + * + * + * Parent Class: Scoreboard + */ +m.removeObjective.Scoreboard = "func_96519_k" + +m.getScoreboard = {} +/** + * + * + * Parent Class: CommandScoreboard + */ +m.getScoreboard.CommandScoreboard = "func_147192_d" +/** + * + * + * Parent Class: World + */ +m.getScoreboard.World = "func_96441_U" +/** + * + * + * Parent Class: ScoreObjective + */ +m.getScoreboard.ScoreObjective = "func_96682_a" + +/** + * + * + * Parent Class: CommandScoreboard + */ +m.addObjective = "func_147193_c" +m.removeTeam = {} +/** + * + * + * Parent Class: CommandScoreboard + */ +m.removeTeam.CommandScoreboard = "func_147194_f" +/** + * "Removes the team from the scoreboard + * + * Parent Class: Scoreboard + */ +m.removeTeam.Scoreboard = "func_96511_d" + +/** + * + * + * Parent Class: CommandScoreboard + */ +m.listPlayers = "func_147195_l" +/** + * + * + * Parent Class: CommandScoreboard + */ +m.listObjectives = "func_147196_d" +/** + * + * + * Parent Class: CommandScoreboard + */ +m.setObjectiveDisplay = "func_147198_k" +/** + * + * + * Parent Class: CommandScoreboard + */ +m.leaveTeam = "func_147199_i" +/** + * + * + * Parent Class: CommandScoreboard + */ +m.setTeamOption = "func_147200_e" +m.getWittyComment = {} +/** + * Get a random witty comment + * + * Parent Class: CommandDebug + */ +m.getWittyComment.CommandDebug = "func_147203_d" +/** + * Gets a random witty comment for inclusion in this CrashReport + * + * Parent Class: CrashReport + */ +m.getWittyComment.CrashReport = "func_71503_h" + +/** + * Get the profiling results from the last profile + * + * Parent Class: CommandDebug + */ +m.getProfileResults = "func_147204_b" +/** + * Save the profiling results from the last profile + * + * Parent Class: CommandDebug + */ +m.saveProfileResults = "func_147205_a" +/** + * + * + * Parent Class: OldServerPinger + */ +m.pingPendingNetworks = "func_147223_a" +/** + * + * + * Parent Class: OldServerPinger + */ +m.ping = "func_147224_a" +/** + * + * + * Parent Class: OldServerPinger + */ +m.tryCompatibilityPing = "func_147225_b" +/** + * + * + * Parent Class: OldServerPinger + */ +m.clearPendingNetworks = "func_147226_b" +/** + * "Invoked when disconnecting + * + * Parent Class: RealmsServerStatusPinger$1 + */ +m.onDisconnect = "func_147231_a" +/** + * Updates the block and metadata and generates a blockupdate (and notify the clients) + * + * Parent Class: INetHandlerPlayClient + */ +m.handleBlockChange = "func_147234_a" +/** + * Spawns an instance of the objecttype indicated by the packet and sets its position and momentum + * + * Parent Class: INetHandlerPlayClient + */ +m.handleSpawnObject = "func_147235_a" +/** + * "Invokes the entities' handleUpdateHealth method which is implemented in LivingBase (hurt/death) + * + * Parent Class: INetHandlerPlayClient + */ +m.handleEntityStatus = "func_147236_a" +/** + * "Handles the creation of a nearby player entity + * + * Parent Class: INetHandlerPlayClient + */ +m.handleSpawnPlayer = "func_147237_a" +/** + * "Locally eliminates the entities. Invoked by the server when the items are in fact destroyed + * + * Parent Class: INetHandlerPlayClient + */ +m.handleDestroyEntities = "func_147238_a" +/** + * Verifies that the server and client are synchronized with respect to the inventory/container opened by the player and confirms if it is the case. + * + * Parent Class: INetHandlerPlayClient + */ +m.handleConfirmTransaction = "func_147239_a" +/** + * "Handles packets that have room for a channel specification. Vanilla implemented channels are ""MC|TrList"" to acquire a MerchantRecipeList trades for a villager merchant + * + * Parent Class: INetHandlerPlayClient + */ +m.handleCustomPayload = "func_147240_a" +/** + * Handles the placement of a specified ItemStack in a specified container/inventory slot + * + * Parent Class: INetHandlerPlayClient + */ +m.handleWindowItems = "func_147241_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleEntityEquipment = "func_147242_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleEntityAttach = "func_147243_a" +/** + * Sets the velocity of the specified entity to the specified value + * + * Parent Class: INetHandlerPlayClient + */ +m.handleEntityVelocity = "func_147244_a" +/** + * Sets the progressbar of the opened window to the specified value + * + * Parent Class: INetHandlerPlayClient + */ +m.handleWindowProperty = "func_147245_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleCollectItem = "func_147246_a" +/** + * "Updates a team managed by the scoreboard: Create/Remove the team registration + * + * Parent Class: INetHandlerPlayClient + */ +m.handleTeams = "func_147247_a" +/** + * Updates a specified sign with the specified text lines + * + * Parent Class: INetHandlerPlayClient + */ +m.handleUpdateSign = "func_147248_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleUpdateHealth = "func_147249_a" +/** + * Either updates the score with a specified value or removes the score for an objective + * + * Parent Class: INetHandlerPlayClient + */ +m.handleUpdateScore = "func_147250_a" +/** + * Prints a chatmessage in the chat GUI + * + * Parent Class: INetHandlerPlayClient + */ +m.handleChat = "func_147251_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleChangeGameState = "func_147252_a" +m.handleDisconnect = {} +/** + * Closes the network channel + * + * Parent Class: INetHandlerPlayClient + */ +m.handleDisconnect.INetHandlerPlayClient = "func_147253_a" +/** + * + * + * Parent Class: INetHandlerLoginClient + */ +m.handleDisconnect.INetHandlerLoginClient = "func_147388_a" + +/** + * "Removes or sets the ScoreObjective to be displayed at a particular scoreboard position (list + * + * Parent Class: INetHandlerPlayClient + */ +m.handleDisplayScoreboard = "func_147254_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleSoundEffect = "func_147255_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handlePlayerListItem = "func_147256_a" +/** + * Updates which hotbar slot of the player is currently selected + * + * Parent Class: INetHandlerPlayClient + */ +m.handleHeldItemChange = "func_147257_a" +/** + * "Handles changes in player positioning and rotation such as when travelling to a new dimension + * + * Parent Class: INetHandlerPlayClient + */ +m.handlePlayerPosLook = "func_147258_a" +/** + * "Updates the specified entity's position by the specified relative moment and absolute rotation. Note that subclassing of the packet allows for the specification of a subset of this data (e.g. only rel. position + * + * Parent Class: INetHandlerPlayClient + */ +m.handleEntityMovement = "func_147259_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleEntityEffect = "func_147260_a" +/** + * "Triggers Block.onBlockEventReceived + * + * Parent Class: INetHandlerPlayClient + */ +m.handleBlockAction = "func_147261_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleRemoveEntityEffect = "func_147262_a" +/** + * "Updates the specified chunk with the supplied data + * + * Parent Class: INetHandlerPlayClient + */ +m.handleChunkData = "func_147263_a" +/** + * Updates the worlds MapStorage with the specified MapData for the specified map-identifier and invokes a MapItemRenderer for it + * + * Parent Class: INetHandlerPlayClient + */ +m.handleMaps = "func_147264_a" +/** + * "Displays a GUI by ID. In order starting from id 0: Chest + * + * Parent Class: INetHandlerPlayClient + */ +m.handleOpenWindow = "func_147265_a" +/** + * Handles pickin up an ItemStack or dropping one in your inventory or an open (non-creative) container + * + * Parent Class: INetHandlerPlayClient + */ +m.handleSetSlot = "func_147266_a" +/** + * "Updates the direction in which the specified entity is looking + * + * Parent Class: INetHandlerPlayClient + */ +m.handleEntityHeadLook = "func_147267_a" +/** + * Creates a sign in the specified location if it didn't exist and opens the GUI to edit its text + * + * Parent Class: INetHandlerPlayClient + */ +m.handleSignEditorOpen = "func_147268_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleMapChunkBulk = "func_147269_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handlePlayerAbilities = "func_147270_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleSpawnPosition = "func_147271_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleKeepAlive = "func_147272_a" +/** + * "Updates the NBTTagCompound metadata of instances of the following entitytypes: Mob spawners + * + * Parent Class: INetHandlerPlayClient + */ +m.handleUpdateTileEntity = "func_147273_a" +/** + * Displays the available command-completion options the server knows of + * + * Parent Class: INetHandlerPlayClient + */ +m.handleTabComplete = "func_147274_a" +/** + * Updates an entity's position and rotation as specified by the packet + * + * Parent Class: INetHandlerPlayClient + */ +m.handleEntityTeleport = "func_147275_a" +/** + * Resets the ItemStack held in hand and closes the window that is opened + * + * Parent Class: INetHandlerPlayClient + */ +m.handleCloseWindow = "func_147276_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleEffect = "func_147277_a" +/** + * "Retrieves the player identified by the packet + * + * Parent Class: INetHandlerPlayClient + */ +m.handleUseBed = "func_147278_a" +m.handleAnimation = {} +/** + * "Renders a specified animation: Waking up a player + * + * Parent Class: INetHandlerPlayClient + */ +m.handleAnimation.INetHandlerPlayClient = "func_147279_a" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +m.handleAnimation.NetHandlerPlayServer = "func_175087_a" + +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleRespawn = "func_147280_a" +/** + * "Spawns the mob entity at the specified location + * + * Parent Class: INetHandlerPlayClient + */ +m.handleSpawnMob = "func_147281_a" +/** + * "Registers some server properties (gametype + * + * Parent Class: INetHandlerPlayClient + */ +m.handleJoinGame = "func_147282_a" +/** + * "Initiates a new explosion (sound + * + * Parent Class: INetHandlerPlayClient + */ +m.handleExplosion = "func_147283_a" +/** + * Invoked when the server registers new proximate objects in your watchlist or when objects in your watchlist have changed -> Registers any changes locally + * + * Parent Class: INetHandlerPlayClient + */ +m.handleEntityMetadata = "func_147284_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleTimeUpdate = "func_147285_a" +/** + * Spawns an experience orb and sets its value (amount of XP) + * + * Parent Class: INetHandlerPlayClient + */ +m.handleSpawnExperienceOrb = "func_147286_a" +/** + * "Received from the servers PlayerManager if between 1 and 64 blocks in a chunk are changed. If only one block requires an update + * + * Parent Class: INetHandlerPlayClient + */ +m.handleMultiBlockChange = "func_147287_a" +/** + * Handles the spawning of a painting object + * + * Parent Class: INetHandlerPlayClient + */ +m.handleSpawnPainting = "func_147288_a" +/** + * Spawns a specified number of particles at the specified location with a randomized displacement according to specified bounds + * + * Parent Class: INetHandlerPlayClient + */ +m.handleParticles = "func_147289_a" +/** + * "Updates en entity's attributes and their respective modifiers + * + * Parent Class: INetHandlerPlayClient + */ +m.handleEntityProperties = "func_147290_a" +/** + * "May create a scoreboard objective + * + * Parent Class: INetHandlerPlayClient + */ +m.handleScoreboardObjective = "func_147291_a" +/** + * Handles globally visible entities. Used in vanilla for lightning bolts + * + * Parent Class: INetHandlerPlayClient + */ +m.handleSpawnGlobalEntity = "func_147292_a" +/** + * Updates the players statistics or achievements + * + * Parent Class: INetHandlerPlayClient + */ +m.handleStatistics = "func_147293_a" +/** + * Updates all registered IWorldAccess instances with destroyBlockInWorldPartially + * + * Parent Class: INetHandlerPlayClient + */ +m.handleBlockBreakAnim = "func_147294_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleSetExperience = "func_147295_a" +/** + * Clears the WorldClient instance associated with this NetHandlerPlayClient + * + * Parent Class: NetHandlerPlayClient + */ +m.cleanup = "func_147296_c" +/** + * + * + * Parent Class: NetHandlerPlayClient + */ +m.addToSendQueue = "func_147297_a" +m.getNetworkManager = {} +/** + * Returns this the NetworkManager instance registered with this NetworkHandlerPlayClient + * + * Parent Class: NetHandlerPlayClient + */ +m.getNetworkManager.NetHandlerPlayClient = "func_147298_b" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +m.getNetworkManager.NetHandlerPlayServer = "func_147362_b" + +/** + * + * + * Parent Class: NetHandlerStatusServer + */ +m.processPing = "func_147311_a" +/** + * + * + * Parent Class: NetHandlerStatusServer + */ +m.processServerQuery = "func_147312_a" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +m.processEncryptionResponse = "func_147315_a" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +m.processLoginStart = "func_147316_a" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +m.getConnectionInfo = "func_147317_d" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +m.closeConnection = "func_147322_a" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +m.tryAcceptPlayer = "func_147326_c" +/** + * "Enchants the item identified by the packet given some convoluted conditions (matching window + * + * Parent Class: NetHandlerPlayServer + */ +m.processEnchantItem = "func_147338_a" +/** + * Received in response to the server requesting to confirm that the client-side open container matches the servers' after a mismatched container-slot manipulation. It will unlock the player's ability to manipulate the container contents + * + * Parent Class: NetHandlerPlayServer + */ +m.processConfirmTransaction = "func_147339_a" +/** + * "Processes interactions ((un)leashing + * + * Parent Class: NetHandlerPlayServer + */ +m.processUseEntity = "func_147340_a" +/** + * Retrieves possible tab completions for the requested command string and sends them to the client + * + * Parent Class: NetHandlerPlayServer + */ +m.processTabComplete = "func_147341_a" +/** + * "Processes the client status updates: respawn attempt from player + * + * Parent Class: NetHandlerPlayServer + */ +m.processClientStatus = "func_147342_a" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +m.processUpdateSign = "func_147343_a" +/** + * Update the server with an ItemStack in a slot. + * + * Parent Class: NetHandlerPlayServer + */ +m.processCreativeInventoryAction = "func_147344_a" +/** + * "Processes the player initiating/stopping digging on a particular spot + * + * Parent Class: NetHandlerPlayServer + */ +m.processPlayerDigging = "func_147345_a" +/** + * "Processes block placement and block activation (anvil + * + * Parent Class: NetHandlerPlayServer + */ +m.processPlayerBlockPlacement = "func_147346_a" +/** + * Processes clients perspective on player positioning and/or orientation + * + * Parent Class: NetHandlerPlayServer + */ +m.processPlayer = "func_147347_a" +/** + * Processes a player starting/stopping flying + * + * Parent Class: NetHandlerPlayServer + */ +m.processPlayerAbilities = "func_147348_a" +/** + * Synchronizes serverside and clientside book contents and signing + * + * Parent Class: NetHandlerPlayServer + */ +m.processVanilla250Packet = "func_147349_a" +/** + * Executes a container/inventory slot manipulation as indicated by the packet. Sends the serverside result if they didn't match the indicated result and prevents further manipulation by the player until he confirms that it has the same open container/inventory + * + * Parent Class: NetHandlerPlayServer + */ +m.processClickWindow = "func_147351_a" +/** + * "Updates serverside copy of client settings: language + * + * Parent Class: NetHandlerPlayServer + */ +m.processClientSettings = "func_147352_a" +/** + * Updates a players' ping statistics + * + * Parent Class: NetHandlerPlayServer + */ +m.processKeepAlive = "func_147353_a" +/** + * Process chat messages (broadcast back to clients) and commands (executes) + * + * Parent Class: NetHandlerPlayServer + */ +m.processChatMessage = "func_147354_a" +/** + * Updates which quickbar slot is selected + * + * Parent Class: NetHandlerPlayServer + */ +m.processHeldItemChange = "func_147355_a" +/** + * Processes the client closing windows (container) + * + * Parent Class: NetHandlerPlayServer + */ +m.processCloseWindow = "func_147356_a" +/** + * "Processes a range of action-types: sneaking + * + * Parent Class: NetHandlerPlayServer + */ +m.processEntityAction = "func_147357_a" +/** + * "Processes player movement input. Includes walking + * + * Parent Class: NetHandlerPlayServer + */ +m.processInput = "func_147358_a" +m.sendPacket = {} +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +m.sendPacket.NetHandlerPlayServer = "func_147359_a" +/** + * + * + * Parent Class: NetworkManager + */ +m.sendPacket.NetworkManager = "func_179290_a" + +/** + * Kick a player from the server with a reason + * + * Parent Class: NetHandlerPlayServer + */ +m.kickPlayerFromServer = "func_147360_c" +/** + * Handle commands that start with a / + * + * Parent Class: NetHandlerPlayServer + */ +m.handleSlashCommand = "func_147361_d" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +m.currentTimeMillis = "func_147363_d" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +m.setPlayerLocation = "func_175089_a" +/** + * "There are two recognized intentions for initiating a handshake: logging in and acquiring server status. The NetworkManager's protocol will be reconfigured according to the specified intention + * + * Parent Class: NetHandlerHandshakeTCP + */ +m.processHandshake = "func_147383_a" +/** + * + * + * Parent Class: INetHandlerLoginClient + */ +m.handleEncryptionRequest = "func_147389_a" +/** + * + * + * Parent Class: INetHandlerLoginClient + */ +m.handleLoginSuccess = "func_147390_a" +m.getSessionService = {} +/** + * + * + * Parent Class: NetHandlerLoginClient + */ +m.getSessionService.NetHandlerLoginClient = "func_147391_c" +/** + * + * + * Parent Class: Minecraft + */ +m.getSessionService.Minecraft = "func_152347_ac" + +/** + * + * + * Parent Class: RealmsServerStatusPinger$1 + */ +m.handleServerInfo = "func_147397_a" +/** + * + * + * Parent Class: RealmsServerStatusPinger$1 + */ +m.handlePong = "func_147398_a" +/** + * + * + * Parent Class: ServerData + */ +m.setBase64EncodedIconData = "func_147407_a" +/** + * "Returns the base-64 encoded representation of the server's icon + * + * Parent Class: ServerData + */ +m.getBase64EncodedIconData = "func_147409_e" +/** + * Sets the strength of the thunder. + * + * Parent Class: World + */ +m.setThunderStrength = "func_147442_i" +/** + * "ray traces all blocks + * + * Parent Class: World + */ +m.rayTraceBlocks = "func_72933_a" +/** + * + * + * Parent Class: World + */ +m.addTileEntities = "func_147448_a" +/** + * + * + * Parent Class: WorldServer + */ +m.updateBlocks = "func_147456_g" +/** + * Adds the specified TileEntity to the pending removal list. + * + * Parent Class: World + */ +m.markTileEntityForRemoval = "func_147457_a" +m.markBlockRangeForRenderUpdate = {} +/** + * + * + * Parent Class: World + */ +m.markBlockRangeForRenderUpdate.World = "func_175704_b" +/** + * "On the client + * + * Parent Class: WorldManager + */ +m.markBlockRangeForRenderUpdate.WorldManager = "func_147585_a" + +/** + * + * + * Parent Class: World + */ +m.getCollisionBoxes = "func_147461_a" +/** + * + * + * Parent Class: World + */ +m.playMoodSoundAndCheckLight = "func_147467_a" +/** + * + * + * Parent Class: World + */ +m.isFlammableWithin = "func_147470_e" +/** + * + * + * Parent Class: WorldServer + */ +m.fireBlockEvent = "func_147485_a" +/** + * Returns all the tile entities located between the given coordinates + * + * Parent Class: WorldServer + */ +m.getTileEntitiesIn = "func_147486_a" +/** + * + * + * Parent Class: WorldServer + */ +m.sendQueuedBlockEvents = "func_147488_Z" +/** + * + * + * Parent Class: TileEntitySkullRenderer + */ +m.setRendererDispatcher = "func_147497_a" +m.getFontRenderer = {} +/** + * + * + * Parent Class: TileEntitySpecialRenderer + */ +m.getFontRenderer.TileEntitySpecialRenderer = "func_147498_b" +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +m.getFontRenderer.TileEntityRendererDispatcher = "func_147548_a" +/** + * + * + * Parent Class: GuiIngame + */ +m.getFontRenderer.GuiIngame = "func_175179_f" +/** + * Returns the font renderer + * + * Parent Class: RenderManager + */ +m.getFontRenderer.RenderManager = "func_78716_a" + +/** + * Render the mob inside the mob spawner. + * + * Parent Class: TileEntityMobSpawnerRenderer + */ +m.renderMob = "func_147517_a" +m.setWorld = {} +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +m.setWorld.TileEntityRendererDispatcher = "func_147543_a" +/** + * Sets the reference to the World object. + * + * Parent Class: Entity + */ +m.setWorld.Entity = "func_70029_a" +/** + * Sets the world instance. + * + * Parent Class: ItemInWorldManager + */ +m.setWorld.ItemInWorldManager = "func_73080_a" +/** + * + * + * Parent Class: Village + */ +m.setWorld.Village = "func_82691_a" + +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +m.getSpecialRendererByClass = "func_147546_a" +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +m.getSpecialRenderer = "func_147547_b" +m.renderTileEntityAt = {} +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +m.renderTileEntityAt.TileEntityRendererDispatcher = "func_178469_a" +/** + * + * + * Parent Class: TileEntityEndPortalRenderer + */ +m.renderTileEntityAt.TileEntityEndPortalRenderer = "func_180535_a" + +/** + * + * + * Parent Class: Framebuffer + */ +m.setFramebufferColor = "func_147604_a" +/** + * + * + * Parent Class: Framebuffer + */ +m.createFramebuffer = "func_147605_b" +/** + * + * + * Parent Class: Framebuffer + */ +m.unbindFramebufferTexture = "func_147606_d" +/** + * + * + * Parent Class: Framebuffer + */ +m.setFramebufferFilter = "func_147607_a" +/** + * + * + * Parent Class: Framebuffer + */ +m.deleteFramebuffer = "func_147608_a" +/** + * + * + * Parent Class: Framebuffer + */ +m.unbindFramebuffer = "func_147609_e" +/** + * + * + * Parent Class: Framebuffer + */ +m.bindFramebuffer = "func_147610_a" +/** + * + * + * Parent Class: Framebuffer + */ +m.checkFramebufferComplete = "func_147611_b" +/** + * + * + * Parent Class: Framebuffer + */ +m.bindFramebufferTexture = "func_147612_c" +/** + * + * + * Parent Class: Framebuffer + */ +m.createBindFramebuffer = "func_147613_a" +/** + * + * + * Parent Class: Framebuffer + */ +m.framebufferClear = "func_147614_f" +/** + * + * + * Parent Class: Framebuffer + */ +m.framebufferRender = "func_147615_c" +/** + * + * + * Parent Class: AbstractTexture + */ +m.deleteGlTexture = "func_147631_c" +/** + * + * + * Parent Class: TextureMap + */ +m.setMipmapLevels = "func_147633_a" +/** + * + * + * Parent Class: TextureMap + */ +m.completeResourceLocation = "func_147634_a" +/** + * + * + * Parent Class: ThreadDownloadImageData + */ +m.checkTextureUploaded = "func_147640_e" +/** + * + * + * Parent Class: ThreadDownloadImageData + */ +m.setBufferedImage = "func_147641_a" +m.deleteTexture = {} +/** + * + * + * Parent Class: TextureManager + */ +m.deleteTexture.TextureManager = "func_147645_c" +/** + * + * + * Parent Class: TextureUtil + */ +m.deleteTexture.TextureUtil = "func_147942_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.deleteTexture.GlStateManager = "func_179150_h" + +/** + * Apply Unicode Bidirectional Algorithm to string and return a new possibly reordered string for visual rendering. + * + * Parent Class: FontRenderer + */ +m.bidiReorder = "func_147647_b" +/** + * + * + * Parent Class: ISound + */ +m.getXPosF = "func_147649_g" +/** + * + * + * Parent Class: ISound + */ +m.getSoundLocation = "func_147650_b" +/** + * + * + * Parent Class: ISound + */ +m.getZPosF = "func_147651_i" +/** + * + * + * Parent Class: ISound + */ +m.getRepeatDelay = "func_147652_d" +m.getVolume = {} +/** + * + * + * Parent Class: ISound + */ +m.getVolume.ISound = "func_147653_e" +/** + * + * + * Parent Class: SoundPoolEntry + */ +m.getVolume.SoundPoolEntry = "func_148649_c" +/** + * + * + * Parent Class: S29PacketSoundEffect + */ +m.getVolume.S29PacketSoundEffect = "func_149208_g" +/** + * + * + * Parent Class: Block$SoundType + */ +m.getVolume.Block$SoundType = "func_150497_c" + +/** + * + * + * Parent Class: ISound + */ +m.getYPosF = "func_147654_h" +m.getPitch = {} +/** + * + * + * Parent Class: ISound + */ +m.getPitch.ISound = "func_147655_f" +/** + * + * + * Parent Class: SoundPoolEntry + */ +m.getPitch.SoundPoolEntry = "func_148650_b" +/** + * + * + * Parent Class: S08PacketPlayerPosLook + */ +m.getPitch.S08PacketPlayerPosLook = "func_148930_g" +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +m.getPitch.S0CPacketSpawnPlayer = "func_148945_j" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.getPitch.S0EPacketSpawnObject = "func_149008_j" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +m.getPitch.S0FPacketSpawnMob = "func_149030_m" +/** + * + * + * Parent Class: S29PacketSoundEffect + */ +m.getPitch.S29PacketSoundEffect = "func_149209_h" +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +m.getPitch.S18PacketEntityTeleport = "func_149447_h" +/** + * + * + * Parent Class: C03PacketPlayer + */ +m.getPitch.C03PacketPlayer = "func_149470_h" + +/** + * + * + * Parent Class: ISound + */ +m.getAttenuationType = "func_147656_j" +/** + * + * + * Parent Class: ISound + */ +m.canRepeat = "func_147657_c" +/** + * + * + * Parent Class: ITickableSound + */ +m.isDonePlaying = "func_147667_k" +m.create = {} +/** + * + * + * Parent Class: PositionedSoundRecord + */ +m.create.PositionedSoundRecord = "func_147675_a" +/** + * Create a new PropertyEnum with all Enum constants of the given class. + * + * Parent Class: PropertyEnum + */ +m.create.PropertyEnum = "func_177709_a" +/** + * Create a new PropertyDirection with the given name + * + * Parent Class: PropertyDirection + */ +m.create.PropertyDirection = "func_177714_a" +/** + * + * + * Parent Class: PropertyBool + */ +m.create.PropertyBool = "func_177716_a" +/** + * + * + * Parent Class: PropertyInteger + */ +m.create.PropertyInteger = "func_177719_a" + +/** + * + * + * Parent Class: SoundHandler + */ +m.getSound = "func_147680_a" +m.playDelayedSound = {} +/** + * Plays the sound in n ticks + * + * Parent Class: SoundHandler + */ +m.playDelayedSound.SoundHandler = "func_147681_a" +/** + * Adds a sound to play in n tick + * + * Parent Class: SoundManager + */ +m.playDelayedSound.SoundManager = "func_148599_a" + +m.playSound = {} +/** + * Play a sound + * + * Parent Class: SoundHandler + */ +m.playSound.SoundHandler = "func_147682_a" +/** + * + * + * Parent Class: SoundManager + */ +m.playSound.SoundManager = "func_148611_c" +/** + * "Plays the specified sound. Arg: soundName + * + * Parent Class: WorldManager + */ +m.playSound.WorldManager = "func_72704_a" +/** + * "par8 is loudness + * + * Parent Class: WorldClient + */ +m.playSound.WorldClient = "func_72980_b" +/** + * + * + * Parent Class: EntityPlayer + */ +m.playSound.EntityPlayer = "func_85030_a" + +m.stopSound = {} +/** + * + * + * Parent Class: SoundHandler + */ +m.stopSound.SoundHandler = "func_147683_b" +/** + * + * + * Parent Class: SoundManager + */ +m.stopSound.SoundManager = "func_148602_b" + +m.setSoundLevel = {} +/** + * + * + * Parent Class: SoundHandler + */ +m.setSoundLevel.SoundHandler = "func_147684_a" +/** + * + * + * Parent Class: GameSettings + */ +m.setSoundLevel.GameSettings = "func_151439_a" + +/** + * + * + * Parent Class: SoundHandler + */ +m.unloadSounds = "func_147685_d" +/** + * Returns a random sound from one or more categories + * + * Parent Class: SoundHandler + */ +m.getRandomSoundFromCategories = "func_147686_a" +/** + * + * + * Parent Class: SoundHandler + */ +m.resumeSounds = "func_147687_e" +/** + * + * + * Parent Class: SoundHandler + */ +m.pauseSounds = "func_147689_b" +/** + * + * + * Parent Class: SoundHandler + */ +m.stopSounds = "func_147690_c" +m.setListener = {} +/** + * + * + * Parent Class: SoundHandler + */ +m.setListener.SoundHandler = "func_147691_a" +/** + * Sets the listener of sounds + * + * Parent Class: SoundManager + */ +m.setListener.SoundManager = "func_148615_a" + +m.isSoundPlaying = {} +/** + * + * + * Parent Class: SoundHandler + */ +m.isSoundPlaying.SoundHandler = "func_147692_c" +/** + * Returns true if the sound is playing or still within time + * + * Parent Class: SoundManager + */ +m.isSoundPlaying.SoundManager = "func_148597_a" + +/** + * + * + * Parent Class: SoundHandler + */ +m.loadSoundResource = "func_147693_a" +/** + * + * + * Parent Class: EntityRenderer + */ +m.getMapItemRenderer = "func_147701_i" +/** + * + * + * Parent Class: EntityRenderer + */ +m.isShaderActive = "func_147702_a" +/** + * + * + * Parent Class: EntityRenderer + */ +m.updateShaderGroupSize = "func_147704_a" +/** + * + * + * Parent Class: EntityRenderer + */ +m.activateNextShader = "func_147705_c" +/** + * + * + * Parent Class: EntityRenderer + */ +m.getShaderGroup = "func_147706_e" +/** + * Get ambient occlusion brightness + * + * Parent Class: BlockModelRenderer$AmbientOcclusionFace + */ +m.getAoBrightness = "func_147778_a" +/** + * Renders an entity's name above its head + * + * Parent Class: Render + */ +m.renderLivingLabel = "func_147906_a" +/** + * + * + * Parent Class: RenderManager + */ +m.renderEntityStatic = "func_147936_a" +/** + * + * + * Parent Class: RenderManager + */ +m.renderEntitySimple = "func_147937_a" +/** + * + * + * Parent Class: RenderManager + */ +m.doRenderEntity = "func_147939_a" +/** + * + * + * Parent Class: RenderManager + */ +m.renderEntityWithPosYaw = "func_147940_a" +m.blendColors = {} +/** + * + * + * Parent Class: TextureUtil + */ +m.blendColors.TextureUtil = "func_147943_a" +/** + * + * + * Parent Class: GuiOverlayDebug + */ +m.blendColors.GuiOverlayDebug = "func_181553_a" + +/** + * + * + * Parent Class: TextureUtil + */ +m.blendColorComponent = "func_147944_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.uploadTextureSub = "func_147947_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.generateMipmapData = "func_147949_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.setTextureBlurred = "func_147951_b" +/** + * + * + * Parent Class: TextureUtil + */ +m.processPixelValues = "func_147953_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.setTextureBlurMipmap = "func_147954_b" +/** + * + * + * Parent Class: TextureUtil + */ +m.uploadTextureMipmap = "func_147955_a" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.getFrameTextureData = "func_147965_a" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.generateMipmaps = "func_147963_d" +/** + * + * + * Parent Class: Stitcher + */ +m.getMipmapDimension = "func_147969_b" +/** + * "gets a shader uniform for the name given. if not found + * + * Parent Class: ShaderManager + */ +m.getShaderUniformOrDefault = "func_147984_b" +m.markDirty = {} +/** + * + * + * Parent Class: ShaderManager + */ +m.markDirty.ShaderManager = "func_147985_d" +/** + * + * + * Parent Class: ShaderUniform + */ +m.markDirty.ShaderUniform = "func_148096_h" +/** + * "For tile entities + * + * Parent Class: InventoryCraftResult + */ +m.markDirty.InventoryCraftResult = "func_70296_d" +/** + * "Marks this MapDataBase dirty + * + * Parent Class: WorldSavedData + */ +m.markDirty.WorldSavedData = "func_76185_a" + +/** + * + * + * Parent Class: ShaderManager + */ +m.getProgram = "func_147986_h" +/** + * + * + * Parent Class: ShaderManager + */ +m.parseUniform = "func_147987_b" +m.deleteShader = {} +/** + * + * + * Parent Class: ShaderManager + */ +m.deleteShader.ShaderManager = "func_147988_a" +/** + * + * + * Parent Class: Shader + */ +m.deleteShader.Shader = "func_148044_b" +/** + * + * + * Parent Class: ShaderLoader + */ +m.deleteShader.ShaderLoader = "func_148054_b" +/** + * + * + * Parent Class: ShaderLinkHelper + */ +m.deleteShader.ShaderLinkHelper = "func_148077_a" + +/** + * + * + * Parent Class: ShaderManager + */ +m.getVertexShaderLoader = "func_147989_e" +/** + * goes through the parsed uniforms and samplers and connects them to their GL counterparts. + * + * Parent Class: ShaderManager + */ +m.setupUniforms = "func_147990_i" +/** + * gets a shader uniform for the name given. null if not found. + * + * Parent Class: ShaderManager + */ +m.getShaderUniform = "func_147991_a" +/** + * "adds a shader sampler texture. if it already exists + * + * Parent Class: ShaderManager + */ +m.addSamplerTexture = "func_147992_a" +/** + * + * + * Parent Class: ShaderManager + */ +m.endShader = "func_147993_b" +/** + * + * + * Parent Class: ShaderManager + */ +m.getFragmentShaderLoader = "func_147994_f" +/** + * + * + * Parent Class: ShaderManager + */ +m.useShader = "func_147995_c" +/** + * + * + * Parent Class: ShaderManager + */ +m.parseSampler = "func_147996_a" +/** + * + * + * Parent Class: ShaderGroup + */ +m.loadShaderGroup = "func_148018_a" +/** + * + * + * Parent Class: ShaderGroup + */ +m.addFramebuffer = "func_148020_a" +/** + * + * + * Parent Class: ShaderGroup + */ +m.deleteShaderGroup = "func_148021_a" +/** + * + * + * Parent Class: ShaderGroup + */ +m.getShaderGroupName = "func_148022_b" +/** + * + * + * Parent Class: ShaderGroup + */ +m.addShader = "func_148023_a" +/** + * + * + * Parent Class: ShaderGroup + */ +m.resetProjectionMatrix = "func_148024_c" +/** + * + * + * Parent Class: ShaderGroup + */ +m.createBindFramebuffers = "func_148026_a" +/** + * + * + * Parent Class: ShaderGroup + */ +m.initTarget = "func_148027_a" +/** + * + * + * Parent Class: ShaderGroup + */ +m.initUniform = "func_148028_c" +/** + * + * + * Parent Class: Shader + */ +m.preLoadShader = "func_148040_d" +/** + * + * + * Parent Class: Shader + */ +m.addAuxFramebuffer = "func_148041_a" +m.loadShader = {} +/** + * + * + * Parent Class: Shader + */ +m.loadShader.Shader = "func_148042_a" +/** + * + * + * Parent Class: ShaderLoader + */ +m.loadShader.ShaderLoader = "func_148057_a" +/** + * + * + * Parent Class: EntityRenderer + */ +m.loadShader.EntityRenderer = "func_175069_a" + +/** + * + * + * Parent Class: Shader + */ +m.getShaderManager = "func_148043_c" +/** + * + * + * Parent Class: Shader + */ +m.setProjectionMatrix = "func_148045_a" +/** + * + * + * Parent Class: ShaderLoader + */ +m.getShaderFilename = "func_148055_a" +/** + * + * + * Parent Class: ShaderLoader + */ +m.attachShader = "func_148056_a" +m.getShaderName = {} +/** + * + * + * Parent Class: ShaderLoader$ShaderType + */ +m.getShaderName.ShaderLoader$ShaderType = "func_148062_a" +/** + * + * + * Parent Class: ShaderUniform + */ +m.getShaderName.ShaderUniform = "func_148086_a" + +/** + * + * + * Parent Class: ShaderLoader$ShaderType + */ +m.getShaderExtension = "func_148063_b" +/** + * gets a map of loaded shaders for the ShaderType. + * + * Parent Class: ShaderLoader$ShaderType + */ +m.getLoadedShaders = "func_148064_d" +/** + * + * + * Parent Class: ShaderLoader$ShaderType + */ +m.getShaderMode = "func_148065_c" +/** + * + * + * Parent Class: ShaderLinkHelper + */ +m.getStaticShaderLinkHelper = "func_148074_b" +/** + * + * + * Parent Class: ShaderLinkHelper + */ +m.linkProgram = "func_148075_b" +/** + * + * + * Parent Class: ShaderLinkHelper + */ +m.setNewStaticShaderLinkHelper = "func_148076_a" +/** + * + * + * Parent Class: ShaderLinkHelper + */ +m.createProgram = "func_148078_c" +m.set = {} +/** + * + * + * Parent Class: ShaderUniform + */ +m.set.ShaderUniform = "func_148097_a" +/** + * Set the given index to the given tag + * + * Parent Class: NBTTagList + */ +m.set.NBTTagList = "func_150304_a" +/** + * + * + * Parent Class: ExtendedBlockStorage + */ +m.set.ExtendedBlockStorage = "func_177484_a" +/** + * Set the values + * + * Parent Class: BlockPos$MutableBlockPos + */ +m.set.BlockPos$MutableBlockPos = "func_181079_c" +/** + * "Arguments are x + * + * Parent Class: NibbleArray + */ +m.set.NibbleArray = "func_76581_a" +/** + * World sets this RenderManager's worldObj to the world provided + * + * Parent Class: RenderManager + */ +m.set.RenderManager = "func_78717_a" + +/** + * + * + * Parent Class: ShaderUniform + */ +m.uploadFloatMatrix = "func_148082_k" +/** + * + * + * Parent Class: ShaderUniform + */ +m.setUniformLocation = "func_148084_b" +/** + * + * + * Parent Class: ShaderUniform + */ +m.parseType = "func_148085_a" +/** + * + * + * Parent Class: ShaderUniform + */ +m.uploadFloat = "func_148089_j" +/** + * + * + * Parent Class: ShaderUniform + */ +m.uploadInt = "func_148091_i" +/** + * + * + * Parent Class: ShaderUniform + */ +m.upload = "func_148093_b" +m.drawSelectionBox = {} +/** + * Draws the selection box around the selected slot element. + * + * Parent Class: GuiClickableScrolledSelectionListProxy + */ +m.drawSelectionBox.GuiClickableScrolledSelectionListProxy = "func_148120_b" +/** + * "Draws the selection box for the player. Args: entityPlayer + * + * Parent Class: RenderGlobal + */ +m.drawSelectionBox.RenderGlobal = "func_72731_b" + +/** + * Stop the thing from scrolling out of bounds + * + * Parent Class: GuiSlot + */ +m.bindAmountScrolled = "func_148121_k" +/** + * + * + * Parent Class: GuiSlot + */ +m.setDimensions = "func_148122_a" +/** + * + * + * Parent Class: GuiSlot + */ +m.getSlotIndexFromScreenCoords = "func_148124_c" +m.getEnabled = {} +/** + * + * + * Parent Class: GuiSlot + */ +m.getEnabled.GuiSlot = "func_148125_i" +/** + * + * + * Parent Class: GuiButtonRealmsProxy + */ +m.getEnabled.GuiButtonRealmsProxy = "func_154315_e" + +m.getSize = {} +/** + * + * + * Parent Class: GuiIngestServers$ServerList + */ +m.getSize.GuiIngestServers$ServerList = "func_148127_b" +/** + * + * + * Parent Class: VertexFormatElement + */ +m.getSize.VertexFormatElement = "func_177368_f" +/** + * + * + * Parent Class: VertexFormatElement$EnumType + */ +m.getSize.VertexFormatElement$EnumType = "func_177395_a" +/** + * + * + * Parent Class: WorldBorder + */ +m.getSize.WorldBorder = "func_177722_l" + +m.drawScreen = {} +/** + * + * + * Parent Class: GuiSimpleScrolledSelectionListProxy + */ +m.drawScreen.GuiSimpleScrolledSelectionListProxy = "func_148128_a" +/** + * "Draws the screen and all the components in it. Args : mouseX + * + * Parent Class: GuiTwitchUserMode + */ +m.drawScreen.GuiTwitchUserMode = "func_73863_a" + +/** + * Handles drawing a list's header row. + * + * Parent Class: GuiResourcePackList + */ +m.drawListHeader = "func_148129_a" +/** + * + * + * Parent Class: GuiSlot + */ +m.setShowSelectionBox = "func_148130_a" +/** + * Returns true if the element passed in is currently selected + * + * Parent Class: GuiIngestServers$ServerList + */ +m.isSelected = "func_148131_a" +/** + * "Sets hasListHeader and headerHeight. Params: hasListHeader + * + * Parent Class: GuiSlot + */ +m.setHasListHeader = "func_148133_a" +/** + * Registers the IDs that can be used for the scrollbar's up/down buttons. + * + * Parent Class: GuiSlot + */ +m.registerScrollButtons = "func_148134_d" +/** + * Overlays the background to hide scrolled items + * + * Parent Class: GuiSlot + */ +m.overlayBackground = "func_148136_c" +/** + * + * + * Parent Class: GuiIngestServers$ServerList + */ +m.getScrollBarX = "func_148137_d" +/** + * Return the height of the content being scrolled + * + * Parent Class: GuiStats$StatsMobsList + */ +m.getContentHeight = "func_148138_e" +/** + * Gets the width of the list + * + * Parent Class: GuiResourcePackList + */ +m.getListWidth = "func_148139_c" +/** + * "Sets the left and right bounds of the slot. Param is the left bound + * + * Parent Class: GuiSlot + */ +m.setSlotXBoundsFromLeft = "func_148140_g" +/** + * + * + * Parent Class: GuiSlot + */ +m.isMouseYWithinSlotBounds = "func_148141_e" +/** + * "The element in the slot that was clicked + * + * Parent Class: GuiIngestServers$ServerList + */ +m.elementClicked = "func_148144_a" +/** + * "Scrolls the slot by the given amount. A positive value scrolls down + * + * Parent Class: GuiSlot + */ +m.scrollBy = "func_148145_f" +/** + * + * + * Parent Class: GuiSlot + */ +m.getSlotHeight = "func_148146_j" +/** + * Returns the amountScrolled field as an integer. + * + * Parent Class: GuiSlot + */ +m.getAmountScrolled = "func_148148_g" +/** + * Gets the IGuiListEntry object for the given index + * + * Parent Class: GuiResourcePackList + */ +m.getListEntry = "func_148180_b" +/** + * + * + * Parent Class: ServerSelectionList + */ +m.setSelectedSlotIndex = "func_148192_c" +/** + * + * + * Parent Class: GuiResourcePackList + */ +m.getList = "func_148201_l" +/** + * + * + * Parent Class: GuiResourcePackSelected + */ +m.getListHeader = "func_148202_k" +m.updateMapTexture = {} +/** + * Updates a map {@link net.minecraft.client.gui.MapItemRenderer.Instance#mapTexture texture} + * + * Parent Class: MapItemRenderer$Instance + */ +m.updateMapTexture.MapItemRenderer$Instance = "func_148236_a" +/** + * Updates a map texture + * + * Parent Class: MapItemRenderer + */ +m.updateMapTexture.MapItemRenderer = "func_148246_a" + +m.render = {} +/** + * Renders map and players to it + * + * Parent Class: MapItemRenderer$Instance + */ +m.render.MapItemRenderer$Instance = "func_148237_a" +/** + * + * + * Parent Class: GuiStreamIndicator + */ +m.render.GuiStreamIndicator = "func_152437_a" +/** + * + * + * Parent Class: ModelBox + */ +m.render.ModelBox = "func_178780_a" +/** + * Sets the models various rotation angles then renders the model. + * + * Parent Class: ModelEnderCrystal + */ +m.render.ModelEnderCrystal = "func_78088_a" +/** + * + * + * Parent Class: ModelRenderer + */ +m.render.ModelRenderer = "func_78785_a" + +/** + * Returns {@link net.minecraft.client.gui.MapItemRenderer.Instance MapItemRenderer.Instance} with given map data + * + * Parent Class: MapItemRenderer + */ +m.getMapRendererInstance = "func_148248_b" +/** + * Clears the currently loaded maps and removes their corresponding textures + * + * Parent Class: MapItemRenderer + */ +m.clearLoadedMaps = "func_148249_a" +/** + * + * + * Parent Class: MapItemRenderer + */ +m.renderMap = "func_148250_a" +/** + * + * + * Parent Class: Session + */ +m.getToken = "func_148254_d" +/** + * + * + * Parent Class: Session + */ +m.getPlayerID = "func_148255_b" +m.getProfile = {} +/** + * + * + * Parent Class: Session + */ +m.getProfile.Session = "func_148256_e" +/** + * + * + * Parent Class: C00PacketLoginStart + */ +m.getProfile.C00PacketLoginStart = "func_149304_c" +/** + * + * + * Parent Class: S02PacketLoginSuccess + */ +m.getProfile.S02PacketLoginSuccess = "func_179730_a" +/** + * + * + * Parent Class: S38PacketPlayerListItem$AddPlayerData + */ +m.getProfile.S38PacketPlayerListItem$AddPlayerData = "func_179962_a" + +/** + * "Saves a screenshot in the game directory with a time-stamped filename. Args: gameDirectory + * + * Parent Class: ScreenShotHelper + */ +m.saveScreenshot = "func_148260_a" +/** + * + * + * Parent Class: GameSettings$Options + */ +m.denormalizeValue = "func_148262_d" +/** + * + * + * Parent Class: GameSettings$Options + */ +m.setValueMax = "func_148263_a" +/** + * + * + * Parent Class: GameSettings$Options + */ +m.snapToStep = "func_148264_f" +/** + * + * + * Parent Class: GameSettings$Options + */ +m.normalizeValue = "func_148266_c" +/** + * + * + * Parent Class: GameSettings$Options + */ +m.getValueMax = "func_148267_f" +/** + * + * + * Parent Class: GameSettings$Options + */ +m.snapToStepClamp = "func_148268_e" +/** + * + * + * Parent Class: ServerListEntryLanDetected + */ +m.getLanServer = "func_148289_a" +m.getServerData = {} +/** + * + * + * Parent Class: ServerListEntryNormal + */ +m.getServerData.ServerListEntryNormal = "func_148296_a" +/** + * Gets the ServerData instance stored for the given index in the list. + * + * Parent Class: ServerList + */ +m.getServerData.ServerList = "func_78850_a" + +/** + * + * + * Parent Class: ServerListEntryNormal + */ +m.prepareServerIcon = "func_148297_b" +/** + * Updates the gui slots ItemStack's based on scroll position. + * + * Parent Class: GuiContainerCreative$ContainerCreative + */ +m.scrollTo = "func_148329_a" +/** + * Randomly generates a new name built up of 3 or 4 randomly selected words. + * + * Parent Class: EnchantmentNameParts + */ +m.generateNewRandomName = "func_148334_a" +/** + * Resets the underlying random number generator using a given seed. + * + * Parent Class: EnchantmentNameParts + */ +m.reseedRandomGenerator = "func_148335_a" +/** + * + * + * Parent Class: ResourcePackRepository + */ +m.setRepositories = "func_148527_a" +/** + * + * + * Parent Class: ResourcePackRepository + */ +m.clearResourcePack = "func_148529_f" +/** + * Getter for the IResourcePack instance associated with this ResourcePackRepository + * + * Parent Class: ResourcePackRepository + */ +m.getResourcePackInstance = "func_148530_e" +/** + * + * + * Parent Class: TextureMetadataSection + */ +m.getListMipmaps = "func_148535_c" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.sendPacketToAllPlayersInDimension = "func_148537_a" +/** + * Sends the given string to every player as chat message. + * + * Parent Class: ServerConfigurationManager + */ +m.sendChatMsg = "func_148539_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.sendPacketToAllPlayers = "func_148540_a" +/** + * "params: x + * + * Parent Class: ServerConfigurationManager + */ +m.sendToAllNear = "func_148541_a" +/** + * "checks ban-lists + * + * Parent Class: ServerConfigurationManager + */ +m.allowUserToConnect = "func_148542_a" +/** + * "params: srcPlayer + * + * Parent Class: ServerConfigurationManager + */ +m.sendToAllNearExcept = "func_148543_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.sendChatMsgImpl = "func_148544_a" +/** + * also checks for multiple logins across servers + * + * Parent Class: ServerConfigurationManager + */ +m.createPlayerForUser = "func_148545_a" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +m.isStreaming = "func_148552_f" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +m.setSoundEntryVolume = "func_148553_a" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +m.setSoundEntryWeight = "func_148554_a" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +m.getSoundEntryWeight = "func_148555_d" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +m.getSoundEntryName = "func_148556_a" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +m.setStreaming = "func_148557_a" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +m.getSoundEntryVolume = "func_148558_b" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +m.setSoundEntryPitch = "func_148559_b" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +m.getSoundEntryPitch = "func_148560_c" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +m.setSoundEntryName = "func_148561_a" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +m.setSoundEntryType = "func_148562_a" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +m.getSoundEntryType = "func_148563_e" +/** + * + * + * Parent Class: SoundList + */ +m.getSoundList = "func_148570_a" +/** + * + * + * Parent Class: SoundList + */ +m.setSoundCategory = "func_148571_a" +/** + * + * + * Parent Class: SoundList + */ +m.setReplaceExisting = "func_148572_a" +m.getSoundCategory = {} +/** + * + * + * Parent Class: SoundList + */ +m.getSoundCategory.SoundList = "func_148573_c" +/** + * + * + * Parent Class: SoundEventAccessorComposite + */ +m.getSoundCategory.SoundEventAccessorComposite = "func_148728_d" + +/** + * + * + * Parent Class: SoundList + */ +m.canReplaceExisting = "func_148574_b" +m.getType = {} +/** + * + * + * Parent Class: SoundList$SoundEntry$Type + */ +m.getType.SoundList$SoundEntry$Type = "func_148580_a" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.getType.S0EPacketSpawnObject = "func_148993_l" +/** + * Get the given FlowerType from BlockType & metadata + * + * Parent Class: BlockFlower$EnumFlowerType + */ +m.getType.BlockFlower$EnumFlowerType = "func_176967_a" +/** + * + * + * Parent Class: VertexFormatElement + */ +m.getType.VertexFormatElement = "func_177367_b" +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +m.getType.ChunkCompileTaskGenerator = "func_178538_g" +/** + * + * + * Parent Class: S45PacketTitle + */ +m.getType.S45PacketTitle = "func_179807_a" +/** + * "Returns the id of the area to display the text + * + * Parent Class: S02PacketChat + */ +m.getType.S02PacketChat = "func_179841_c" +/** + * + * + * Parent Class: GameRules$Value + */ +m.getType.GameRules$Value = "func_180254_e" + +/** + * + * + * Parent Class: ISound$AttenuationType + */ +m.getTypeInt = "func_148586_a" +/** + * "Normalizes volume level from parameters. Range [0.0 + * + * Parent Class: SoundManager + */ +m.getNormalizedVolume = "func_148594_a" +/** + * "Returns the sound level (between 0.0 and 1.0) for a category + * + * Parent Class: SoundManager + */ +m.getSoundCategoryVolume = "func_148595_a" +/** + * + * + * Parent Class: SoundManager + */ +m.reloadSoundSystem = "func_148596_a" +/** + * Adjusts volume for currently playing sounds in this category + * + * Parent Class: SoundManager + */ +m.setSoundCategoryVolume = "func_148601_a" +/** + * Resumes playing all currently playing sounds (after pauseAllSounds) + * + * Parent Class: SoundManager + */ +m.resumeAllSounds = "func_148604_f" +/** + * + * + * Parent Class: SoundManager + */ +m.updateAllSounds = "func_148605_d" +/** + * "Normalizes pitch from parameters and clamps to [0.5 + * + * Parent Class: SoundManager + */ +m.getNormalizedPitch = "func_148606_a" +/** + * "Tries to add the paulscode library and the relevant codecs. If it fails + * + * Parent Class: SoundManager + */ +m.loadSoundSystem = "func_148608_i" +/** + * Pauses all currently playing sounds + * + * Parent Class: SoundManager + */ +m.pauseAllSounds = "func_148610_e" +/** + * + * + * Parent Class: SoundManager + */ +m.getURLForSoundResource = "func_148612_a" +/** + * Cleans up the Sound System + * + * Parent Class: SoundManager + */ +m.unloadSoundSystem = "func_148613_b" +/** + * Stops all currently playing sounds + * + * Parent Class: SoundManager + */ +m.stopAllSounds = "func_148614_c" +/** + * Returns the maximum delay between playing music of this type. + * + * Parent Class: MusicTicker$MusicType + */ +m.getMaxDelay = "func_148633_c" +/** + * Returns the minimum delay between playing music of this type. + * + * Parent Class: MusicTicker$MusicType + */ +m.getMinDelay = "func_148634_b" +/** + * + * + * Parent Class: MusicTicker$MusicType + */ +m.getMusicLocation = "func_148635_a" +/** + * + * + * Parent Class: SoundPoolEntry + */ +m.setVolume = "func_148647_b" +/** + * + * + * Parent Class: SoundPoolEntry + */ +m.isStreamingSound = "func_148648_d" +/** + * + * + * Parent Class: SoundPoolEntry + */ +m.setPitch = "func_148651_a" +/** + * + * + * Parent Class: SoundPoolEntry + */ +m.getSoundPoolEntryLocation = "func_148652_a" +/** + * + * + * Parent Class: SoundEventAccessor + */ +m.cloneEntry = "func_148720_g" +m.getWeight = {} +/** + * + * + * Parent Class: SoundEventAccessor + */ +m.getWeight.SoundEventAccessor = "func_148721_a" +/** + * + * + * Parent Class: ModelBlockDefinition$Variant + */ +m.getWeight.ModelBlockDefinition$Variant = "func_178430_d" +/** + * Retrieves the weight value of an Enchantment. This weight value is used within vanilla to determine how rare an enchantment is. + * + * Parent Class: Enchantment + */ +m.getWeight.Enchantment = "func_77324_c" + +/** + * + * + * Parent Class: SoundEventAccessorComposite + */ +m.addSoundToEventPool = "func_148727_a" +/** + * + * + * Parent Class: SoundEventAccessorComposite + */ +m.getSoundEventLocation = "func_148729_c" +/** + * Creates the Map we will use to map keys to their registered values. + * + * Parent Class: RegistrySimple + */ +m.createUnderlyingMap = "func_148740_a" +/** + * Does this registry contain an entry for the given key? + * + * Parent Class: RegistrySimple + */ +m.containsKey = "func_148741_d" +m.getKeys = {} +/** + * Gets all the keys recognized by this registry. + * + * Parent Class: RegistrySimple + */ +m.getKeys.RegistrySimple = "func_148742_b" +/** + * + * + * Parent Class: UserListWhitelist + */ +m.getKeys.UserListWhitelist = "func_152685_a" + +/** + * + * + * Parent Class: ObjectIntIdentityMap + */ +m.getByValue = "func_148745_a" +/** + * + * + * Parent Class: ObjectIntIdentityMap + */ +m.put = "func_148746_a" +m.get = {} +/** + * + * + * Parent Class: ObjectIntIdentityMap + */ +m.get.ObjectIntIdentityMap = "func_148747_b" +/** + * Send a GET request to the given URL. + * + * Parent Class: HttpUtil + */ +m.get.HttpUtil = "func_152755_a" +/** + * + * + * Parent Class: ExtendedBlockStorage + */ +m.get.ExtendedBlockStorage = "func_177485_a" +/** + * Get the tag at the given position + * + * Parent Class: NBTTagList + */ +m.get.NBTTagList = "func_179238_g" +/** + * "Returns the nibble of data corresponding to the passed in x + * + * Parent Class: NibbleArray + */ +m.get.NibbleArray = "func_76582_a" +/** + * + * + * Parent Class: NibbleArrayReader + */ +m.get.NibbleArrayReader = "func_76686_a" + +/** + * Gets the object identified by the given ID. + * + * Parent Class: RegistryNamespaced + */ +m.getObjectById = "func_148754_a" +/** + * Gets the integer ID we use to identify the given object. + * + * Parent Class: RegistryNamespaced + */ +m.getIDForObject = "func_148757_b" +/** + * + * + * Parent Class: SoundRegistry + */ +m.registerSound = "func_148762_a" +m.clearMap = {} +/** + * Reset the underlying sound map (Called on resource manager reload) + * + * Parent Class: SoundRegistry + */ +m.clearMap.SoundRegistry = "func_148763_c" +/** + * Removes all entries from the map + * + * Parent Class: IntHashMap + */ +m.clearMap.IntHashMap = "func_76046_c" + +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glBlendFunc = "func_148821_a" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.isFramebufferEnabled = "func_148822_b" +/** + * Passes this Packet on to the NetHandler for processing. + * + * Parent Class: C00PacketServerQuery + */ +m.processPacket = "func_148833_a" +/** + * Reads the raw packet data from the data stream. + * + * Parent Class: C00PacketServerQuery + */ +m.readPacketData = "func_148837_a" +/** + * Writes the raw packet data to the data stream. + * + * Parent Class: C00PacketServerQuery + */ +m.writePacketData = "func_148840_b" +/** + * + * + * Parent Class: S25PacketBlockBreakAnim + */ +m.getBreakerId = "func_148845_c" +/** + * + * + * Parent Class: S35PacketUpdateTileEntity + */ +m.getTileEntityType = "func_148853_f" +/** + * + * + * Parent Class: S35PacketUpdateTileEntity + */ +m.getNbtCompound = "func_148857_g" +/** + * pitch data for noteblocks + * + * Parent Class: S24PacketBlockAction + */ +m.getData2 = "func_148864_h" +/** + * instrument data for noteblocks + * + * Parent Class: S24PacketBlockAction + */ +m.getData1 = "func_148869_g" +m.getWindowId = {} +/** + * + * + * Parent Class: S32PacketConfirmTransaction + */ +m.getWindowId.S32PacketConfirmTransaction = "func_148889_c" +/** + * + * + * Parent Class: S2DPacketOpenWindow + */ +m.getWindowId.S2DPacketOpenWindow = "func_148901_c" +/** + * + * + * Parent Class: S31PacketWindowProperty + */ +m.getWindowId.S31PacketWindowProperty = "func_149182_c" +/** + * + * + * Parent Class: C0FPacketConfirmTransaction + */ +m.getWindowId.C0FPacketConfirmTransaction = "func_149532_c" +/** + * + * + * Parent Class: C11PacketEnchantItem + */ +m.getWindowId.C11PacketEnchantItem = "func_149539_c" +/** + * + * + * Parent Class: C0EPacketClickWindow + */ +m.getWindowId.C0EPacketClickWindow = "func_149548_c" + +m.getActionNumber = {} +/** + * + * + * Parent Class: S32PacketConfirmTransaction + */ +m.getActionNumber.S32PacketConfirmTransaction = "func_148890_d" +/** + * + * + * Parent Class: C0EPacketClickWindow + */ +m.getActionNumber.C0EPacketClickWindow = "func_149547_f" + +/** + * + * + * Parent Class: S2DPacketOpenWindow + */ +m.getSlotCount = "func_148898_f" +/** + * + * + * Parent Class: S2DPacketOpenWindow + */ +m.hasSlots = "func_148900_g" +/** + * + * + * Parent Class: S2DPacketOpenWindow + */ +m.getGuiId = "func_148902_e" +/** + * + * + * Parent Class: S30PacketWindowItems + */ +m.getItemStacks = "func_148910_d" +/** + * + * + * Parent Class: S02PacketChat + */ +m.isChat = "func_148916_d" +m.getY = {} +/** + * + * + * Parent Class: S08PacketPlayerPosLook + */ +m.getY.S08PacketPlayerPosLook = "func_148928_d" +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +m.getY.S0CPacketSpawnPlayer = "func_148949_g" +/** + * + * + * Parent Class: S11PacketSpawnExperienceOrb + */ +m.getY.S11PacketSpawnExperienceOrb = "func_148983_e" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.getY.S0EPacketSpawnObject = "func_148998_e" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +m.getY.S0FPacketSpawnMob = "func_149034_g" +/** + * + * + * Parent Class: S27PacketExplosion + */ +m.getY.S27PacketExplosion = "func_149143_g" +/** + * + * + * Parent Class: S29PacketSoundEffect + */ +m.getY.S29PacketSoundEffect = "func_149211_e" +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +m.getY.S18PacketEntityTeleport = "func_149448_e" +/** + * Get the Y coordinate + * + * Parent Class: Vec3i + */ +m.getY.Vec3i = "func_177956_o" +/** + * Gets the Y axis rotation + * + * Parent Class: Rotations + */ +m.getY.Rotations = "func_179416_c" +/** + * + * + * Parent Class: EntityMoveHelper + */ +m.getY.EntityMoveHelper = "func_179919_e" +/** + * + * + * Parent Class: PositionImpl + */ +m.getY.PositionImpl = "func_82617_b" + +m.getYaw = {} +/** + * + * + * Parent Class: S08PacketPlayerPosLook + */ +m.getYaw.S08PacketPlayerPosLook = "func_148931_f" +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +m.getYaw.S0CPacketSpawnPlayer = "func_148941_i" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.getYaw.S0EPacketSpawnObject = "func_149006_k" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +m.getYaw.S0FPacketSpawnMob = "func_149028_l" +/** + * + * + * Parent Class: S19PacketEntityHeadLook + */ +m.getYaw.S19PacketEntityHeadLook = "func_149380_c" +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +m.getYaw.S18PacketEntityTeleport = "func_149450_g" +/** + * + * + * Parent Class: C03PacketPlayer + */ +m.getYaw.C03PacketPlayer = "func_149462_g" + +m.getX = {} +/** + * + * + * Parent Class: S08PacketPlayerPosLook + */ +m.getX.S08PacketPlayerPosLook = "func_148932_c" +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +m.getX.S0CPacketSpawnPlayer = "func_148942_f" +/** + * + * + * Parent Class: S11PacketSpawnExperienceOrb + */ +m.getX.S11PacketSpawnExperienceOrb = "func_148984_d" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.getX.S0EPacketSpawnObject = "func_148997_d" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +m.getX.S0FPacketSpawnMob = "func_149023_f" +/** + * + * + * Parent Class: S27PacketExplosion + */ +m.getX.S27PacketExplosion = "func_149148_f" +/** + * + * + * Parent Class: S29PacketSoundEffect + */ +m.getX.S29PacketSoundEffect = "func_149207_d" +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +m.getX.S18PacketEntityTeleport = "func_149449_d" +/** + * Get the X coordinate + * + * Parent Class: Vec3i + */ +m.getX.Vec3i = "func_177958_n" +/** + * Gets the X axis rotation + * + * Parent Class: Rotations + */ +m.getX.Rotations = "func_179415_b" +/** + * + * + * Parent Class: EntityMoveHelper + */ +m.getX.EntityMoveHelper = "func_179917_d" +/** + * + * + * Parent Class: PositionImpl + */ +m.getX.PositionImpl = "func_82615_a" + +m.getZ = {} +/** + * + * + * Parent Class: S08PacketPlayerPosLook + */ +m.getZ.S08PacketPlayerPosLook = "func_148933_e" +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +m.getZ.S0CPacketSpawnPlayer = "func_148946_h" +/** + * + * + * Parent Class: S11PacketSpawnExperienceOrb + */ +m.getZ.S11PacketSpawnExperienceOrb = "func_148982_f" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.getZ.S0EPacketSpawnObject = "func_148994_f" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +m.getZ.S0FPacketSpawnMob = "func_149029_h" +/** + * + * + * Parent Class: S27PacketExplosion + */ +m.getZ.S27PacketExplosion = "func_149145_h" +/** + * + * + * Parent Class: S29PacketSoundEffect + */ +m.getZ.S29PacketSoundEffect = "func_149210_f" +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +m.getZ.S18PacketEntityTeleport = "func_149446_f" +/** + * Get the Z coordinate + * + * Parent Class: Vec3i + */ +m.getZ.Vec3i = "func_177952_p" +/** + * Gets the Z axis rotation + * + * Parent Class: Rotations + */ +m.getZ.Rotations = "func_179413_d" +/** + * + * + * Parent Class: EntityMoveHelper + */ +m.getZ.EntityMoveHelper = "func_179918_f" +/** + * + * + * Parent Class: PositionImpl + */ +m.getZ.PositionImpl = "func_82616_c" + +m.getEntityID = {} +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +m.getEntityID.S0CPacketSpawnPlayer = "func_148943_d" +/** + * + * + * Parent Class: S10PacketSpawnPainting + */ +m.getEntityID.S10PacketSpawnPainting = "func_148965_c" +/** + * + * + * Parent Class: S0BPacketAnimation + */ +m.getEntityID.S0BPacketAnimation = "func_148978_c" +/** + * + * + * Parent Class: S11PacketSpawnExperienceOrb + */ +m.getEntityID.S11PacketSpawnExperienceOrb = "func_148985_c" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.getEntityID.S0EPacketSpawnObject = "func_149001_c" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +m.getEntityID.S0FPacketSpawnMob = "func_149024_d" +/** + * + * + * Parent Class: S0DPacketCollectItem + */ +m.getEntityID.S0DPacketCollectItem = "func_149353_d" +/** + * + * + * Parent Class: S04PacketEntityEquipment + */ +m.getEntityID.S04PacketEntityEquipment = "func_149389_d" +/** + * + * + * Parent Class: S12PacketEntityVelocity + */ +m.getEntityID.S12PacketEntityVelocity = "func_149412_c" +/** + * gets the entityID of a specific entity + * + * Parent Class: EntityList + */ +m.getEntityID.EntityList = "func_75619_a" + +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +m.getCurrentItemID = "func_148947_k" +/** + * + * + * Parent Class: S10PacketSpawnPainting + */ +m.getTitle = "func_148961_h" +/** + * + * + * Parent Class: S0BPacketAnimation + */ +m.getAnimationType = "func_148977_d" +/** + * + * + * Parent Class: S11PacketSpawnExperienceOrb + */ +m.getXPValue = "func_148986_g" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.setY = "func_148995_b" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.setX = "func_148996_a" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.getSpeedZ = "func_148999_i" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.setSpeedY = "func_149000_e" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.setSpeedX = "func_149003_d" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.getSpeedY = "func_149004_h" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.setZ = "func_149005_c" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.setSpeedZ = "func_149007_f" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +m.getSpeedX = "func_149010_g" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +m.getEntityType = "func_149025_e" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +m.getVelocityX = "func_149026_i" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +m.getVelocityZ = "func_149031_k" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +m.getHeadPitch = "func_149032_n" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +m.getVelocityY = "func_149033_j" +m.getEntity = {} +/** + * + * + * Parent Class: S14PacketEntity + */ +m.getEntity.S14PacketEntity = "func_149065_a" +/** + * + * + * Parent Class: S19PacketEntityStatus + */ +m.getEntity.S19PacketEntityStatus = "func_149161_a" +/** + * + * + * Parent Class: S19PacketEntityHeadLook + */ +m.getEntity.S19PacketEntityHeadLook = "func_149381_a" +/** + * + * + * Parent Class: CommandBase + */ +m.getEntity.CommandBase = "func_175768_b" +/** + * + * + * Parent Class: C18PacketSpectate + */ +m.getEntity.C18PacketSpectate = "func_179727_a" +/** + * + * + * Parent Class: S49PacketUpdateEntityNBT + */ +m.getEntity.S49PacketUpdateEntityNBT = "func_179764_a" +/** + * + * + * Parent Class: S43PacketCamera + */ +m.getEntity.S43PacketCamera = "func_179780_a" +/** + * + * + * Parent Class: EntityDamageSourceIndirect + */ +m.getEntity.EntityDamageSourceIndirect = "func_76346_g" + +m.getEffectId = {} +/** + * + * + * Parent Class: S1EPacketRemoveEntityEffect + */ +m.getEffectId.S1EPacketRemoveEntityEffect = "func_149075_d" +/** + * + * + * Parent Class: S1DPacketEntityEffect + */ +m.getEffectId.S1DPacketEntityEffect = "func_149427_e" + +m.getWorldType = {} +/** + * + * + * Parent Class: S07PacketRespawn + */ +m.getWorldType.S07PacketRespawn = "func_149080_f" +/** + * + * + * Parent Class: S01PacketJoinGame + */ +m.getWorldType.S01PacketJoinGame = "func_149196_i" +/** + * + * + * Parent Class: ChunkCache + */ +m.getWorldType.ChunkCache = "func_175624_G" + +/** + * + * + * Parent Class: S07PacketRespawn + */ +m.getDimensionID = "func_149082_c" +m.getGameType = {} +/** + * + * + * Parent Class: S07PacketRespawn + */ +m.getGameType.S07PacketRespawn = "func_149083_e" +/** + * + * + * Parent Class: S01PacketJoinGame + */ +m.getGameType.S01PacketJoinGame = "func_149198_e" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +m.getGameType.NetworkPlayerInfo = "func_178848_b" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getGameType.MinecraftServer = "func_71265_f" +/** + * + * + * Parent Class: ItemInWorldManager + */ +m.getGameType.ItemInWorldManager = "func_73081_b" +/** + * Gets the GameType. + * + * Parent Class: WorldInfo + */ +m.getGameType.WorldInfo = "func_76077_q" +/** + * Gets the game type. + * + * Parent Class: WorldSettings + */ +m.getGameType.WorldSettings = "func_77162_e" + +/** + * + * + * Parent Class: S13PacketDestroyEntities + */ +m.getEntityIDs = "func_149098_c" +m.getFlySpeed = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +m.getFlySpeed.S39PacketPlayerAbilities = "func_149101_g" +/** + * + * + * Parent Class: PlayerCapabilities + */ +m.getFlySpeed.PlayerCapabilities = "func_75093_a" + +m.setFlying = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +m.setFlying.S39PacketPlayerAbilities = "func_149102_b" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +m.setFlying.C13PacketPlayerAbilities = "func_149483_b" + +m.isCreativeMode = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +m.isCreativeMode.S39PacketPlayerAbilities = "func_149103_f" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +m.isCreativeMode.C13PacketPlayerAbilities = "func_149484_f" + +m.setFlySpeed = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +m.setFlySpeed.S39PacketPlayerAbilities = "func_149104_a" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +m.setFlySpeed.C13PacketPlayerAbilities = "func_149485_a" +/** + * + * + * Parent Class: PlayerCapabilities + */ +m.setFlySpeed.PlayerCapabilities = "func_75092_a" + +m.isAllowFlying = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +m.isAllowFlying.S39PacketPlayerAbilities = "func_149105_e" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +m.isAllowFlying.C13PacketPlayerAbilities = "func_149486_e" + +m.isFlying = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +m.isFlying.S39PacketPlayerAbilities = "func_149106_d" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +m.isFlying.C13PacketPlayerAbilities = "func_149488_d" + +m.getWalkSpeed = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +m.getWalkSpeed.S39PacketPlayerAbilities = "func_149107_h" +/** + * + * + * Parent Class: PlayerCapabilities + */ +m.getWalkSpeed.PlayerCapabilities = "func_75094_b" + +m.setInvulnerable = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +m.setInvulnerable.S39PacketPlayerAbilities = "func_149108_a" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +m.setInvulnerable.C13PacketPlayerAbilities = "func_149490_a" +/** + * Set whether this skull comes from an invulnerable (aura) wither boss. + * + * Parent Class: EntityWitherSkull + */ +m.setInvulnerable.EntityWitherSkull = "func_82343_e" + +m.setAllowFlying = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +m.setAllowFlying.S39PacketPlayerAbilities = "func_149109_c" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +m.setAllowFlying.C13PacketPlayerAbilities = "func_149491_c" + +m.setWalkSpeed = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +m.setWalkSpeed.S39PacketPlayerAbilities = "func_149110_b" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +m.setWalkSpeed.C13PacketPlayerAbilities = "func_149492_b" + +m.setCreativeMode = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +m.setCreativeMode.S39PacketPlayerAbilities = "func_149111_d" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +m.setCreativeMode.C13PacketPlayerAbilities = "func_149493_d" + +m.isInvulnerable = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +m.isInvulnerable.S39PacketPlayerAbilities = "func_149112_c" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +m.isInvulnerable.C13PacketPlayerAbilities = "func_149494_c" +/** + * Return whether this skull comes from an invulnerable (aura) wither boss. + * + * Parent Class: EntityWitherSkull + */ +m.isInvulnerable.EntityWitherSkull = "func_82342_d" + +/** + * + * + * Parent Class: S2BPacketChangeGameState + */ +m.getGameState = "func_149138_c" +/** + * + * + * Parent Class: S27PacketExplosion + */ +m.getStrength = "func_149146_i" +m.getAffectedBlockPositions = {} +/** + * + * + * Parent Class: S27PacketExplosion + */ +m.getAffectedBlockPositions.S27PacketExplosion = "func_149150_j" +/** + * + * + * Parent Class: Explosion + */ +m.getAffectedBlockPositions.Explosion = "func_180343_e" + +/** + * + * + * Parent Class: S19PacketEntityStatus + */ +m.getOpCode = "func_149160_c" +/** + * + * + * Parent Class: S40PacketDisconnect + */ +m.getReason = "func_149165_c" +m.getChannelName = {} +/** + * + * + * Parent Class: S3FPacketCustomPayload + */ +m.getChannelName.S3FPacketCustomPayload = "func_149169_c" +/** + * + * + * Parent Class: C17PacketCustomPayload + */ +m.getChannelName.C17PacketCustomPayload = "func_149559_c" + +/** + * + * + * Parent Class: S31PacketWindowProperty + */ +m.getVarValue = "func_149180_e" +/** + * + * + * Parent Class: S31PacketWindowProperty + */ +m.getVarIndex = "func_149181_d" +/** + * + * + * Parent Class: S34PacketMaps + */ +m.getMapId = "func_149188_c" +m.getMaxPlayers = {} +/** + * + * + * Parent Class: S01PacketJoinGame + */ +m.getMaxPlayers.S01PacketJoinGame = "func_149193_h" +/** + * + * + * Parent Class: ServerStatusResponse$PlayerCountData + */ +m.getMaxPlayers.ServerStatusResponse$PlayerCountData = "func_151332_a" +/** + * Returns the maximum number of players allowed on the server. + * + * Parent Class: MinecraftServer + */ +m.getMaxPlayers.MinecraftServer = "func_71275_y" +/** + * Returns the maximum number of players allowed on the server. + * + * Parent Class: ServerConfigurationManager + */ +m.getMaxPlayers.ServerConfigurationManager = "func_72352_l" + +/** + * + * + * Parent Class: S01PacketJoinGame + */ +m.getDimension = "func_149194_f" +/** + * + * + * Parent Class: S01PacketJoinGame + */ +m.isHardcoreMode = "func_149195_d" +/** + * + * + * Parent Class: S29PacketSoundEffect + */ +m.getSoundName = "func_149212_c" +/** + * Gets the x coordinate to spawn the particle. + * + * Parent Class: S2APacketParticles + */ +m.getXCoordinate = "func_149220_d" +/** + * Gets the x coordinate offset for the particle. The particle may use the offset for particle spread. + * + * Parent Class: S2APacketParticles + */ +m.getXOffset = "func_149221_g" +/** + * Gets the amount of particles to spawn + * + * Parent Class: S2APacketParticles + */ +m.getParticleCount = "func_149222_k" +/** + * Gets the z coordinate offset for the particle. The particle may use the offset for particle spread. + * + * Parent Class: S2APacketParticles + */ +m.getZOffset = "func_149223_i" +m.getYOffset = {} +/** + * Gets the y coordinate offset for the particle. The particle may use the offset for particle spread. + * + * Parent Class: S2APacketParticles + */ +m.getYOffset.S2APacketParticles = "func_149224_h" +/** + * Returns the Y Offset of this entity. + * + * Parent Class: EntityPlayer + */ +m.getYOffset.EntityPlayer = "func_70033_W" + +/** + * Gets the z coordinate to spawn the particle. + * + * Parent Class: S2APacketParticles + */ +m.getZCoordinate = "func_149225_f" +/** + * Gets the y coordinate to spawn the particle. + * + * Parent Class: S2APacketParticles + */ +m.getYCoordinate = "func_149226_e" +/** + * Gets the speed of the particle animation (used in client side rendering). + * + * Parent Class: S2APacketParticles + */ +m.getParticleSpeed = "func_149227_j" +/** + * + * + * Parent Class: S28PacketEffect + */ +m.getSoundData = "func_149241_e" +/** + * + * + * Parent Class: S28PacketEffect + */ +m.getSoundType = "func_149242_d" +/** + * + * + * Parent Class: S28PacketEffect + */ +m.isSoundServerwide = "func_149244_c" +m.getChunkZ = {} +/** + * + * + * Parent Class: S26PacketMapChunkBulk + */ +m.getChunkZ.S26PacketMapChunkBulk = "func_149253_b" +/** + * + * + * Parent Class: S21PacketChunkData + */ +m.getChunkZ.S21PacketChunkData = "func_149271_f" + +/** + * + * + * Parent Class: S26PacketMapChunkBulk + */ +m.getChunkCount = "func_149254_d" +m.getChunkX = {} +/** + * + * + * Parent Class: S26PacketMapChunkBulk + */ +m.getChunkX.S26PacketMapChunkBulk = "func_149255_a" +/** + * + * + * Parent Class: S21PacketChunkData + */ +m.getChunkX.S21PacketChunkData = "func_149273_e" + +/** + * + * + * Parent Class: S26PacketMapChunkBulk + */ +m.getChunkBytes = "func_149256_c" +/** + * + * + * Parent Class: S21PacketChunkData + */ +m.getExtractedDataBytes = "func_149272_d" +/** + * + * + * Parent Class: S21PacketChunkData + */ +m.getExtractedSize = "func_149276_g" +/** + * + * + * Parent Class: C01PacketPing + */ +m.getClientTime = "func_149289_c" +/** + * + * + * Parent Class: S00PacketServerInfo + */ +m.getResponse = "func_149294_c" +m.getVerifyToken = {} +/** + * + * + * Parent Class: C01PacketEncryptionResponse + */ +m.getVerifyToken.C01PacketEncryptionResponse = "func_149299_b" +/** + * + * + * Parent Class: S01PacketEncryptionRequest + */ +m.getVerifyToken.S01PacketEncryptionRequest = "func_149607_e" + +/** + * + * + * Parent Class: C01PacketEncryptionResponse + */ +m.getSecretKey = "func_149300_a" +m.getAction = {} +/** + * + * + * Parent Class: S3EPacketTeams + */ +m.getAction.S3EPacketTeams = "func_149307_h" +/** + * + * + * Parent Class: C02PacketUseEntity + */ +m.getAction.C02PacketUseEntity = "func_149565_c" +/** + * Gets the action to perform when this event is raised. + * + * Parent Class: ClickEvent + */ +m.getAction.ClickEvent = "func_150669_a" +/** + * Gets the action to perform when this event is raised. + * + * Parent Class: HoverEvent + */ +m.getAction.HoverEvent = "func_150701_a" +/** + * + * + * Parent Class: S38PacketPlayerListItem + */ +m.getAction.S38PacketPlayerListItem = "func_179768_b" +/** + * + * + * Parent Class: C0BPacketEntityAction + */ +m.getAction.C0BPacketEntityAction = "func_180764_b" + +/** + * + * + * Parent Class: S3EPacketTeams + */ +m.getFriendlyFlags = "func_149308_i" +/** + * + * + * Parent Class: S3EPacketTeams + */ +m.getSuffix = "func_149309_f" +m.getPlayers = {} +/** + * + * + * Parent Class: S3EPacketTeams + */ +m.getPlayers.S3EPacketTeams = "func_149310_g" +/** + * + * + * Parent Class: ServerStatusResponse$PlayerCountData + */ +m.getPlayers.ServerStatusResponse$PlayerCountData = "func_151331_c" +/** + * + * + * Parent Class: World + */ +m.getPlayers.World = "func_175661_b" +/** + * + * + * Parent Class: CommandGive + */ +m.getPlayers.CommandGive = "func_71536_c" + +/** + * + * + * Parent Class: S3EPacketTeams + */ +m.getPrefix = "func_149311_e" +/** + * + * + * Parent Class: S3CPacketUpdateScore + */ +m.getObjectiveName = "func_149321_d" +/** + * + * + * Parent Class: S3CPacketUpdateScore + */ +m.getScoreValue = "func_149323_e" +m.getPlayerName = {} +/** + * + * + * Parent Class: S3CPacketUpdateScore + */ +m.getPlayerName.S3CPacketUpdateScore = "func_149324_c" +/** + * Returns the name that should be renderd for the player supplied + * + * Parent Class: GuiPlayerTabOverlay + */ +m.getPlayerName.GuiPlayerTabOverlay = "func_175243_a" +/** + * + * + * Parent Class: CommandBase + */ +m.getPlayerName.CommandBase = "func_96332_d" +/** + * Returns the name of the player this score belongs to + * + * Parent Class: Score + */ +m.getPlayerName.Score = "func_96653_e" + +m.getFoodLevel = {} +/** + * + * + * Parent Class: S06PacketUpdateHealth + */ +m.getFoodLevel.S06PacketUpdateHealth = "func_149330_d" +/** + * Get the player's food level. + * + * Parent Class: FoodStats + */ +m.getFoodLevel.FoodStats = "func_75116_a" + +m.getSaturationLevel = {} +/** + * + * + * Parent Class: S06PacketUpdateHealth + */ +m.getSaturationLevel.S06PacketUpdateHealth = "func_149331_e" +/** + * Get the player's food saturation level. + * + * Parent Class: FoodStats + */ +m.getSaturationLevel.FoodStats = "func_75115_e" + +/** + * + * + * Parent Class: S0DPacketCollectItem + */ +m.getCollectedItemEntityID = "func_149354_c" +m.getWorldTime = {} +/** + * + * + * Parent Class: S03PacketTimeUpdate + */ +m.getWorldTime.S03PacketTimeUpdate = "func_149365_d" +/** + * + * + * Parent Class: World + */ +m.getWorldTime.World = "func_72820_D" +/** + * Get current world time + * + * Parent Class: WorldInfo + */ +m.getWorldTime.WorldInfo = "func_76073_f" + +m.getTotalWorldTime = {} +/** + * + * + * Parent Class: S03PacketTimeUpdate + */ +m.getTotalWorldTime.S03PacketTimeUpdate = "func_149366_c" +/** + * + * + * Parent Class: World + */ +m.getTotalWorldTime.World = "func_82737_E" + +/** + * + * + * Parent Class: S09PacketHeldItemChange + */ +m.getHeldItemHotbarIndex = "func_149385_c" +/** + * + * + * Parent Class: S04PacketEntityEquipment + */ +m.getEquipmentSlot = "func_149388_e" +m.getItemStack = {} +/** + * + * + * Parent Class: S04PacketEntityEquipment + */ +m.getItemStack.S04PacketEntityEquipment = "func_149390_c" +/** + * + * + * Parent Class: WeightedRandomFishable + */ +m.getItemStack.WeightedRandomFishable = "func_150708_a" +/** + * "Stack helds by mouse + * + * Parent Class: InventoryPlayer + */ +m.getItemStack.InventoryPlayer = "func_70445_o" + +m.getLevel = {} +/** + * + * + * Parent Class: S1FPacketSetExperience + */ +m.getLevel.S1FPacketSetExperience = "func_149395_e" +/** + * + * + * Parent Class: BlockLiquid + */ +m.getLevel.BlockLiquid = "func_176362_e" + +/** + * + * + * Parent Class: S1FPacketSetExperience + */ +m.getTotalExperience = "func_149396_d" +/** + * + * + * Parent Class: S1BPacketEntityAttach + */ +m.getVehicleEntityId = "func_149402_e" +/** + * + * + * Parent Class: S1BPacketEntityAttach + */ +m.getLeash = "func_149404_c" +/** + * + * + * Parent Class: S12PacketEntityVelocity + */ +m.getMotionZ = "func_149409_f" +/** + * + * + * Parent Class: S12PacketEntityVelocity + */ +m.getMotionY = "func_149410_e" +/** + * + * + * Parent Class: S12PacketEntityVelocity + */ +m.getMotionX = "func_149411_d" +m.getMessage = {} +/** + * + * + * Parent Class: C14PacketTabComplete + */ +m.getMessage.C14PacketTabComplete = "func_149419_c" +/** + * + * + * Parent Class: C01PacketChatMessage + */ +m.getMessage.C01PacketChatMessage = "func_149439_c" +/** + * + * + * Parent Class: S45PacketTitle + */ +m.getMessage.S45PacketTitle = "func_179805_b" + +m.getAmplifier = {} +/** + * + * + * Parent Class: S1DPacketEntityEffect + */ +m.getAmplifier.S1DPacketEntityEffect = "func_149428_f" +/** + * + * + * Parent Class: PotionEffect + */ +m.getAmplifier.PotionEffect = "func_76458_c" + +m.getStatus = {} +/** + * + * + * Parent Class: C16PacketClientStatus + */ +m.getStatus.C16PacketClientStatus = "func_149435_c" +/** + * + * + * Parent Class: WorldBorder + */ +m.getStatus.WorldBorder = "func_177734_a" +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +m.getStatus.ChunkCompileTaskGenerator = "func_178546_a" +/** + * + * + * Parent Class: C07PacketPlayerDigging + */ +m.getStatus.C07PacketPlayerDigging = "func_180762_c" + +m.getKey = {} +/** + * + * + * Parent Class: C00PacketKeepAlive + */ +m.getKey.C00PacketKeepAlive = "func_149460_c" +/** + * + * + * Parent Class: ChatComponentTranslation + */ +m.getKey.ChatComponentTranslation = "func_150268_i" +/** + * + * + * Parent Class: LongHashMap$Entry + */ +m.getKey.LongHashMap$Entry = "func_76146_a" +/** + * + * + * Parent Class: CrashReportCategory$Entry + */ +m.getKey.CrashReportCategory$Entry = "func_85089_a" + +/** + * + * + * Parent Class: C03PacketPlayer + */ +m.getRotating = "func_149463_k" +/** + * + * + * Parent Class: C03PacketPlayer + */ +m.getPositionX = "func_149464_c" +/** + * + * + * Parent Class: C03PacketPlayer + */ +m.isOnGround = "func_149465_i" +/** + * + * + * Parent Class: C03PacketPlayer + */ +m.isMoving = "func_149466_j" +m.getPositionY = {} +/** + * + * + * Parent Class: C03PacketPlayer + */ +m.getPositionY.C03PacketPlayer = "func_149467_d" +/** + * + * + * Parent Class: GuiButtonRealmsProxy + */ +m.getPositionY.GuiButtonRealmsProxy = "func_154316_f" + +/** + * + * + * Parent Class: C03PacketPlayer + */ +m.setMoving = "func_149469_a" +/** + * + * + * Parent Class: C03PacketPlayer + */ +m.getPositionZ = "func_149472_e" +/** + * + * + * Parent Class: C0BPacketEntityAction + */ +m.getAuxData = "func_149512_e" +/** + * + * + * Parent Class: C15PacketClientSettings + */ +m.isColorsEnabled = "func_149520_f" +/** + * + * + * Parent Class: C15PacketClientSettings + */ +m.getModelPartFlags = "func_149521_d" +/** + * + * + * Parent Class: C15PacketClientSettings + */ +m.getLang = "func_149524_c" +/** + * + * + * Parent Class: C0FPacketConfirmTransaction + */ +m.getUid = "func_149533_d" +/** + * + * + * Parent Class: C11PacketEnchantItem + */ +m.getButton = "func_149537_d" +/** + * + * + * Parent Class: C0EPacketClickWindow + */ +m.getMode = "func_149542_h" +/** + * + * + * Parent Class: C0EPacketClickWindow + */ +m.getUsedButton = "func_149543_e" +m.getSlotId = {} +/** + * + * + * Parent Class: C0EPacketClickWindow + */ +m.getSlotId.C0EPacketClickWindow = "func_149544_d" +/** + * + * + * Parent Class: C09PacketHeldItemChange + */ +m.getSlotId.C09PacketHeldItemChange = "func_149614_c" +/** + * + * + * Parent Class: C10PacketCreativeInventoryAction + */ +m.getSlotId.C10PacketCreativeInventoryAction = "func_149627_c" + +/** + * + * + * Parent Class: C0EPacketClickWindow + */ +m.getClickedItem = "func_149546_g" +/** + * + * + * Parent Class: C02PacketUseEntity + */ +m.getEntityFromWorld = "func_149564_a" +/** + * + * + * Parent Class: C08PacketPlayerBlockPlacement + */ +m.getPlacedBlockDirection = "func_149568_f" +/** + * Returns the offset from yPosition where the actual click took place. + * + * Parent Class: C08PacketPlayerBlockPlacement + */ +m.getPlacedBlockOffsetY = "func_149569_i" +/** + * Returns the offset from xPosition where the actual click took place. + * + * Parent Class: C08PacketPlayerBlockPlacement + */ +m.getPlacedBlockOffsetX = "func_149573_h" +m.getStack = {} +/** + * + * + * Parent Class: C08PacketPlayerBlockPlacement + */ +m.getStack.C08PacketPlayerBlockPlacement = "func_149574_g" +/** + * + * + * Parent Class: C10PacketCreativeInventoryAction + */ +m.getStack.C10PacketCreativeInventoryAction = "func_149625_d" +/** + * Helper fnct to get the stack in the slot. + * + * Parent Class: Slot + */ +m.getStack.Slot = "func_75211_c" + +/** + * Returns the offset from zPosition where the actual click took place. + * + * Parent Class: C08PacketPlayerBlockPlacement + */ +m.getPlacedBlockOffsetZ = "func_149575_j" +/** + * + * + * Parent Class: C00Handshake + */ +m.getRequestedState = "func_149594_c" +/** + * + * + * Parent Class: C00Handshake + */ +m.getProtocolVersion = "func_149595_d" +/** + * + * + * Parent Class: S01PacketEncryptionRequest + */ +m.getPublicKey = "func_149608_d" +/** + * + * + * Parent Class: S01PacketEncryptionRequest + */ +m.getServerId = "func_149609_c" +/** + * + * + * Parent Class: C0CPacketInput + */ +m.getForwardSpeed = "func_149616_d" +m.isSneaking = {} +/** + * + * + * Parent Class: C0CPacketInput + */ +m.isSneaking.C0CPacketInput = "func_149617_f" +/** + * Returns if this entity is sneaking. + * + * Parent Class: Entity + */ +m.isSneaking.Entity = "func_70093_af" + +/** + * + * + * Parent Class: C0CPacketInput + */ +m.isJumping = "func_149618_e" +/** + * + * + * Parent Class: C0CPacketInput + */ +m.getStrafeSpeed = "func_149620_c" +/** + * + * + * Parent Class: Block + */ +m.getBlockFromItem = "func_149634_a" +/** + * + * + * Parent Class: BlockLilyPad + */ +m.getBlockColor = "func_149635_D" +m.isBlockNormalCube = {} +/** + * Indicate if a material is a normal solid opaque cube + * + * Parent Class: Block + */ +m.isBlockNormalCube.Block = "func_149637_q" +/** + * "Checks if a block's material is opaque + * + * Parent Class: World + */ +m.isBlockNormalCube.World = "func_175677_d" + +m.getExplosionResistance = {} +/** + * Returns how much this block can resist explosions from the passed in entity. + * + * Parent Class: BlockStairs + */ +m.getExplosionResistance.BlockStairs = "func_149638_a" +/** + * Explosion resistance of a block relative to this entity + * + * Parent Class: EntityWitherSkull + */ +m.getExplosionResistance.EntityWitherSkull = "func_180428_a" + +m.getRenderType = {} +/** + * "The type of render function called. 3 for standard block models + * + * Parent Class: BlockNote + */ +m.getRenderType.BlockNote = "func_149645_b" +/** + * + * + * Parent Class: ScoreObjective + */ +m.getRenderType.ScoreObjective = "func_178766_e" +/** + * + * + * Parent Class: IScoreObjectiveCriteria + */ +m.getRenderType.IScoreObjectiveCriteria = "func_178790_c" + +m.setCreativeTab = {} +/** + * + * + * Parent Class: Block + */ +m.setCreativeTab.Block = "func_149647_a" +/** + * returns this; + * + * Parent Class: Item + */ +m.setCreativeTab.Item = "func_77637_a" + +/** + * Returns true only if block is flowerPot + * + * Parent Class: BlockFlowerPot + */ +m.isFlowerPot = "func_149648_K" +/** + * + * + * Parent Class: Block + */ +m.disableStats = "func_149649_H" +/** + * Return the state of blocks statistics flags - if the block is counted for mined and placed. + * + * Parent Class: Block + */ +m.getEnableStats = "func_149652_G" +/** + * Returns whether or not this block is of a type that needs random ticking. Called for ref-counting purposes by ExtendedBlockStorage in order to broadly cull a chunk from the random chunk update list for efficiency's sake. + * + * Parent Class: Block + */ +m.getTickRandomly = "func_149653_t" +/** + * Checks if a vector is within the Y and Z bounds of the block. + * + * Parent Class: Block + */ +m.isVecInsideYZBounds = "func_149654_a" +/** + * + * + * Parent Class: BlockIce + */ +m.getMobilityFlag = "func_149656_h" +/** + * Return whether this block can drop from an explosion. + * + * Parent Class: BlockTNT + */ +m.canDropFromExplosion = "func_149659_a" +/** + * Checks if a vector is within the X and Y bounds of the block. + * + * Parent Class: Block + */ +m.isVecInsideXYBounds = "func_149661_c" +/** + * Used to determine ambient occlusion and culling when rebuilding chunks for render + * + * Parent Class: BlockPistonMoving + */ +m.isOpaqueCube = "func_149662_c" +m.setUnlocalizedName = {} +/** + * + * + * Parent Class: Block + */ +m.setUnlocalizedName.Block = "func_149663_c" +/** + * "Sets the unlocalized name of this item to the string passed as the parameter + * + * Parent Class: Item + */ +m.setUnlocalizedName.Item = "func_77655_b" + +/** + * returns the block bounderies minY value + * + * Parent Class: Block + */ +m.getBlockBoundsMinY = "func_149665_z" +/** + * "returns a list of blocks with the same ID + * + * Parent Class: BlockCarpet + */ +m.getSubBlocks = "func_149666_a" +/** + * + * + * Parent Class: BlockRedstoneTorch + */ +m.isAssociatedBlock = "func_149667_c" +/** + * returns the block bounderies maxY value + * + * Parent Class: Block + */ +m.getBlockBoundsMaxY = "func_149669_A" +/** + * + * + * Parent Class: Block + */ +m.registerBlocks = "func_149671_p" +/** + * Sets the footstep sound for the block. Returns the object for convenience in constructing. + * + * Parent Class: Block + */ +m.setStepSound = "func_149672_a" +/** + * Sets whether this block type will receive random update ticks + * + * Parent Class: Block + */ +m.setTickRandomly = "func_149675_a" +/** + * + * + * Parent Class: Block + */ +m.setBlockBounds = "func_149676_a" +/** + * Get the quantity dropped based on the given fortune level + * + * Parent Class: BlockTallGrass + */ +m.quantityDroppedWithBonus = "func_149679_a" +m.isEqualTo = {} +/** + * + * + * Parent Class: Block + */ +m.isEqualTo.Block = "func_149680_a" +/** + * returns true if the biome specified is equal to this biome + * + * Parent Class: BiomeGenMutated + */ +m.isEqualTo.BiomeGenMutated = "func_150569_a" + +/** + * + * + * Parent Class: Block + */ +m.getIdFromBlock = "func_149682_b" +/** + * Sets the block's bounds for rendering it as an item + * + * Parent Class: BlockPistonBase + */ +m.setBlockBoundsForItemRender = "func_149683_g" +/** + * + * + * Parent Class: Block + */ +m.getBlockFromName = "func_149684_b" +/** + * Returns the default ambient occlusion value based on block opacity + * + * Parent Class: Block + */ +m.getAmbientOcclusionLightValue = "func_149685_I" +/** + * + * + * Parent Class: BlockPistonMoving + */ +m.isFullCube = "func_149686_d" +/** + * Checks if a vector is within the X and Z bounds of the block. + * + * Parent Class: Block + */ +m.isVecInsideXZBounds = "func_149687_b" +/** + * Get a material of block + * + * Parent Class: Block + */ +m.getMaterial = "func_149688_o" +/** + * returns the block bounderies maxZ value + * + * Parent Class: Block + */ +m.getBlockBoundsMaxZ = "func_149693_C" +/** + * + * + * Parent Class: BlockFire + */ +m.requiresUpdates = "func_149698_L" +/** + * + * + * Parent Class: BlockWeb + */ +m.canSilkHarvest = "func_149700_E" +/** + * "Returns if this block is collidable (only used by Fire). Args: x + * + * Parent Class: BlockStairs + */ +m.isCollidable = "func_149703_v" +/** + * returns the block bounderies minX value + * + * Parent Class: Block + */ +m.getBlockBoundsMinX = "func_149704_x" +/** + * returns the block bounderies minZ value + * + * Parent Class: Block + */ +m.getBlockBoundsMinZ = "func_149706_B" +/** + * Returns the CreativeTab to display the given block on. + * + * Parent Class: Block + */ +m.getCreativeTabToDisplayOn = "func_149708_J" +/** + * Should block use the brightest neighbor light value as its own + * + * Parent Class: Block + */ +m.getUseNeighborBrightness = "func_149710_n" +/** + * Sets how many hits it takes to break a block. + * + * Parent Class: Block + */ +m.setHardness = "func_149711_c" +/** + * Sets how much light is blocked going through this block. Returns the object for convenience in constructing. + * + * Parent Class: Block + */ +m.setLightOpacity = "func_149713_g" +/** + * Sets the light value that the block emits. Returns resulting block instance for constructing convenience. Args: level + * + * Parent Class: Block + */ +m.setLightLevel = "func_149715_a" +/** + * + * + * Parent Class: Block + */ +m.hasTileEntity = "func_149716_u" +/** + * + * + * Parent Class: Block + */ +m.getLightOpacity = "func_149717_k" +/** + * "Used for nearly all game logic (non-rendering) purposes. Use Forge-provided isNormalCube(IBlockAccess + * + * Parent Class: Block + */ +m.isNormalCube = "func_149721_r" +/** + * + * + * Parent Class: Block + */ +m.setBlockUnbreakable = "func_149722_s" +/** + * + * + * Parent Class: Block + */ +m.getBlockById = "func_149729_e" +/** + * + * + * Parent Class: Block + */ +m.isFullBlock = "func_149730_j" +/** + * Gets the localized name of this block. Used for the statistics page. + * + * Parent Class: BlockWall + */ +m.getLocalizedName = "func_149732_F" +/** + * How many world ticks before ticking + * + * Parent Class: BlockPressurePlateWeighted + */ +m.tickRate = "func_149738_a" +m.getUnlocalizedName = {} +/** + * "Returns the unlocalized name of the block with ""tile."" appended to the front." + * + * Parent Class: Block + */ +m.getUnlocalizedName.Block = "func_149739_a" +/** + * Returns the slab block name with the type associated with it + * + * Parent Class: BlockWoodSlab + */ +m.getUnlocalizedName.BlockWoodSlab = "func_150002_b" +/** + * "Gets the value that this fish type uses to replace ""XYZ"" in: ""fish.XYZ.raw"" / ""fish.XYZ.cooked"" for the unlocalized name and ""fish_XYZ_raw"" / ""fish_XYZ_cooked"" for the icon string." + * + * Parent Class: ItemFishFood$FishType + */ +m.getUnlocalizedName.ItemFishFood$FishType = "func_150972_b" +/** + * + * + * Parent Class: BlockStoneBrick$EnumType + */ +m.getUnlocalizedName.BlockStoneBrick$EnumType = "func_176614_c" +/** + * + * + * Parent Class: BlockStoneSlab$EnumType + */ +m.getUnlocalizedName.BlockStoneSlab$EnumType = "func_176627_c" +/** + * + * + * Parent Class: BlockStone$EnumType + */ +m.getUnlocalizedName.BlockStone$EnumType = "func_176644_c" +/** + * + * + * Parent Class: BlockWall$EnumType + */ +m.getUnlocalizedName.BlockWall$EnumType = "func_176659_c" +/** + * + * + * Parent Class: BlockSandStone$EnumType + */ +m.getUnlocalizedName.BlockSandStone$EnumType = "func_176676_c" +/** + * + * + * Parent Class: BlockSand$EnumType + */ +m.getUnlocalizedName.BlockSand$EnumType = "func_176685_d" +/** + * + * + * Parent Class: EnumDyeColor + */ +m.getUnlocalizedName.EnumDyeColor = "func_176762_d" +/** + * + * + * Parent Class: BlockPrismarine$EnumType + */ +m.getUnlocalizedName.BlockPrismarine$EnumType = "func_176809_c" +/** + * + * + * Parent Class: BlockRedSandstone$EnumType + */ +m.getUnlocalizedName.BlockRedSandstone$EnumType = "func_176828_c" +/** + * + * + * Parent Class: BlockPlanks$EnumType + */ +m.getUnlocalizedName.BlockPlanks$EnumType = "func_176840_c" +/** + * + * + * Parent Class: BlockSilverfish$EnumType + */ +m.getUnlocalizedName.BlockSilverfish$EnumType = "func_176882_c" +/** + * + * + * Parent Class: BlockStoneSlabNew$EnumType + */ +m.getUnlocalizedName.BlockStoneSlabNew$EnumType = "func_176918_c" +/** + * + * + * Parent Class: BlockDirt$DirtType + */ +m.getUnlocalizedName.BlockDirt$DirtType = "func_176927_c" +/** + * + * + * Parent Class: BlockDoublePlant$EnumPlantType + */ +m.getUnlocalizedName.BlockDoublePlant$EnumPlantType = "func_176939_c" +/** + * + * + * Parent Class: BlockFlower$EnumFlowerType + */ +m.getUnlocalizedName.BlockFlower$EnumFlowerType = "func_176963_d" +/** + * Returns the unlocalized name of this item. This version accepts an ItemStack so different stacks can have different names based on their damage or NBT. + * + * Parent Class: Item + */ +m.getUnlocalizedName.Item = "func_77667_c" +/** + * + * + * Parent Class: ItemStack + */ +m.getUnlocalizedName.ItemStack = "func_77977_a" + +/** + * + * + * Parent Class: BlockJukebox + */ +m.hasComparatorInputOverride = "func_149740_M" +/** + * Can this block provide power. Only wire currently seems to have this change based on its state. + * + * Parent Class: BlockTripWireHook + */ +m.canProvidePower = "func_149744_f" +/** + * Returns the quantity of items to drop on block destruction. + * + * Parent Class: BlockPistonExtension + */ +m.quantityDropped = "func_149745_a" +/** + * + * + * Parent Class: Block + */ +m.getLightValue = "func_149750_m" +/** + * Used in the renderer to apply ambient occlusion + * + * Parent Class: Block + */ +m.isTranslucent = "func_149751_l" +/** + * Sets the the blocks resistance to explosions. Returns the object for convenience in constructing. + * + * Parent Class: Block + */ +m.setResistance = "func_149752_b" +/** + * returns the block bounderies maxX value + * + * Parent Class: Block + */ +m.getBlockBoundsMaxX = "func_149753_y" +/** + * "Returns the percentage of the liquid block that is air + * + * Parent Class: BlockLiquid + */ +m.getLiquidHeightPercent = "func_149801_b" +/** + * + * + * Parent Class: BlockFalling + */ +m.onStartFalling = "func_149829_a" +m.init = {} +/** + * + * + * Parent Class: BlockFire + */ +m.init.BlockFire = "func_149843_e" +/** + * + * + * Parent Class: StatList + */ +m.init.StatList = "func_151178_a" +/** + * + * + * Parent Class: WorldServer + */ +m.init.WorldServer = "func_175643_b" +/** + * A stub functions called to make the static initializer for this class run. + * + * Parent Class: AchievementList + */ +m.init.AchievementList = "func_75997_a" +/** + * + * + * Parent Class: ClippingHelperImpl + */ +m.init.ClippingHelperImpl = "func_78560_b" + +/** + * "is the block grass + * + * Parent Class: BlockLilyPad + */ +m.canPlaceBlockOn = "func_149854_a" +/** + * + * + * Parent Class: BlockPotato + */ +m.getCrop = "func_149865_P" +m.getSeed = {} +/** + * + * + * Parent Class: BlockPotato + */ +m.getSeed.BlockPotato = "func_149866_i" +/** + * gets the random world seed + * + * Parent Class: World + */ +m.getSeed.World = "func_72905_C" +/** + * Returns the seed of current world. + * + * Parent Class: WorldInfo + */ +m.getSeed.WorldInfo = "func_76063_b" +/** + * Returns the seed for the world. + * + * Parent Class: WorldSettings + */ +m.getSeed.WorldSettings = "func_77160_d" + +/** + * + * + * Parent Class: BlockRedstoneDiode + */ +m.isAssociated = "func_149907_e" +/** + * + * + * Parent Class: BlockRedstoneRepeater + */ +m.canPowerSide = "func_149908_a" +/** + * + * + * Parent Class: BlockRedstoneDiode + */ +m.isRedstoneRepeaterBlockID = "func_149909_d" +m.createNewTileEntity = {} +/** + * Returns a new instance of a block's tile entity class. Called on placing the block. + * + * Parent Class: BlockPistonMoving + */ +m.createNewTileEntity.BlockPistonMoving = "func_149915_a" +/** + * + * + * Parent Class: Chunk + */ +m.createNewTileEntity.Chunk = "func_177422_i" + +/** + * "Get's the hopper's active status from the 8-bit of the metadata. Note that the metadata stores whether the block is powered + * + * Parent Class: BlockHopper + */ +m.isEnabled = "func_149917_c" +/** + * + * + * Parent Class: BlockFlowerPot + */ +m.canNotContain = "func_149928_a" +m.getFacing = {} +/** + * Get the facing of a dispenser with the given metadata + * + * Parent Class: BlockDispenser + */ +m.getFacing.BlockDispenser = "func_149937_b" +/** + * + * + * Parent Class: TileEntityPiston + */ +m.getFacing.TileEntityPiston = "func_174930_e" +/** + * + * + * Parent Class: BlockTrapDoor + */ +m.getFacing.BlockTrapDoor = "func_176281_b" +/** + * + * + * Parent Class: BlockPistonBase + */ +m.getFacing.BlockPistonBase = "func_176317_b" +/** + * + * + * Parent Class: BlockPistonExtension + */ +m.getFacing.BlockPistonExtension = "func_176322_b" +/** + * + * + * Parent Class: BlockHopper + */ +m.getFacing.BlockHopper = "func_176428_b" +/** + * + * + * Parent Class: BlockDoor + */ +m.getFacing.BlockDoor = "func_176517_h" +/** + * + * + * Parent Class: BlockLever$EnumOrientation + */ +m.getFacing.BlockLever$EnumOrientation = "func_176852_c" +/** + * Gets the direction of the block's facing. + * + * Parent Class: ItemModelGenerator$SpanFacing + */ +m.getFacing.ItemModelGenerator$SpanFacing = "func_178367_a" +/** + * + * + * Parent Class: EnumFaceDirection + */ +m.getFacing.EnumFaceDirection = "func_179027_a" +/** + * + * + * Parent Class: C07PacketPlayerDigging + */ +m.getFacing.C07PacketPlayerDigging = "func_179714_b" +/** + * + * + * Parent Class: S10PacketSpawnPainting + */ +m.getFacing.S10PacketSpawnPainting = "func_179836_c" + +/** + * Get the position where the dispenser at the given Coordinates should dispense to. + * + * Parent Class: BlockDispenser + */ +m.getDispensePosition = "func_149939_a" +/** + * + * + * Parent Class: BlockDropper + */ +m.getBehavior = "func_149940_a" +/** + * + * + * Parent Class: BlockBed + */ +m.setBedBounds = "func_149978_e" +/** + * + * + * Parent Class: BlockSlab + */ +m.isSlab = "func_150003_a" +/** + * + * + * Parent Class: BlockDoor + */ +m.setBoundBasedOnMeta = "func_150011_b" +/** + * + * + * Parent Class: BlockCarpet + */ +m.setBlockBoundsFromMeta = "func_150089_b" +m.canPlaceOn = {} +/** + * + * + * Parent Class: BlockVine + */ +m.canPlaceOn.BlockVine = "func_150093_a" +/** + * + * + * Parent Class: BlockTorch + */ +m.canPlaceOn.BlockTorch = "func_176594_d" +/** + * + * + * Parent Class: ItemStack + */ +m.canPlaceOn.ItemStack = "func_179547_d" + +/** + * + * + * Parent Class: BlockPane + */ +m.canPaneConnectToBlock = "func_150098_a" +/** + * + * + * Parent Class: BlockTrapDoor + */ +m.isValidSupportBlock = "func_150119_a" +/** + * "Pass true to draw this block using fancy graphics + * + * Parent Class: BlockLeaves + */ +m.setGraphicsLevel = "func_150122_b" +/** + * Checks if a block is stairs + * + * Parent Class: BlockStairs + */ +m.isBlockStairs = "func_150148_a" +/** + * + * + * Parent Class: BlockSnow + */ +m.getBoundsForLayers = "func_150154_b" +/** + * Creates a deep copy of this style. No changes to this instance or its parent style will be reflected in the copy. + * + * Parent Class: ChatStyle$1 + */ +m.createDeepCopy = "func_150206_m" +/** + * Sets the event that should be run when text of this ChatStyle is hovered over. + * + * Parent Class: ChatStyle$1 + */ +m.setChatHoverEvent = "func_150209_a" +/** + * The effective chat hover event. + * + * Parent Class: ChatStyle$1 + */ +m.getChatHoverEvent = "func_150210_i" +m.getColor = {} +/** + * Gets the effective color of this ChatStyle. + * + * Parent Class: ChatStyle$1 + */ +m.getColor.ChatStyle$1 = "func_150215_a" +/** + * + * + * Parent Class: S3EPacketTeams + */ +m.getColor.S3EPacketTeams = "func_179813_h" +/** + * "Return a color to display the profiler + * + * Parent Class: Profiler$Result + */ +m.getColor.Profiler$Result = "func_76329_a" +/** + * Return the color for the specified armor ItemStack. + * + * Parent Class: ItemArmor + */ +m.getColor.ItemArmor = "func_82814_b" + +/** + * "Sets whether or not text of this ChatStyle should be italicized. Set to false if + * + * Parent Class: ChatStyle$1 + */ +m.setItalic = "func_150217_b" +/** + * "Gets the equivalent text formatting code for this style + * + * Parent Class: ChatStyle$1 + */ +m.getFormattingCode = "func_150218_j" +/** + * "Sets the fallback ChatStyle to use if this ChatStyle does not override some value. Without a parent + * + * Parent Class: ChatStyle$1 + */ +m.setParentStyle = "func_150221_a" +/** + * Whether or not text of this ChatStyle should be in bold. + * + * Parent Class: ChatStyle$1 + */ +m.getBold = "func_150223_b" +m.getParent = {} +/** + * Gets the immediate parent of this ChatStyle. + * + * Parent Class: ChatStyle + */ +m.getParent.ChatStyle = "func_150224_n" +/** + * + * + * Parent Class: ModelBlock$Deserializer + */ +m.getParent.ModelBlock$Deserializer = "func_178326_c" + +/** + * "Sets whether or not to format text of this ChatStyle using strikethrough. Set to false if + * + * Parent Class: ChatStyle$1 + */ +m.setStrikethrough = "func_150225_c" +/** + * "Sets whether or not text of this ChatStyle should be in bold. Set to false if + * + * Parent Class: ChatStyle$1 + */ +m.setBold = "func_150227_a" +/** + * "Sets whether or not text of this ChatStyle should be underlined. Set to false if + * + * Parent Class: ChatStyle$1 + */ +m.setUnderlined = "func_150228_d" +m.isEmpty = {} +/** + * Whether or not this style is empty (inherits everything from the parent). + * + * Parent Class: ChatStyle + */ +m.isEmpty.ChatStyle = "func_150229_g" +/** + * + * + * Parent Class: TileEntityHopper + */ +m.isEmpty.TileEntityHopper = "func_152104_k" +/** + * + * + * Parent Class: UserList + */ +m.isEmpty.UserList = "func_152690_d" +/** + * + * + * Parent Class: CompiledChunk + */ +m.isEmpty.CompiledChunk = "func_178489_a" +/** + * + * + * Parent Class: LockCode + */ +m.isEmpty.LockCode = "func_180160_a" +/** + * + * + * Parent Class: Chunk + */ +m.isEmpty.Chunk = "func_76621_g" +/** + * "Returns whether or not this block storage's Chunk is fully empty + * + * Parent Class: ExtendedBlockStorage + */ +m.isEmpty.ExtendedBlockStorage = "func_76663_a" + +/** + * "Creates a shallow copy of this style. Changes to this instance's values will not be reflected in the copy + * + * Parent Class: ChatStyle$1 + */ +m.createShallowCopy = "func_150232_l" +/** + * Whether or not text of this ChatStyle should be obfuscated. + * + * Parent Class: ChatStyle$1 + */ +m.getObfuscated = "func_150233_f" +/** + * Whether or not text of this ChatStyle should be underlined. + * + * Parent Class: ChatStyle$1 + */ +m.getUnderlined = "func_150234_e" +/** + * The effective chat click event. + * + * Parent Class: ChatStyle$1 + */ +m.getChatClickEvent = "func_150235_h" +/** + * Whether or not to format text of this ChatStyle using strikethrough. + * + * Parent Class: ChatStyle$1 + */ +m.getStrikethrough = "func_150236_d" +/** + * "Sets whether or not text of this ChatStyle should be obfuscated. Set to false if + * + * Parent Class: ChatStyle$1 + */ +m.setObfuscated = "func_150237_e" +m.setColor = {} +/** + * Sets the color for this ChatStyle to the given value. Only use color values for this; set other values using the specific methods. + * + * Parent Class: ChatStyle$1 + */ +m.setColor.ChatStyle$1 = "func_150238_a" +/** + * + * + * Parent Class: BiomeGenBase + */ +m.setColor.BiomeGenBase = "func_76739_b" +/** + * Sets the color of the specified armor ItemStack + * + * Parent Class: ItemArmor + */ +m.setColor.ItemArmor = "func_82813_b" + +/** + * Sets the event that should be run when text of this ChatStyle is clicked on. + * + * Parent Class: ChatStyle$1 + */ +m.setChatClickEvent = "func_150241_a" +/** + * Whether or not text of this ChatStyle should be italicized. + * + * Parent Class: ChatStyle$1 + */ +m.getItalic = "func_150242_c" +/** + * Gets the sibling components of this one. + * + * Parent Class: IChatComponent + */ +m.getSiblings = "func_150253_a" +/** + * "Gets the text of this component + * + * Parent Class: IChatComponent + */ +m.getFormattedText = "func_150254_d" +/** + * + * + * Parent Class: ChatComponentTranslation + */ +m.setChatStyle = "func_150255_a" +/** + * + * + * Parent Class: IChatComponent + */ +m.getChatStyle = "func_150256_b" +/** + * Appends the given component to the end of this one. + * + * Parent Class: IChatComponent + */ +m.appendSibling = "func_150257_a" +/** + * Appends the given text to the end of this component. + * + * Parent Class: IChatComponent + */ +m.appendText = "func_150258_a" +/** + * "Creates a copy of this component. Almost a deep copy + * + * Parent Class: ChatComponentTranslation + */ +m.createCopy = "func_150259_f" +/** + * "Get the text of this component + * + * Parent Class: IChatComponent + */ +m.getUnformattedText = "func_150260_c" +/** + * "Gets the text of this component + * + * Parent Class: ChatComponentTranslation + */ +m.getUnformattedTextForChat = "func_150261_e" +/** + * "Creates an iterator that iterates over the given components + * + * Parent Class: ChatComponentStyle + */ +m.createDeepCopyIterator = "func_150262_a" +/** + * Gets the text value of this ChatComponentText. TODO: what are getUnformattedText and getUnformattedTextForChat missing that made someone decide to create a third equivalent method that only ChatComponentText can implement? + * + * Parent Class: ChatComponentText + */ +m.getChatComponentText_TextValue = "func_150265_g" +/** + * "initializes our children from a format string + * + * Parent Class: ChatComponentTranslation + */ +m.initializeFromFormat = "func_150269_b" +/** + * ensures that our children are initialized from the most recent string translation mapping. + * + * Parent Class: ChatComponentTranslation + */ +m.ensureInitialized = "func_150270_g" +/** + * + * + * Parent Class: ChatComponentTranslation + */ +m.getFormatArgs = "func_150271_j" +/** + * + * + * Parent Class: ChatComponentTranslation + */ +m.getFormatArgumentAsComponent = "func_150272_a" +/** + * Creates a new NBTBase object that corresponds with the passed in id. + * + * Parent Class: NBTBase + */ +m.createNewByType = "func_150284_a" +m.getString = {} +/** + * + * + * Parent Class: NBTBase + */ +m.getString.NBTBase = "func_150285_a_" +/** + * "Gets the string value of the field on the JsonObject with the given name + * + * Parent Class: JsonUtils + */ +m.getString.JsonUtils = "func_151219_a" +/** + * "Retrieves a string value using the specified key + * + * Parent Class: NBTTagCompound + */ +m.getString.NBTTagCompound = "func_74779_i" +/** + * Gets the GameRule's value as String. + * + * Parent Class: GameRules$Value + */ +m.getString.GameRules$Value = "func_82756_a" +/** + * Gets the string Game Rule value. + * + * Parent Class: GameRules + */ +m.getString.GameRules = "func_82767_a" + +m.getDouble = {} +/** + * + * + * Parent Class: NBTBase$NBTPrimitive + */ +m.getDouble.NBTBase$NBTPrimitive = "func_150286_g" +/** + * "Retrieves a double value using the specified key + * + * Parent Class: NBTTagCompound + */ +m.getDouble.NBTTagCompound = "func_74769_h" + +m.getInt = {} +/** + * + * + * Parent Class: NBTBase$NBTPrimitive + */ +m.getInt.NBTBase$NBTPrimitive = "func_150287_d" +/** + * Gets the integer value of the given JsonElement. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. + * + * Parent Class: JsonUtils + */ +m.getInt.JsonUtils = "func_151215_f" +/** + * + * + * Parent Class: GameRules$Value + */ +m.getInt.GameRules$Value = "func_180255_c" +/** + * + * + * Parent Class: GameRules + */ +m.getInt.GameRules = "func_180263_c" + +m.getFloat = {} +/** + * + * + * Parent Class: NBTBase$NBTPrimitive + */ +m.getFloat.NBTBase$NBTPrimitive = "func_150288_h" +/** + * "Gets the float value of the field on the JsonObject with the given name + * + * Parent Class: JsonUtils + */ +m.getFloat.JsonUtils = "func_151221_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.getFloat.GlStateManager = "func_179111_a" +/** + * "Retrieves a float value using the specified key + * + * Parent Class: NBTTagCompound + */ +m.getFloat.NBTTagCompound = "func_74760_g" + +m.getShort = {} +/** + * + * + * Parent Class: NBTBase$NBTPrimitive + */ +m.getShort.NBTBase$NBTPrimitive = "func_150289_e" +/** + * "Retrieves a short value using the specified key + * + * Parent Class: NBTTagCompound + */ +m.getShort.NBTTagCompound = "func_74765_d" + +m.getByte = {} +/** + * + * + * Parent Class: NBTBase$NBTPrimitive + */ +m.getByte.NBTBase$NBTPrimitive = "func_150290_f" +/** + * "Retrieves a byte value using the specified key + * + * Parent Class: NBTTagCompound + */ +m.getByte.NBTTagCompound = "func_74771_c" + +m.getLong = {} +/** + * + * + * Parent Class: NBTBase$NBTPrimitive + */ +m.getLong.NBTBase$NBTPrimitive = "func_150291_c" +/** + * "Retrieves a long value using the specified key + * + * Parent Class: NBTTagCompound + */ +m.getLong.NBTTagCompound = "func_74763_f" + +m.getByteArray = {} +/** + * + * + * Parent Class: NBTTagByteArray + */ +m.getByteArray.NBTTagByteArray = "func_150292_c" +/** + * "Retrieves a byte array using the specified key + * + * Parent Class: NBTTagCompound + */ +m.getByteArray.NBTTagCompound = "func_74770_j" + +/** + * "Gets the NBTTagList object with the given name. Args: name + * + * Parent Class: NBTTagCompound + */ +m.getTagList = "func_150295_c" +/** + * Gets a set with the names of the keys in the tag compound. + * + * Parent Class: NBTTagCompound + */ +m.getKeySet = "func_150296_c" +/** + * Returns whether the given string has been previously stored as a key in the map. + * + * Parent Class: NBTTagCompound + */ +m.hasKey = "func_74764_b" +/** + * + * + * Parent Class: NBTTagCompound + */ +m.writeEntry = "func_150298_a" +/** + * Gets the ID byte for the given tag key + * + * Parent Class: NBTTagCompound + */ +m.getTagId = "func_150299_b" +m.getIntArray = {} +/** + * + * + * Parent Class: NBTTagIntArray + */ +m.getIntArray.NBTTagIntArray = "func_150302_c" +/** + * "Retrieves an int array using the specified key + * + * Parent Class: NBTTagCompound + */ +m.getIntArray.NBTTagCompound = "func_74759_k" + +/** + * + * + * Parent Class: NBTTagList + */ +m.getTagType = "func_150303_d" +/** + * Retrieves the NBTTagCompound at the specified index in the list + * + * Parent Class: NBTTagList + */ +m.getCompoundTagAt = "func_150305_b" +/** + * + * + * Parent Class: NBTTagList + */ +m.getIntArrayAt = "func_150306_c" +/** + * Retrieves the tag String value at the specified index in the list + * + * Parent Class: NBTTagList + */ +m.getStringTagAt = "func_150307_f" +/** + * + * + * Parent Class: NBTTagList + */ +m.getFloatAt = "func_150308_e" +/** + * + * + * Parent Class: NBTTagList + */ +m.getDoubleAt = "func_150309_d" +/** + * Parses the JSON string contained in this object. + * @return an {@link NBTBase} which can be safely cast to the type represented by this class. + * + * Parent Class: JsonToNBT$Primitive + */ +m.parse = "func_150489_a" +/** + * + * + * Parent Class: Block$SoundType + */ +m.getFrequency = "func_150494_d" +/** + * Get the breaking sound for the Block + * + * Parent Class: Block$SoundType + */ +m.getBreakSound = "func_150495_a" +/** + * + * + * Parent Class: Block$SoundType + */ +m.getPlaceSound = "func_150496_b" +/** + * + * + * Parent Class: Block$SoundType + */ +m.getStepSound = "func_150498_e" +/** + * + * + * Parent Class: NettyEncryptionTranslator + */ +m.decipher = "func_150503_a" +/** + * + * + * Parent Class: NettyEncryptionTranslator + */ +m.cipher = "func_150504_a" +/** + * "Gets the time + * + * Parent Class: StringTranslate + */ +m.getLastUpdateTimeInMilliseconds = "func_150510_c" +/** + * + * + * Parent Class: BiomeEndDecorator + */ +m.genDecorations = "func_150513_a" +/** + * + * + * Parent Class: BiomeGenBase + */ +m.isSnowyBiome = "func_150559_j" +/** + * + * + * Parent Class: BiomeGenOcean + */ +m.getTempCategory = "func_150561_m" +/** + * + * + * Parent Class: BiomeGenMutated + */ +m.getBiomeClass = "func_150562_l" +/** + * + * + * Parent Class: BiomeGenBase + */ +m.getBiomeGenArray = "func_150565_n" +/** + * Creates a mutated version of the biome and places it into the biomeList with an index equal to the original plus 128 + * + * Parent Class: BiomeGenBase + */ +m.createMutation = "func_150566_k" +/** + * + * + * Parent Class: BiomeGenTaiga + */ +m.genBigTreeChance = "func_150567_a" +m.getBiome = {} +/** + * "return the biome specified by biomeID + * + * Parent Class: BiomeGenBase + */ +m.getBiome.BiomeGenBase = "func_150568_d" +/** + * + * + * Parent Class: Chunk + */ +m.getBiome.Chunk = "func_177411_a" +/** + * Return the biome used on this preset. + * + * Parent Class: FlatGeneratorInfo + */ +m.getBiome.FlatGeneratorInfo = "func_82648_a" + +/** + * + * + * Parent Class: BiomeGenBase + */ +m.setHeight = "func_150570_a" +/** + * this creates a mutation specific to Hills biomes + * + * Parent Class: BiomeGenHills + */ +m.mutateHills = "func_150633_b" +/** + * Counts the number of rails adjacent to this rail. + * + * Parent Class: BlockRailBase$Rail + */ +m.countAdjacentRails = "func_150650_a" +/** + * + * + * Parent Class: CompressedStreamTools + */ +m.writeTag = "func_150663_a" +m.getValue = {} +/** + * "Gets the value to perform the action on when this event is raised. For example + * + * Parent Class: ClickEvent + */ +m.getValue.ClickEvent = "func_150668_b" +/** + * "Gets the value to perform the action on when this event is raised. For example + * + * Parent Class: HoverEvent + */ +m.getValue.HoverEvent = "func_150702_b" +/** + * + * + * Parent Class: UserListEntry + */ +m.getValue.UserListEntry = "func_152640_f" +/** + * Get the value of the given Property for this BlockState + * + * Parent Class: BlockState$StateImplementation + */ +m.getValue.BlockState$StateImplementation = "func_177229_b" +/** + * + * + * Parent Class: LazyLoadBase + */ +m.getValue.LazyLoadBase = "func_179281_c" +/** + * Returns the object stored in this entry + * + * Parent Class: IntHashMap$Entry + */ +m.getValue.IntHashMap$Entry = "func_76030_b" +/** + * + * + * Parent Class: LongHashMap$Entry + */ +m.getValue.LongHashMap$Entry = "func_76145_b" +/** + * + * + * Parent Class: CrashReportCategory$Entry + */ +m.getValue.CrashReportCategory$Entry = "func_85090_b" + +m.getValueByCanonicalName = {} +/** + * Gets a value by its canonical name. + * + * Parent Class: ClickEvent$Action + */ +m.getValueByCanonicalName.ClickEvent$Action = "func_150672_a" +/** + * Gets a value by its canonical name. + * + * Parent Class: HoverEvent$Action + */ +m.getValueByCanonicalName.HoverEvent$Action = "func_150684_a" + +m.getCanonicalName = {} +/** + * "Gets the canonical name for this action (e.g. + * + * Parent Class: ClickEvent$Action + */ +m.getCanonicalName.ClickEvent$Action = "func_150673_b" +/** + * "Gets the canonical name for this action (e.g. + * + * Parent Class: HoverEvent$Action + */ +m.getCanonicalName.HoverEvent$Action = "func_150685_b" + +m.shouldAllowInChat = {} +/** + * Indicates whether this event can be run from chat text. + * + * Parent Class: ClickEvent$Action + */ +m.shouldAllowInChat.ClickEvent$Action = "func_150674_a" +/** + * Indicates whether this event can be run from chat text. + * + * Parent Class: HoverEvent$Action + */ +m.shouldAllowInChat.HoverEvent$Action = "func_150686_a" + +/** + * + * + * Parent Class: IChatComponent$Serializer + */ +m.serializeChatStyle = "func_150695_a" +/** + * + * + * Parent Class: IChatComponent$Serializer + */ +m.componentToJson = "func_150696_a" +/** + * + * + * Parent Class: IChatComponent$Serializer + */ +m.jsonToComponent = "func_150699_a" +/** + * + * + * Parent Class: WeightedRandomFishable + */ +m.setEnchantable = "func_150707_a" +/** + * + * + * Parent Class: WeightedRandomFishable + */ +m.setMaxDamagePercent = "func_150709_a" +/** + * "Closes the channel + * + * Parent Class: NetworkManager + */ +m.closeChannel = "func_150718_a" +/** + * "Sets the NetHandler for this NetworkManager + * + * Parent Class: NetworkManager + */ +m.setNetHandler = "func_150719_a" +/** + * Switches the channel to manual reading modus + * + * Parent Class: NetworkManager + */ +m.disableAutoRead = "func_150721_g" +/** + * Prepares a clientside NetworkManager: establishes a connection to the socket supplied and configures the channel pipeline. Returns the newly created instance. + * + * Parent Class: NetworkManager + */ +m.provideLocalClient = "func_150722_a" +/** + * Sets the new connection state and registers which packets this channel may send and receive + * + * Parent Class: NetworkManager + */ +m.setConnectionState = "func_150723_a" +/** + * "Returns true if this NetworkManager has an active channel + * + * Parent Class: NetworkManager + */ +m.isChannelOpen = "func_150724_d" +/** + * Adds an encoder+decoder to the channel pipeline. The parameter is the secret key used for encrypted communication + * + * Parent Class: NetworkManager + */ +m.enableEncryption = "func_150727_a" +/** + * "If this channel is closed + * + * Parent Class: NetworkManager + */ +m.getExitMessage = "func_150730_f" +/** + * True if this NetworkManager uses a memory connection (single player game). False may imply both an active TCP connection or simply no active connection at all + * + * Parent Class: NetworkManager + */ +m.isLocalChannel = "func_150731_c" +/** + * "Will commit the packet to the channel. If the current thread 'owns' the channel it will write and flush the packet + * + * Parent Class: NetworkManager + */ +m.dispatchPacket = "func_150732_b" +/** + * Will iterate through the outboundPacketQueue and dispatch all Packets + * + * Parent Class: NetworkManager + */ +m.flushOutboundQueue = "func_150733_h" +/** + * + * + * Parent Class: EnumConnectionState + */ +m.getFromPacket = "func_150752_a" +m.getId = {} +/** + * + * + * Parent Class: EnumConnectionState + */ +m.getId.EnumConnectionState = "func_150759_c" +/** + * + * + * Parent Class: GuiButtonRealmsProxy + */ +m.getId.GuiButtonRealmsProxy = "func_154314_d" +/** + * + * + * Parent Class: GuiTextField + */ +m.getId.GuiTextField = "func_175206_d" +/** + * Gets the type byte for the tag. + * + * Parent Class: NBTBase + */ +m.getId.NBTBase = "func_74732_a" +/** + * returns the ID of the potion + * + * Parent Class: Potion + */ +m.getId.Potion = "func_76396_c" + +/** + * + * + * Parent Class: EnumConnectionState + */ +m.getById = "func_150760_a" +/** + * "Reduces the baseHeight by 20% + * + * Parent Class: BiomeGenBase$Height + */ +m.attenuate = "func_150775_a" +/** + * Writes a compressed NBTTagCompound to this buffer + * + * Parent Class: PacketBuffer + */ +m.writeNBTTagCompoundToBuffer = "func_150786_a" +/** + * Writes a compressed int to the buffer. The smallest number of bytes to fit the passed int will be written. Of each such byte only 7 bits will be used to describe the actual value since its most significant bit dictates whether the next byte is part of that same int. Micro-optimization for int values that are expected to have values below 128. + * + * Parent Class: PacketBuffer + */ +m.writeVarIntToBuffer = "func_150787_b" +/** + * "Writes the ItemStack's ID (short) + * + * Parent Class: PacketBuffer + */ +m.writeItemStackToBuffer = "func_150788_a" +/** + * Reads a string from this buffer. Expected parameter is maximum allowed string length. Will throw IOException if string length exceeds this value! + * + * Parent Class: PacketBuffer + */ +m.readStringFromBuffer = "func_150789_c" +/** + * Calculates the number of bytes required to fit the supplied int (0-5) if it were to be read/written using readVarIntFromBuffer or writeVarIntToBuffer + * + * Parent Class: PacketBuffer + */ +m.getVarIntSize = "func_150790_a" +/** + * Reads an ItemStack from this buffer + * + * Parent Class: PacketBuffer + */ +m.readItemStackFromBuffer = "func_150791_c" +/** + * Reads a compressed int from the buffer. To do so it maximally reads 5 byte-sized chunks whose most significant bit dictates whether another byte should be read. + * + * Parent Class: PacketBuffer + */ +m.readVarIntFromBuffer = "func_150792_a" +/** + * Reads a compressed NBTTagCompound from this buffer + * + * Parent Class: PacketBuffer + */ +m.readNBTTagCompoundFromBuffer = "func_150793_b" +/** + * + * + * Parent Class: Chunk + */ +m.isPopulated = "func_150802_k" +/** + * + * + * Parent Class: Chunk + */ +m.recheckGaps = "func_150803_c" +/** + * + * + * Parent Class: Chunk + */ +m.getBlockLightOpacity = "func_177437_b" +/** + * Returns the block corresponding to the given coordinates inside a chunk. + * + * Parent Class: Chunk + */ +m.getBlock0 = "func_150810_a" +m.addTileEntity = {} +/** + * + * + * Parent Class: Chunk + */ +m.addTileEntity.Chunk = "func_177426_a" +/** + * + * + * Parent Class: World + */ +m.addTileEntity.World = "func_175700_a" +/** + * + * + * Parent Class: CompiledChunk + */ +m.addTileEntity.CompiledChunk = "func_178490_a" + +/** + * "Returns the block for a location in a chunk + * + * Parent Class: ExtendedBlockStorage + */ +m.getBlockByExtId = "func_150819_a" +/** + * Translates a Stat name using the fallback (hardcoded en_US) locale. Looks like it's only intended to be used if translateToLocal fails. + * + * Parent Class: StatCollector + */ +m.translateToFallback = "func_150826_b" +/** + * "Gets the time + * + * Parent Class: StatCollector + */ +m.getLastTranslationUpdateTimeInMilliseconds = "func_150827_a" +/** + * + * + * Parent Class: BlockSourceImpl + */ +m.getBlockTileEntity = "func_150835_j" +/** + * + * + * Parent Class: PlayerSelector + */ +m.matchEntitiesToChatComponent = "func_150869_b" +/** + * + * + * Parent Class: StatFileWriter + */ +m.increaseStat = "func_150871_b" +/** + * Triggers the logging of an achievement and attempts to announce to server + * + * Parent Class: StatFileWriter + */ +m.unlockAchievement = "func_150873_a" +/** + * + * + * Parent Class: StatisticsFile + */ +m.dumpJson = "func_150880_a" +/** + * + * + * Parent Class: StatisticsFile + */ +m.parseJson = "func_150881_a" +/** + * + * + * Parent Class: StatisticsFile + */ +m.readStatFile = "func_150882_a" +/** + * + * + * Parent Class: StatisticsFile + */ +m.saveStatFile = "func_150883_b" +/** + * + * + * Parent Class: StatisticsFile + */ +m.sendAchievements = "func_150884_b" +/** + * + * + * Parent Class: Item + */ +m.getIdFromItem = "func_150891_b" +/** + * + * + * Parent Class: Item + */ +m.isPotionIngredient = "func_150892_m" +/** + * "returns a list of items with the same ID + * + * Parent Class: Item + */ +m.getSubItems = "func_150895_a" +m.getPotionEffect = {} +/** + * + * + * Parent Class: Item + */ +m.getPotionEffect.Item = "func_150896_i" +/** + * + * + * Parent Class: PotionHelper + */ +m.getPotionEffect.PotionHelper = "func_77904_a" + +/** + * + * + * Parent Class: Item + */ +m.getItemFromBlock = "func_150898_a" +/** + * + * + * Parent Class: Item + */ +m.getItemById = "func_150899_d" +m.registerItems = {} +/** + * + * + * Parent Class: Item + */ +m.registerItems.Item = "func_150900_l" +/** + * + * + * Parent Class: RenderItem + */ +m.registerItems.RenderItem = "func_175041_b" + +/** + * + * + * Parent Class: ItemFireworkCharge + */ +m.addExplosionInfo = "func_150902_a" +/** + * + * + * Parent Class: ItemFireworkCharge + */ +m.getExplosionTag = "func_150903_a" +/** + * + * + * Parent Class: ItemFood + */ +m.getHealAmount = "func_150905_g" +/** + * + * + * Parent Class: ItemFood + */ +m.getSaturationModifier = "func_150906_h" +/** + * + * + * Parent Class: ItemBucket + */ +m.fillBucket = "func_150910_a" +/** + * + * + * Parent Class: ItemMapBase + */ +m.createMapDataPacket = "func_150911_c" +/** + * + * + * Parent Class: ItemMap + */ +m.loadMapData = "func_150912_a" +/** + * + * + * Parent Class: ItemTool + */ +m.getToolMaterial = "func_150913_i" +/** + * + * + * Parent Class: ItemRecord + */ +m.getRecordNameLocal = "func_150927_i" +/** + * "this method returns true if the book's NBT Tag List ""pages"" is valid" + * + * Parent Class: ItemWritableBook + */ +m.isNBTValid = "func_150930_a" +m.getDamageVsEntity = {} +/** + * Returns the amount of damage this item will deal. One heart of damage is equal to 2 damage points. + * + * Parent Class: ItemSword + */ +m.getDamageVsEntity.ItemSword = "func_150931_i" +/** + * Returns the damage against a given entity. + * + * Parent Class: Item$ToolMaterial + */ +m.getDamageVsEntity.Item$ToolMaterial = "func_78000_c" + +m.getToolMaterialName = {} +/** + * Return the name for this tool's material. + * + * Parent Class: ItemSword + */ +m.getToolMaterialName.ItemSword = "func_150932_j" +/** + * Return the name for this tool's material. + * + * Parent Class: ItemTool + */ +m.getToolMaterialName.ItemTool = "func_77861_e" + +/** + * + * + * Parent Class: ItemColored + */ +m.setSubtypeNames = "func_150943_a" +/** + * + * + * Parent Class: StatBase + */ +m.getStatName = "func_150951_e" +m.getCriteria = {} +/** + * 1.8.9 + * + * Parent Class: StatBase + */ +m.getCriteria.StatBase = "func_150952_k" +/** + * + * + * Parent Class: ScoreObjective + */ +m.getCriteria.ScoreObjective = "func_96680_c" + +/** + * 1.8.9 + * + * Parent Class: StatBase + */ +m.createChatComponent = "func_150955_j" +/** + * Gets the saturation modifier to apply to the heal amount when the player eats the uncooked version of this fish. + * + * Parent Class: ItemFishFood$FishType + */ +m.getUncookedSaturationModifier = "func_150967_d" +/** + * Gets the amount that eating the cooked version of this fish should heal the player. + * + * Parent Class: ItemFishFood$FishType + */ +m.getCookedHealAmount = "func_150970_e" +/** + * "Gets a value indicating whether this type of fish has ""raw"" and ""cooked"" variants." + * + * Parent Class: ItemFishFood$FishType + */ +m.canCook = "func_150973_i" +m.byMetadata = {} +/** + * "Gets the corresponding FishType value for the given item damage value of an ItemStack + * + * Parent Class: ItemFishFood$FishType + */ +m.byMetadata.ItemFishFood$FishType = "func_150974_a" +/** + * + * + * Parent Class: BlockStoneBrick$EnumType + */ +m.byMetadata.BlockStoneBrick$EnumType = "func_176613_a" +/** + * + * + * Parent Class: BlockStoneSlab$EnumType + */ +m.byMetadata.BlockStoneSlab$EnumType = "func_176625_a" +/** + * Returns an EnumType for the BlockState from a metadata value. + * + * Parent Class: BlockStone$EnumType + */ +m.byMetadata.BlockStone$EnumType = "func_176643_a" +/** + * + * + * Parent Class: BlockWall$EnumType + */ +m.byMetadata.BlockWall$EnumType = "func_176660_a" +/** + * Returns the matching EnumType for the given metadata. + * + * Parent Class: BlockSandStone$EnumType + */ +m.byMetadata.BlockSandStone$EnumType = "func_176673_a" +/** + * + * + * Parent Class: BlockSand$EnumType + */ +m.byMetadata.BlockSand$EnumType = "func_176686_a" +/** + * + * + * Parent Class: EnumDyeColor + */ +m.byMetadata.EnumDyeColor = "func_176764_b" +/** + * + * + * Parent Class: BlockQuartz$EnumType + */ +m.byMetadata.BlockQuartz$EnumType = "func_176794_a" +/** + * + * + * Parent Class: BlockPrismarine$EnumType + */ +m.byMetadata.BlockPrismarine$EnumType = "func_176810_a" +/** + * + * + * Parent Class: BlockRedSandstone$EnumType + */ +m.byMetadata.BlockRedSandstone$EnumType = "func_176825_a" +/** + * + * + * Parent Class: BlockPlanks$EnumType + */ +m.byMetadata.BlockPlanks$EnumType = "func_176837_a" +/** + * + * + * Parent Class: BlockLever$EnumOrientation + */ +m.byMetadata.BlockLever$EnumOrientation = "func_176853_a" +/** + * + * + * Parent Class: BlockSilverfish$EnumType + */ +m.byMetadata.BlockSilverfish$EnumType = "func_176879_a" +/** + * + * + * Parent Class: BlockHugeMushroom$EnumType + */ +m.byMetadata.BlockHugeMushroom$EnumType = "func_176895_a" +/** + * + * + * Parent Class: BlockStoneSlabNew$EnumType + */ +m.byMetadata.BlockStoneSlabNew$EnumType = "func_176916_a" +/** + * + * + * Parent Class: BlockDirt$DirtType + */ +m.byMetadata.BlockDirt$DirtType = "func_176924_a" +/** + * + * + * Parent Class: BlockDoublePlant$EnumPlantType + */ +m.byMetadata.BlockDoublePlant$EnumPlantType = "func_176938_a" +/** + * + * + * Parent Class: BlockRailBase$EnumRailDirection + */ +m.byMetadata.BlockRailBase$EnumRailDirection = "func_177016_a" +/** + * + * + * Parent Class: BlockTallGrass$EnumType + */ +m.byMetadata.BlockTallGrass$EnumType = "func_177045_a" + +/** + * Gets the amount that eating the uncooked version of this fish should heal the player. + * + * Parent Class: ItemFishFood$FishType + */ +m.getUncookedHealAmount = "func_150975_c" +/** + * Gets the saturation modifier to apply to the heal amount when the player eats the cooked version of this fish. + * + * Parent Class: ItemFishFood$FishType + */ +m.getCookedSaturationModifier = "func_150977_f" +/** + * "Gets the FishType that corresponds to the given ItemStack + * + * Parent Class: ItemFishFood$FishType + */ +m.byItemStack = "func_150978_a" +m.getRepairItem = {} +/** + * + * + * Parent Class: Item$ToolMaterial + */ +m.getRepairItem.Item$ToolMaterial = "func_150995_f" +/** + * Get a main crafting component of this Armor Material (example is Items.iron_ingot) + * + * Parent Class: ItemArmor$ArmorMaterial + */ +m.getRepairItem.ItemArmor$ArmorMaterial = "func_151685_b" + +/** + * + * + * Parent Class: ItemStack + */ +m.setItem = "func_150996_a" +/** + * + * + * Parent Class: ItemStack + */ +m.setStackDisplayName = "func_151001_c" +/** + * Gets the JsonElement that can be serialized. + * + * Parent Class: JsonSerializableSet + */ +m.getSerializableElement = "func_151003_a" +/** + * + * + * Parent Class: StatList + */ +m.getStatEntityKilledBy = "func_151176_b" +/** + * + * + * Parent Class: StatList + */ +m.getOneShotStat = "func_151177_a" +/** + * + * + * Parent Class: StatList + */ +m.initItemDepleteStats = "func_151179_e" +/** + * Merge {@link StatBase} object references for similar blocks + * + * Parent Class: StatList + */ +m.mergeStatBases = "func_151180_a" +/** + * + * + * Parent Class: StatList + */ +m.initMiningStats = "func_151181_c" +/** + * + * + * Parent Class: StatList + */ +m.getStatKillEntity = "func_151182_a" +/** + * Gets the JsonSerializable value stored in this tuple. + * + * Parent Class: TupleIntJsonSerializable + */ +m.getJsonSerializableValue = "func_151187_b" +/** + * Sets this tuple's integer value to the given value. + * + * Parent Class: TupleIntJsonSerializable + */ +m.setIntegerValue = "func_151188_a" +/** + * Gets the integer value stored in this tuple. + * + * Parent Class: TupleIntJsonSerializable + */ +m.getIntegerValue = "func_151189_a" +/** + * Sets this tuple's JsonSerializable value to the given value. + * + * Parent Class: TupleIntJsonSerializable + */ +m.setJsonSerializableValue = "func_151190_a" +/** + * "Does the given JsonObject contain a field with the given name whose type is primitive (String + * + * Parent Class: JsonUtils + */ +m.isJsonPrimitive = "func_151201_f" +/** + * Does the given JsonObject contain an array field with the given name? + * + * Parent Class: JsonUtils + */ +m.isJsonArray = "func_151202_d" +/** + * Does the given JsonObject contain a field with the given name? + * + * Parent Class: JsonUtils + */ +m.hasField = "func_151204_g" +/** + * Is the given JsonElement a string? + * + * Parent Class: JsonUtils + */ +m.isString = "func_151211_a" +/** + * Gets the JsonArray field on the JsonObject with the given name. + * + * Parent Class: JsonUtils + */ +m.getJsonArray = "func_151214_t" +m.getBoolean = {} +/** + * Gets the boolean value of the given JsonElement. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. + * + * Parent Class: JsonUtils + */ +m.getBoolean.JsonUtils = "func_151216_b" +/** + * "Retrieves a boolean value using the specified key + * + * Parent Class: NBTTagCompound + */ +m.getBoolean.NBTTagCompound = "func_74767_n" +/** + * Gets the GameRule's value as boolean. + * + * Parent Class: GameRules$Value + */ +m.getBoolean.GameRules$Value = "func_82758_b" +/** + * Gets the boolean Game Rule value. + * + * Parent Class: GameRules + */ +m.getBoolean.GameRules = "func_82766_b" + +/** + * + * + * Parent Class: JsonUtils + */ +m.getJsonObject = "func_152754_s" +/** + * Sends a POST to the given URL + * + * Parent Class: HttpUtil + */ +m.post = "func_151225_a" +/** + * Sends a POST to the given URL using the map as the POST args + * + * Parent Class: HttpUtil + */ +m.postMap = "func_151226_a" +/** + * Creates an Cipher instance using the AES/CFB8/NoPadding algorithm. Used for protocol encryption. + * + * Parent Class: CryptManager + */ +m.createNetCipherInstance = "func_151229_a" +/** + * "Is the given value a power of two? (1 + * + * Parent Class: MathHelper + */ +m.isPowerOfTwo = "func_151235_d" +/** + * Returns the input value rounded up to the next highest power of two. + * + * Parent Class: MathHelper + */ +m.roundUpToPowerOfTwo = "func_151236_b" +/** + * + * + * Parent Class: MathHelper + */ +m.clamp_double = "func_151237_a" +/** + * + * + * Parent Class: MathHelper + */ +m.denormalizeClamp = "func_151238_b" +/** + * "Efficiently calculates the floor of the base-2 log of an integer value. This is effectively the index of the highest bit that is set. For example + * + * Parent Class: MathHelper + */ +m.calculateLogBaseTwo = "func_151239_c" +/** + * + * + * Parent Class: MathHelper + */ +m.randomFloatClamp = "func_151240_a" +/** + * "Uses a B(2 + * + * Parent Class: MathHelper + */ +m.calculateLogBaseTwoDeBruijn = "func_151241_e" +/** + * + * + * Parent Class: CreativeTabs$5 + */ +m.getIconItemDamage = "func_151243_f" +/** + * + * + * Parent Class: CreativeTabs + */ +m.getIconItemStack = "func_151244_d" +/** + * + * + * Parent Class: EntityTracker + */ +m.sendToAllTrackingEntity = "func_151247_a" +/** + * + * + * Parent Class: PlayerManager$PlayerInstance + */ +m.sendToAllPlayersWatchingChunk = "func_151251_a" +/** + * + * + * Parent Class: PlayerManager$PlayerInstance + */ +m.sendTileToAllPlayersWatchingChunk = "func_151252_a" +/** + * + * + * Parent Class: PlayerManager$PlayerInstance + */ +m.flagChunkForUpdate = "func_151253_a" +/** + * + * + * Parent Class: PingResponseHandler + */ +m.getStringBuffer = "func_151255_a" +/** + * + * + * Parent Class: PingResponseHandler + */ +m.writeAndFlush = "func_151256_a" +/** + * Send the given packet to all players tracking this entity. + * + * Parent Class: EntityTrackerEntry + */ +m.sendPacketToTrackedPlayers = "func_151259_a" +/** + * Creates a spawn packet for the entity managed by this entry. + * + * Parent Class: EntityTrackerEntry + */ +m.createSpawnPacket = "func_151260_c" +/** + * Adds a channel that listens on publicly accessible network ports + * + * Parent Class: NetworkSystem + */ +m.addLanEndpoint = "func_151265_a" +m.getServer = {} +/** + * + * + * Parent Class: NetworkSystem + */ +m.getServer.NetworkSystem = "func_151267_d" +/** + * Gets mcServer. + * + * Parent Class: MinecraftServer + */ +m.getServer.MinecraftServer = "func_71276_C" + +/** + * Shuts down all open endpoints (with immediate effect?) + * + * Parent Class: NetworkSystem + */ +m.terminateEndpoints = "func_151268_b" +/** + * "Will try to process the packets received by each NetworkManager + * + * Parent Class: NetworkSystem + */ +m.networkTick = "func_151269_c" +/** + * Adds a channel that listens locally + * + * Parent Class: NetworkSystem + */ +m.addLocalEndpoint = "func_151270_a" +/** + * + * + * Parent Class: ServerStatusResponse$MinecraftProtocolVersionIdentifier + */ +m.getProtocol = "func_151304_b" +/** + * + * + * Parent Class: ServerStatusResponse + */ +m.setServerDescription = "func_151315_a" +/** + * + * + * Parent Class: ServerStatusResponse + */ +m.getFavicon = "func_151316_d" +/** + * + * + * Parent Class: ServerStatusResponse + */ +m.getServerDescription = "func_151317_a" +/** + * + * + * Parent Class: ServerStatusResponse + */ +m.getPlayerCountData = "func_151318_b" +/** + * + * + * Parent Class: ServerStatusResponse + */ +m.setPlayerCountData = "func_151319_a" +/** + * + * + * Parent Class: ServerStatusResponse + */ +m.setFavicon = "func_151320_a" +/** + * + * + * Parent Class: ServerStatusResponse + */ +m.setProtocolVersionInfo = "func_151321_a" +/** + * + * + * Parent Class: ServerStatusResponse + */ +m.getProtocolVersionInfo = "func_151322_c" +/** + * + * + * Parent Class: ServerStatusResponse$PlayerCountData + */ +m.setPlayers = "func_151330_a" +/** + * + * + * Parent Class: ServerStatusResponse$PlayerCountData + */ +m.getOnlinePlayerCount = "func_151333_b" +m.getBlock = {} +/** + * + * + * Parent Class: BlockEventData + */ +m.getBlock.BlockEventData = "func_151337_f" +/** + * + * + * Parent Class: NextTickListEntry + */ +m.getBlock.NextTickListEntry = "func_151351_a" +/** + * + * + * Parent Class: EntityFallingBlock + */ +m.getBlock.EntityFallingBlock = "func_175131_l" +/** + * + * + * Parent Class: BlockState$StateImplementation + */ +m.getBlock.BlockState$StateImplementation = "func_177230_c" +/** + * + * + * Parent Class: Chunk + */ +m.getBlock.Chunk = "func_177438_a" +/** + * + * + * Parent Class: BlockState + */ +m.getBlock.BlockState = "func_177622_c" +/** + * + * + * Parent Class: ItemBlock + */ +m.getBlock.ItemBlock = "func_179223_d" +/** + * Get the World coordinates of the Block with the given Chunk coordinates relative to this chunk + * + * Parent Class: ChunkCoordIntPair + */ +m.getBlock.ChunkCoordIntPair = "func_180331_a" +/** + * + * + * Parent Class: BlockFlower$EnumFlowerColor + */ +m.getBlock.BlockFlower$EnumFlowerColor = "func_180346_a" + +/** + * + * + * Parent Class: BlockEventData + */ +m.getEventParameter = "func_151338_e" +/** + * Get the Event ID (different for each BlockID) + * + * Parent Class: BlockEventData + */ +m.getEventID = "func_151339_d" +/** + * + * + * Parent Class: Bootstrap + */ +m.registerDispenserBehaviors = "func_151353_a" +m.register = {} +/** + * "Registers blocks + * + * Parent Class: Bootstrap + */ +m.register.Bootstrap = "func_151354_b" +/** + * + * + * Parent Class: RegistryNamespaced + */ +m.register.RegistryNamespaced = "func_177775_a" +/** + * + * + * Parent Class: ItemModelMesher + */ +m.register.ItemModelMesher = "func_178086_a" + +/** + * returns true if selecting this worldtype from the customize menu should display the generator.[worldtype].info message + * + * Parent Class: WorldType + */ +m.showWorldInfoNotice = "func_151357_h" +/** + * enables the display of generator.[worldtype].info message on the customize world menu + * + * Parent Class: WorldType + */ +m.setNotificationData = "func_151358_j" +/** + * Gets the translation key for the info text for this world type. + * + * Parent Class: WorldType + */ +m.getTranslatedInfo = "func_151359_c" +/** + * Whenever an entity that has this enchantment on one of its associated items is damaged this method will be called. + * + * Parent Class: EnchantmentThorns + */ +m.onUserHurt = "func_151367_b" +/** + * Called whenever a mob is damaged with an item that has this enchantment on it. + * + * Parent Class: Enchantment + */ +m.onEntityDamaged = "func_151368_a" +/** + * + * + * Parent Class: EnchantmentHelper + */ +m.applyThornEnchantments = "func_151384_a" +/** + * + * + * Parent Class: EnchantmentHelper + */ +m.applyArthropodEnchantments = "func_151385_b" +/** + * Returns the level of the 'Luck Of The Sea' enchantment. + * + * Parent Class: EnchantmentHelper + */ +m.getLuckOfSeaModifier = "func_151386_g" +/** + * Returns the level of the 'Lure' enchantment on the players held item. + * + * Parent Class: EnchantmentHelper + */ +m.getLureModifier = "func_151387_h" +/** + * + * + * Parent Class: MerchantRecipeList + */ +m.readFromBuf = "func_151390_b" +/** + * + * + * Parent Class: MerchantRecipeList + */ +m.writeToBuf = "func_151391_a" +/** + * Adds a player to the given team + * + * Parent Class: ServerScoreboard + */ +m.addPlayerToTeam = "func_151392_a" +/** + * "Adds a smelting recipe + * + * Parent Class: FurnaceRecipes + */ +m.addSmeltingRecipeForBlock = "func_151393_a" +/** + * Adds a smelting recipe using an ItemStack as the input for the recipe. + * + * Parent Class: FurnaceRecipes + */ +m.addSmeltingRecipe = "func_151394_a" +/** + * Returns the smelting result of an item. + * + * Parent Class: FurnaceRecipes + */ +m.getSmeltingResult = "func_151395_a" +/** + * Adds a smelting recipe using an Item as the input item. + * + * Parent Class: FurnaceRecipes + */ +m.addSmelting = "func_151396_a" +/** + * Compares two itemstacks to ensure that they are the same. This checks both the item and the metadata of the item. + * + * Parent Class: FurnaceRecipes + */ +m.compareItemStacks = "func_151397_a" +/** + * + * + * Parent Class: FurnaceRecipes + */ +m.getSmeltingExperience = "func_151398_b" +/** + * + * + * Parent Class: EntityPlayer$EnumChatVisibility + */ +m.getEnumChatVisibility = "func_151426_a" +/** + * + * + * Parent Class: EntityPlayer$EnumChatVisibility + */ +m.getResourceKey = "func_151429_b" +/** + * + * + * Parent Class: GameSettings + */ +m.getSoundLevel = "func_151438_a" +/** + * Sets a key binding and then saves all settings. + * + * @param key The key that the option will be set + * @param keyCode The option (keycode) to set. + * + * Parent Class: GameSettings + */ +m.setOptionKeyBinding = "func_151440_a" +/** + * + * + * Parent Class: KeyBinding + */ +m.setKeyCode = "func_151462_b" +/** + * + * + * Parent Class: KeyBinding + */ +m.getKeyCode = "func_151463_i" +/** + * + * + * Parent Class: KeyBinding + */ +m.getKeyDescription = "func_151464_g" +/** + * + * + * Parent Class: KeyBinding + */ +m.getKeyCategory = "func_151466_e" +/** + * + * + * Parent Class: KeyBinding + */ +m.getKeybinds = "func_151467_c" +/** + * Returns true on the initial key press. For continuous querying use {@link isKeyDown()}. Should be used in key events. + * + * Parent Class: KeyBinding + */ +m.isPressed = "func_151468_f" +/** + * + * + * Parent Class: KeyBinding + */ +m.getKeyCodeDefault = "func_151469_h" +/** + * + * + * Parent Class: SharedMonsterAttributes + */ +m.setAttributeModifiers = "func_151475_a" +/** + * True if the block is a stair block or a slab block + * + * Parent Class: EntityAIControlledByPlayer + */ +m.isStairOrSlab = "func_151498_a" +/** + * Number of ticks since the entity started to eat grass + * + * Parent Class: EntityAIEatGrass + */ +m.getEatingGrassTimer = "func_151499_f" +/** + * "Writes the list of watched objects (entity attribute of type {byte + * + * Parent Class: DataWatcher + */ +m.writeWatchedListToPacketBuffer = "func_151507_a" +/** + * "Reads a list of watched objects (entity attribute of type {byte + * + * Parent Class: DataWatcher + */ +m.readWatchedListFromPacketBuffer = "func_151508_b" +/** + * + * + * Parent Class: DataWatcher + */ +m.writeTo = "func_151509_a" +/** + * "Writes a watchable object (entity attribute of type {byte + * + * Parent Class: DataWatcher + */ +m.writeWatchableObjectToPacketBuffer = "func_151510_a" +/** + * Whether or not the damage ignores modification by potion effects or enchantments. + * + * Parent Class: DamageSource + */ +m.isDamageAbsolute = "func_151517_h" +/** + * "Sets a value indicating whether the damage is absolute (ignores modification by potion effects or enchantments) + * + * Parent Class: DamageSource + */ +m.setDamageIsAbsolute = "func_151518_m" +m.getDeathMessage = {} +/** + * Gets the death message that is displayed when the player dies + * + * @param entityLivingBaseIn The EntityLivingBase that died + * + * Parent Class: EntityDamageSourceIndirect + */ +m.getDeathMessage.EntityDamageSourceIndirect = "func_151519_b" +/** + * + * + * Parent Class: CombatTracker + */ +m.getDeathMessage.CombatTracker = "func_151521_b" + +/** + * + * + * Parent Class: CombatEntry + */ +m.getDamageSrcDisplayName = "func_151522_h" +/** + * + * + * Parent Class: EnumDifficulty + */ +m.getDifficultyEnum = "func_151523_a" +/** + * + * + * Parent Class: EnumDifficulty + */ +m.getDifficultyId = "func_151525_a" +/** + * + * + * Parent Class: EnumDifficulty + */ +m.getDifficultyResourceKey = "func_151526_b" +/** + * + * + * Parent Class: StructureBoundingBox + */ +m.toNBTTagIntArray = "func_151535_h" +/** + * + * + * Parent Class: FlatLayerInfo + */ +m.getLayerMaterialBlock = "func_151536_b" +/** + * "Returns the direction-shifted metadata for blocks that require orientation + * + * Parent Class: StructureComponent + */ +m.getMetadataWithOffset = "func_151555_a" +/** + * Retrieves the color index of the block. This is is the same color used by vanilla maps to represent this block. + * + * Parent Class: Material + */ +m.getMaterialMapColor = "func_151565_r" +/** + * + * + * Parent Class: GenLayer + */ +m.biomesEqualOrMesaPlateau = "func_151616_a" +/** + * "returns the most frequently occurring number of the set + * + * Parent Class: GenLayer + */ +m.selectModeOrRandom = "func_151617_b" +/** + * returns true if the biomeId is one of the various ocean biomes. + * + * Parent Class: GenLayer + */ +m.isBiomeOceanic = "func_151618_b" +/** + * selects a random integer from a set of provided integers + * + * Parent Class: GenLayer + */ +m.selectRandom = "func_151619_a" +/** + * + * + * Parent Class: GenLayerEdge + */ +m.getIntsHeatIce = "func_151624_d" +/** + * + * + * Parent Class: GenLayerEdge + */ +m.getIntsSpecial = "func_151625_e" +/** + * + * + * Parent Class: GenLayerEdge + */ +m.getIntsCoolWarm = "func_151626_c" +/** + * "Returns if two biomes can logically be neighbors. If one is hot and the other cold + * + * Parent Class: GenLayerBiomeEdge + */ +m.canBiomesBeNeighbors = "func_151634_b" +/** + * Creates a border around a biome. + * + * Parent Class: GenLayerBiomeEdge + */ +m.replaceBiomeEdge = "func_151635_b" +/** + * "Creates a border around a biome if necessary + * + * Parent Class: GenLayerBiomeEdge + */ +m.replaceBiomeEdgeIfNecessary = "func_151636_a" +m.getMapColor = {} +/** + * + * + * Parent Class: MapColor + */ +m.getMapColor.MapColor = "func_151643_b" +/** + * + * + * Parent Class: BlockSand$EnumType + */ +m.getMapColor.BlockSand$EnumType = "func_176687_c" +/** + * + * + * Parent Class: EnumDyeColor + */ +m.getMapColor.EnumDyeColor = "func_176768_e" +/** + * Get the MapColor for this Block and the given BlockState + * + * Parent Class: BlockCarpet + */ +m.getMapColor.BlockCarpet = "func_180659_g" +/** + * The color which represents this entry on a map. + * + * Parent Class: BlockPlanks$EnumType + */ +m.getMapColor.BlockPlanks$EnumType = "func_181070_c" + +/** + * Add food stats. + * + * Parent Class: FoodStats + */ +m.addStats = "func_75122_a" +/** + * + * + * Parent Class: TileEntityHopper + */ +m.isFull = "func_152105_l" +/** + * + * + * Parent Class: TileEntitySkull + */ +m.setPlayerProfile = "func_152106_a" +/** + * + * + * Parent Class: TileEntitySkull + */ +m.setType = "func_152107_a" +/** + * + * + * Parent Class: TileEntitySkull + */ +m.getPlayerProfile = "func_152108_a" +/** + * + * + * Parent Class: TileEntitySkull + */ +m.updatePlayerProfile = "func_152109_d" +/** + * Sends an ENTER_COMBAT packet to the client + * + * Parent Class: EntityLivingBase + */ +m.sendEnterCombat = "func_152111_bt" +/** + * Sends an END_COMBAT packet to the client + * + * Parent Class: EntityLivingBase + */ +m.sendEndCombat = "func_152112_bu" +m.getOwnerId = {} +/** + * + * + * Parent Class: EntityTameable + */ +m.getOwnerId.EntityTameable = "func_152113_b" +/** + * Gets the horse's owner + * + * Parent Class: EntityHorse + */ +m.getOwnerId.EntityHorse = "func_152119_ch" + +/** + * + * + * Parent Class: EntityTameable + */ +m.isOwner = "func_152114_e" +m.setOwnerId = {} +/** + * + * + * Parent Class: EntityTameable + */ +m.setOwnerId.EntityTameable = "func_152115_b" +/** + * + * + * Parent Class: EntityHorse + */ +m.setOwnerId.EntityHorse = "func_152120_b" + +/** + * Determines if this chicken is a jokey with a zombie riding it. + * + * Parent Class: EntityChicken + */ +m.isChickenJockey = "func_152116_bZ" +/** + * Sets whether this chicken is a jockey or not. + * + * Parent Class: EntityChicken + */ +m.setChickenJockey = "func_152117_i" +/** + * Checks if this instance of AbstractClientPlayer has any associated player data. + * + * Parent Class: AbstractClientPlayer + */ +m.hasPlayerInfo = "func_152122_n" +/** + * Returns true if the player has an associated skin. + * + * Parent Class: AbstractClientPlayer + */ +m.hasSkin = "func_152123_o" +/** + * "Draws a scaled + * + * Parent Class: Gui + */ +m.drawScaledCustomSizeModalRect = "func_152125_a" +/** + * "Generate a GuiYesNo asking for confirmation to delete a world + * + * Called when user selects the ""Delete"" button. + * + * @param selectWorld A reference back to the GuiSelectWorld spawning the GuiYesNo + * @param name The name of the world selected for deletion + * @param id An arbitrary integer passed back to selectWorld's confirmClicked method" + * + * Parent Class: GuiSelectWorld + */ +m.makeDeleteWorldYesNo = "func_152129_a" +m.removeEntity = {} +/** + * Sends a packet to the player to remove an entity. + * + * Parent Class: EntityPlayerMP + */ +m.removeEntity.EntityPlayerMP = "func_152339_d" +/** + * Schedule the entity for removal during the next tick. Marks the entity dead in anticipation. + * + * Parent Class: WorldClient + */ +m.removeEntity.WorldClient = "func_72900_e" +/** + * removes entity using its y chunk coordinate as its index + * + * Parent Class: Chunk + */ +m.removeEntity.Chunk = "func_76622_b" + +/** + * + * + * Parent Class: Minecraft + */ +m.readImageToBuffer = "func_152340_a" +/** + * + * + * Parent Class: Minecraft + */ +m.getSkinManager = "func_152342_ad" +m.addScheduledTask = {} +/** + * + * + * Parent Class: Minecraft + */ +m.addScheduledTask.Minecraft = "func_152343_a" +/** + * + * + * Parent Class: IThreadListener + */ +m.addScheduledTask.IThreadListener = "func_152344_a" + +/** + * + * + * Parent Class: IThreadListener + */ +m.isCallingFromMinecraftThread = "func_152345_ab" +/** + * + * + * Parent Class: Minecraft + */ +m.getTwitchStream = "func_152346_Z" +/** + * + * + * Parent Class: Minecraft + */ +m.dispatchKeypresses = "func_152348_aa" +/** + * Returns an array of the GameProfiles of all the connected players + * + * Parent Class: MinecraftServer + */ +m.getGameProfiles = "func_152357_F" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getPlayerProfileCache = "func_152358_ax" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getGameProfileRepository = "func_152359_aw" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setConfigManager = "func_152361_a" +/** + * + * + * Parent Class: DedicatedServer + */ +m.convertFiles = "func_152368_aE" +/** + * + * + * Parent Class: DedicatedServer + */ +m.sleepFiveSeconds = "func_152369_aG" +m.notifyOperators = {} +/** + * Send an informative message to the server operators + * + * Parent Class: IAdminCommand + */ +m.notifyOperators.IAdminCommand = "func_152372_a" +/** + * + * + * Parent Class: CommandBase + */ +m.notifyOperators.CommandBase = "func_152374_a" + +/** + * Calculates the additional damage that will be dealt by an item with this enchantment. This alternative to calcModifierDamage is sensitive to the targets EnumCreatureAttribute. + * + * Parent Class: Enchantment + */ +m.calcDamageByCreature = "func_152376_a" +/** + * + * + * Parent Class: EnchantmentHelper + */ +m.getModifierForCreature = "func_152377_a" +/** + * + * + * Parent Class: World + */ +m.getPlayerEntityByUUID = "func_152378_a" +/** + * + * + * Parent Class: WorldServer + */ +m.getRenderDistanceChunks = "func_152379_p" +/** + * + * + * Parent Class: Session$Type + */ +m.setSessionType = "func_152421_a" +/** + * Returns either 'legacy' or 'mojang' whether the account is migrated or not + * + * Parent Class: Session + */ +m.getSessionType = "func_152428_f" +m.renderStreamIndicator = {} +/** + * + * + * Parent Class: EntityRenderer + */ +m.renderStreamIndicator.EntityRenderer = "func_152430_c" +/** + * + * + * Parent Class: GuiIngame + */ +m.renderStreamIndicator.GuiIngame = "func_180478_c" + +/** + * + * + * Parent Class: ThreadDownloadImageData + */ +m.loadTextureFromServer = "func_152433_a" +/** + * + * + * Parent Class: GuiStreamIndicator + */ +m.updateStreamAlpha = "func_152439_a" +m.read = {} +/** + * + * + * Parent Class: NBTBase + */ +m.read.NBTBase = "func_152446_a" +/** + * Tracks the reading of the given amount of bits(!) + * + * Parent Class: NBTSizeTracker$1 + */ +m.read.NBTSizeTracker$1 = "func_152450_a" +/** + * + * + * Parent Class: CompressedStreamTools + */ +m.read.CompressedStreamTools = "func_74797_a" + +/** + * + * + * Parent Class: NBTTagCompound + */ +m.readType = "func_152447_a" +/** + * + * + * Parent Class: NBTTagCompound + */ +m.readKey = "func_152448_b" +m.readNBT = {} +/** + * + * + * Parent Class: NBTTagCompound + */ +m.readNBT.NBTTagCompound = "func_152449_a" +/** + * Reads the food data for the player. + * + * Parent Class: FoodStats + */ +m.readNBT.FoodStats = "func_75112_a" + +/** + * Reads and returns a GameProfile that has been saved to the passed in NBTTagCompound + * + * Parent Class: NBTUtil + */ +m.readGameProfileFromNBT = "func_152459_a" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +m.getOfflineProfile = "func_152506_a" +m.copyFrom = {} +/** + * + * + * Parent Class: ServerData + */ +m.copyFrom.ServerData = "func_152583_a" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.copyFrom.TextureAtlasSprite = "func_94217_a" + +/** + * + * + * Parent Class: ServerData + */ +m.setResourceMode = "func_152584_a" +/** + * + * + * Parent Class: ServerData + */ +m.getResourceMode = "func_152586_b" +m.getMotd = {} +/** + * + * + * Parent Class: ServerData$ServerResourceMode + */ +m.getMotd.ServerData$ServerResourceMode = "func_152589_a" +/** + * Returns the server message of the day + * + * Parent Class: MinecraftServer + */ +m.getMotd.MinecraftServer = "func_71274_v" + +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.canSendCommands = "func_152596_g" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.removePlayerFromWhitelist = "func_152597_c" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.getWhitelistedPlayerNames = "func_152598_l" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.getWhitelistedPlayers = "func_152599_k" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.getAllProfiles = "func_152600_g" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.addWhitelistedPlayer = "func_152601_d" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.getPlayerStatsFile = "func_152602_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.getOppedPlayers = "func_152603_m" +m.setGameType = {} +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.setGameType.ServerConfigurationManager = "func_152604_a" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +m.setGameType.NetworkPlayerInfo = "func_178839_a" +/** + * Sets the player's game mode and sends it to them. + * + * Parent Class: EntityPlayer + */ +m.setGameType.EntityPlayer = "func_71033_a" +/** + * Sets the game type for all worlds. + * + * Parent Class: MinecraftServer + */ +m.setGameType.MinecraftServer = "func_71235_a" +/** + * + * + * Parent Class: CommandDefaultGameMode + */ +m.setGameType.CommandDefaultGameMode = "func_71541_a" +/** + * + * + * Parent Class: ItemInWorldManager + */ +m.setGameType.ItemInWorldManager = "func_73076_a" +/** + * Sets the GameType. + * + * Parent Class: WorldInfo + */ +m.setGameType.WorldInfo = "func_76060_a" +/** + * Sets the game type for the player. + * + * @param type The GameType to set + * + * Parent Class: PlayerControllerMP + */ +m.setGameType.PlayerControllerMP = "func_78746_a" + +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.addOp = "func_152605_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.getOppedPlayerNames = "func_152606_n" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.canJoin = "func_152607_e" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.getBannedPlayers = "func_152608_h" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.removeOp = "func_152610_b" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.setViewDistance = "func_152611_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.getPlayerByUsername = "func_152612_a" +/** + * + * + * Parent Class: DedicatedPlayerList + */ +m.saveUserBanList = "func_152617_w" +/** + * + * + * Parent Class: DedicatedPlayerList + */ +m.saveIpBanList = "func_152618_v" +/** + * + * + * Parent Class: DedicatedPlayerList + */ +m.loadIpBanList = "func_152619_x" +/** + * + * + * Parent Class: DedicatedPlayerList + */ +m.loadUserBansList = "func_152620_y" +/** + * + * + * Parent Class: PlayerManager + */ +m.hasPlayerInstance = "func_152621_a" +/** + * + * + * Parent Class: PlayerManager + */ +m.setPlayerViewRadius = "func_152622_a" +m.skinAvailable = {} +/** + * + * + * Parent Class: SkinManager$2 + */ +m.skinAvailable.SkinManager$2 = "func_152634_a" +/** + * + * + * Parent Class: SkinManager$SkinAvailableCallback + */ +m.skinAvailable.SkinManager$SkinAvailableCallback = "func_180521_a" + +/** + * + * + * Parent Class: UserListWhitelistEntry + */ +m.onSerialization = "func_152641_a" +/** + * + * + * Parent Class: UserListOpsEntry + */ +m.constructProfile = "func_152643_b" +/** + * "Gets the permission level of the user + * + * Parent Class: UserListOpsEntry + */ +m.getPermissionLevel = "func_152644_a" +/** + * + * + * Parent Class: UserListWhitelistEntry + */ +m.gameProfileFromJsonObject = "func_152646_b" +/** + * + * + * Parent Class: IPBanEntry + */ +m.getIPFromJson = "func_152647_b" +/** + * Convert a {@linkplain com.google.gson.JsonObject JsonObject} into a {@linkplain com.mojang.authlib.GameProfile}. The json object must have {@code uuid} and {@code name} attributes or {@code null} will be returned. + * + * Parent Class: UserListBansEntry + */ +m.toGameProfile = "func_152648_b" +m.addEntry = {} +/** + * Add an entry to this cache + * + * Parent Class: PlayerProfileCache + */ +m.addEntry.PlayerProfileCache = "func_152651_a" +/** + * Adds an entry to the list + * + * Parent Class: UserList + */ +m.addEntry.UserList = "func_152687_a" + +/** + * Get a player's {@link GameProfile} given their UUID + * + * Parent Class: PlayerProfileCache + */ +m.getProfileByUUID = "func_152652_a" +/** + * Get a {@link ProfileEntry} by UUID + * + * Parent Class: PlayerProfileCache + */ +m.getByUUID = "func_152653_b" +m.getUsernames = {} +/** + * Get an array of the usernames that are cached in this cache + * + * Parent Class: PlayerProfileCache + */ +m.getUsernames.PlayerProfileCache = "func_152654_a" +/** + * + * + * Parent Class: CommandReplaceItem + */ +m.getUsernames.CommandReplaceItem = "func_175784_d" + +/** + * Get a player's GameProfile given their username. Mojang's server's will be contacted if the entry is not cached locally. + * + * Parent Class: PlayerProfileCache + */ +m.getGameProfileForUsername = "func_152655_a" +/** + * Get the {@link PlayerProfileCache.ProfileEntry entries} of this cache with a given limit + * + * Parent Class: PlayerProfileCache + */ +m.getEntriesWithLimit = "func_152656_a" +m.load = {} +/** + * Load the cached profiles from disk + * + * Parent Class: PlayerProfileCache + */ +m.load.PlayerProfileCache = "func_152657_b" +/** + * + * + * Parent Class: LazyLoadBase + */ +m.load.LazyLoadBase = "func_179280_b" +/** + * + * + * Parent Class: ChunkLoader + */ +m.load.ChunkLoader = "func_76691_a" + +/** + * Save the cached profiles to disk + * + * Parent Class: PlayerProfileCache + */ +m.save = "func_152658_c" +/** + * Get the date that this entry will expire + * + * Parent Class: PlayerProfileCache$ProfileEntry + */ +m.getExpirationDate = "func_152670_b" +/** + * + * + * Parent Class: UserList + */ +m.writeChanges = "func_152678_f" +/** + * + * + * Parent Class: UserList + */ +m.readSavedFile = "func_152679_g" +/** + * Removes expired bans from the list. See {@link BanEntry#hasBanExpired} + * + * Parent Class: UserList + */ +m.removeExpired = "func_152680_h" +/** + * Gets the key value for the given object + * + * Parent Class: UserListWhitelist + */ +m.getObjectKey = "func_152681_a" +/** + * + * + * Parent Class: UserListWhitelist + */ +m.createEntry = "func_152682_a" +m.getEntry = {} +/** + * + * + * Parent Class: UserList + */ +m.getEntry.UserList = "func_152683_b" +/** + * + * + * Parent Class: LongHashMap + */ +m.getEntry.LongHashMap = "func_76160_c" + +m.removeEntry = {} +/** + * + * + * Parent Class: UserList + */ +m.removeEntry.UserList = "func_152684_c" +/** + * Removes the specified entry from the map and returns it + * + * Parent Class: IntHashMap + */ +m.removeEntry.IntHashMap = "func_76036_e" + +/** + * + * + * Parent Class: UserList + */ +m.setLanServer = "func_152686_a" +/** + * + * + * Parent Class: UserList + */ +m.getValues = "func_152688_e" +/** + * + * + * Parent Class: UserList + */ +m.isLanServer = "func_152689_b" +/** + * + * + * Parent Class: UserList + */ +m.getSaveFile = "func_152691_c" +/** + * + * + * Parent Class: UserList + */ +m.hasEntry = "func_152692_d" +/** + * Gets the GameProfile of based on the provided username. + * + * Parent Class: UserListOps + */ +m.getGameProfileFromName = "func_152700_a" +m.isBanned = {} +/** + * + * + * Parent Class: UserListBans + */ +m.isBanned.UserListBans = "func_152702_a" +/** + * + * + * Parent Class: BanList + */ +m.isBanned.BanList = "func_152708_a" + +/** + * + * + * Parent Class: UserListBans + */ +m.isUsernameBanned = "func_152703_a" +/** + * Returns true if the profile is in the whitelist. + * + * Parent Class: UserListWhitelist + */ +m.isWhitelisted = "func_152705_a" +/** + * "Gets the GameProfile for the UserListBanEntry with the specified username + * + * Parent Class: UserListWhitelist + */ +m.getBannedProfile = "func_152706_a" +/** + * + * + * Parent Class: BanList + */ +m.addressToString = "func_152707_c" +/** + * + * + * Parent Class: BanList + */ +m.getBanEntry = "func_152709_b" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.convertWhitelist = "func_152710_d" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.mkdir = "func_152711_b" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.hasUnconvertableFiles = "func_152712_b" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.parseDate = "func_152713_b" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.tryConvert = "func_152714_a" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.hasUnconvertablePlayerFiles = "func_152715_c" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.lookupNames = "func_152717_a" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.convertOplist = "func_152718_c" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.getStringUUIDFromName = "func_152719_a" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.readFile = "func_152721_a" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.convertIpBanlist = "func_152722_b" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.convertSaveFiles = "func_152723_a" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.convertUserBanlist = "func_152724_a" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.getPlayersDirectory = "func_152725_d" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +m.backupConverted = "func_152727_c" +/** + * + * + * Parent Class: JsonSerializableSet + */ +m.fromJson = "func_152753_a" +/** + * + * + * Parent Class: ShaderGroup + */ +m.parsePass = "func_152764_a" +/** + * + * + * Parent Class: ShaderGroup + */ +m.parseGroup = "func_152765_a" +/** + * Add OS data into the snooper + * + * Parent Class: PlayerUsageSnooper + */ +m.addOSData = "func_152766_h" +/** + * + * + * Parent Class: PlayerUsageSnooper + */ +m.addStatToSnooper = "func_152767_b" +/** + * + * + * Parent Class: PlayerUsageSnooper + */ +m.addClientStat = "func_152768_a" +/** + * + * + * Parent Class: DefaultResourcePack + */ +m.getInputStreamAssets = "func_152780_c" +/** + * + * + * Parent Class: ResourceIndex + */ +m.getResourceMap = "func_152782_a" +/** + * + * + * Parent Class: SkinManager + */ +m.loadSkinFromCache = "func_152788_a" +/** + * Used in the Skull renderer to fetch a skin. May download the skin if it's not in the cache + * + * Parent Class: SkinManager + */ +m.loadSkin = "func_152792_a" +/** + * + * + * Parent Class: SkinManager + */ +m.loadProfileTextures = "func_152790_a" +/** + * + * + * Parent Class: PackMetadataSection + */ +m.getPackDescription = "func_152805_a" +/** + * + * + * Parent Class: BroadcastController + */ +m.getStreamInfo = "func_152816_j" +m.stopBroadcasting = {} +/** + * + * + * Parent Class: BroadcastController + */ +m.stopBroadcasting.BroadcastController = "func_152819_E" +/** + * + * + * Parent Class: NullStream + */ +m.stopBroadcasting.NullStream = "func_152914_u" + +/** + * Log an error + * + * @param error The error to log + * + * Parent Class: BroadcastController + */ +m.logError = "func_152820_d" +/** + * Set a new IngestServer + * + * @param ingestServerSet The new IngestServer + * + * Parent Class: BroadcastController + */ +m.setIngestServer = "func_152824_a" +/** + * + * + * Parent Class: BroadcastController + */ +m.isIngestTesting = "func_152825_o" +/** + * Return the PixelFormat + * + * Parent Class: BroadcastController + */ +m.getPixelFormat = "func_152826_z" +/** + * + * + * Parent Class: BroadcastController + */ +m.setRecordingDeviceVolume = "func_152829_a" +m.requestCommercial = {} +/** + * + * + * Parent Class: BroadcastController + */ +m.requestCommercial.BroadcastController = "func_152830_D" +/** + * + * + * Parent Class: NullStream + */ +m.requestCommercial.NullStream = "func_152931_p" + +m.logWarning = {} +/** + * Log an warning + * + * @param warning The warning to log + * + * Parent Class: BroadcastController + */ +m.logWarning.BroadcastController = "func_152832_e" +/** + * Logs the message with a level of WARN. + * + * Parent Class: MinecraftServer + */ +m.logWarning.MinecraftServer = "func_71236_h" +/** + * Log warning message + * + * Parent Class: RConThreadBase + */ +m.logWarning.RConThreadBase = "func_72606_c" + +/** + * Return the IngestServer's instance + * + * Parent Class: BroadcastController + */ +m.getIngestServer = "func_152833_s" +/** + * + * + * Parent Class: BroadcastController + */ +m.setPlaybackDeviceVolume = "func_152837_b" +/** + * + * + * Parent Class: BroadcastController + */ +m.isBroadcastPaused = "func_152839_p" +/** + * Set a new BroadcastListener + * + * @param broadcastListenerIn The BroadcastListener to set + * + * Parent Class: BroadcastController + */ +m.setBroadcastListener = "func_152841_a" +/** + * + * + * Parent Class: BroadcastController + */ +m.getChannelInfo = "func_152843_l" +/** + * Return the stream time + * + * Parent Class: BroadcastController + */ +m.getStreamTime = "func_152844_x" +/** + * caputres the current framebuffer + * + * Parent Class: BroadcastController + */ +m.captureFramebuffer = "func_152846_a" +m.isBroadcasting = {} +/** + * + * + * Parent Class: BroadcastController + */ +m.isBroadcasting.BroadcastController = "func_152850_m" +/** + * + * + * Parent Class: NullStream + */ +m.isBroadcasting.NullStream = "func_152934_n" + +/** + * + * + * Parent Class: BroadcastController + */ +m.getErrorCode = "func_152852_P" +/** + * Return the IngestList + * + * Parent Class: BroadcastController + */ +m.getIngestList = "func_152855_t" +m.isReady = {} +/** + * + * + * Parent Class: BroadcastController + */ +m.isReady.BroadcastController = "func_152856_w" +/** + * checks if Potion effect is ready to be applied this tick. + * + * Parent Class: Potion + */ +m.isReady.Potion = "func_76397_a" + +m.isReadyToBroadcast = {} +/** + * + * + * Parent Class: BroadcastController + */ +m.isReadyToBroadcast.BroadcastController = "func_152857_n" +/** + * + * + * Parent Class: NullStream + */ +m.isReadyToBroadcast.NullStream = "func_152924_m" + +/** + * passes the framebuffer on to the video stream + * + * @param frame The FrameBuffer tu submit + * + * Parent Class: BroadcastController + */ +m.submitStreamFrame = "func_152859_b" +/** + * mutes or unmutes the microphone based on the boolean parameter passed into the method + * + * Parent Class: NullStream + */ +m.muteMicrophone = "func_152910_a" +/** + * + * + * Parent Class: NullStream + */ +m.updateStreamVolume = "func_152915_s" +/** + * pauses a stream + * + * Parent Class: NullStream + */ +m.pause = "func_152916_q" +/** + * + * + * Parent Class: NullStream + */ +m.isPaused = "func_152919_o" +/** + * Shuts down a steam + * + * Parent Class: NullStream + */ +m.shutdownStream = "func_152923_i" +/** + * unpauses a stream + * + * Parent Class: NullStream + */ +m.unpause = "func_152933_r" +/** + * + * + * Parent Class: TwitchStream + */ +m.formatStreamKbps = "func_152946_b" +/** + * + * + * Parent Class: TwitchStream + */ +m.formatStreamBps = "func_152947_c" +/** + * + * + * Parent Class: TwitchStream + */ +m.formatStreamFps = "func_152948_a" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glGetShaderi = "func_153157_c" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glGetShaderInfoLog = "func_153158_d" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glUniform4 = "func_153162_d" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glUniformMatrix4 = "func_153160_c" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glUseProgram = "func_153161_d" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glUniform1i = "func_153163_f" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glGetAttribLocation = "func_153164_b" +/** + * "Calls the appropriate glGenFramebuffers method and returns the newly created fbo + * + * Parent Class: OpenGlHelper + */ +m.glGenFramebuffers = "func_153165_e" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glGetProgramInfoLog = "func_153166_e" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glCheckFramebufferStatus = "func_153167_i" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glUniform1 = "func_153181_a" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glShaderSource = "func_153169_a" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glCompileShader = "func_153170_c" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glBindFramebuffer = "func_153171_g" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.getLogText = "func_153172_c" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glUniformMatrix2 = "func_153173_a" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glDeleteFramebuffers = "func_153174_h" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glGetProgrami = "func_153175_a" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glBindRenderbuffer = "func_153176_h" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glUniform2 = "func_153182_b" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glAttachShader = "func_153178_b" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glLinkProgram = "func_153179_f" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glDeleteShader = "func_153180_a" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glCreateProgram = "func_153183_d" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glDeleteRenderbuffers = "func_153184_g" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glGenRenderbuffers = "func_153185_f" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glRenderbufferStorage = "func_153186_a" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glDeleteProgram = "func_153187_e" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glFramebufferTexture2D = "func_153188_a" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glUniformMatrix3 = "func_153189_b" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glFramebufferRenderbuffer = "func_153190_b" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glUniform3 = "func_153192_c" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.areShadersSupported = "func_153193_b" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glGetUniformLocation = "func_153194_a" +/** + * creates a shader with the given mode and returns the GL id. params: mode + * + * Parent Class: OpenGlHelper + */ +m.glCreateShader = "func_153195_b" +/** + * + * + * Parent Class: GuiButtonRealmsProxy + */ +m.getRealmsButton = "func_154317_g" +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.getLastActiveTime = "func_154331_x" +/** + * + * + * Parent Class: ISaveFormat + */ +m.isConvertible = "func_154334_a" +/** + * + * + * Parent Class: ISaveFormat + */ +m.isNewLevelIdAcceptable = "func_154335_d" +m.getSizeOnDisk = {} +/** + * + * + * Parent Class: SaveFormatComparator + */ +m.getSizeOnDisk.SaveFormatComparator = "func_154336_c" +/** + * + * + * Parent Class: WorldInfo + */ +m.getSizeOnDisk.WorldInfo = "func_76092_g" + +m.getMouseX = {} +/** + * + * + * Parent Class: GuiSlotRealmsProxy + */ +m.getMouseX.GuiSlotRealmsProxy = "func_154337_m" +/** + * + * + * Parent Class: GuiSimpleScrolledSelectionListProxy + */ +m.getMouseX.GuiSimpleScrolledSelectionListProxy = "func_178049_g" + +m.getMouseY = {} +/** + * + * + * Parent Class: GuiSlotRealmsProxy + */ +m.getMouseY.GuiSlotRealmsProxy = "func_154339_l" +/** + * + * + * Parent Class: GuiSimpleScrolledSelectionListProxy + */ +m.getMouseY.GuiSimpleScrolledSelectionListProxy = "func_178047_f" + +/** + * + * + * Parent Class: ServerEula + */ +m.hasAcceptedEULA = "func_154346_a" +/** + * + * + * Parent Class: ServerEula + */ +m.loadEULAFile = "func_154347_a" +/** + * + * + * Parent Class: ServerEula + */ +m.createEULAFile = "func_154348_b" +/** + * + * + * Parent Class: MathHelper + */ +m.roundUp = "func_154354_b" +/** + * "Get the position vector. <b>{@code null} is not allowed!</b> If you are not an entity in the world + * + * Parent Class: EntityMinecartCommandBlock$1 + */ +m.getPositionVector = "func_174791_d" +/** + * Returns true if the command sender should be sent feedback about executed commands + * + * Parent Class: EntityPlayer + */ +m.sendCommandFeedback = "func_174792_t_" +/** + * Returns the entity associated with the command sender. MAY BE NULL! + * + * Parent Class: EntityMinecartCommandBlock$1 + */ +m.getCommandSenderEntity = "func_174793_f" +/** + * + * + * Parent Class: Entity + */ +m.setCommandStat = "func_174794_a" +/** + * + * + * Parent Class: Entity + */ +m.setAlwaysRenderNameTag = "func_174805_g" +/** + * Creates a Vec3 using the pitch and yaw of the entities rotation. + * + * Parent Class: Entity + */ +m.getVectorForRotation = "func_174806_f" +/** + * + * + * Parent Class: Entity + */ +m.getCommandStats = "func_174807_aT" +/** + * + * + * Parent Class: Entity + */ +m.createRunningParticles = "func_174808_Z" +/** + * Determines if a liquid is present within the specified AxisAlignedBB. + * + * Parent Class: Entity + */ +m.isLiquidPresentInAABB = "func_174809_b" +/** + * When set to true the entity will not play sounds. + * + * Parent Class: Entity + */ +m.setSilent = "func_174810_b" +/** + * + * + * Parent Class: EntityHanging + */ +m.getHorizontalFacing = "func_174811_aO" +/** + * Called by the /kill command. + * + * Parent Class: EntityArmorStand + */ +m.onKillCommand = "func_174812_G" +/** + * + * + * Parent Class: Entity + */ +m.getEntityBoundingBox = "func_174813_aQ" +/** + * @return True if this entity will not play sounds + * + * Parent Class: Entity + */ +m.isSilent = "func_174814_R" +/** + * + * + * Parent Class: Entity + */ +m.applyEnchantments = "func_174815_a" +/** + * + * + * Parent Class: EntityMinecartTNT + */ +m.verifyExplosion = "func_174816_a" +/** + * Set the CommandResultStats from the entity + * + * Parent Class: Entity + */ +m.setCommandStats = "func_174817_o" +m.getNBTTagCompound = {} +/** + * + * + * Parent Class: Entity + */ +m.getNBTTagCompound.Entity = "func_174819_aU" +/** + * Gets the NBTTagCompound for the worldInfo + * + * Parent Class: WorldInfo + */ +m.getNBTTagCompound.WorldInfo = "func_76066_a" + +/** + * + * + * Parent Class: EntityPlayer + */ +m.replaceItemInInventory = "func_174820_d" +/** + * + * + * Parent Class: Entity + */ +m.setOutsideBorder = "func_174821_h" +/** + * + * + * Parent Class: Entity + */ +m.rayTrace = "func_174822_a" +/** + * + * + * Parent Class: Entity + */ +m.getHoverEvent = "func_174823_aP" +/** + * + * + * Parent Class: Entity + */ +m.getPositionEyes = "func_174824_e" +/** + * New version of interactWith that includes vector information on where precisely the player targeted. + * + * Parent Class: EntityArmorStand + */ +m.interactAt = "func_174825_a" +/** + * + * + * Parent Class: Entity + */ +m.setEntityBoundingBox = "func_174826_a" +/** + * + * + * Parent Class: Entity + */ +m.isSpectatedByPlayer = "func_174827_a" +/** + * + * + * Parent Class: Entity + */ +m.moveToBlockPosAndAngles = "func_174828_a" +/** + * Resets the entity's position to the center (planar) and bottom (vertical) points of its bounding box. + * + * Parent Class: Entity + */ +m.resetPositionToBB = "func_174829_m" +/** + * Attempts to create sprinting particles if the entity is sprinting and not in water. + * + * Parent Class: EntityRabbit + */ +m.spawnRunningParticles = "func_174830_Y" +/** + * + * + * Parent Class: Entity + */ +m.getDistanceSqToCenter = "func_174831_c" +/** + * + * + * Parent Class: Entity + */ +m.isOutsideBorder = "func_174832_aS" +/** + * + * + * Parent Class: Entity + */ +m.getAlwaysRenderNameTag = "func_174833_aM" +/** + * Called when client receives entity's NBTTagCompound from server. + * + * Parent Class: Entity + */ +m.clientUpdateEntityNBT = "func_174834_g" +/** + * + * + * Parent Class: EntityFX + */ +m.getAlpha = "func_174838_j" +/** + * Sets the position of the block that this particle came from. Used for calculating texture and color multiplier. + * + * Parent Class: EntityDiggingFX + */ +m.setBlockPos = "func_174846_a" +m.updateBoundingBox = {} +/** + * Updates the entity bounding box based on current facing + * + * Parent Class: EntityHanging + */ +m.updateBoundingBox.EntityHanging = "func_174856_o" +/** + * Calculates total bounding box based on components' bounding boxes and saves it to boundingBox + * + * Parent Class: StructureStart + */ +m.updateBoundingBox.StructureStart = "func_75072_c" + +/** + * + * + * Parent Class: EntityHanging + */ +m.getHangingPosition = "func_174857_n" +/** + * Updates facing and bounding box based on it + * + * Parent Class: EntityLeashKnot + */ +m.updateFacingWithBoundingBox = "func_174859_a" +/** + * + * + * Parent Class: EntityLeashKnot + */ +m.createKnot = "func_174862_a" +/** + * + * + * Parent Class: EntityLeashKnot + */ +m.getKnotForPosition = "func_174863_b" +/** + * + * + * Parent Class: EntityItemFrame + */ +m.setDisplayedItemWithUpdate = "func_174864_a" +/** + * + * + * Parent Class: EntityItem + */ +m.setPickupDelay = "func_174867_a" +/** + * + * + * Parent Class: EntityItem + */ +m.setNoPickupDelay = "func_174868_q" +/** + * + * + * Parent Class: EntityItem + */ +m.setDefaultPickupDelay = "func_174869_p" +/** + * + * + * Parent Class: EntityItem + */ +m.setInfinitePickupDelay = "func_174871_r" +m.getAge = {} +/** + * + * + * Parent Class: EntityItem + */ +m.getAge.EntityItem = "func_174872_o" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.getAge.EntityLivingBase = "func_70654_ax" + +/** + * + * + * Parent Class: EntityItem + */ +m.setNoDespawn = "func_174873_u" +/** + * + * + * Parent Class: EntityItem + */ +m.cannotPickup = "func_174874_s" +/** + * + * + * Parent Class: EntityMinecartHopper + */ +m.getGuiID = "func_174875_k" +/** + * + * + * Parent Class: EntityMinecartHopper + */ +m.createContainer = "func_174876_a" +m.getPos = {} +/** + * + * + * Parent Class: TileEntity + */ +m.getPos.TileEntity = "func_174877_v" +/** + * + * + * Parent Class: BlockWorldState + */ +m.getPos.BlockWorldState = "func_177508_d" +/** + * + * + * Parent Class: S33PacketUpdateSign + */ +m.getPos.S33PacketUpdateSign = "func_179704_a" +/** + * + * + * Parent Class: S35PacketUpdateTileEntity + */ +m.getPos.S35PacketUpdateTileEntity = "func_179823_a" +/** + * + * + * Parent Class: S22PacketMultiBlockChange$BlockUpdateData + */ +m.getPos.S22PacketMultiBlockChange$BlockUpdateData = "func_180090_a" +/** + * Return the BlockPos of the Pattern + * + * Parent Class: BlockPattern$PatternHelper + */ +m.getPos.BlockPattern$PatternHelper = "func_181117_a" + +/** + * + * + * Parent Class: TileEntity + */ +m.setPos = "func_174878_a" +/** + * + * + * Parent Class: TileEntitySign + */ +m.getStats = "func_174880_d" +m.executeCommand = {} +/** + * + * + * Parent Class: TileEntitySign + */ +m.executeCommand.TileEntitySign = "func_174882_b" +/** + * "Attempt to execute a command. This method should return the number of times that the command was executed. If the command does not exist or if the player does not have permission + * + * Parent Class: ICommandManager + */ +m.executeCommand.ICommandManager = "func_71556_a" + +/** + * + * + * Parent Class: TileEntitySkull + */ +m.updateGameprofile = "func_174884_b" +/** + * + * + * Parent Class: InventoryCraftResult + */ +m.setField = "func_174885_b" +/** + * + * + * Parent Class: InventoryCraftResult + */ +m.closeInventory = "func_174886_c" +/** + * + * + * Parent Class: InventoryCraftResult + */ +m.getField = "func_174887_a_" +m.clear = {} +/** + * + * + * Parent Class: InventoryCraftResult + */ +m.clear.InventoryCraftResult = "func_174888_l" +/** + * + * + * Parent Class: VertexFormat + */ +m.clear.VertexFormat = "func_177339_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.clear.GlStateManager = "func_179086_m" + +/** + * + * + * Parent Class: InventoryCraftResult + */ +m.openInventory = "func_174889_b" +/** + * + * + * Parent Class: InventoryCraftResult + */ +m.getFieldCount = "func_174890_g" +/** + * + * + * Parent Class: EntityMinecartContainer + */ +m.getLockCode = "func_174891_i" +/** + * + * + * Parent Class: EntityMinecartContainer + */ +m.setLockCode = "func_174892_a" +m.isLocked = {} +/** + * + * + * Parent Class: EntityMinecartContainer + */ +m.isLocked.EntityMinecartContainer = "func_174893_q_" +/** + * + * + * Parent Class: BlockRedstoneRepeater + */ +m.isLocked.BlockRedstoneRepeater = "func_176405_b" +/** + * + * + * Parent Class: Score + */ +m.isLocked.Score = "func_178816_g" + +/** + * + * + * Parent Class: EntityMinecart + */ +m.getDisplayTile = "func_174897_t" +/** + * Get's the maximum speed for a minecart + * + * Parent Class: EntityMinecartFurnace + */ +m.getMaximumSpeed = "func_174898_m" +/** + * + * + * Parent Class: TileEntityFurnace + */ +m.getCookTime = "func_174904_a" +/** + * + * + * Parent Class: TileEntityBeacon + */ +m.getBeamSegments = "func_174907_n" +/** + * + * + * Parent Class: TileEntityBeacon + */ +m.updateBeacon = "func_174908_m" +/** + * + * + * Parent Class: TileEntityChest + */ +m.getAdjacentChest = "func_174911_a" +/** + * + * + * Parent Class: TileEntityChest + */ +m.isChestAt = "func_174912_b" +/** + * + * + * Parent Class: TileEntityHopper + */ +m.mayTransfer = "func_174914_o" +/** + * Pulls from the specified slot in the inventory and places in any available slot in the hopper. Returns true if the entire stack was moved + * + * Parent Class: TileEntityHopper + */ +m.pullItemFromSlot = "func_174915_a" +/** + * Insert the specified stack to the specified inventory and return any leftover items + * + * Parent Class: TileEntityHopper + */ +m.insertStack = "func_174916_c" +/** + * Returns false if the specified IInventory contains any items + * + * Parent Class: TileEntityHopper + */ +m.isInventoryEmpty = "func_174917_b" +/** + * "Attempts to place the passed stack in the inventory + * + * Parent Class: TileEntityHopper + */ +m.putStackInInventoryAllSlots = "func_174918_a" +/** + * Returns false if the inventory has any room to place items in + * + * Parent Class: TileEntityHopper + */ +m.isInventoryFull = "func_174919_a" +/** + * Can this hopper insert the specified item from the specified slot on the specified side? + * + * Parent Class: TileEntityHopper + */ +m.canInsertItemInSlot = "func_174920_a" +/** + * Can this hopper extract the specified item from the specified slot on the specified side? + * + * Parent Class: TileEntityHopper + */ +m.canExtractItemFromSlot = "func_174921_b" +m.getHeight = {} +/** + * + * + * Parent Class: InventoryCrafting + */ +m.getHeight.InventoryCrafting = "func_174923_h" +/** + * + * + * Parent Class: GuiButtonRealmsProxy + */ +m.getHeight.GuiButtonRealmsProxy = "func_175232_g" +/** + * Returns maximum world height. + * + * Parent Class: World + */ +m.getHeight.World = "func_72800_K" +/** + * + * + * Parent Class: TileEntityBeacon$BeamSegment + */ +m.getHeight.TileEntityBeacon$BeamSegment = "func_177264_c" +/** + * + * + * Parent Class: Chunk + */ +m.getHeight.Chunk = "func_177433_f" +/** + * + * + * Parent Class: Stitcher$Holder + */ +m.getHeight.Stitcher$Holder = "func_94199_b" + +/** + * "Removes matching items from the inventory. + * @param itemIn The item to match + * + * Parent Class: InventoryPlayer + */ +m.clearMatchingItems = "func_174925_a" +/** + * + * + * Parent Class: TileEntityPiston + */ +m.getOffsetZ = "func_174926_d" +/** + * + * + * Parent Class: TileEntityPiston + */ +m.getPistonState = "func_174927_b" +/** + * + * + * Parent Class: TileEntityPiston + */ +m.getOffsetY = "func_174928_c" +/** + * + * + * Parent Class: TileEntityPiston + */ +m.getOffsetX = "func_174929_b" +/** + * + * + * Parent Class: ITextureObject + */ +m.restoreLastBlurMipmap = "func_174935_a" +/** + * + * + * Parent Class: ITextureObject + */ +m.setBlurMipmap = "func_174936_b" +/** + * + * + * Parent Class: AbstractTexture + */ +m.setBlurMipmapDirect = "func_174937_a" +/** + * + * + * Parent Class: TextureMap + */ +m.registerSprite = "func_174942_a" +m.loadSprites = {} +/** + * + * + * Parent Class: TextureMap + */ +m.loadSprites.TextureMap = "func_174943_a" +/** + * + * + * Parent Class: ModelBakery + */ +m.loadSprites.ModelBakery = "func_177572_j" + +/** + * + * + * Parent Class: TextureMap + */ +m.getMissingSprite = "func_174944_f" +/** + * + * + * Parent Class: ModelManager + */ +m.getMissingModel = "func_174951_a" +/** + * + * + * Parent Class: ModelManager + */ +m.getTextureMap = "func_174952_b" +/** + * + * + * Parent Class: ModelManager + */ +m.getModel = "func_174953_a" +m.getBlockModelShapes = {} +/** + * + * + * Parent Class: ModelManager + */ +m.getBlockModelShapes.ModelManager = "func_174954_c" +/** + * + * + * Parent Class: BlockRendererDispatcher + */ +m.getBlockModelShapes.BlockRendererDispatcher = "func_175023_a" + +m.notifyLightSet = {} +/** + * + * + * Parent Class: WorldManager + */ +m.notifyLightSet.WorldManager = "func_174959_b" +/** + * + * + * Parent Class: World + */ +m.notifyLightSet.World = "func_175679_n" + +m.markBlockForUpdate = {} +/** + * + * + * Parent Class: WorldManager + */ +m.markBlockForUpdate.WorldManager = "func_174960_a" +/** + * + * + * Parent Class: World + */ +m.markBlockForUpdate.World = "func_175689_h" +/** + * + * + * Parent Class: PlayerManager + */ +m.markBlockForUpdate.PlayerManager = "func_180244_a" + +m.playRecord = {} +/** + * + * + * Parent Class: WorldManager + */ +m.playRecord.WorldManager = "func_174961_a" +/** + * + * + * Parent Class: World + */ +m.playRecord.World = "func_175717_a" + +/** + * + * + * Parent Class: RenderGlobal + */ +m.getViewVector = "func_174962_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.generateStars = "func_174963_q" +/** + * + * + * Parent Class: RenderGlobal + */ +m.generateSky2 = "func_174964_o" +/** + * + * + * Parent Class: RenderGlobal + */ +m.cleanupDamagedBlocks = "func_174965_a" +/** + * Creates the entity outline shader to be stored in RenderGlobal.entityOutlineShader + * + * Parent Class: RenderGlobal + */ +m.makeEntityOutlineShader = "func_174966_b" +/** + * + * + * Parent Class: RenderGlobal + */ +m.updateChunks = "func_174967_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.renderSky = "func_174976_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.postRenderDamagedBlocks = "func_174969_t" +/** + * + * + * Parent Class: RenderGlobal + */ +m.setupTerrain = "func_174970_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.updateDestroyBlockIcons = "func_174971_n" +m.spawnParticle = {} +/** + * + * + * Parent Class: RenderGlobal + */ +m.spawnParticle.RenderGlobal = "func_174972_a" +/** + * + * + * Parent Class: World + */ +m.spawnParticle.World = "func_175720_a" +/** + * Spawns the desired particle and sends the necessary packets to the relevant connected players. + * + * Parent Class: WorldServer + */ +m.spawnParticle.WorldServer = "func_180505_a" +/** + * + * + * Parent Class: WorldManager + */ +m.spawnParticle.WorldManager = "func_180442_a" + +/** + * + * + * Parent Class: RenderGlobal + */ +m.spawnEntityFX = "func_174974_b" +/** + * + * + * Parent Class: RenderGlobal + */ +m.renderEntityOutlineFramebuffer = "func_174975_c" +/** + * + * + * Parent Class: RenderGlobal + */ +m.renderBlockLayer = "func_174982_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.getVisibleFacings = "func_174978_c" +/** + * + * + * Parent Class: RenderGlobal + */ +m.setDisplayListEntitiesDirty = "func_174979_m" +/** + * + * + * Parent Class: RenderGlobal + */ +m.generateSky = "func_174980_p" +/** + * + * + * Parent Class: RenderGlobal + */ +m.drawBlockDamageTexture = "func_174981_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.isPositionInRenderChunk = "func_174983_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.fixTerrainFrustum = "func_174984_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.isRenderEntityOutlines = "func_174985_d" +m.stopChunkUpdates = {} +/** + * + * + * Parent Class: RenderGlobal + */ +m.stopChunkUpdates.RenderGlobal = "func_174986_e" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +m.stopChunkUpdates.ChunkRenderDispatcher = "func_178514_b" + +/** + * + * + * Parent Class: BlockRendererDispatcher + */ +m.renderBlockBrightness = "func_175016_a" +/** + * + * + * Parent Class: BlockRendererDispatcher + */ +m.getBakedModel = "func_175017_a" +/** + * + * + * Parent Class: BlockRendererDispatcher + */ +m.renderBlock = "func_175018_a" +/** + * + * + * Parent Class: BlockRendererDispatcher + */ +m.getBlockModelRenderer = "func_175019_b" +/** + * + * + * Parent Class: BlockRendererDispatcher + */ +m.renderBlockDamage = "func_175020_a" +/** + * + * + * Parent Class: BlockRendererDispatcher + */ +m.isRenderTypeChest = "func_175021_a" +/** + * + * + * Parent Class: BlockRendererDispatcher + */ +m.getModelFromBlockState = "func_175022_a" +m.registerBlock = {} +/** + * + * + * Parent Class: RenderItem + */ +m.registerBlock.RenderItem = "func_175031_a" +/** + * + * + * Parent Class: Block + */ +m.registerBlock.Block = "func_176219_a" + +/** + * + * + * Parent Class: RenderItem + */ +m.renderItemOverlays = "func_175030_a" +/** + * + * + * Parent Class: RenderItem + */ +m.renderQuads = "func_175032_a" +/** + * + * + * Parent Class: RenderItem + */ +m.renderQuad = "func_175033_a" +m.renderModel = {} +/** + * + * + * Parent Class: RenderItem + */ +m.renderModel.RenderItem = "func_175045_a" +/** + * + * + * Parent Class: BlockModelRenderer + */ +m.renderModel.BlockModelRenderer = "func_178267_a" +/** + * Renders the model in RenderLiving + * + * Parent Class: RendererLivingEntity + */ +m.renderModel.RendererLivingEntity = "func_77036_a" + +/** + * + * + * Parent Class: RenderItem + */ +m.getItemModelMesher = "func_175037_a" +/** + * + * + * Parent Class: RenderItem + */ +m.putQuadNormal = "func_175038_a" +/** + * False when the renderer is rendering the item's effects into a GUI + * + * @param isNot If the renderer is not rendering the effects in a GUI + * + * Parent Class: RenderItem + */ +m.isNotRenderingEffectsInGUI = "func_175039_a" +/** + * + * + * Parent Class: RenderItem + */ +m.renderItemModelTransform = "func_175040_a" +/** + * + * + * Parent Class: RenderItem + */ +m.renderItemIntoGUI = "func_175042_a" +/** + * + * + * Parent Class: RenderItem + */ +m.preTransform = "func_175046_c" +m.registerItem = {} +/** + * + * + * Parent Class: RenderItem + */ +m.registerItem.RenderItem = "func_175048_a" +/** + * + * + * Parent Class: Item + */ +m.registerItem.Item = "func_179219_a" + +/** + * + * + * Parent Class: RenderItem + */ +m.renderItemModelForEntity = "func_175049_a" +/** + * + * + * Parent Class: RenderItem + */ +m.shouldRenderItemIn3D = "func_175050_a" +/** + * Draws the specified string with a shadow. + * + * Parent Class: FontRenderer + */ +m.drawStringWithShadow = "func_175063_a" +/** + * + * + * Parent Class: FontRenderer + */ +m.getColorCode = "func_175064_b" +m.drawString = {} +/** + * Draws the specified string. + * + * Parent Class: FontRenderer + */ +m.drawString.FontRenderer = "func_78276_b" +/** + * "Renders the specified text to the screen. Args : renderer + * + * Parent Class: Gui + */ +m.drawString.Gui = "func_73731_b" + +/** + * What shader to use when spectating this entity + * + * Parent Class: EntityRenderer + */ +m.loadEntityShader = "func_175066_a" +/** + * + * + * Parent Class: EntityRenderer + */ +m.renderWorldDirections = "func_175067_i" +/** + * + * + * Parent Class: EntityRenderer + */ +m.renderWorldPass = "func_175068_a" +/** + * + * + * Parent Class: EntityRenderer + */ +m.isDrawBlockOutline = "func_175070_n" +/** + * + * + * Parent Class: EntityRenderer + */ +m.switchUseShader = "func_175071_c" +/** + * + * + * Parent Class: EntityRenderer + */ +m.disableLightmap = "func_175072_h" +/** + * + * + * Parent Class: SoundHandler + */ +m.getSoundMap = "func_175085_a" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +m.handleResourcePackStatus = "func_175086_a" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +m.handleSpectate = "func_175088_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleWorldBorder = "func_175093_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleCamera = "func_175094_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleResourcePack = "func_175095_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handlePlayerListHeaderFooter = "func_175096_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleEntityNBT = "func_175097_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleCombatEvent = "func_175098_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleTitle = "func_175099_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleSetCompressionLevel = "func_175100_a" +/** + * + * + * Parent Class: INetHandlerPlayClient + */ +m.handleServerDifficulty = "func_175101_a" +m.getPlayerInfo = {} +/** + * Gets the client's description information about another player on the server. + * + * Parent Class: NetHandlerPlayClient + */ +m.getPlayerInfo.NetHandlerPlayClient = "func_175104_a" +/** + * + * + * Parent Class: AbstractClientPlayer + */ +m.getPlayerInfo.AbstractClientPlayer = "func_175155_b" + +/** + * + * + * Parent Class: NetHandlerPlayClient + */ +m.getPlayerInfoMap = "func_175106_d" +/** + * + * + * Parent Class: TileEntityNote + */ +m.triggerNote = "func_175108_a" +/** + * Establishes all of the basic properties for the banner. This will also apply the data from the tile entities nbt tag compounds. + * + * Parent Class: TileEntityBanner + */ +m.initializeBannerData = "func_175109_g" +/** + * Retrieves the list of colors for this tile entity. The banner data will be initialized/refreshed before this happens. + * + * Parent Class: TileEntityBanner + */ +m.getColorList = "func_175110_d" +m.getBaseColor = {} +/** + * + * + * Parent Class: TileEntityBanner + */ +m.getBaseColor.TileEntityBanner = "func_175115_b" +/** + * + * + * Parent Class: ItemBanner + */ +m.getBaseColor.ItemBanner = "func_179225_h" + +/** + * + * + * Parent Class: TileEntityBanner + */ +m.setItemValues = "func_175112_a" +/** + * + * + * Parent Class: TileEntityBanner + */ +m.getPatterns = "func_181021_d" +/** + * Retrieves the list of patterns for this tile entity. The banner data will be initialized/refreshed before this happens. + * + * Parent Class: TileEntityBanner + */ +m.getPatternList = "func_175114_c" +/** + * + * + * Parent Class: TileEntityBanner + */ +m.getPatternResourceLocation = "func_175116_e" +/** + * Removes all the banner related data from a provided instance of ItemStack. + * + * Parent Class: TileEntityBanner + */ +m.removeBannerData = "func_175117_e" +m.getCommandResultStats = {} +/** + * + * + * Parent Class: TileEntityCommandBlock + */ +m.getCommandResultStats.TileEntityCommandBlock = "func_175124_c" +/** + * + * + * Parent Class: CommandBlockLogic + */ +m.getCommandResultStats.CommandBlockLogic = "func_175572_n" + +/** + * Resets the potion effect color and ambience metadata values + * + * Parent Class: EntityLivingBase + */ +m.resetPotionEffectMetadata = "func_175133_bi" +/** + * + * + * Parent Class: EntityRabbit + */ +m.getJumpUpwardsMotion = "func_175134_bD" +/** + * "Clears potion metadata values if the entity has no potion effects. Otherwise + * + * Parent Class: EntityArmorStand + */ +m.updatePotionMetadata = "func_175135_B" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.markPotionsDirty = "func_175136_bO" +/** + * + * + * Parent Class: EntityPlayer + */ +m.getXPSeed = "func_175138_ci" +/** + * "Whether the ""reducedDebugInfo"" option is active for this player." + * + * Parent Class: EntityPlayer + */ +m.hasReducedDebug = "func_175140_cp" +/** + * + * + * Parent Class: EntityPlayer + */ +m.openEditSign = "func_175141_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.isAllowEdit = "func_175142_cm" +/** + * + * + * Parent Class: EntityPlayer + */ +m.isInBed = "func_175143_p" +/** + * "returns true if this is an EntityPlayerSP + * + * Parent Class: EntityPlayer + */ +m.isUser = "func_175144_cb" +/** + * Check whether this player can open an inventory locked with the given LockCode. + * + * Parent Class: EntityPlayer + */ +m.canOpen = "func_175146_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.getOfflineUUID = "func_175147_b" +/** + * + * + * Parent Class: EntityPlayer + */ +m.isWearing = "func_175148_a" +m.isSpectator = {} +/** + * Returns true if the player is in spectator mode. + * + * Parent Class: EntityPlayer + */ +m.isSpectator.EntityPlayer = "func_175149_v" +/** + * None + * + * Parent Class: PlayerControllerMP + */ +m.isSpectator.PlayerControllerMP = "func_78747_a" + +/** + * + * + * Parent Class: EntityPlayer + */ +m.setReducedDebug = "func_175150_k" +/** + * + * + * Parent Class: EntityPlayer + */ +m.canPlayerEdit = "func_175151_a" +m.getSkinType = {} +/** + * + * + * Parent Class: AbstractClientPlayer + */ +m.getSkinType.AbstractClientPlayer = "func_175154_l" +/** + * Retrieves the type of skin that a player is using. The Alex model is slim while the Steve model is default. + * + * Parent Class: DefaultPlayerSkin + */ +m.getSkinType.DefaultPlayerSkin = "func_177332_b" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +m.getSkinType.NetworkPlayerInfo = "func_178851_f" + +/** + * + * + * Parent Class: AbstractClientPlayer + */ +m.getFovModifier = "func_175156_o" +/** + * + * + * Parent Class: EntityPlayerSP + */ +m.setClientBrand = "func_175158_f" +/** + * + * + * Parent Class: EntityPlayerSP + */ +m.closeScreenAndDropStack = "func_175159_q" +/** + * + * + * Parent Class: EntityPlayerSP + */ +m.isCurrentViewEntity = "func_175160_A" +/** + * called every tick when the player is on foot. Performs all the things that normally happen during movement. + * + * Parent Class: EntityPlayerSP + */ +m.onUpdateWalkingPlayer = "func_175161_p" +/** + * Returns true if the block at the given BlockPos and the block above it are NOT full cubes. + * + * Parent Class: EntityPlayerSP + */ +m.isOpenBlockSpace = "func_175162_d" +/** + * + * + * Parent Class: EntityPlayerSP + */ +m.sendHorseInventory = "func_175163_u" +/** + * + * + * Parent Class: ICrafting + */ +m.sendAllWindowProperties = "func_175173_a" +m.drawTexturedModalRect = {} +/** + * Draws a texture rectangle using the texture currently bound to the TextureManager + * + * Parent Class: Gui + */ +m.drawTexturedModalRect.Gui = "func_175175_a" +/** + * "Draws a textured rectangle at the stored z-value. Args: x + * + * Parent Class: GuiScreenRealmsProxy + */ +m.drawTexturedModalRect.GuiScreenRealmsProxy = "func_73729_b" + +/** + * + * + * Parent Class: GuiIngame + */ +m.renderExpBar = "func_175176_b" +/** + * Set the differents times for the titles to their default values + * + * Parent Class: GuiIngame + */ +m.setDefaultTitlesTimes = "func_175177_a" +/** + * + * + * Parent Class: GuiIngame + */ +m.displayTitle = "func_175178_a" +/** + * + * + * Parent Class: GuiIngame + */ +m.renderGameOverlay = "func_175180_a" +/** + * + * + * Parent Class: GuiIngame + */ +m.getTabList = "func_175181_h" +/** + * + * + * Parent Class: GuiIngame + */ +m.showCrosshair = "func_175183_b" +/** + * + * + * Parent Class: GuiIngame + */ +m.renderHotbarItem = "func_175184_a" +/** + * + * + * Parent Class: GuiIngame + */ +m.renderDemo = "func_175185_b" +/** + * + * + * Parent Class: GuiIngame + */ +m.renderHorseJumpBar = "func_175186_a" +/** + * + * + * Parent Class: GuiIngame + */ +m.getSpectatorGui = "func_175187_g" +/** + * Sets the Label to be centered + * + * Parent Class: GuiLabel + */ +m.setCentered = "func_175203_a" +/** + * + * + * Parent Class: GuiTextField + */ +m.setValidator = "func_175205_a" +/** + * + * + * Parent Class: GuiButton + */ +m.setWidth = "func_175211_a" +/** + * Builds the localized display string for this GuiListButton + * + * Parent Class: GuiListButton + */ +m.buildDisplayString = "func_175213_c" +/** + * + * + * Parent Class: GuiSlider + */ +m.getDisplayString = "func_175221_e" +/** + * + * + * Parent Class: GuiOverlayDebug + */ +m.isReducedDebug = "func_175236_d" +/** + * + * + * Parent Class: GuiOverlayDebug + */ +m.renderDebugInfo = "func_175237_a" +/** + * + * + * Parent Class: GuiOverlayDebug + */ +m.getDebugInfoRight = "func_175238_c" +/** + * + * + * Parent Class: GuiOverlayDebug + */ +m.renderDebugInfoRight = "func_175239_b" +/** + * + * + * Parent Class: GuiOverlayDebug + */ +m.bytesToMb = "func_175240_a" +/** + * + * + * Parent Class: GuiPlayerTabOverlay + */ +m.setHeader = "func_175244_b" +/** + * + * + * Parent Class: GuiPlayerTabOverlay + */ +m.drawPing = "func_175245_a" +m.updatePlayerList = {} +/** + * "Called by GuiIngame to update the information stored in the playerlist + * + * Parent Class: GuiPlayerTabOverlay + */ +m.updatePlayerList.GuiPlayerTabOverlay = "func_175246_a" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +m.updatePlayerList.EntityTrackerEntry = "func_73122_a" + +/** + * + * + * Parent Class: GuiPlayerTabOverlay + */ +m.drawScoreboardValues = "func_175247_a" +/** + * + * + * Parent Class: GuiPlayerTabOverlay + */ +m.setFooter = "func_175248_a" +/** + * "Renders the playerlist + * + * Parent Class: GuiPlayerTabOverlay + */ +m.renderPlayerlist = "func_175249_a" +m.renderSelectedItem = {} +/** + * + * + * Parent Class: GuiSpectator + */ +m.renderSelectedItem.GuiSpectator = "func_175263_a" +/** + * + * + * Parent Class: GuiIngame + */ +m.renderSelectedItem.GuiIngame = "func_181551_a" + +m.renderTooltip = {} +/** + * + * + * Parent Class: GuiSpectator + */ +m.renderTooltip.GuiSpectator = "func_175264_a" +/** + * + * + * Parent Class: GuiIngame + */ +m.renderTooltip.GuiIngame = "func_180479_a" + +/** + * Draws the hover event specified by the given chat component + * + * @param component The IChatComponent to render + * @param x The x position where to render + * @param y The y position where to render + * + * Parent Class: GuiScreen + */ +m.handleComponentHover = "func_175272_a" +/** + * Called when the GUI is resized in order to update the world and the resolution + * + * @param w The width of the screen + * @param h The height of the screen + * + * Parent Class: GuiScreen + */ +m.onResize = "func_175273_b" +m.sendChatMessage = {} +/** + * + * + * Parent Class: GuiScreen + */ +m.sendChatMessage.GuiScreen = "func_175281_b" +/** + * Sends a chat message from the player. Args: chatMessage + * + * Parent Class: EntityPlayerSP + */ +m.sendChatMessage.EntityPlayerSP = "func_71165_d" + +/** + * Executes the click event specified by the given chat component + * + * @param component The ChatComponent to check for click + * + * Parent Class: GuiScreenBook + */ +m.handleComponentClick = "func_175276_a" +/** + * + * + * Parent Class: GuiScreen + */ +m.isKeyComboCtrlX = "func_175277_d" +/** + * + * + * Parent Class: GuiScreen + */ +m.isKeyComboCtrlA = "func_175278_g" +/** + * + * + * Parent Class: GuiScreen + */ +m.isKeyComboCtrlV = "func_175279_e" +/** + * + * + * Parent Class: GuiScreen + */ +m.isKeyComboCtrlC = "func_175280_f" +/** + * + * + * Parent Class: GuiScreen + */ +m.openWebLink = "func_175282_a" +/** + * Returns true if either alt key is down + * + * Parent Class: GuiScreen + */ +m.isAltKeyDown = "func_175283_s" +/** + * Marks the selected resource packs list as changed to trigger a resource reload when the screen is closed + * + * Parent Class: GuiScreenResourcePacks + */ +m.markChanged = "func_175288_g" +/** + * "Returns whether the currently-selected world type is actually acceptable for selection + * Used to hide the ""debug"" world type unless the shift key is depressed." + * + * Parent Class: GuiCreateWorld + */ +m.canSelectCurWorldType = "func_175299_g" +m.onTick = {} +/** + * + * + * Parent Class: GuiCustomizeWorldScreen + */ +m.onTick.GuiCustomizeWorldScreen = "func_175320_a" +/** + * self explanitory + * + * Parent Class: ServerConfigurationManager + */ +m.onTick.ServerConfigurationManager = "func_72374_b" +/** + * + * + * Parent Class: KeyBinding + */ +m.onTick.KeyBinding = "func_74507_a" + +/** + * + * + * Parent Class: InventoryEffectRenderer + */ +m.updateActivePotionEffects = "func_175378_g" +/** + * + * + * Parent Class: GuiFurnace + */ +m.getCookProgressScaled = "func_175381_h" +/** + * + * + * Parent Class: GuiFurnace + */ +m.getBurnLeftScaled = "func_175382_i" +/** + * "Returns null which indicates the tab list should just display the player's name + * + * Parent Class: EntityPlayerMP + */ +m.getTabListDisplayName = "func_175396_E" +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.loadResourcePack = "func_175397_a" +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.getSpectatingEntity = "func_175398_C" +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.setSpectatingEntity = "func_175399_e" +/** + * Returns if other players can attack this player + * + * Parent Class: EntityPlayerMP + */ +m.canPlayersAttack = "func_175400_cq" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.getShowArms = "func_175402_q" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.getLeftLegRotation = "func_175403_w" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.getLeftArmRotation = "func_175404_u" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.setLeftArmRotation = "func_175405_c" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.damageArmorStand = "func_175406_a" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.getRightLegRotation = "func_175407_x" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.getBodyRotation = "func_175408_t" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.dropContents = "func_175409_C" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.isSmall = "func_175410_n" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.getRightArmRotation = "func_175411_v" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.playParticles = "func_175412_z" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.setShowArms = "func_175413_k" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.hasNoBasePlate = "func_175414_r" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.setHeadRotation = "func_175415_a" +/** + * Saves the pose to an NBTTagCompound. + * + * Parent Class: EntityArmorStand + */ +m.writePoseToNBT = "func_175416_h" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.setLeftLegRotation = "func_175417_e" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.getHeadRotation = "func_175418_s" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.readPoseFromNBT = "func_175419_y" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.setSmall = "func_175420_a" +m.dropBlock = {} +/** + * + * + * Parent Class: EntityArmorStand + */ +m.dropBlock.EntityArmorStand = "func_175421_A" +/** + * + * + * Parent Class: BlockCocoa + */ +m.dropBlock.BlockCocoa = "func_176500_f" + +/** + * + * + * Parent Class: EntityArmorStand + */ +m.hasNoGravity = "func_175423_p" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.setBodyRotation = "func_175424_b" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.setNoGravity = "func_175425_j" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.setNoBasePlate = "func_175426_l" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.setRightLegRotation = "func_175427_f" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.setRightArmRotation = "func_175428_d" +/** + * Tests if this entity should pickup a weapon or an armor. Entity drops current weapon or armor if the new one is better. + * + * Parent Class: EntityVillager + */ +m.updateEquipmentIfNeeded = "func_175445_a" +/** + * Get whether this Entity's AI is disabled + * + * Parent Class: EntityLiving + */ +m.isAIDisabled = "func_175446_cd" +/** + * Returns new PathNavigateGround instance + * + * Parent Class: EntitySpider + */ +m.getNewNavigator = "func_175447_b" +/** + * Sets home position and max distance for it + * + * Parent Class: EntityCreature + */ +m.setHomePosAndDistance = "func_175449_a" +/** + * + * + * Parent Class: EntityGhast + */ +m.getFireballStrength = "func_175453_cd" +/** + * + * + * Parent Class: EntityGhast + */ +m.setAttacking = "func_175454_a" +/** + * + * + * Parent Class: EntityZombie + */ +m.applyEntityAI = "func_175456_n" +m.isAngry = {} +/** + * + * + * Parent Class: EntityPigZombie + */ +m.isAngry.EntityPigZombie = "func_175457_ck" +/** + * Determines whether this wolf is angry or not. + * + * Parent Class: EntityWolf + */ +m.isAngry.EntityWolf = "func_70919_bu" + +/** + * + * + * Parent Class: EntityGuardian + */ +m.isElder = "func_175461_cl" +/** + * + * + * Parent Class: EntityGuardian + */ +m.setTargetedEntity = "func_175463_b" +/** + * Sets this Guardian to be an elder or not. + * + * Parent Class: EntityGuardian + */ +m.setElder = "func_175467_a" +/** + * + * + * Parent Class: EntityGuardian + */ +m.getTargetedEntity = "func_175466_co" +/** + * Returns true if given flag is set + * + * Parent Class: EntityGuardian + */ +m.isSyncedFlagSet = "func_175468_a" +/** + * "Sets a flag state ""on/off"" on both sides (client/server) by using DataWatcher" + * + * Parent Class: EntityGuardian + */ +m.setSyncedFlag = "func_175473_a" +/** + * + * + * Parent Class: EntityGuardian + */ +m.hasTargetedEntity = "func_175474_cn" +/** + * Gets this enderman's held block state + * + * Parent Class: EntityEnderman + */ +m.getHeldBlockState = "func_175489_ck" +/** + * Sets this enderman's held block state + * + * Parent Class: EntityEnderman + */ +m.setHeldBlockState = "func_175490_a" +/** + * + * + * Parent Class: EntityEndermite + */ +m.isSpawnedByPlayer = "func_175495_n" +/** + * Sets if this mob was spawned by a player or not. + * + * Parent Class: EntityEndermite + */ +m.setSpawnedByPlayer = "func_175496_a" +/** + * Generate the portal when the dragon dies + * + * Parent Class: EntityDragon + */ +m.generatePortal = "func_175499_a" +/** + * "This is called when Entity's growing age timer reaches 0 (negative values are considered as a child + * + * Parent Class: EntityVillager + */ +m.onGrowingAdult = "func_175500_n" +/** + * Decreases ItemStack size by one + * + * Parent Class: EntityAnimal + */ +m.consumeItemFromStack = "func_175505_a" +/** + * Gets the wool color of this sheep. + * + * Parent Class: EntitySheep + */ +m.getFleeceColor = "func_175509_cj" +/** + * "Chooses a ""vanilla"" sheep color based on the provided random." + * + * Parent Class: EntitySheep + */ +m.getRandomSheepColor = "func_175510_a" +/** + * Attempts to mix both parent sheep to come up with a mixed dye color. + * + * Parent Class: EntitySheep + */ +m.getDyeColorMixFromParents = "func_175511_a" +/** + * Sets the wool color of this sheep + * + * Parent Class: EntitySheep + */ +m.setFleeceColor = "func_175512_b" +/** + * + * + * Parent Class: EntitySheep + */ +m.getDyeRgb = "func_175513_a" +/** + * + * + * Parent Class: EntityRabbit + */ +m.setMovementSpeed = "func_175515_b" +/** + * + * + * Parent Class: EntityRabbit + */ +m.getJumpingSound = "func_175516_ck" +m.setJumping = {} +/** + * + * + * Parent Class: EntityRabbit + */ +m.setJumping.EntityRabbit = "func_175519_a" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.setJumping.EntityLivingBase = "func_70637_d" +/** + * + * + * Parent Class: EntityJumpHelper + */ +m.setJumping.EntityJumpHelper = "func_75660_a" + +/** + * + * + * Parent Class: EntityRabbit + */ +m.setMoveType = "func_175522_a" +/** + * + * + * Parent Class: EntityRabbit + */ +m.doMovementAction = "func_175524_b" +/** + * + * + * Parent Class: EntityRabbit + */ +m.isRabbitBreedingItem = "func_175525_a" +/** + * + * + * Parent Class: EntityRabbit + */ +m.createEatingParticles = "func_175528_cn" +/** + * + * + * Parent Class: EntityRabbit + */ +m.setRabbitType = "func_175529_r" +/** + * + * + * Parent Class: EntityRabbit + */ +m.updateMoveTypeDuration = "func_175530_ct" +/** + * + * + * Parent Class: EntityRabbit + */ +m.getRabbitType = "func_175531_cl" +/** + * Returns duration of the current {@link net.minecraft.entity.passive.EntityRabbit.EnumMoveType move type} + * + * Parent Class: EntityRabbit + */ +m.getMoveTypeDuration = "func_175532_cm" +/** + * + * + * Parent Class: EntityRabbit + */ +m.calculateRotationYaw = "func_175533_a" +/** + * Returns true if {@link net.minecraft.entity.passive.EntityRabbit#carrotTicks carrotTicks} has reached zero + * + * Parent Class: EntityRabbit + */ +m.isCarrotEaten = "func_175534_cv" +/** + * + * + * Parent Class: EntityOcelot + */ +m.setupTamedAI = "func_175544_ck" +/** + * + * + * Parent Class: EntityWolf + */ +m.getCollarColor = "func_175546_cu" +/** + * + * + * Parent Class: EntityWolf + */ +m.setCollarColor = "func_175547_a" +/** + * + * + * Parent Class: EntityVillager + */ +m.setIsWillingToMate = "func_175549_o" +/** + * Returns current or updated value of {@link #isWillingToMate} + * + * Parent Class: EntityVillager + */ +m.getIsWillingToMate = "func_175550_n" +/** + * + * + * Parent Class: EntityVillager + */ +m.getVillagerInventory = "func_175551_co" +/** + * + * + * Parent Class: EntityVillager + */ +m.setAdditionalAItasks = "func_175552_ct" +/** + * + * + * Parent Class: EntityVillager + */ +m.populateBuyingList = "func_175554_cu" +/** + * Used by {@link net.minecraft.entity.ai.EntityAIVillagerInteract EntityAIVillagerInteract} to check if the villager can give some items from an inventory to another villager. + * + * Parent Class: EntityVillager + */ +m.canAbondonItems = "func_175555_cq" +/** + * "Returns true if villager has seeds + * + * Parent Class: EntityVillager + */ +m.isFarmItemInInventory = "func_175556_cs" +/** + * + * + * Parent Class: EntityVillager + */ +m.canVillagerPickupItem = "func_175558_a" +/** + * Returns true if villager has enough items in inventory + * + * Parent Class: EntityVillager + */ +m.hasEnoughItems = "func_175559_s" +/** + * + * + * Parent Class: EntityBat + */ +m.isDateAroundHalloween = "func_175569_a" +m.getInstance = {} +/** + * + * + * Parent Class: RConConsoleSource + */ +m.getInstance.RConConsoleSource = "func_175570_h" +/** + * + * + * Parent Class: EnchantmentNameParts + */ +m.getInstance.EnchantmentNameParts = "func_178176_a" +/** + * + * + * Parent Class: Tessellator + */ +m.getInstance.Tessellator = "func_178181_a" +/** + * Return the StringTranslate singleton instance + * + * Parent Class: StringTranslate + */ +m.getInstance.StringTranslate = "func_74808_a" +/** + * Returns the static instance of this class + * + * Parent Class: CraftingManager + */ +m.getInstance.CraftingManager = "func_77594_a" +/** + * Initialises the ClippingHelper object then returns an instance of it. + * + * Parent Class: ClippingHelperImpl + */ +m.getInstance.ClippingHelperImpl = "func_78558_a" + +/** + * + * + * Parent Class: CommandBlockLogic + */ +m.shouldTrackOutput = "func_175571_m" +/** + * + * + * Parent Class: CommandBlockLogic + */ +m.setTrackOutput = "func_175573_a" +/** + * + * + * Parent Class: CommandBlockLogic + */ +m.tryOpenEditCommandBlock = "func_175574_a" +m.getEntityFromUuid = {} +/** + * + * + * Parent Class: MinecraftServer + */ +m.getEntityFromUuid.MinecraftServer = "func_175576_a" +/** + * + * + * Parent Class: WorldServer + */ +m.getEntityFromUuid.WorldServer = "func_175733_a" + +/** + * "The compression treshold. If the packet is larger than the specified amount of bytes + * + * Parent Class: MinecraftServer + */ +m.getNetworkCompressionTreshold = "func_175577_aI" +/** + * + * + * Parent Class: MinecraftServer + */ +m.isAnvilFileSet = "func_175578_N" +/** + * + * + * Parent Class: MinecraftServer + */ +m.isBlockProtected = "func_175579_a" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getMaxWorldSize = "func_175580_aG" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getResourcePackHash = "func_175581_ab" +/** + * + * + * Parent Class: MinecraftServer + */ +m.createNewCommandManager = "func_175582_h" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getServerThread = "func_175583_aK" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setResourcePackFromWorld = "func_175584_a" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setInstance = "func_175585_v" +/** + * + * + * Parent Class: MinecraftServer + */ +m.callFromMainThread = "func_175586_a" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getCurrentTime = "func_175587_aJ" +/** + * + * + * Parent Class: IntegratedServer + */ +m.setStaticInstance = "func_175592_a" +/** + * + * + * Parent Class: DedicatedServer + */ +m.getMaxTickTime = "func_175593_aQ" +/** + * + * + * Parent Class: Minecraft + */ +m.setWindowIcon = "func_175594_ao" +/** + * + * + * Parent Class: Minecraft + */ +m.initStream = "func_175595_al" +/** + * + * + * Parent Class: Minecraft + */ +m.getSessionInfo = "func_175596_ai" +/** + * + * + * Parent Class: Minecraft + */ +m.getItemRenderer = "func_175597_ag" +m.getRenderManager = {} +/** + * + * + * Parent Class: Minecraft + */ +m.getRenderManager.Minecraft = "func_175598_ae" +/** + * + * + * Parent Class: Render + */ +m.getRenderManager.Render = "func_177068_d" + +/** + * + * + * Parent Class: Minecraft + */ +m.getRenderItem = "func_175599_af" +/** + * + * + * Parent Class: Minecraft + */ +m.getVersion = "func_175600_c" +/** + * + * + * Parent Class: Minecraft + */ +m.updateDisplay = "func_175601_h" +/** + * + * + * Parent Class: Minecraft + */ +m.getBlockRendererDispatcher = "func_175602_ab" +/** + * + * + * Parent Class: Minecraft + */ +m.scheduleResourcesRefresh = "func_175603_A" +/** + * + * + * Parent Class: Minecraft + */ +m.checkWindowResize = "func_175604_i" +/** + * + * + * Parent Class: Minecraft + */ +m.setInitialDisplayMode = "func_175605_an" +/** + * + * + * Parent Class: Minecraft + */ +m.getRenderViewEntity = "func_175606_aa" +/** + * + * + * Parent Class: Minecraft + */ +m.setRenderViewEntity = "func_175607_a" +/** + * + * + * Parent Class: Minecraft + */ +m.registerMetadataSerializers = "func_175608_ak" +/** + * + * + * Parent Class: Minecraft + */ +m.createDisplay = "func_175609_am" +/** + * + * + * Parent Class: Minecraft + */ +m.getDebugFPS = "func_175610_ah" +/** + * "Checks to see if an air block exists at the provided location. Note that this only checks to see if the blocks material is set to air + * + * Parent Class: ChunkCache + */ +m.isAirBlock = "func_175623_d" +m.getTileEntity = {} +/** + * + * + * Parent Class: RegionRenderCache + */ +m.getTileEntity.RegionRenderCache = "func_175625_s" +/** + * + * + * Parent Class: BlockPistonMoving + */ +m.getTileEntity.BlockPistonMoving = "func_176422_e" +/** + * + * + * Parent Class: BlockFlowerPot + */ +m.getTileEntity.BlockFlowerPot = "func_176442_d" +/** + * + * + * Parent Class: Chunk + */ +m.getTileEntity.Chunk = "func_177424_a" +/** + * + * + * Parent Class: BlockWorldState + */ +m.getTileEntity.BlockWorldState = "func_177507_b" + +/** + * + * + * Parent Class: RegionRenderCache + */ +m.getCombinedLight = "func_175626_b" +m.getStrongPower = {} +/** + * + * + * Parent Class: ChunkCache + */ +m.getStrongPower.ChunkCache = "func_175627_a" +/** + * "Returns the single highest strong power out of all directions using getStrongPower(BlockPos + * + * Parent Class: World + */ +m.getStrongPower.World = "func_175676_y" +/** + * + * + * Parent Class: BlockTripWireHook + */ +m.getStrongPower.BlockTripWireHook = "func_176211_b" + +m.getLightFor = {} +/** + * + * + * Parent Class: ChunkCache + */ +m.getLightFor.ChunkCache = "func_175628_b" +/** + * + * + * Parent Class: World + */ +m.getLightFor.World = "func_175642_b" +/** + * + * + * Parent Class: Chunk + */ +m.getLightFor.Chunk = "func_177413_a" + +/** + * + * + * Parent Class: ChunkCache + */ +m.getLightForExt = "func_175629_a" +/** + * + * + * Parent Class: RegionRenderCache + */ +m.getPositionIndex = "func_175630_e" +/** + * + * + * Parent Class: RegionRenderCache + */ +m.getBlockStateRaw = "func_175631_c" +/** + * + * + * Parent Class: World + */ +m.isAnyPlayerWithinRangeAt = "func_175636_b" +/** + * + * + * Parent Class: World + */ +m.forceBlockUpdateTick = "func_175637_a" +/** + * gets the light level at the supplied position + * + * Parent Class: World + */ +m.getRawLight = "func_175638_a" +/** + * + * + * Parent Class: World + */ +m.isAreaLoaded = "func_175711_a" +/** + * + * + * Parent Class: World + */ +m.isBlockPowered = "func_175640_z" +/** + * + * + * Parent Class: WorldServer + */ +m.addBlockEvent = "func_175641_c" +/** + * + * + * Parent Class: World + */ +m.getEntities = "func_175644_a" +/** + * + * + * Parent Class: World + */ +m.markChunkDirty = "func_175646_b" +/** + * "Returns all entities of the specified class type which intersect with the AABB. Args: entityClass + * + * Parent Class: World + */ +m.getEntitiesWithinAABB = "func_72872_a" +/** + * + * + * Parent Class: World + */ +m.getDifficultyForLocation = "func_175649_E" +/** + * + * + * Parent Class: World + */ +m.loadEntities = "func_175650_b" +/** + * + * + * Parent Class: World + */ +m.getRedstonePower = "func_175651_c" +m.setSpawnPoint = {} +/** + * + * + * Parent Class: World + */ +m.setSpawnPoint.World = "func_175652_B" +/** + * + * + * Parent Class: EntityPlayer + */ +m.setSpawnPoint.EntityPlayer = "func_180473_a" + +m.setLightFor = {} +/** + * + * + * Parent Class: World + */ +m.setLightFor.World = "func_175653_a" +/** + * + * + * Parent Class: Chunk + */ +m.setLightFor.Chunk = "func_177431_a" + +/** + * + * + * Parent Class: WorldServer + */ +m.updateBlockTick = "func_175654_a" +/** + * "Sets a block to air + * + * Parent Class: World + */ +m.destroyBlock = "func_175655_b" +m.setBlockState = {} +/** + * "Sets the block state at a given location. Flag 1 will cause a block update. Flag 2 will send the change to clients (you almost always want this). Flag 4 prevents the block from being re-rendered + * + * Parent Class: World + */ +m.setBlockState.World = "func_180501_a" +/** + * + * + * Parent Class: StructureVillagePieces$Village + */ +m.setBlockState.StructureVillagePieces$Village = "func_175811_a" +/** + * + * + * Parent Class: Chunk + */ +m.setBlockState.Chunk = "func_177436_a" +/** + * + * + * Parent Class: ChunkPrimer + */ +m.setBlockState.ChunkPrimer = "func_177857_a" + +/** + * + * + * Parent Class: World + */ +m.getSkylightSubtracted = "func_175657_ab" +/** + * + * + * Parent Class: World + */ +m.getLastLightningBolt = "func_175658_ac" +/** + * + * + * Parent Class: WorldServer + */ +m.isBlockModifiable = "func_175660_a" +/** + * + * + * Parent Class: World + */ +m.canBlockFreezeNoWater = "func_175662_w" +/** + * + * + * Parent Class: World + */ +m.checkLight = "func_175664_x" +/** + * + * + * Parent Class: World + */ +m.isBlockFullCube = "func_175665_u" +/** + * + * + * Parent Class: World + */ +m.updateComparatorOutputLevel = "func_175666_e" +/** + * + * + * Parent Class: World + */ +m.isBlockLoaded = "func_175668_a" +/** + * + * + * Parent Class: World + */ +m.playBroadcastSound = "func_175669_a" +/** + * Checks to see if a given block is both water and cold enough to freeze. + * + * Parent Class: World + */ +m.canBlockFreeze = "func_175670_e" +/** + * + * + * Parent Class: World + */ +m.getLightFromNeighbors = "func_175671_l" +/** + * "Finds the highest block on the x and z coordinate that is solid or liquid + * + * Parent Class: World + */ +m.getTopSolidOrLiquidBlock = "func_175672_r" +/** + * + * + * Parent Class: World + */ +m.isInsideBorder = "func_175673_a" +/** + * "Gets all entities within the specified AABB excluding the one passed into it. Args: entityToExclude + * + * Parent Class: World + */ +m.getEntitiesInAABBexcluding = "func_175674_a" +/** + * + * + * Parent Class: World + */ +m.canBlockFreezeWater = "func_175675_v" +m.canSeeSky = {} +/** + * + * + * Parent Class: World + */ +m.canSeeSky.World = "func_175678_i" +/** + * + * + * Parent Class: Chunk + */ +m.canSeeSky.Chunk = "func_177444_d" + +/** + * + * + * Parent Class: World + */ +m.isChunkLoaded = "func_175680_a" +/** + * + * + * Parent Class: World + */ +m.unloadEntities = "func_175681_c" +/** + * + * + * Parent Class: World + */ +m.doesBlockHaveSolidTopSurface = "func_175683_a" +/** + * + * + * Parent Class: WorldServer + */ +m.scheduleUpdate = "func_175684_a" +/** + * + * + * Parent Class: World + */ +m.notifyNeighborsOfStateChange = "func_175685_c" +/** + * + * + * Parent Class: World + */ +m.isFindingSpawnPoint = "func_175686_ad" +/** + * Checks if the specified block or its neighbors are powered by a neighboring block. Used by blocks like TNT and Doors. + * + * Parent Class: World + */ +m.isBlockIndirectlyGettingPowered = "func_175687_A" +/** + * + * + * Parent Class: World + */ +m.setTileEntity = "func_175690_a" +/** + * + * + * Parent Class: WorldServer + */ +m.isBlockTickPending = "func_175691_a" +/** + * + * + * Parent Class: World + */ +m.setSkylightSubtracted = "func_175692_b" +/** + * + * + * Parent Class: World + */ +m.getMapStorage = "func_175693_T" +/** + * Gets the spawn point in the world + * + * Parent Class: World + */ +m.getSpawnPoint = "func_175694_M" +/** + * + * + * Parent Class: World + */ +m.notifyNeighborsOfStateExcept = "func_175695_a" +/** + * + * + * Parent Class: World + */ +m.isWater = "func_175696_F" +/** + * + * + * Parent Class: World + */ +m.setBlockToAir = "func_175698_g" +/** + * + * + * Parent Class: World + */ +m.getLight = "func_175721_c" +/** + * Check if the given BlockPos has valid coordinates + * + * Parent Class: World + */ +m.isValid = "func_175701_a" +/** + * + * + * Parent Class: World + */ +m.setLastLightningBolt = "func_175702_c" +/** + * + * + * Parent Class: World + */ +m.getGroundAboveSeaLevel = "func_175703_c" +/** + * + * + * Parent Class: World + */ +m.getLightFromNeighborsFor = "func_175705_a" +/** + * Checks to see if a given block can accumulate snow from it snowing + * + * Parent Class: World + */ +m.canSnowAt = "func_175708_f" +/** + * + * + * Parent Class: World + */ +m.isSidePowered = "func_175709_b" +/** + * + * + * Parent Class: World + */ +m.canBlockSeeSky = "func_175710_j" +m.removeTileEntity = {} +/** + * + * + * Parent Class: World + */ +m.removeTileEntity.World = "func_175713_t" +/** + * + * + * Parent Class: Chunk + */ +m.removeTileEntity.Chunk = "func_177425_e" + +/** + * + * + * Parent Class: World + */ +m.getVillageCollection = "func_175714_ae" +m.sendBlockBreakProgress = {} +/** + * + * + * Parent Class: World + */ +m.sendBlockBreakProgress.World = "func_175715_c" +/** + * + * + * Parent Class: WorldManager + */ +m.sendBlockBreakProgress.WorldManager = "func_180441_b" + +/** + * + * + * Parent Class: World + */ +m.canBlockBePlaced = "func_175716_a" +m.playAuxSFX = {} +/** + * + * + * Parent Class: World + */ +m.playAuxSFX.World = "func_175718_b" +/** + * + * + * Parent Class: WorldManager + */ +m.playAuxSFX.WorldManager = "func_180439_a" + +/** + * Attempts to extinguish a fire + * + * Parent Class: World + */ +m.extinguishFire = "func_175719_a" +/** + * + * + * Parent Class: World + */ +m.notifyNeighborsRespectDebug = "func_175722_b" +m.getWorldBorder = {} +/** + * + * + * Parent Class: World + */ +m.getWorldBorder.World = "func_175723_af" +/** + * + * + * Parent Class: CommandWorldBorder + */ +m.getWorldBorder.CommandWorldBorder = "func_175772_d" +/** + * + * + * Parent Class: WorldProviderHell + */ +m.getWorldBorder.WorldProviderHell = "func_177501_r" + +/** + * + * + * Parent Class: World + */ +m.getLightBrightness = "func_175724_o" +m.getPrecipitationHeight = {} +/** + * + * + * Parent Class: World + */ +m.getPrecipitationHeight.World = "func_175725_q" +/** + * + * + * Parent Class: Chunk + */ +m.getPrecipitationHeight.Chunk = "func_177440_h" + +/** + * + * + * Parent Class: World + */ +m.getChunkFromBlockCoords = "func_175726_f" +/** + * Check if precipitation is currently happening at a position + * + * Parent Class: World + */ +m.isRainingAt = "func_175727_C" +/** + * Plays a sound at the specified position. + * + * @param pos The position where to play the sound + * @param soundName The name of the sound to play + * @param volume The volume of the sound + * @param pitch The pitch of the sound + * @param distanceDelay True if the sound is delayed over distance + * + * Parent Class: WorldClient + */ +m.playSoundAtPos = "func_175731_a" +/** + * + * + * Parent Class: WorldServer + */ +m.canCreatureTypeSpawnHere = "func_175732_a" +/** + * + * + * Parent Class: WorldServer + */ +m.getSpawnListEntryForTypeAt = "func_175734_a" +/** + * + * + * Parent Class: WorldServer + */ +m.canSpawnAnimals = "func_175735_ai" +/** + * + * + * Parent Class: WorldServer + */ +m.adjustPosToNearbyEntity = "func_175736_a" +/** + * + * + * Parent Class: WorldServer + */ +m.setDebugWorldSettings = "func_175737_aj" +/** + * + * + * Parent Class: WorldServer + */ +m.canSpawnNPCs = "func_175738_ah" +m.getColorIndex = {} +/** + * Returns the numerical color index that represents this formatting + * + * Parent Class: EnumChatFormatting + */ +m.getColorIndex.EnumChatFormatting = "func_175746_b" +/** + * Takes in the pass the call list is being requested for. Args: renderPass + * + * Parent Class: WorldRenderer + */ +m.getColorIndex.WorldRenderer = "func_78909_a" + +/** + * + * + * Parent Class: CrashReportCategory + */ +m.addBlockInfo = "func_180523_a" +/** + * + * + * Parent Class: CommandBase + */ +m.parseInt = "func_180528_a" +/** + * + * + * Parent Class: CommandBase + */ +m.parseDouble = "func_180526_a" +/** + * + * + * Parent Class: CommandBase + */ +m.parseBlockPos = "func_175757_a" +/** + * "Attempts to retrieve an entity's name + * + * Parent Class: CommandBase + */ +m.getEntityName = "func_175758_e" +/** + * + * + * Parent Class: CommandBase + */ +m.parseLong = "func_175766_b" +/** + * Returns a List of strings (chosen from the given strings) which the last word in the given string array is a beginning-match for. (Tab completion). + * + * Parent Class: CommandBase + */ +m.getListOfStringsMatchingLastWord = "func_71530_a" +/** + * + * + * Parent Class: CommandBase + */ +m.parseCoordinate = "func_175770_a" +/** + * + * + * Parent Class: CommandReplaceItem + */ +m.getSlotForShortcut = "func_175783_e" +/** + * + * + * Parent Class: CommandHandler + */ +m.tryExecute = "func_175786_a" +m.generate = {} +/** + * + * + * Parent Class: MapGenBase + */ +m.generate.MapGenBase = "func_175792_a" +/** + * + * + * Parent Class: WorldGenWaterlily + */ +m.generate.WorldGenWaterlily = "func_180709_b" + +m.generateStructure = {} +/** + * + * + * Parent Class: MapGenStructure + */ +m.generateStructure.MapGenStructure = "func_175794_a" +/** + * Keeps iterating Structure Pieces and spawning them until the checks tell it to stop + * + * Parent Class: StructureStart + */ +m.generateStructure.StructureStart = "func_75068_a" + +/** + * + * + * Parent Class: MapGenStructure + */ +m.isPositionInStructure = "func_175796_a" +m.getScatteredFeatureSpawnList = {} +/** + * Gets the scattered feature spawn list + * + * Parent Class: StructureOceanMonument + */ +m.getScatteredFeatureSpawnList.StructureOceanMonument = "func_175799_b" +/** + * returns possible spawns for scattered features + * + * Parent Class: MapGenScatteredFeature + */ +m.getScatteredFeatureSpawnList.MapGenScatteredFeature = "func_82667_a" + +/** + * Fill the given area with the selected blocks + * + * Parent Class: StructureVillagePieces$Village + */ +m.fillWithBlocks = "func_175804_a" +m.generateDispenserContents = {} +/** + * + * + * Parent Class: StructureComponent + */ +m.generateDispenserContents.StructureComponent = "func_175806_a" +/** + * + * + * Parent Class: WeightedRandomChestContent + */ +m.generateDispenserContents.WeightedRandomChestContent = "func_177631_a" + +/** + * + * + * Parent Class: StructureComponent + */ +m.getBlockStateFromPos = "func_175807_a" +/** + * Replaces air and liquid from given position downwards. Stops when hitting anything else than air or liquid + * + * Parent Class: StructureVillagePieces$Village + */ +m.replaceAirAndLiquidDownwards = "func_175808_b" +/** + * + * + * Parent Class: StructureComponent + */ +m.randomlyPlaceBlock = "func_175809_a" +/** + * Places door on given position + * + * Parent Class: StructureComponent + */ +m.placeDoorCurrentPosition = "func_175810_a" +/** + * Create a bounding box with the specified dimensions and rotate it. Used to project a possible new component Bounding Box - to check if it would cut anything already spawned + * + * Parent Class: StructureBoundingBox + */ +m.getComponentToAddBoundingBox = "func_175897_a" +m.isVecInside = {} +/** + * Checks if given Vec3i is inside of StructureBoundingBox + * + * Parent Class: StructureBoundingBox + */ +m.isVecInside.StructureBoundingBox = "func_175898_b" +/** + * Returns if the supplied Vec3D is completely inside the bounding box + * + * Parent Class: AxisAlignedBB + */ +m.isVecInside.AxisAlignedBB = "func_72318_a" + +/** + * + * + * Parent Class: FlatLayerInfo + */ +m.getLayerMaterial = "func_175900_c" +/** + * + * + * Parent Class: WorldGenerator + */ +m.setBlockAndNotifyAdequately = "func_175903_a" +/** + * + * + * Parent Class: WorldGenFlowers + */ +m.setGeneratedBlock = "func_175914_a" +/** + * Returns the absolute greatest distance in the BlockPos object. + * + * Parent Class: WorldGenBigTree + */ +m.getGreatestDistance = "func_175935_b" +/** + * "Checks a line of blocks in the world from the first coordinate to triplet to the second + * + * Parent Class: WorldGenBigTree + */ +m.checkBlockLine = "func_175936_a" +/** + * Generates additional wood blocks to fill out the bases of different leaf nodes that would otherwise degrade. + * + * Parent Class: WorldGenBigTree + */ +m.generateLeafNodeBases = "func_175939_d" +/** + * Generates the leaves surrounding an individual entry in the leafNodes list. + * + * Parent Class: WorldGenBigTree + */ +m.generateLeafNode = "func_175940_a" +/** + * Generates the leaf portion of the tree as specified by the leafNodes list. + * + * Parent Class: WorldGenBigTree + */ +m.generateLeaves = "func_175941_b" +/** + * Places the trunk for the big tree that is being generated. Able to generate double-sized trunks by changing a field that is always 1 to 2. + * + * Parent Class: WorldGenBigTree + */ +m.generateTrunk = "func_175942_c" +/** + * + * + * Parent Class: StructureOceanMonumentPieces + */ +m.registerOceanMonumentPieces = "func_175970_a" +/** + * + * + * Parent Class: MapData + */ +m.getMapPacket = "func_176052_a" +m.updateMapData = {} +/** + * + * + * Parent Class: MapData + */ +m.updateMapData.MapData = "func_176053_a" +/** + * + * + * Parent Class: ItemMap + */ +m.updateMapData.ItemMap = "func_77872_a" + +/** + * + * + * Parent Class: MapData + */ +m.calculateMapCenter = "func_176054_a" +/** + * "returns the VillageDoorInfo if it exists in any village or in the newDoor list + * + * Parent Class: VillageCollection + */ +m.checkDoorExistence = "func_176055_c" +/** + * + * + * Parent Class: VillageCollection + */ +m.getNearestVillage = "func_176056_a" +/** + * + * + * Parent Class: VillageCollection + */ +m.positionInList = "func_176057_e" +m.isWoodDoor = {} +/** + * + * + * Parent Class: VillageCollection + */ +m.isWoodDoor.VillageCollection = "func_176058_f" +/** + * + * + * Parent Class: Village + */ +m.isWoodDoor.Village = "func_179860_f" + +/** + * + * + * Parent Class: VillageCollection + */ +m.addToNewDoorsList = "func_176059_d" +/** + * + * + * Parent Class: VillageCollection + */ +m.addToVillagerPositionList = "func_176060_a" +/** + * Check five blocks in the direction. The centerPos will not be checked. + * + * Parent Class: VillageCollection + */ +m.countBlocksCanSeeSky = "func_176061_a" +/** + * + * + * Parent Class: VillageCollection + */ +m.fileNameForProvider = "func_176062_a" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glBufferData = "func_176071_a" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glBindBuffer = "func_176072_g" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glGenBuffers = "func_176073_e" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.glDeleteBuffers = "func_176074_g" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.useVbo = "func_176075_f" +m.getPacket = {} +/** + * + * + * Parent Class: MapData$MapInfo + */ +m.getPacket.MapData$MapInfo = "func_176101_a" +/** + * + * + * Parent Class: EnumConnectionState + */ +m.getPacket.EnumConnectionState = "func_179244_a" + +m.update = {} +/** + * + * + * Parent Class: MapData$MapInfo + */ +m.update.MapData$MapInfo = "func_176102_a" +/** + * "Like the old updateEntity() + * + * Parent Class: NetHandlerLoginServer + */ +m.update.NetHandlerLoginServer = "func_73660_a" + +/** + * Sets the border lerp target + * + * Parent Class: WorldInfo + */ +m.setBorderLerpTarget = "func_176118_b" +/** + * + * + * Parent Class: WorldInfo + */ +m.setHardcore = "func_176119_g" +/** + * Sets the border center X position + * + * Parent Class: WorldInfo + */ +m.getBorderCenterX = "func_176124_d" +/** + * + * + * Parent Class: WorldInfo + */ +m.setAllowCommands = "func_176121_c" +/** + * Sets the border warning distance + * + * Parent Class: WorldInfo + */ +m.setBorderWarningDistance = "func_176122_j" +m.isDifficultyLocked = {} +/** + * + * + * Parent Class: WorldInfo + */ +m.isDifficultyLocked.WorldInfo = "func_176123_z" +/** + * + * + * Parent Class: S41PacketServerDifficulty + */ +m.isDifficultyLocked.S41PacketServerDifficulty = "func_179830_a" + +/** + * Sets the border damage per block + * + * Parent Class: WorldInfo + */ +m.setBorderDamagePerBlock = "func_176125_f" +/** + * Sets the border center Z position + * + * Parent Class: WorldInfo + */ +m.getBorderCenterZ = "func_176141_c" +/** + * + * + * Parent Class: WorldInfo + */ +m.populateFromWorldSettings = "func_176127_a" +/** + * + * + * Parent Class: WorldInfo + */ +m.setMapFeaturesEnabled = "func_176128_f" +/** + * Sets the border safe zone + * + * Parent Class: WorldInfo + */ +m.setBorderSafeZone = "func_176129_e" +/** + * Returns the border warning distance + * + * Parent Class: WorldInfo + */ +m.getBorderWarningDistance = "func_176131_J" +/** + * Returns the border lerp target + * + * Parent Class: WorldInfo + */ +m.getBorderLerpTarget = "func_176132_G" +/** + * + * + * Parent Class: WorldInfo + */ +m.getCleanWeatherTime = "func_176133_A" +/** + * Returns the border lerp time + * + * Parent Class: WorldInfo + */ +m.getBorderLerpTime = "func_176134_F" +/** + * Sets the border lerp time + * + * Parent Class: WorldInfo + */ +m.setBorderLerpTime = "func_176135_e" +/** + * Sets the border warning time + * + * Parent Class: WorldInfo + */ +m.setBorderWarningTime = "func_176136_k" +/** + * + * + * Parent Class: WorldInfo + */ +m.getBorderSize = "func_176137_E" +/** + * Returns the border safe zone + * + * Parent Class: WorldInfo + */ +m.getBorderSafeZone = "func_176138_H" +/** + * Returns the border warning time + * + * Parent Class: WorldInfo + */ +m.getBorderWarningTime = "func_176139_K" +/** + * Returns the border damage per block + * + * Parent Class: WorldInfo + */ +m.getBorderDamagePerBlock = "func_176140_I" +/** + * + * + * Parent Class: WorldInfo + */ +m.setCleanWeatherTime = "func_176142_i" +/** + * + * + * Parent Class: WorldInfo + */ +m.setSpawn = "func_176143_a" +/** + * + * + * Parent Class: WorldInfo + */ +m.setDifficulty = "func_176144_a" +/** + * Sets the border size + * + * Parent Class: WorldInfo + */ +m.setBorderSize = "func_176145_a" +/** + * Returns a mapped point or creates and adds one + * + * Parent Class: NodeProcessor + */ +m.openPoint = "func_176159_a" +/** + * Returns PathPoint for given coordinates + * + * Parent Class: WalkNodeProcessor + */ +m.getPathPointToCoords = "func_176160_a" +/** + * Returns given entity's position as PathPoint + * + * Parent Class: WalkNodeProcessor + */ +m.getPathPointTo = "func_176161_a" +/** + * + * + * Parent Class: WalkNodeProcessor + */ +m.initProcessor = "func_176162_a" +/** + * This method is called when all nodes have been processed and PathEntity is created. + * {@link net.minecraft.world.pathfinder.WalkNodeProcessor WalkNodeProcessor} uses this to change its field {@link net.minecraft.world.pathfinder.WalkNodeProcessor#avoidsWater avoidsWater} + * + * Parent Class: WalkNodeProcessor + */ +m.postProcess = "func_176163_a" +/** + * + * + * Parent Class: WalkNodeProcessor + */ +m.findPathOptions = "func_176164_a" +m.getSafePoint = {} +/** + * Returns a point that the entity can safely move to + * + * Parent Class: WalkNodeProcessor + */ +m.getSafePoint.WalkNodeProcessor = "func_176171_a" +/** + * Returns a point that the entity can safely move to + * + * Parent Class: SwimNodeProcessor + */ +m.getSafePoint.SwimNodeProcessor = "func_176185_a" + +m.setBreakDoors = {} +/** + * + * + * Parent Class: WalkNodeProcessor + */ +m.setBreakDoors.WalkNodeProcessor = "func_176172_b" +/** + * + * + * Parent Class: PathNavigateGround + */ +m.setBreakDoors.PathNavigateGround = "func_179688_b" + +m.getAvoidsWater = {} +/** + * + * + * Parent Class: WalkNodeProcessor + */ +m.getAvoidsWater.WalkNodeProcessor = "func_176173_e" +/** + * + * + * Parent Class: PathNavigateGround + */ +m.getAvoidsWater.PathNavigateGround = "func_179689_e" + +m.getCanSwim = {} +/** + * + * + * Parent Class: WalkNodeProcessor + */ +m.getCanSwim.WalkNodeProcessor = "func_176174_d" +/** + * + * + * Parent Class: PathNavigateGround + */ +m.getCanSwim.PathNavigateGround = "func_179684_h" + +m.setEnterDoors = {} +/** + * + * + * Parent Class: WalkNodeProcessor + */ +m.setEnterDoors.WalkNodeProcessor = "func_176175_a" +/** + * + * + * Parent Class: PathNavigateGround + */ +m.setEnterDoors.PathNavigateGround = "func_179691_c" + +m.setAvoidsWater = {} +/** + * + * + * Parent Class: WalkNodeProcessor + */ +m.setAvoidsWater.WalkNodeProcessor = "func_176176_c" +/** + * + * + * Parent Class: PathNavigateGround + */ +m.setAvoidsWater.PathNavigateGround = "func_179690_a" + +/** + * "Checks if an entity collides with blocks at a position. + * Returns 1 if clear + * + * Parent Class: WalkNodeProcessor + */ +m.getVerticalOffset = "func_176177_a" +m.setCanSwim = {} +/** + * + * + * Parent Class: WalkNodeProcessor + */ +m.setCanSwim.WalkNodeProcessor = "func_176178_d" +/** + * + * + * Parent Class: PathNavigateGround + */ +m.setCanSwim.PathNavigateGround = "func_179693_d" + +m.getEnterDoors = {} +/** + * + * + * Parent Class: WalkNodeProcessor + */ +m.getEnterDoors.WalkNodeProcessor = "func_176179_b" +/** + * + * + * Parent Class: PathNavigateGround + */ +m.getEnterDoors.PathNavigateGround = "func_179686_g" + +/** + * Adds a path from start to end and returns the whole path + * + * Parent Class: PathFinder + */ +m.addToPath = "func_176187_a" +/** + * Creates a path from an entity to a specified location within a minimum distance + * + * Parent Class: PathFinder + */ +m.createEntityPathTo = "func_180782_a" +/** + * + * + * Parent Class: Block + */ +m.canReplace = "func_176193_a" +m.getBlockState = {} +/** + * + * + * Parent Class: Block + */ +m.getBlockState.Block = "func_176194_O" +/** + * + * + * Parent Class: Chunk + */ +m.getBlockState.Chunk = "func_177435_g" +/** + * + * + * Parent Class: BlockWorldState + */ +m.getBlockState.BlockWorldState = "func_177509_a" +/** + * + * + * Parent Class: ChunkPrimer + */ +m.getBlockState.ChunkPrimer = "func_177858_a" +/** + * + * + * Parent Class: S22PacketMultiBlockChange$BlockUpdateData + */ +m.getBlockState.S22PacketMultiBlockChange$BlockUpdateData = "func_180088_c" +/** + * + * + * Parent Class: BlockRailBase$Rail + */ +m.getBlockState.BlockRailBase$Rail = "func_180362_b" +/** + * + * + * Parent Class: RegionRenderCache + */ +m.getBlockState.RegionRenderCache = "func_180495_p" +/** + * + * + * Parent Class: S23PacketBlockChange + */ +m.getBlockState.S23PacketBlockChange = "func_180728_a" +/** + * + * + * Parent Class: StructureComponent$BlockSelector + */ +m.getBlockState.StructureComponent$BlockSelector = "func_180780_a" + +/** + * + * + * Parent Class: Block + */ +m.getBlockHardness = "func_176195_g" +/** + * + * + * Parent Class: BlockPistonMoving + */ +m.canPlaceBlockAt = "func_176196_c" +/** + * + * + * Parent Class: BlockStairs + */ +m.modifyAcceleration = "func_176197_a" +m.canPlaceBlockOnSide = {} +/** + * Check whether this Block can be placed on the given side + * + * Parent Class: BlockPistonMoving + */ +m.canPlaceBlockOnSide.BlockPistonMoving = "func_176198_a" +/** + * + * + * Parent Class: ItemBlock + */ +m.canPlaceBlockOnSide.ItemBlock = "func_179222_a" + +m.onEntityCollidedWithBlock = {} +/** + * Triggered whenever an entity collides with this block (enters into the block) + * + * Parent Class: BlockStairs + */ +m.onEntityCollidedWithBlock.BlockStairs = "func_176199_a" +/** + * Called When an Entity Collided with the Block + * + * Parent Class: BlockWeb + */ +m.onEntityCollidedWithBlock.BlockWeb = "func_180634_a" + +m.isReplaceable = {} +/** + * Whether this Block can be replaced directly by other blocks (true for e.g. tall grass) + * + * Parent Class: BlockVine + */ +m.isReplaceable.BlockVine = "func_176200_f" +/** + * "Returns whether the material can be replaced by other blocks when placed - eg snow + * + * Parent Class: Material + */ +m.isReplaceable.Material = "func_76222_j" + +/** + * Convert the BlockState into the correct metadata value + * + * Parent Class: BlockPistonMoving + */ +m.getMetaFromState = "func_176201_c" +m.colorMultiplier = {} +/** + * + * + * Parent Class: Block + */ +m.colorMultiplier.Block = "func_176202_d" +/** + * + * + * Parent Class: BlockRedstoneWire + */ +m.colorMultiplier.BlockRedstoneWire = "func_176337_b" +/** + * + * + * Parent Class: BlockLilyPad + */ +m.colorMultiplier.BlockLilyPad = "func_180662_a" + +/** + * Convert the given metadata into a BlockState for this Block + * + * Parent Class: BlockPistonMoving + */ +m.getStateFromMeta = "func_176203_a" +/** + * Called when a neighboring block changes. + * + * Parent Class: BlockPistonMoving + */ +m.onNeighborBlockChange = "func_176204_a" +/** + * + * + * Parent Class: BlockWall + */ +m.isPassable = "func_176205_b" +/** + * Called when a player destroys this Block + * + * Parent Class: BlockPistonMoving + */ +m.onBlockDestroyedByPlayer = "func_176206_d" +/** + * + * + * Parent Class: BlockStairs + */ +m.getMixedBrightnessForBlock = "func_176207_c" +/** + * + * + * Parent Class: BlockPistonExtension + */ +m.onBlockHarvested = "func_176208_a" +/** + * + * + * Parent Class: BlockStairs + */ +m.canCollideCheck = "func_176209_a" +/** + * "Get a unique ID for the given BlockState + * + * Parent Class: Block + */ +m.getStateId = "func_176210_f" +/** + * Whether this Block is solid on the given Side + * + * Parent Class: BlockLiquid + */ +m.isBlockSolid = "func_176212_b" +/** + * + * + * Parent Class: BlockPistonBase + */ +m.onBlockAdded = "func_176213_c" +/** + * + * + * Parent Class: BlockLeaves + */ +m.isVisuallyOpaque = "func_176214_u" +/** + * Called when an Entity lands on this Block. This method *must* update motionY because the entity will not do that on its own + * + * Parent Class: BlockSlime + */ +m.onLanded = "func_176216_a" +/** + * "Possibly modify the given BlockState before rendering it on an Entity (Minecarts + * + * Parent Class: BlockPistonBase + */ +m.getStateForEntityRender = "func_176217_b" +/** + * Get the OffsetType for this Block. Determines if the model is rendered slightly offset. + * + * Parent Class: BlockTallGrass + */ +m.getOffsetType = "func_176218_Q" +/** + * Get a BlockState by it's ID (see getStateId) + * + * Parent Class: Block + */ +m.getStateById = "func_176220_d" +/** + * "Get the actual Block state of this Block at the given position. This applies properties not visible in the metadata + * + * Parent Class: BlockWall + */ +m.getActualState = "func_176221_a" +/** + * Gets the meta to use for the Pick Block ItemStack result + * + * Parent Class: BlockTallGrass + */ +m.getDamageValue = "func_176222_j" +/** + * + * + * Parent Class: Block + */ +m.getDefaultState = "func_176223_P" +/** + * "Called similar to random ticks + * + * Parent Class: BlockCauldron + */ +m.fillWithRain = "func_176224_k" +/** + * + * + * Parent Class: BlockPistonExtension + */ +m.shouldSideBeRendered = "func_176225_a" +/** + * Spawn this Block's drops into the World as EntityItems + * + * Parent Class: Block + */ +m.dropBlockAsItem = "func_176226_b" +/** + * + * + * Parent Class: BlockOldLeaf + */ +m.getSaplingDropChance = "func_176232_d" +/** + * + * + * Parent Class: BlockOldLeaf + */ +m.getWoodType = "func_176233_b" +/** + * + * + * Parent Class: BlockOldLeaf + */ +m.dropApple = "func_176234_a" +/** + * + * + * Parent Class: BlockLeaves + */ +m.destroy = "func_176235_d" +m.canConnectTo = {} +/** + * + * + * Parent Class: BlockWall + */ +m.canConnectTo.BlockWall = "func_176253_e" +/** + * + * + * Parent Class: BlockRedstoneWire + */ +m.canConnectTo.BlockRedstoneWire = "func_176343_a" +/** + * + * + * Parent Class: BlockFence + */ +m.canConnectTo.BlockFence = "func_176524_e" + +m.checkForDrop = {} +/** + * + * + * Parent Class: BlockTripWireHook + */ +m.checkForDrop.BlockTripWireHook = "func_176261_e" +/** + * + * + * Parent Class: BlockCarpet + */ +m.checkForDrop.BlockCarpet = "func_176328_e" +/** + * + * + * Parent Class: BlockReed + */ +m.checkForDrop.BlockReed = "func_176353_e" +/** + * + * + * Parent Class: BlockButton + */ +m.checkForDrop.BlockButton = "func_176583_e" +/** + * + * + * Parent Class: BlockTorch + */ +m.checkForDrop.BlockTorch = "func_176593_f" + +/** + * + * + * Parent Class: BlockVine + */ +m.getPropertyFor = "func_176267_a" +/** + * + * + * Parent Class: BlockVine + */ +m.getNumGrownFaces = "func_176268_d" +/** + * + * + * Parent Class: BlockVine + */ +m.recheckGrownSides = "func_176269_e" +/** + * + * + * Parent Class: BlockTrapDoor + */ +m.getMetaForFacing = "func_176282_a" +/** + * + * + * Parent Class: BlockTripWire + */ +m.notifyHook = "func_176286_e" +/** + * + * + * Parent Class: BlockTripWire + */ +m.isConnectedTo = "func_176287_c" +m.updateState = {} +/** + * + * + * Parent Class: BlockTripWire + */ +m.updateState.BlockTripWire = "func_176288_d" +/** + * + * + * Parent Class: BlockRedstoneDiode + */ +m.updateState.BlockRedstoneDiode = "func_176398_g" +/** + * + * + * Parent Class: BlockHopper + */ +m.updateState.BlockHopper = "func_176427_e" +/** + * Updates the pressure plate when stepped on + * + * Parent Class: BlockBasePressurePlate + */ +m.updateState.BlockBasePressurePlate = "func_180666_a" + +/** + * Check whether there is a stair block at the given position and it has the same properties as the given BlockState + * + * Parent Class: BlockStairs + */ +m.isSameStair = "func_176302_a" +/** + * Set the block bounds as the collision bounds for the stairs at the given position + * + * Parent Class: BlockStairs + */ +m.setBaseCollisionBounds = "func_176303_e" +/** + * + * + * Parent Class: BlockSponge + */ +m.tryAbsorb = "func_176311_e" +/** + * + * + * Parent Class: BlockSponge + */ +m.absorb = "func_176312_d" +m.checkAndDropBlock = {} +/** + * + * + * Parent Class: BlockSnow + */ +m.checkAndDropBlock.BlockSnow = "func_176314_e" +/** + * + * + * Parent Class: BlockDoublePlant + */ +m.checkAndDropBlock.BlockDoublePlant = "func_176475_e" + +/** + * + * + * Parent Class: BlockPistonBase + */ +m.checkForMove = "func_176316_e" +/** + * + * + * Parent Class: BlockPistonBase + */ +m.shouldBeExtended = "func_176318_b" +/** + * + * + * Parent Class: BlockPistonBase + */ +m.doMove = "func_176319_a" +/** + * + * + * Parent Class: BlockPistonExtension + */ +m.applyCoreBounds = "func_176323_e" +/** + * + * + * Parent Class: BlockPistonExtension + */ +m.applyHeadBounds = "func_176324_d" +m.canBlockStay = {} +/** + * + * + * Parent Class: BlockCarpet + */ +m.canBlockStay.BlockCarpet = "func_176329_d" +/** + * + * + * Parent Class: BlockReed + */ +m.canBlockStay.BlockReed = "func_176354_d" +/** + * + * + * Parent Class: BlockLadder + */ +m.canBlockStay.BlockLadder = "func_176381_b" +/** + * + * + * Parent Class: BlockRedstoneDiode + */ +m.canBlockStay.BlockRedstoneDiode = "func_176409_d" +/** + * + * + * Parent Class: BlockCocoa + */ +m.canBlockStay.BlockCocoa = "func_176499_e" +/** + * + * + * Parent Class: BlockCactus + */ +m.canBlockStay.BlockCactus = "func_176586_d" +/** + * + * + * Parent Class: BlockCake + */ +m.canBlockStay.BlockCake = "func_176588_d" +/** + * + * + * Parent Class: BlockLilyPad + */ +m.canBlockStay.BlockLilyPad = "func_180671_f" + +/** + * + * + * Parent Class: BlockRedstoneWire + */ +m.updateSurroundingRedstone = "func_176338_e" +/** + * + * + * Parent Class: BlockRedstoneWire + */ +m.canConnectUpwardsTo = "func_176346_d" +/** + * + * + * Parent Class: BlockRedstoneWire + */ +m.getAttachPosition = "func_176341_c" +/** + * + * + * Parent Class: BlockRedstoneWire + */ +m.getMaxCurrentStrength = "func_176342_a" +/** + * "Calls World.notifyNeighborsOfStateChange() for all neighboring blocks + * + * Parent Class: BlockRedstoneWire + */ +m.notifyWireNeighborsOfStateChange = "func_176344_d" +/** + * + * + * Parent Class: BlockRedstoneWire + */ +m.calculateCurrentChanges = "func_176345_a" +/** + * + * + * Parent Class: BlockRedstoneOre + */ +m.activate = "func_176352_d" +/** + * + * + * Parent Class: BlockLever + */ +m.getMetadataForFacing = "func_176357_a" +/** + * + * + * Parent Class: BlockLiquid + */ +m.getFlowingBlock = "func_176361_a" +/** + * + * + * Parent Class: BlockLiquid + */ +m.getStaticBlock = "func_176363_b" +/** + * + * + * Parent Class: BlockLiquid + */ +m.shouldRenderSides = "func_176364_g" +/** + * + * + * Parent Class: BlockLiquid + */ +m.checkForMixing = "func_176365_e" +/** + * + * + * Parent Class: BlockLiquid + */ +m.getEffectiveFlowDecay = "func_176366_f" +/** + * + * + * Parent Class: BlockStaticLiquid + */ +m.getCanBlockBurn = "func_176368_m" +/** + * + * + * Parent Class: BlockStaticLiquid + */ +m.isSurroundingBlockFlammable = "func_176369_e" +/** + * + * + * Parent Class: BlockStaticLiquid + */ +m.updateLiquid = "func_176370_f" +/** + * + * + * Parent Class: BlockDynamicLiquid + */ +m.checkAdjacentBlock = "func_176371_a" +m.isBlocked = {} +/** + * + * + * Parent Class: BlockDynamicLiquid + */ +m.isBlocked.BlockDynamicLiquid = "func_176372_g" +/** + * + * + * Parent Class: BlockChest + */ +m.isBlocked.BlockChest = "func_176457_m" + +/** + * + * + * Parent Class: BlockDynamicLiquid + */ +m.canFlowInto = "func_176373_h" +/** + * + * + * Parent Class: BlockDynamicLiquid + */ +m.tryFlowInto = "func_176375_a" +/** + * This method returns a Set of EnumFacing + * + * Parent Class: BlockDynamicLiquid + */ +m.getPossibleFlowDirections = "func_176376_e" +/** + * + * + * Parent Class: BlockSilverfish + */ +m.canContainSilverfish = "func_176377_d" +/** + * + * + * Parent Class: BlockPumpkin + */ +m.getGolemPattern = "func_176388_T" +/** + * + * + * Parent Class: BlockPumpkin + */ +m.getGolemBasePattern = "func_176389_S" +m.canDispenserPlace = {} +/** + * + * + * Parent Class: BlockPumpkin + */ +m.canDispenserPlace.BlockPumpkin = "func_176390_d" +/** + * + * + * Parent Class: BlockSkull + */ +m.canDispenserPlace.BlockSkull = "func_176415_b" + +/** + * + * + * Parent Class: BlockPumpkin + */ +m.getSnowmanPattern = "func_176391_l" +/** + * + * + * Parent Class: BlockPumpkin + */ +m.getSnowmanBasePattern = "func_176392_j" +/** + * + * + * Parent Class: BlockRedstoneDiode + */ +m.calculateInputStrength = "func_176397_f" +/** + * + * + * Parent Class: BlockRedstoneDiode + */ +m.getTickDelay = "func_176399_m" +m.notifyNeighbors = {} +/** + * + * + * Parent Class: BlockRedstoneDiode + */ +m.notifyNeighbors.BlockRedstoneDiode = "func_176400_h" +/** + * + * + * Parent Class: BlockButton + */ +m.notifyNeighbors.BlockButton = "func_176582_b" + +/** + * + * + * Parent Class: BlockRedstoneDiode + */ +m.getPowerOnSide = "func_176401_c" +/** + * + * + * Parent Class: BlockRedstoneDiode + */ +m.isFacingTowardsRepeater = "func_176402_i" +/** + * + * + * Parent Class: BlockRedstoneRepeater + */ +m.getDelay = "func_176403_d" +/** + * + * + * Parent Class: BlockRedstoneDiode + */ +m.shouldBePowered = "func_176404_e" +/** + * + * + * Parent Class: BlockRedstoneDiode + */ +m.isPowered = "func_176406_l" +/** + * + * + * Parent Class: BlockRedstoneDiode + */ +m.getPowerOnSides = "func_176407_c" +/** + * + * + * Parent Class: BlockRedstoneDiode + */ +m.getActiveSignal = "func_176408_a" +/** + * + * + * Parent Class: BlockSkull + */ +m.getWitherBasePattern = "func_176414_j" +/** + * + * + * Parent Class: BlockSkull + */ +m.getWitherPattern = "func_176416_l" +/** + * + * + * Parent Class: BlockPistonMoving + */ +m.newTileEntity = "func_176423_a" +m.getBoundingBox = {} +/** + * + * + * Parent Class: BlockPistonMoving + */ +m.getBoundingBox.BlockPistonMoving = "func_176424_a" +/** + * + * + * Parent Class: StructureComponent + */ +m.getBoundingBox.StructureComponent = "func_74874_b" +/** + * + * + * Parent Class: StructureStart + */ +m.getBoundingBox.StructureStart = "func_75071_a" + +/** + * + * + * Parent Class: BlockJukebox + */ +m.insertRecord = "func_176431_a" +/** + * + * + * Parent Class: BlockNote + */ +m.getInstrument = "func_176433_b" +/** + * + * + * Parent Class: BlockDispenser + */ +m.setDefaultDirection = "func_176438_e" +m.dispense = {} +/** + * + * + * Parent Class: BlockDropper + */ +m.dispense.BlockDropper = "func_176439_d" +/** + * Dispenses the specified ItemStack from a dispenser. + * + * Parent Class: Bootstrap$12 + */ +m.dispense.Bootstrap$12 = "func_82482_a" + +/** + * + * + * Parent Class: BlockFurnace + */ +m.setDefaultFacing = "func_176445_e" +m.setState = {} +/** + * + * + * Parent Class: BlockFurnace + */ +m.setState.BlockFurnace = "func_176446_a" +/** + * + * + * Parent Class: CompiledChunk + */ +m.setState.CompiledChunk = "func_178494_a" +/** + * + * + * Parent Class: GlStateManager$BooleanState + */ +m.setState.GlStateManager$BooleanState = "func_179199_a" + +/** + * + * + * Parent Class: BlockBeacon + */ +m.updateColorAsync = "func_176450_d" +/** + * + * + * Parent Class: BlockChest + */ +m.isOcelotSittingOnChest = "func_176453_o" +/** + * + * + * Parent Class: BlockChest + */ +m.isDoubleChest = "func_176454_e" +/** + * + * + * Parent Class: BlockChest + */ +m.checkForSurroundingChests = "func_176455_e" +/** + * + * + * Parent Class: BlockChest + */ +m.isBelowSolidBlock = "func_176456_n" +/** + * + * + * Parent Class: BlockChest + */ +m.correctFacing = "func_176458_f" +/** + * + * + * Parent Class: BlockRedstoneComparator + */ +m.calculateOutput = "func_176460_j" +/** + * + * + * Parent Class: BlockRedstoneComparator + */ +m.findItemFrame = "func_176461_a" +/** + * + * + * Parent Class: BlockRedstoneComparator + */ +m.onStateChange = "func_176462_k" +/** + * Returns a safe BlockPos to disembark the bed + * + * Parent Class: BlockBed + */ +m.getSafeExitLocation = "func_176468_a" +/** + * + * + * Parent Class: BlockBed + */ +m.hasRoomForPlayer = "func_176469_d" +/** + * + * + * Parent Class: BlockBed + */ +m.getPlayerInBed = "func_176470_e" +/** + * Whether this IGrowable can grow + * + * Parent Class: BlockTallGrass + */ +m.canGrow = "func_176473_a" +m.grow = {} +/** + * + * + * Parent Class: BlockTallGrass + */ +m.grow.BlockTallGrass = "func_176474_b" +/** + * + * + * Parent Class: BlockSapling + */ +m.grow.BlockSapling = "func_176478_d" +/** + * + * + * Parent Class: BlockCrops + */ +m.grow.BlockCrops = "func_176487_g" +/** + * Increases the number of hash slots + * + * Parent Class: IntHashMap + */ +m.grow.IntHashMap = "func_76047_h" + +/** + * + * + * Parent Class: BlockSapling + */ +m.generateTree = "func_176476_e" +/** + * Check whether the given BlockPos has a Sapling of the given type + * + * Parent Class: BlockSapling + */ +m.isTypeAt = "func_176477_a" +/** + * + * + * Parent Class: BlockStem + */ +m.getSeedItem = "func_176481_j" +/** + * + * + * Parent Class: BlockStem + */ +m.growStem = "func_176482_g" +/** + * + * + * Parent Class: BlockMushroom + */ +m.generateBigMushroom = "func_176485_d" +/** + * + * + * Parent Class: BlockDoublePlant + */ +m.onHarvest = "func_176489_b" +m.getVariant = {} +/** + * + * + * Parent Class: BlockDoublePlant + */ +m.getVariant.BlockDoublePlant = "func_176490_e" +/** + * + * + * Parent Class: BlockWoodSlab + */ +m.getVariant.BlockWoodSlab = "func_176553_a" +/** + * + * + * Parent Class: ModelResourceLocation + */ +m.getVariant.ModelResourceLocation = "func_177518_c" + +/** + * + * + * Parent Class: BlockDoublePlant + */ +m.placeAt = "func_176491_a" +/** + * + * + * Parent Class: BlockFlower + */ +m.getTypeProperty = "func_176494_l" +/** + * + * + * Parent Class: BlockFalling + */ +m.onEndFalling = "func_176502_a_" +/** + * + * + * Parent Class: BlockFalling + */ +m.checkFallable = "func_176503_e" +m.getItem = {} +/** + * + * + * Parent Class: BlockDoor + */ +m.getItem.BlockDoor = "func_176509_j" +/** + * + * + * Parent Class: BlockPistonMoving + */ +m.getItem.BlockPistonMoving = "func_180665_b" +/** + * Returns the object corresponding to the stack. + * + * Parent Class: ItemStack + */ +m.getItem.ItemStack = "func_77973_b" + +/** + * + * + * Parent Class: BlockDoor + */ +m.removeHalfBit = "func_176510_b" +/** + * + * + * Parent Class: BlockDoor + */ +m.toggleDoor = "func_176512_a" +/** + * + * + * Parent Class: BlockDoor + */ +m.isHingeLeft = "func_176513_j" +/** + * + * + * Parent Class: BlockDoor + */ +m.isOpen = "func_176516_g" +/** + * + * + * Parent Class: BlockDoor + */ +m.combineMetadata = "func_176515_e" +/** + * + * + * Parent Class: BlockDoor + */ +m.isTop = "func_176518_i" +/** + * + * + * Parent Class: BlockFarmland + */ +m.hasCrops = "func_176529_d" +/** + * + * + * Parent Class: BlockFarmland + */ +m.hasWater = "func_176530_e" +/** + * + * + * Parent Class: BlockFire + */ +m.getFlammability = "func_176532_c" +/** + * + * + * Parent Class: BlockFire + */ +m.canNeighborCatchFire = "func_176533_e" +/** + * + * + * Parent Class: BlockFire + */ +m.getEncouragement = "func_176534_d" +/** + * Checks if the block can be caught on fire + * + * Parent Class: BlockFire + */ +m.canCatchFire = "func_176535_e" +/** + * + * + * Parent Class: BlockFire + */ +m.catchOnFire = "func_176536_a" +/** + * + * + * Parent Class: BlockFire + */ +m.canDie = "func_176537_d" +/** + * + * + * Parent Class: BlockFire + */ +m.getNeighborEncouragement = "func_176538_m" +/** + * + * + * Parent Class: BlockPortal + */ +m.getMetaForAxis = "func_176549_a" +/** + * + * + * Parent Class: BlockWoodSlab + */ +m.getVariantProperty = "func_176551_l" +/** + * + * + * Parent Class: BlockHalfWoodSlab + */ +m.isDouble = "func_176552_j" +/** + * + * + * Parent Class: BlockRail + */ +m.getShapeProperty = "func_176560_l" +/** + * + * + * Parent Class: BlockRail + */ +m.onNeighborChangedInternal = "func_176561_b" +/** + * + * + * Parent Class: BlockRailBase + */ +m.isRailBlock = "func_176563_d" +/** + * + * + * Parent Class: BlockRailDetector + */ +m.updatePoweredState = "func_176570_e" +/** + * + * + * Parent Class: BlockRailDetector + */ +m.findMinecarts = "func_176571_a" +/** + * + * + * Parent Class: BlockRailDetector + */ +m.getDectectionBox = "func_176572_a" +/** + * + * + * Parent Class: BlockPressurePlateWeighted + */ +m.setRedstoneStrength = "func_176575_a" +/** + * + * + * Parent Class: BlockPressurePlateWeighted + */ +m.getRedstoneStrength = "func_176576_e" +/** + * + * + * Parent Class: BlockBasePressurePlate + */ +m.canBePlacedOn = "func_176577_m" +/** + * Notify block and block below of changes + * + * Parent Class: BlockBasePressurePlate + */ +m.updateNeighbors = "func_176578_d" +/** + * + * + * Parent Class: BlockCauldron + */ +m.setWaterLevel = "func_176590_a" +/** + * + * + * Parent Class: BlockTorch + */ +m.onNeighborChangeInternal = "func_176592_e" +/** + * + * + * Parent Class: BlockTorch + */ +m.canPlaceAt = "func_176595_b" +/** + * + * + * Parent Class: BlockRedstoneTorch + */ +m.shouldBeOff = "func_176597_g" +/** + * + * + * Parent Class: BlockRedstoneTorch + */ +m.isBurnedOut = "func_176598_a" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.setLocationNameClock = "func_176602_a" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.setLocationNameCompass = "func_176603_b" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.makeAtlasSprite = "func_176604_a" +/** + * "Get this Axis' Plane (VERTICAL for Y + * + * Parent Class: EnumFacing$Axis + */ +m.getPlane = "func_176716_d" +m.byName = {} +/** + * Get the axis specified by the given name + * + * Parent Class: EnumFacing$Axis + */ +m.byName.EnumFacing$Axis = "func_176717_a" +/** + * Get the facing specified by the given name + * + * Parent Class: EnumFacing + */ +m.byName.EnumFacing = "func_176739_a" +/** + * + * + * Parent Class: S45PacketTitle$Type + */ +m.byName.S45PacketTitle$Type = "func_179969_a" + +m.getName2 = {} +/** + * Like getName but doesn't override the method from Enum. + * + * Parent Class: EnumFacing$Axis + */ +m.getName2.EnumFacing$Axis = "func_176719_a" +/** + * "Same as getName + * + * Parent Class: EnumFacing + */ +m.getName2.EnumFacing = "func_176742_j" + +/** + * If this Axis is on the vertical plane (Only true for Y) + * + * Parent Class: EnumFacing$Axis + */ +m.isVertical = "func_176720_b" +/** + * If this Axis is on the horizontal plane (true for X and Z) + * + * Parent Class: EnumFacing$Axis + */ +m.isHorizontal = "func_176722_c" +/** + * Get a normalized Vector that points in the direction of this Facing. + * + * Parent Class: EnumFacing + */ +m.getDirectionVec = "func_176730_m" +/** + * Get a Facing by it's horizontal index (0-3). The order is S-W-N-E. + * + * Parent Class: EnumFacing + */ +m.getHorizontal = "func_176731_b" +/** + * "Rotate this Facing around the given axis clockwise. If this facing cannot be rotated around the given axis + * + * Parent Class: EnumFacing + */ +m.rotateAround = "func_176732_a" +/** + * "Get the Facing corresponding to the given angle (0-360). An angle of 0 is SOUTH + * + * Parent Class: EnumFacing + */ +m.fromAngle = "func_176733_a" +/** + * Get the opposite Facing (e.g. DOWN => UP) + * + * Parent Class: EnumFacing + */ +m.getOpposite = "func_176734_d" +/** + * Rotate this Facing around the Y axis counter-clockwise (NORTH => WEST => SOUTH => EAST => NORTH) + * + * Parent Class: EnumFacing + */ +m.rotateYCCW = "func_176735_f" +/** + * Get the index of this horizontal facing (0-3). The order is S-W-N-E + * + * Parent Class: EnumFacing + */ +m.getHorizontalIndex = "func_176736_b" +/** + * + * + * Parent Class: EnumFacing + */ +m.getFacingFromVector = "func_176737_a" +/** + * Rotate this Facing around the Z axis (EAST => DOWN => WEST => UP => EAST) + * + * Parent Class: EnumFacing + */ +m.rotateZ = "func_176738_p" +/** + * + * + * Parent Class: EnumFacing + */ +m.getAxis = "func_176740_k" +m.random = {} +/** + * Choose a random Facing using the given Random + * + * Parent Class: EnumFacing + */ +m.random.EnumFacing = "func_176741_a" +/** + * Choose a random Facing from this Plane using the given Random + * + * Parent Class: EnumFacing$Plane + */ +m.random.EnumFacing$Plane = "func_179518_a" + +/** + * Get the AxisDirection of this Facing. + * + * Parent Class: EnumFacing + */ +m.getAxisDirection = "func_176743_c" +/** + * Rotate this Facing around the X axis (NORTH => DOWN => SOUTH => UP => NORTH) + * + * Parent Class: EnumFacing + */ +m.rotateX = "func_176744_n" +m.getIndex = {} +/** + * Get the Index of this Facing (0-5). The order is D-U-N-S-W-E + * + * Parent Class: EnumFacing + */ +m.getIndex.EnumFacing = "func_176745_a" +/** + * + * + * Parent Class: VertexFormatElement + */ +m.getIndex.VertexFormatElement = "func_177369_e" +/** + * + * + * Parent Class: ItemModelMesher + */ +m.getIndex.ItemModelMesher = "func_178081_c" +/** + * + * + * Parent Class: VisGraph + */ +m.getIndex.VisGraph = "func_178608_c" +/** + * Return the index of the next frame in the array + * + * Parent Class: FrameTimer + */ +m.getIndex.FrameTimer = "func_181750_b" + +/** + * Rotate this Facing around the Y axis clockwise (NORTH => EAST => SOUTH => WEST => NORTH) + * + * Parent Class: EnumFacing + */ +m.rotateY = "func_176746_e" +/** + * + * + * Parent Class: EnumDyeColor + */ +m.byDyeDamage = "func_176766_a" +/** + * + * + * Parent Class: EnumDyeColor + */ +m.getDyeDamage = "func_176767_b" +/** + * + * + * Parent Class: BlockLever$EnumOrientation + */ +m.forFacings = "func_176856_a" +/** + * + * + * Parent Class: BlockLog$EnumAxis + */ +m.fromFacingAxis = "func_176870_a" +/** + * + * + * Parent Class: BlockSilverfish$EnumType + */ +m.forModelBlock = "func_176878_a" +/** + * + * + * Parent Class: BlockSilverfish$EnumType$6 + */ +m.getModelBlock = "func_176883_d" +m.getMeta = {} +/** + * + * + * Parent Class: BlockDoublePlant$EnumPlantType + */ +m.getMeta.BlockDoublePlant$EnumPlantType = "func_176936_a" +/** + * + * + * Parent Class: BlockFlower$EnumFlowerType + */ +m.getMeta.BlockFlower$EnumFlowerType = "func_176968_b" +/** + * + * + * Parent Class: BlockTallGrass$EnumType + */ +m.getMeta.BlockTallGrass$EnumType = "func_177044_a" + +/** + * "Get all FlowerTypes that are applicable for the given Flower block (""yellow"" + * + * Parent Class: BlockFlower$EnumFlowerType + */ +m.getTypes = "func_176966_a" +/** + * + * + * Parent Class: BlockRailBase$EnumRailDirection + */ +m.isAscending = "func_177018_c" +/** + * + * + * Parent Class: TextureUtil + */ +m.readBufferedImage = "func_177053_a" +/** + * + * + * Parent Class: TextureUtil + */ +m.anaglyphColor = "func_177054_c" +/** + * + * + * Parent Class: ModelBakery$2 + */ +m.registerSprites = "func_177059_a" +m.toByteArray = {} +/** + * + * + * Parent Class: ShaderLoader + */ +m.toByteArray.ShaderLoader = "func_177064_a" +/** + * Returns the contents of the output stream as a byte array + * + * Parent Class: RConOutputStream + */ +m.toByteArray.RConOutputStream = "func_72672_a" + +/** + * + * + * Parent Class: ShaderGroup + */ +m.getFramebufferRaw = "func_177066_a" +/** + * + * + * Parent Class: RendererLivingEntity + */ +m.renderName = "func_177067_a" +/** + * + * + * Parent Class: RenderPlayer + */ +m.renderOffsetLivingLabel = "func_177069_a" +/** + * + * + * Parent Class: RenderLiving + */ +m.canRenderName = "func_177070_b" +m.shouldRender = {} +/** + * + * + * Parent Class: RenderLiving + */ +m.shouldRender.RenderLiving = "func_177071_a" +/** + * + * + * Parent Class: RenderManager + */ +m.shouldRender.RenderManager = "func_178635_a" + +m.setRenderOutlines = {} +/** + * + * + * Parent Class: RendererLivingEntity + */ +m.setRenderOutlines.RendererLivingEntity = "func_177086_a" +/** + * + * + * Parent Class: RenderManager + */ +m.setRenderOutlines.RenderManager = "func_178632_c" + +/** + * + * + * Parent Class: RenderPlayer + */ +m.getMainModel = "func_177087_b" +/** + * + * + * Parent Class: RendererLivingEntity + */ +m.setScoreTeamColor = "func_177088_c" +/** + * + * + * Parent Class: RendererLivingEntity + */ +m.removeLayer = "func_177089_b" +/** + * + * + * Parent Class: RendererLivingEntity + */ +m.setDoRenderBrightness = "func_177090_c" +/** + * + * + * Parent Class: RendererLivingEntity + */ +m.unsetBrightness = "func_177091_f" +/** + * + * + * Parent Class: RendererLivingEntity + */ +m.setBrightness = "func_177092_a" +/** + * + * + * Parent Class: RendererLivingEntity + */ +m.renderLayers = "func_177093_a" +/** + * + * + * Parent Class: RendererLivingEntity + */ +m.addLayer = "func_177094_a" +m.setLightmap = {} +/** + * + * + * Parent Class: RenderLiving + */ +m.setLightmap.RenderLiving = "func_177105_a" +/** + * + * + * Parent Class: RenderPainting + */ +m.setLightmap.RenderPainting = "func_77008_a" + +/** + * + * + * Parent Class: RenderPlayer + */ +m.setModelVisibilities = "func_177137_d" +m.renderRightArm = {} +/** + * + * + * Parent Class: RenderPlayer + */ +m.renderRightArm.RenderPlayer = "func_177138_b" +/** + * + * + * Parent Class: ModelPlayer + */ +m.renderRightArm.ModelPlayer = "func_178725_a" +/** + * + * + * Parent Class: ItemRenderer + */ +m.renderRightArm.ItemRenderer = "func_180534_a" + +m.renderLeftArm = {} +/** + * + * + * Parent Class: RenderPlayer + */ +m.renderLeftArm.RenderPlayer = "func_177139_c" +/** + * + * + * Parent Class: ItemRenderer + */ +m.renderLeftArm.ItemRenderer = "func_178106_b" +/** + * + * + * Parent Class: ModelPlayer + */ +m.renderLeftArm.ModelPlayer = "func_178726_b" + +/** + * + * + * Parent Class: LayerWolfCollar + */ +m.doRenderLayer = "func_177141_a" +/** + * + * + * Parent Class: LayerWolfCollar + */ +m.shouldCombineTextures = "func_177142_b" +/** + * + * + * Parent Class: LayerArmorBase + */ +m.getArmorModel = "func_177175_a" +m.getCurrentArmor = {} +/** + * + * + * Parent Class: LayerArmorBase + */ +m.getCurrentArmor.LayerArmorBase = "func_177176_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.getCurrentArmor.EntityPlayer = "func_82169_q" + +/** + * + * + * Parent Class: LayerVillagerArmor + */ +m.initArmor = "func_177177_a" +/** + * + * + * Parent Class: LayerArmorBase + */ +m.getArmorResource = "func_177181_a" +/** + * + * + * Parent Class: LayerBipedArmor + */ +m.setModelPartVisible = "func_177179_a" +/** + * + * + * Parent Class: LayerArmorBase + */ +m.isSlotForLeggings = "func_177180_b" +/** + * + * + * Parent Class: LayerArmorBase + */ +m.renderLayer = "func_177182_a" +/** + * + * + * Parent Class: LayerArmorBase + */ +m.renderGlint = "func_177183_a" +/** + * + * + * Parent Class: LayerBipedArmor + */ +m.setModelVisible = "func_177194_a" +/** + * + * + * Parent Class: AnimationMetadataSection + */ +m.isInterpolate = "func_177219_e" +/** + * + * + * Parent Class: EntityMinecartMobSpawner$1 + */ +m.getSpawnerPosition = "func_177221_b" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +m.getMobRotation = "func_177222_d" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +m.getPrevMobRotation = "func_177223_e" +/** + * Get a version of this BlockState with the given Property now set to the given value + * + * Parent Class: BlockState$StateImplementation + */ +m.withProperty = "func_177226_a" +/** + * Get the names of all properties defined for this BlockState + * + * Parent Class: BlockState$StateImplementation + */ +m.getPropertyNames = "func_177227_a" +m.getProperties = {} +/** + * Get all properties of this BlockState. The returned Map maps from properties (IProperty) to the respective current value. + * + * Parent Class: BlockState$StateImplementation + */ +m.getProperties.BlockState$StateImplementation = "func_177228_b" +/** + * + * + * Parent Class: BlockState + */ +m.getProperties.BlockState = "func_177623_d" + +/** + * "Create a version of this BlockState with the given property cycled to the next value in order. If the property was at the highest possible value + * + * Parent Class: IBlockState + */ +m.cycleProperty = "func_177231_a" +/** + * Helper method for cycleProperty. + * + * Parent Class: BlockStateBase + */ +m.cyclePropertyValue = "func_177232_a" +/** + * + * + * Parent Class: BlockState$StateImplementation + */ +m.buildPropertyValueTable = "func_177235_a" +/** + * Create a new version of this.properties with the given property now set to the given value + * + * Parent Class: BlockState$StateImplementation + */ +m.getPropertiesWithValue = "func_177236_b" +/** + * + * + * Parent Class: SimpleResource + */ +m.getResourceLocation = "func_177241_a" +/** + * Returns an List<BlockPos> of all the blocks that are being destroyed by the piston. + * + * Parent Class: BlockPistonStructureHelper + */ +m.getBlocksToDestroy = "func_177252_d" +/** + * + * + * Parent Class: BlockPistonStructureHelper + */ +m.canMove = "func_177253_a" +/** + * Returns a List<BlockPos> of all the blocks that are being moved by the piston. + * + * Parent Class: BlockPistonStructureHelper + */ +m.getBlocksToMove = "func_177254_c" +/** + * + * + * Parent Class: TileEntityBeacon$BeamSegment + */ +m.incrementHeight = "func_177262_a" +/** + * Returns RGB (0 to 1.0) colors of this beam segment + * + * Parent Class: TileEntityBeacon$BeamSegment + */ +m.getColors = "func_177263_b" +/** + * Retrieves the string array which represents the associated crafting recipe for this banner effect. The first object in the array is the top layer while the second is middle and third is last. + * + * Parent Class: TileEntityBanner$EnumBannerPattern + */ +m.getCraftingLayers = "func_177267_c" +/** + * Retrieves an instance of a banner pattern by its short string id. + * + * Parent Class: TileEntityBanner$EnumBannerPattern + */ +m.getPatternByID = "func_177268_a" +/** + * Checks to see if this pattern has a specific ItemStack associated with it's crafting. + * + * Parent Class: TileEntityBanner$EnumBannerPattern + */ +m.hasCraftingStack = "func_177269_e" +/** + * "Checks to see if this pattern has a valid crafting stack + * + * Parent Class: TileEntityBanner$EnumBannerPattern + */ +m.hasValidCrafting = "func_177270_d" +/** + * Retrieves the name used to represent this pattern. + * + * Parent Class: TileEntityBanner$EnumBannerPattern + */ +m.getPatternName = "func_177271_a" +/** + * Retrieves the ItemStack associated with the crafting of this pattern. + * + * Parent Class: TileEntityBanner$EnumBannerPattern + */ +m.getCraftingStack = "func_177272_f" +/** + * Retrieves the short string used to represent this pattern. + * + * Parent Class: TileEntityBanner$EnumBannerPattern + */ +m.getPatternID = "func_177273_b" +/** + * + * + * Parent Class: ResourcePackRepository + */ +m.setResourcePackInstance = "func_177319_a" +/** + * Checks if a players skin model is slim or the default. The Alex model is slime while the Steve model is default. + * + * Parent Class: DefaultPlayerSkin + */ +m.isSlimSkin = "func_177333_c" +/** + * Retrieves the default skin for this player. Depending on the model used this will be Alex or Steve. + * + * Parent Class: DefaultPlayerSkin + */ +m.getDefaultSkin = "func_177334_a" +/** + * "Returns the default skind for versions prior to 1.8 + * + * Parent Class: DefaultPlayerSkin + */ +m.getDefaultSkinLegacy = "func_177335_a" +/** + * + * + * Parent Class: VertexFormat + */ +m.getNextOffset = "func_177338_f" +/** + * + * + * Parent Class: VertexFormat + */ +m.getColorOffset = "func_177340_e" +/** + * + * + * Parent Class: VertexFormat + */ +m.hasPosition = "func_177341_i" +/** + * + * + * Parent Class: VertexFormat + */ +m.getNormalOffset = "func_177342_c" +m.getElements = {} +/** + * + * + * Parent Class: VertexFormat + */ +m.getElements.VertexFormat = "func_177343_g" +/** + * + * + * Parent Class: ModelBlock + */ +m.getElements.ModelBlock = "func_178298_a" + +/** + * + * + * Parent Class: VertexFormat + */ +m.getUvOffsetById = "func_177344_b" +m.getElementCount = {} +/** + * + * + * Parent Class: VertexFormat + */ +m.getElementCount.VertexFormat = "func_177345_h" +/** + * + * + * Parent Class: VertexFormatElement + */ +m.getElementCount.VertexFormatElement = "func_177370_d" + +m.hasColor = {} +/** + * + * + * Parent Class: VertexFormat + */ +m.hasColor.VertexFormat = "func_177346_d" +/** + * Return whether the specified armor ItemStack has a color. + * + * Parent Class: ItemArmor + */ +m.hasColor.ItemArmor = "func_82816_b_" + +/** + * + * + * Parent Class: VertexFormat + */ +m.hasUvOffset = "func_177347_a" +/** + * + * + * Parent Class: VertexFormat + */ +m.getElement = "func_177348_c" +/** + * + * + * Parent Class: VertexFormat + */ +m.hasNormal = "func_177350_b" +/** + * + * + * Parent Class: VertexBuffer + */ +m.drawArrays = "func_177358_a" +/** + * + * + * Parent Class: VertexBuffer + */ +m.bindBuffer = "func_177359_a" +/** + * + * + * Parent Class: VertexBuffer + */ +m.unbindBuffer = "func_177361_b" +/** + * + * + * Parent Class: VertexBuffer + */ +m.deleteGlBuffers = "func_177362_c" +/** + * + * + * Parent Class: VertexFormatElement + */ +m.isPositionElement = "func_177374_g" +/** + * + * + * Parent Class: VertexFormatElement + */ +m.getUsage = "func_177375_c" +/** + * + * + * Parent Class: VertexFormatElement$EnumType + */ +m.getGlConstant = "func_177397_c" +/** + * + * + * Parent Class: Chunk + */ +m.setHasEntities = "func_177409_g" +/** + * + * + * Parent Class: Chunk + */ +m.isLoaded = "func_177410_o" +/** + * Fills the given list of all entities that intersect within the given bounding box that aren't the passed entity. + * + * Parent Class: Chunk + */ +m.getEntitiesWithinAABBForEntity = "func_177414_a" +/** + * + * + * Parent Class: Chunk + */ +m.setInhabitedTime = "func_177415_c" +/** + * + * + * Parent Class: Chunk + */ +m.getInhabitedTime = "func_177416_w" +/** + * + * + * Parent Class: Chunk + */ +m.setChunkLoaded = "func_177417_c" +/** + * + * + * Parent Class: Chunk + */ +m.isTerrainPopulated = "func_177419_t" +/** + * + * + * Parent Class: Chunk + */ +m.setHeightMap = "func_177420_a" +/** + * + * + * Parent Class: Chunk + */ +m.setLightPopulated = "func_177421_e" +/** + * + * + * Parent Class: Chunk + */ +m.isLightPopulated = "func_177423_u" +/** + * + * + * Parent Class: Chunk + */ +m.setModified = "func_177427_f" +/** + * + * + * Parent Class: Chunk + */ +m.getEntityLists = "func_177429_s" +/** + * Gets all entities that can be assigned to the specified class. + * + * Parent Class: Chunk + */ +m.getEntitiesOfTypeWithinAAAB = "func_177430_a" +/** + * + * + * Parent Class: Chunk + */ +m.setLastSaveTime = "func_177432_b" +/** + * + * + * Parent Class: Chunk + */ +m.getTileEntityMap = "func_177434_r" +/** + * Initialize this chunk with new binary data. + * + * Parent Class: Chunk + */ +m.fillChunk = "func_177439_a" +/** + * + * + * Parent Class: Chunk + */ +m.getLowestHeight = "func_177442_v" +/** + * + * + * Parent Class: Chunk + */ +m.getLightSubtracted = "func_177443_a" +/** + * + * + * Parent Class: Chunk + */ +m.getHeightMap = "func_177445_q" +/** + * + * + * Parent Class: Chunk + */ +m.setTerrainPopulated = "func_177446_d" +/** + * Get's the EntityPlayerMP object representing the player with the UUID. + * + * Parent Class: ServerConfigurationManager + */ +m.getPlayerByUUID = "func_177451_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.sendMessageToTeamOrEvryPlayer = "func_177452_b" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.sendMessageToAllTeamMembers = "func_177453_a" +/** + * + * + * Parent Class: ChunkProviderServer + */ +m.getPossibleCreatures = "func_177458_a" +/** + * "Will return back a chunk + * + * Parent Class: ChunkProviderServer + */ +m.provideChunk = "func_73154_d" +m.populateChunk = {} +/** + * + * + * Parent Class: ChunkProviderServer + */ +m.populateChunk.ChunkProviderServer = "func_177460_a" +/** + * + * + * Parent Class: Chunk + */ +m.populateChunk.Chunk = "func_76624_a" + +/** + * + * + * Parent Class: NibbleArray + */ +m.getNibbleIndex = "func_177478_c" +/** + * + * + * Parent Class: NibbleArray + */ +m.isLowerNibble = "func_177479_b" +/** + * + * + * Parent Class: NibbleArray + */ +m.getFromIndex = "func_177480_a" +m.getData = {} +/** + * + * + * Parent Class: NibbleArray + */ +m.getData.NibbleArray = "func_177481_a" +/** + * + * + * Parent Class: ExtendedBlockStorage + */ +m.getData.ExtendedBlockStorage = "func_177487_g" + +/** + * + * + * Parent Class: NibbleArray + */ +m.setIndex = "func_177482_a" +/** + * + * + * Parent Class: NibbleArray + */ +m.getCoordinateIndex = "func_177483_b" +m.setData = {} +/** + * + * + * Parent Class: ExtendedBlockStorage + */ +m.setData.ExtendedBlockStorage = "func_177486_a" +/** + * "Assigns the given String id to the given MapDataBase + * + * Parent Class: MapStorage + */ +m.setData.MapStorage = "func_75745_a" + +/** + * + * + * Parent Class: WorldProvider + */ +m.getHasNoSky = "func_177495_o" +m.getSpawnCoordinate = {} +/** + * + * + * Parent Class: WorldProviderEnd + */ +m.getSpawnCoordinate.WorldProviderEnd = "func_177496_h" +/** + * Returns null for anything other than the End + * + * Parent Class: WorldServer + */ +m.getSpawnCoordinate.WorldServer = "func_180504_m" + +/** + * + * + * Parent Class: WorldProvider + */ +m.getLightBrightnessTable = "func_177497_p" +/** + * + * + * Parent Class: WorldProviderEnd + */ +m.getInternalNameSuffix = "func_177498_l" +m.getWorldChunkManager = {} +/** + * + * + * Parent Class: WorldProvider + */ +m.getWorldChunkManager.WorldProvider = "func_177499_m" +/** + * + * + * Parent Class: World + */ +m.getWorldChunkManager.World = "func_72959_q" +/** + * + * + * Parent Class: StructureVillagePieces$Start + */ +m.getWorldChunkManager.StructureVillagePieces$Start = "func_74925_d" + +/** + * + * + * Parent Class: WorldProvider + */ +m.doesWaterVaporize = "func_177500_n" +/** + * Gets the dimension of the provider + * + * Parent Class: WorldProvider + */ +m.getDimensionId = "func_177502_q" +/** + * + * + * Parent Class: BlockWorldState + */ +m.hasState = "func_177510_a" +/** + * "Splits an object name (such as minecraft:apple) into the domain and path parts and returns these as an array of length 2. If no colon is present in the passed value the returned array will contain {null + * + * Parent Class: ResourceLocation + */ +m.splitObjectName = "func_177516_a" +/** + * + * + * Parent Class: ModelResourceLocation + */ +m.parsePathString = "func_177517_b" +m.rotateVertex = {} +/** + * + * + * Parent Class: ModelRotation + */ +m.rotateVertex.ModelRotation = "func_177520_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.rotateVertex.FaceBakery = "func_178415_a" + +/** + * + * + * Parent Class: ModelRotation + */ +m.combineXY = "func_177521_b" +/** + * + * + * Parent Class: ModelRotation + */ +m.rotateFace = "func_177523_a" +/** + * + * + * Parent Class: ModelRotation + */ +m.getModelRotation = "func_177524_a" +/** + * + * + * Parent Class: ModelRotation + */ +m.getMatrix4d = "func_177525_a" +/** + * + * + * Parent Class: WeightedBakedModel + */ +m.getGeneralQuads = "func_177550_a" +/** + * + * + * Parent Class: WeightedBakedModel + */ +m.getFaceQuads = "func_177551_a" +/** + * + * + * Parent Class: WeightedBakedModel + */ +m.getItemCameraTransforms = "func_177552_f" +/** + * + * + * Parent Class: WeightedBakedModel + */ +m.isBuiltInRenderer = "func_177553_d" +/** + * + * + * Parent Class: WeightedBakedModel + */ +m.getParticleTexture = "func_177554_e" +m.isAmbientOcclusion = {} +/** + * + * + * Parent Class: WeightedBakedModel + */ +m.isAmbientOcclusion.WeightedBakedModel = "func_177555_b" +/** + * + * + * Parent Class: ModelBlock + */ +m.isAmbientOcclusion.ModelBlock = "func_178309_b" + +m.isGui3d = {} +/** + * + * + * Parent Class: WeightedBakedModel + */ +m.isGui3d.WeightedBakedModel = "func_177556_c" +/** + * + * + * Parent Class: ModelBlock + */ +m.isGui3d.ModelBlock = "func_178311_c" + +/** + * + * + * Parent Class: WeightedBakedModel + */ +m.getAlternativeModel = "func_177564_a" +/** + * + * + * Parent Class: ModelBakery + */ +m.registerVariant = "func_177569_a" +/** + * + * + * Parent Class: ModelBakery + */ +m.setupModelRegistry = "func_177570_a" +/** + * + * + * Parent Class: ModelBakery + */ +m.getItemsTextureLocations = "func_177571_k" +/** + * + * + * Parent Class: ModelBakery + */ +m.getParentPath = "func_177573_e" +/** + * + * + * Parent Class: ModelBakery + */ +m.loadModels = "func_177574_i" +/** + * + * + * Parent Class: ModelBakery + */ +m.getVariantsTextureLocations = "func_177575_g" +m.getParentLocation = {} +/** + * + * + * Parent Class: ModelBakery + */ +m.getParentLocation.ModelBakery = "func_177576_f" +/** + * + * + * Parent Class: ModelBlock + */ +m.getParentLocation.ModelBlock = "func_178305_e" + +/** + * + * + * Parent Class: ModelBakery + */ +m.loadVariantItemModels = "func_177577_b" +/** + * + * + * Parent Class: ModelBakery + */ +m.bakeModel = "func_177578_a" +m.getModelLocation = {} +/** + * + * + * Parent Class: ModelBakery + */ +m.getModelLocation.ModelBakery = "func_177580_d" +/** + * + * + * Parent Class: RenderItem$9 + */ +m.getModelLocation.RenderItem$9 = "func_178113_a" +/** + * + * + * Parent Class: ModelBlockDefinition$Variant + */ +m.getModelLocation.ModelBlockDefinition$Variant = "func_178431_a" + +/** + * + * + * Parent Class: ModelBakery + */ +m.hasItemModel = "func_177581_b" +m.makeItemModel = {} +/** + * + * + * Parent Class: ModelBakery + */ +m.makeItemModel.ModelBakery = "func_177582_d" +/** + * + * + * Parent Class: ItemModelGenerator + */ +m.makeItemModel.ItemModelGenerator = "func_178392_a" + +/** + * + * + * Parent Class: ModelBakery + */ +m.getItemLocation = "func_177583_a" +/** + * + * + * Parent Class: ModelBakery + */ +m.getBlockStateLocation = "func_177584_b" +/** + * + * + * Parent Class: ModelBakery + */ +m.getTextureLocations = "func_177585_a" +/** + * + * + * Parent Class: ModelBakery + */ +m.getModelBlockDefinition = "func_177586_a" +/** + * + * + * Parent Class: ModelBakery + */ +m.isCustomRenderer = "func_177587_c" +/** + * + * + * Parent Class: ModelBakery + */ +m.bakeBlockModels = "func_177588_f" +m.makeBakedQuad = {} +/** + * + * + * Parent Class: ModelBakery + */ +m.makeBakedQuad.ModelBakery = "func_177589_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.makeBakedQuad.FaceBakery = "func_178414_a" + +/** + * + * + * Parent Class: ModelBakery + */ +m.loadItemModels = "func_177590_d" +/** + * + * + * Parent Class: ModelBakery + */ +m.loadVariants = "func_177591_a" +/** + * + * + * Parent Class: ModelBakery + */ +m.registerVariantNames = "func_177592_e" +/** + * + * + * Parent Class: ModelBakery + */ +m.bakeItemModels = "func_177593_l" +/** + * + * + * Parent Class: ModelBakery + */ +m.loadModel = "func_177594_c" +/** + * + * + * Parent Class: ModelBakery + */ +m.loadVariantModels = "func_177595_c" +/** + * + * + * Parent Class: ModelBakery + */ +m.getVariantNames = "func_177596_a" +/** + * + * + * Parent Class: ModelBakery + */ +m.loadModelsCheck = "func_177597_h" +/** + * + * + * Parent Class: BlockState + */ +m.getValidStates = "func_177619_a" +m.getAllowedValues = {} +/** + * + * + * Parent Class: BlockState + */ +m.getAllowedValues.BlockState = "func_177620_e" +/** + * + * + * Parent Class: IProperty + */ +m.getAllowedValues.IProperty = "func_177700_c" + +/** + * + * + * Parent Class: BlockState + */ +m.getBaseState = "func_177621_b" +m.generateChestContents = {} +/** + * + * + * Parent Class: WeightedRandomChestContent + */ +m.generateChestContents.WeightedRandomChestContent = "func_177630_a" +/** + * + * + * Parent Class: StructureComponent + */ +m.generateChestContents.StructureComponent = "func_180778_a" + +/** + * + * + * Parent Class: WeightedBakedModel$MyWeighedRandomItem + */ +m.getCountQuads = "func_177635_a" +m.where = {} +/** + * + * + * Parent Class: BlockStateHelper + */ +m.where.BlockStateHelper = "func_177637_a" +/** + * + * + * Parent Class: FactoryBlockPattern + */ +m.where.FactoryBlockPattern = "func_177662_a" + +m.forBlock = {} +/** + * + * + * Parent Class: BlockStateHelper + */ +m.forBlock.BlockStateHelper = "func_177638_a" +/** + * + * + * Parent Class: BlockHelper + */ +m.forBlock.BlockHelper = "func_177642_a" + +/** + * + * + * Parent Class: SimpleBakedModel$Builder + */ +m.makeBakedModel = "func_177645_b" +/** + * + * + * Parent Class: SimpleBakedModel$Builder + */ +m.setTexture = "func_177646_a" +/** + * + * + * Parent Class: SimpleBakedModel$Builder + */ +m.addGeneralBreakingFours = "func_177647_a" +/** + * + * + * Parent Class: SimpleBakedModel$Builder + */ +m.addGeneralQuad = "func_177648_a" +/** + * + * + * Parent Class: SimpleBakedModel$Builder + */ +m.addFaceBreakingFours = "func_177649_a" +/** + * + * + * Parent Class: SimpleBakedModel$Builder + */ +m.addFaceQuad = "func_177650_a" +/** + * + * + * Parent Class: FactoryBlockPattern + */ +m.checkMissingPredicates = "func_177657_d" +/** + * + * + * Parent Class: FactoryBlockPattern + */ +m.makePredicateArray = "func_177658_c" +/** + * + * + * Parent Class: FactoryBlockPattern + */ +m.aisle = "func_177659_a" +/** + * + * + * Parent Class: FactoryBlockPattern + */ +m.start = "func_177660_a" +m.build = {} +/** + * + * + * Parent Class: FactoryBlockPattern + */ +m.build.FactoryBlockPattern = "func_177661_b" +/** + * + * + * Parent Class: WeightedBakedModel$Builder + */ +m.build.WeightedBakedModel$Builder = "func_177676_a" +/** + * + * + * Parent Class: StateMap$Builder + */ +m.build.StateMap$Builder = "func_178441_a" + +/** + * + * + * Parent Class: BlockPattern$PatternHelper + */ +m.getThumb = "func_177668_c" +/** + * + * + * Parent Class: BlockPattern$PatternHelper + */ +m.getFinger = "func_177669_b" +m.translateOffset = {} +/** + * + * + * Parent Class: BlockPattern$PatternHelper + */ +m.translateOffset.BlockPattern$PatternHelper = "func_177670_a" +/** + * "Offsets the position of pos in the direction of finger and thumb facing by offset amounts + * + * Parent Class: BlockPattern + */ +m.translateOffset.BlockPattern = "func_177683_a" + +/** + * + * + * Parent Class: WeightedBakedModel$Builder + */ +m.first = "func_177675_b" +m.add = {} +/** + * + * + * Parent Class: WeightedBakedModel$Builder + */ +m.add.WeightedBakedModel$Builder = "func_177677_a" +/** + * Add the given coordinates to the coordinates of this BlockPos + * + * Parent Class: BlockPos + */ +m.add.BlockPos = "func_177982_a" +/** + * + * + * Parent Class: Vec3 + */ +m.add.Vec3 = "func_178787_e" +/** + * Add a key-value pair. + * + * Parent Class: LongHashMap + */ +m.add.LongHashMap = "func_76163_a" + +/** + * "Calculates whether the given world position matches the pattern. Warning + * + * Parent Class: BlockPattern + */ +m.match = "func_177681_a" +/** + * checks that the given pattern & rotation is at the block co-ordinates. + * + * Parent Class: BlockPattern + */ +m.checkPatternAt = "func_177682_a" +/** + * + * + * Parent Class: BlockPattern + */ +m.getPalmLength = "func_177684_c" +/** + * + * + * Parent Class: BlockPattern + */ +m.getThumbLength = "func_177685_b" +/** + * + * + * Parent Class: ServerConfigurationManager$1 + */ +m.onWarningDistanceChanged = "func_177690_b" +/** + * + * + * Parent Class: ServerConfigurationManager$1 + */ +m.onWarningTimeChanged = "func_177691_a" +/** + * + * + * Parent Class: ServerConfigurationManager$1 + */ +m.onTransitionStarted = "func_177692_a" +/** + * + * + * Parent Class: ServerConfigurationManager$1 + */ +m.onCenterChanged = "func_177693_a" +/** + * + * + * Parent Class: ServerConfigurationManager$1 + */ +m.onSizeChanged = "func_177694_a" +/** + * + * + * Parent Class: ServerConfigurationManager$1 + */ +m.onDamageBufferChanged = "func_177695_c" +/** + * + * + * Parent Class: ServerConfigurationManager$1 + */ +m.onDamageAmountChanged = "func_177696_b" +/** + * The class of the values of this property + * + * Parent Class: IProperty + */ +m.getValueClass = "func_177699_b" +/** + * + * + * Parent Class: WorldProviderHell$1 + */ +m.getCenterZ = "func_177721_g" +/** + * + * + * Parent Class: WorldBorder + */ +m.setWarningTime = "func_177723_b" +/** + * + * + * Parent Class: WorldBorder + */ +m.setDamageBuffer = "func_177724_b" +m.setSize = {} +/** + * + * + * Parent Class: WorldBorder + */ +m.setSize.WorldBorder = "func_177725_a" +/** + * "Sets the width and height of the entity. Args: width + * + * Parent Class: EntityZombie + */ +m.setSize.EntityZombie = "func_70105_a" + +/** + * + * + * Parent Class: WorldBorder + */ +m.minX = "func_177726_b" +m.getDamageAmount = {} +/** + * + * + * Parent Class: WorldBorder + */ +m.getDamageAmount.WorldBorder = "func_177727_n" +/** + * + * + * Parent Class: CombatEntry + */ +m.getDamageAmount.CombatEntry = "func_94561_i" + +/** + * + * + * Parent Class: WorldBorder + */ +m.maxX = "func_177728_d" +/** + * + * + * Parent Class: WorldBorder + */ +m.getClosestDistance = "func_177745_a" +/** + * + * + * Parent Class: WorldBorder + */ +m.contains = "func_177746_a" +/** + * + * + * Parent Class: WorldProviderHell$1 + */ +m.getCenterX = "func_177731_f" +/** + * + * + * Parent Class: WorldBorder + */ +m.getTimeUntilTarget = "func_177732_i" +/** + * + * + * Parent Class: WorldBorder + */ +m.maxZ = "func_177733_e" +/** + * + * + * Parent Class: WorldBorder + */ +m.getListeners = "func_177735_k" +/** + * + * + * Parent Class: WorldBorder + */ +m.minZ = "func_177736_c" +/** + * + * + * Parent Class: WorldBorder + */ +m.addListener = "func_177737_a" +/** + * + * + * Parent Class: WorldBorder + */ +m.setTransition = "func_177750_a" +/** + * + * + * Parent Class: WorldBorder + */ +m.setCenter = "func_177739_c" +/** + * + * + * Parent Class: WorldBorder + */ +m.getWarningTime = "func_177740_p" +/** + * + * + * Parent Class: WorldBorder + */ +m.getDiameter = "func_177741_h" +/** + * + * + * Parent Class: WorldBorder + */ +m.getDamageBuffer = "func_177742_m" +/** + * + * + * Parent Class: WorldBorder + */ +m.setDamageAmount = "func_177744_c" +/** + * + * + * Parent Class: WorldBorder + */ +m.setWarningDistance = "func_177747_c" +/** + * + * + * Parent Class: WorldBorder + */ +m.getWarningDistance = "func_177748_q" +/** + * + * + * Parent Class: WorldBorder + */ +m.getResizeSpeed = "func_177749_o" +/** + * + * + * Parent Class: WorldBorder + */ +m.getTargetSize = "func_177751_j" +/** + * Gets the name we use to identify the given object. + * + * Parent Class: RegistryNamespaced + */ +m.getNameForObject = "func_177774_c" +/** + * validates that this registry's key is non-null + * + * Parent Class: RegistryNamespacedDefaultedByKey + */ +m.validateKey = "func_177776_a" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +m.jsonToFactory = "func_177865_a" +/** + * Calculate squared distance to the given coordinates + * + * Parent Class: Vec3i + */ +m.distanceSq = "func_177954_c" +m.crossProduct = {} +/** + * Calculate the cross product of this and the given Vector + * + * Parent Class: Vec3i + */ +m.crossProduct.Vec3i = "func_177955_d" +/** + * Returns a new vector with the result of this vector x the specified vector. + * + * Parent Class: Vec3 + */ +m.crossProduct.Vec3 = "func_72431_c" + +/** + * "Compute square of distance from point x + * + * Parent Class: Vec3i + */ +m.distanceSqToCenter = "func_177957_d" +/** + * Offset this BlockPos 1 block in northern direction + * + * Parent Class: BlockPos + */ +m.north = "func_177978_c" +/** + * Offset this BlockPos 1 block in eastern direction + * + * Parent Class: BlockPos + */ +m.east = "func_177974_f" +m.offset = {} +/** + * Offset this BlockPos 1 block in the given direction + * + * Parent Class: BlockPos + */ +m.offset.BlockPos = "func_177972_a" +/** + * "Offsets the current bounding box by the specified coordinates. Args: x + * + * Parent Class: AxisAlignedBB + */ +m.offset.AxisAlignedBB = "func_72317_d" +/** + * "Offsets the current bounding box by the specified coordinates. Args: x + * + * Parent Class: StructureBoundingBox + */ +m.offset.StructureBoundingBox = "func_78886_a" + +/** + * Offset this BlockPos n blocks in southern direction + * + * Parent Class: BlockPos + */ +m.south = "func_177970_e" +/** + * Create a BlockPos from a serialized long value (created by toLong) + * + * Parent Class: BlockPos + */ +m.fromLong = "func_177969_a" +m.subtract = {} +/** + * Subtract the given Vector from this BlockPos + * + * Parent Class: BlockPos + */ +m.subtract.BlockPos = "func_177973_b" +/** + * + * + * Parent Class: Vec3 + */ +m.subtract.Vec3 = "func_178788_d" + +/** + * "Like getAllInBox but reuses a single MutableBlockPos instead. If this method is used + * + * Parent Class: BlockPos + */ +m.getAllInBoxMutable = "func_177975_b" +/** + * Offset this BlockPos n blocks in western direction + * + * Parent Class: BlockPos + */ +m.west = "func_177985_f" +/** + * Offset this BlockPos n blocks down + * + * Parent Class: BlockPos + */ +m.down = "func_177979_c" +/** + * Create an Iterable that returns all positions in the box specified by the given corners + * + * Parent Class: BlockPos + */ +m.getAllInBox = "func_177980_a" +/** + * Offset this BlockPos 1 block up + * + * Parent Class: BlockPos + */ +m.up = "func_177984_a" +/** + * Serialize this BlockPos into a long value + * + * Parent Class: BlockPos + */ +m.toLong = "func_177986_g" +/** + * + * + * Parent Class: VboRenderList + */ +m.renderChunkLayer = "func_178001_a" +/** + * + * + * Parent Class: ChunkRenderContainer + */ +m.addRenderChunk = "func_178002_a" +/** + * + * + * Parent Class: ChunkRenderContainer + */ +m.preRenderChunk = "func_178003_a" +m.initialize = {} +/** + * + * + * Parent Class: ChunkRenderContainer + */ +m.initialize.ChunkRenderContainer = "func_178004_a" +/** + * + * + * Parent Class: WorldServer + */ +m.initialize.WorldServer = "func_72963_a" + +/** + * + * + * Parent Class: VboRenderList + */ +m.setupArrayPointers = "func_178010_a" +/** + * + * + * Parent Class: ResourcePackListEntry + */ +m.setSelected = "func_178011_a" +/** + * + * + * Parent Class: ServerListEntryNormal + */ +m.drawTextureAt = "func_178012_a" +/** + * + * + * Parent Class: Framebuffer + */ +m.framebufferRenderExt = "func_178038_a" +/** + * + * + * Parent Class: ItemModelMesher + */ +m.getParticleIcon = "func_178087_a" +m.getModelManager = {} +/** + * + * + * Parent Class: ItemModelMesher + */ +m.getModelManager.ItemModelMesher = "func_178083_a" +/** + * + * + * Parent Class: BlockModelShapes + */ +m.getModelManager.BlockModelShapes = "func_178126_b" + +/** + * + * + * Parent Class: ItemModelMesher + */ +m.rebuildCache = "func_178085_b" +/** + * + * + * Parent Class: ItemModelMesher + */ +m.getItemModel = "func_178089_a" +/** + * Render the player's arm + * + * @param equipProgress The progress of equiping the item + * @param swingProgress The swing movement progression + * + * Parent Class: ItemRenderer + */ +m.renderPlayerArm = "func_178095_a" +/** + * Performs transformations prior to the rendering of a held item in first person. + * + * Parent Class: ItemRenderer + */ +m.transformFirstPersonItem = "func_178096_b" +/** + * + * + * Parent Class: ItemRenderer + */ +m.renderItemMap = "func_178097_a" +/** + * Translate and rotate the render to look like holding a bow + * + * @param partialTicks Partial ticks + * + * Parent Class: ItemRenderer + */ +m.doBowTransformations = "func_178098_a" +m.renderItem = {} +/** + * + * + * Parent Class: ItemRenderer + */ +m.renderItem.ItemRenderer = "func_178099_a" +/** + * + * + * Parent Class: RenderItem + */ +m.renderItem.RenderItem = "func_181564_a" +/** + * + * + * Parent Class: RenderItemFrame + */ +m.renderItem.RenderItemFrame = "func_82402_b" + +/** + * Return the angle to render the Map + * + * @param pitch The player's pitch + * + * Parent Class: ItemRenderer + */ +m.getMapAngleFromPitch = "func_178100_c" +/** + * Rotate the render around X and Y + * + * @param angleY The angle for the rotation arround Y + * + * Parent Class: ItemRenderer + */ +m.rotateArroundXAndY = "func_178101_a" +/** + * + * + * Parent Class: ItemRenderer + */ +m.renderPlayerArms = "func_178102_b" +/** + * Translate and rotate the render for holding a block + * + * Parent Class: ItemRenderer + */ +m.doBlockTransformations = "func_178103_d" +/** + * Perform the drinking animation movement + * + * @param partialTicks Partials ticks + * + * Parent Class: ItemRenderer + */ +m.performDrinking = "func_178104_a" +/** + * Rotate and translate render to show item consumption + * + * @param swingProgress The swing movement progress + * + * Parent Class: ItemRenderer + */ +m.doItemUsedTransformations = "func_178105_d" +/** + * Returns true if given block is translucent + * + * Parent Class: ItemRenderer + */ +m.isBlockTranslucent = "func_178107_a" +/** + * Render the block in the player's hand + * + * @param partialTicks Partial ticks + * @param atlas The TextureAtlasSprite to render + * + * Parent Class: ItemRenderer + */ +m.renderBlockInHand = "func_178108_a" +/** + * Set the OpenGL LightMapTextureCoords based on the AbstractClientPlayer + * + * Parent Class: ItemRenderer + */ +m.setLightMapFromPlayer = "func_178109_a" +/** + * Rotate the render according to the player's yaw and pitch + * + * Parent Class: ItemRenderer + */ +m.rotateWithPlayerRotations = "func_178110_a" +/** + * + * + * Parent Class: BlockModelShapes + */ +m.registerAllBlocks = "func_178119_d" +/** + * + * + * Parent Class: BlockModelShapes + */ +m.getBlockStateMapper = "func_178120_a" +/** + * + * + * Parent Class: BlockModelShapes + */ +m.registerBlockWithStateMapper = "func_178121_a" +m.registerBuiltInBlocks = {} +/** + * + * + * Parent Class: BlockModelShapes + */ +m.registerBuiltInBlocks.BlockModelShapes = "func_178123_a" +/** + * + * + * Parent Class: BlockStateMapper + */ +m.registerBuiltInBlocks.BlockStateMapper = "func_178448_a" + +/** + * + * + * Parent Class: BlockModelShapes + */ +m.reloadModels = "func_178124_c" +/** + * + * + * Parent Class: BlockModelShapes + */ +m.getModelForState = "func_178125_b" +/** + * + * + * Parent Class: IStateMapper + */ +m.putStateModelLocations = "func_178130_a" +/** + * + * + * Parent Class: StateMapperBase + */ +m.getPropertyString = "func_178131_a" +/** + * + * + * Parent Class: StateMap + */ +m.getModelResourceLocation = "func_178132_a" +/** + * "Like the version that takes an inventory. If the given TileEntity is not an Inventory + * + * Parent Class: Container + */ +m.calcRedstone = "func_178144_a" +/** + * + * + * Parent Class: ContainerEnchantment + */ +m.getLapisAmount = "func_178147_e" +/** + * + * + * Parent Class: ViewFrustum + */ +m.createRenderChunks = "func_178158_a" +/** + * + * + * Parent Class: ViewFrustum + */ +m.setCountChunksXYZ = "func_178159_a" +m.deleteGlResources = {} +/** + * + * + * Parent Class: ViewFrustum + */ +m.deleteGlResources.ViewFrustum = "func_178160_a" +/** + * + * + * Parent Class: RenderChunk + */ +m.deleteGlResources.RenderChunk = "func_178566_a" + +m.getRenderChunk = {} +/** + * + * + * Parent Class: ViewFrustum + */ +m.getRenderChunk.ViewFrustum = "func_178161_a" +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +m.getRenderChunk.ChunkCompileTaskGenerator = "func_178536_b" + +m.markBlocksForUpdate = {} +/** + * + * + * Parent Class: ViewFrustum + */ +m.markBlocksForUpdate.ViewFrustum = "func_178162_a" +/** + * Marks the blocks in the given range for update + * + * Parent Class: RenderGlobal + */ +m.markBlocksForUpdate.RenderGlobal = "func_72725_b" + +/** + * + * + * Parent Class: ViewFrustum + */ +m.updateChunkPositions = "func_178163_a" +m.getItemStackLimit = {} +/** + * + * + * Parent Class: Slot + */ +m.getItemStackLimit.Slot = "func_178170_b" +/** + * Returns the maximum size of the stack for a specific item. *Isn't this more a Set than a Get?* + * + * Parent Class: Item + */ +m.getItemStackLimit.Item = "func_77639_j" + +/** + * + * + * Parent Class: Slot + */ +m.getSlotTexture = "func_178171_c" +/** + * + * + * Parent Class: SlotFurnaceFuel + */ +m.isBucket = "func_178173_c_" +/** + * + * + * Parent Class: ChestRenderer + */ +m.renderChestBrightness = "func_178175_a" +/** + * + * + * Parent Class: VertexBufferUploader + */ +m.setVertexBuffer = "func_178178_a" +/** + * + * + * Parent Class: Tessellator + */ +m.getWorldRenderer = "func_178180_c" +/** + * + * + * Parent Class: BlockModelRenderer$VertexTranslations + */ +m.getVertexTranslations = "func_178184_a" +/** + * + * + * Parent Class: BlockModelRenderer$AmbientOcclusionFace + */ +m.getVertexBrightness = "func_178203_a" +/** + * + * + * Parent Class: BlockModelRenderer$AmbientOcclusionFace + */ +m.updateVertexBrightness = "func_178204_a" +/** + * + * + * Parent Class: BakedQuad + */ +m.getVertexData = "func_178209_a" +/** + * + * + * Parent Class: BakedQuad + */ +m.getFace = "func_178210_d" +/** + * + * + * Parent Class: BakedQuad + */ +m.getTintIndex = "func_178211_c" +/** + * + * + * Parent Class: BakedQuad + */ +m.hasTintIndex = "func_178212_b" +/** + * + * + * Parent Class: BreakingFour + */ +m.remapVert = "func_178216_a" +/** + * + * + * Parent Class: BreakingFour + */ +m.remapQuad = "func_178217_e" +/** + * + * + * Parent Class: BlockPart + */ +m.setDefaultUvs = "func_178235_a" +/** + * + * + * Parent Class: BlockPart + */ +m.getFaceUvs = "func_178236_a" +/** + * + * + * Parent Class: BlockPart$Deserializer + */ +m.parsePositionTo = "func_178247_d" +/** + * + * + * Parent Class: BlockPart$Deserializer + */ +m.parseEnumFacing = "func_178248_a" +/** + * + * + * Parent Class: BlockPart$Deserializer + */ +m.parsePositionFrom = "func_178249_e" +/** + * + * + * Parent Class: BlockPart$Deserializer + */ +m.parseFacesCheck = "func_178250_a" +/** + * + * + * Parent Class: BlockPart$Deserializer + */ +m.parsePosition = "func_178251_a" +/** + * + * + * Parent Class: BlockPart$Deserializer + */ +m.parseAxis = "func_178252_c" +/** + * + * + * Parent Class: BlockPart$Deserializer + */ +m.parseFaces = "func_178253_b" +/** + * + * + * Parent Class: BlockPart$Deserializer + */ +m.parseAngle = "func_178255_b" +m.parseRotation = {} +/** + * + * + * Parent Class: BlockPart$Deserializer + */ +m.parseRotation.BlockPart$Deserializer = "func_178256_a" +/** + * + * + * Parent Class: BlockFaceUV$Deserializer + */ +m.parseRotation.BlockFaceUV$Deserializer = "func_178291_a" +/** + * + * + * Parent Class: ModelBlockDefinition$Variant$Deserializer + */ +m.parseRotation.ModelBlockDefinition$Variant$Deserializer = "func_178428_a" + +/** + * + * + * Parent Class: BlockModelRenderer + */ +m.renderModelStandard = "func_178258_b" +/** + * + * + * Parent Class: BlockModelRenderer + */ +m.renderModelStandardQuads = "func_178260_a" +/** + * + * + * Parent Class: BlockModelRenderer + */ +m.fillQuadBounds = "func_178261_a" +/** + * + * + * Parent Class: BlockModelRenderer + */ +m.renderModelBrightnessColor = "func_178262_a" +/** + * + * + * Parent Class: BlockModelRenderer + */ +m.renderModelAmbientOcclusionQuads = "func_178263_a" +/** + * + * + * Parent Class: BlockModelRenderer + */ +m.renderModelBrightnessColorQuads = "func_178264_a" +/** + * + * + * Parent Class: BlockModelRenderer + */ +m.renderModelAmbientOcclusion = "func_178265_a" +/** + * + * + * Parent Class: BlockModelRenderer + */ +m.renderModelBrightness = "func_178266_a" +/** + * + * + * Parent Class: BlockFluidRenderer + */ +m.initAtlasSprites = "func_178268_a" +/** + * + * + * Parent Class: BlockFluidRenderer + */ +m.getFluidHeight = "func_178269_a" +/** + * + * + * Parent Class: BlockFluidRenderer + */ +m.renderFluid = "func_178270_a" +/** + * + * + * Parent Class: BlockModelRenderer$EnumNeighborInfo + */ +m.getNeighbourInfo = "func_178273_a" +/** + * + * + * Parent Class: BlockFaceUV$Deserializer + */ +m.parseUV = "func_178292_b" +/** + * + * + * Parent Class: ModelBlock + */ +m.deserialize = "func_178307_a" +/** + * + * + * Parent Class: ModelBlock + */ +m.hasParent = "func_178295_k" +/** + * + * + * Parent Class: ModelBlock + */ +m.getParentFromMap = "func_178299_a" +/** + * + * + * Parent Class: ModelBlock + */ +m.isTexturePresent = "func_178300_b" +/** + * + * + * Parent Class: ModelBlock + */ +m.resolveTextureName = "func_178308_c" +/** + * + * + * Parent Class: ModelBlock + */ +m.isResolved = "func_178303_d" +/** + * + * + * Parent Class: ModelBlock + */ +m.startsWithHash = "func_178304_d" +/** + * + * + * Parent Class: ModelBlock + */ +m.getRootModel = "func_178310_f" +/** + * + * + * Parent Class: ModelBlock + */ +m.checkModelHierarchy = "func_178312_b" +/** + * + * + * Parent Class: ModelBlock$Deserializer + */ +m.getModelElements = "func_178325_a" +/** + * + * + * Parent Class: ModelBlock$Deserializer + */ +m.getAmbientOcclusionEnabled = "func_178328_a" +/** + * + * + * Parent Class: ModelBlock$Deserializer + */ +m.getTextures = "func_178329_b" +m.getVariants = {} +/** + * + * + * Parent Class: ModelBlockDefinition + */ +m.getVariants.ModelBlockDefinition = "func_178330_b" +/** + * + * + * Parent Class: ModelBlockDefinition$Variants + */ +m.getVariants.ModelBlockDefinition$Variants = "func_178420_b" + +/** + * + * + * Parent Class: ModelBlockDefinition + */ +m.parseFromReader = "func_178331_a" +/** + * + * + * Parent Class: ModelBlockDefinition$Deserializer + */ +m.parseVariantsList = "func_178334_a" +/** + * + * + * Parent Class: ModelBlockDefinition$Deserializer + */ +m.parseVariants = "func_178335_a" +/** + * + * + * Parent Class: BlockPartFace$Deserializer + */ +m.parseTintIndex = "func_178337_a" +/** + * + * + * Parent Class: BlockPartFace$Deserializer + */ +m.parseCullFace = "func_178339_c" +/** + * + * + * Parent Class: BlockPartFace$Deserializer + */ +m.parseTexture = "func_178340_b" +/** + * + * + * Parent Class: BlockFaceUV + */ +m.setUvs = "func_178349_a" +/** + * + * + * Parent Class: ItemTransformVec3f$Deserializer + */ +m.parseVector3f = "func_178358_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.lockVertexUv = "func_178401_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.fillVertexData = "func_178402_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.getPositionsDiv16 = "func_178403_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.storeVertexData = "func_178404_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.makeQuadVertexData = "func_178405_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.rotateScale = "func_178406_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.rotatePart = "func_178407_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.applyFacing = "func_178408_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.lockUv = "func_178409_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.getFacingFromVertexData = "func_178410_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.getMatrixIdentity = "func_178411_a" +/** + * + * + * Parent Class: FaceBakery + */ +m.getFaceBrightness = "func_178412_b" +/** + * + * + * Parent Class: FaceBakery + */ +m.getFaceShadeColor = "func_178413_a" +/** + * + * + * Parent Class: ModelBlockDefinition$Variant$Deserializer + */ +m.parseModel = "func_178424_b" +/** + * + * + * Parent Class: ModelBlockDefinition$Variant$Deserializer + */ +m.makeModelLocation = "func_178426_a" +/** + * + * + * Parent Class: ModelBlockDefinition$Variant$Deserializer + */ +m.parseWeight = "func_178427_c" +/** + * + * + * Parent Class: ModelBlockDefinition$Variant$Deserializer + */ +m.parseUvLock = "func_178429_d" +m.getRotation = {} +/** + * + * + * Parent Class: ModelBlockDefinition$Variant + */ +m.getRotation.ModelBlockDefinition$Variant = "func_178432_b" +/** + * Return the rotation of the item currently on this frame. + * + * Parent Class: EntityItemFrame + */ +m.getRotation.EntityItemFrame = "func_82333_j" + +/** + * + * + * Parent Class: ModelBlockDefinition$Variant + */ +m.isUvLocked = "func_178433_c" +/** + * + * + * Parent Class: StateMap$Builder + */ +m.withSuffix = "func_178439_a" +/** + * + * + * Parent Class: StateMap$Builder + */ +m.withName = "func_178440_a" +/** + * "Add properties that will not be used to compute all possible states of a block + * + * Parent Class: StateMap$Builder + */ +m.ignore = "func_178442_a" +/** + * + * + * Parent Class: BlockStateMapper + */ +m.putAllStateModelLocations = "func_178446_a" +/** + * + * + * Parent Class: BlockStateMapper + */ +m.registerBlockStateMapper = "func_178447_a" +m.cacheActiveRenderInfo = {} +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +m.cacheActiveRenderInfo.TileEntityRendererDispatcher = "func_178470_a" +/** + * + * + * Parent Class: RenderManager + */ +m.cacheActiveRenderInfo.RenderManager = "func_180597_a" + +m.freeRenderBuilder = {} +/** + * + * + * Parent Class: ChunkRenderWorker + */ +m.freeRenderBuilder.ChunkRenderWorker = "func_178473_b" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +m.freeRenderBuilder.ChunkRenderDispatcher = "func_178512_a" + +/** + * + * + * Parent Class: ChunkRenderWorker + */ +m.processTask = "func_178474_a" +m.getRegionRenderCacheBuilder = {} +/** + * + * + * Parent Class: ChunkRenderWorker + */ +m.getRegionRenderCacheBuilder.ChunkRenderWorker = "func_178475_b" +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +m.getRegionRenderCacheBuilder.ChunkCompileTaskGenerator = "func_178545_d" + +/** + * + * + * Parent Class: CompiledChunk + */ +m.getTileEntities = "func_178485_b" +/** + * + * + * Parent Class: CompiledChunk$1 + */ +m.setLayerUsed = "func_178486_a" +/** + * + * + * Parent Class: CompiledChunk + */ +m.getState = "func_178487_c" +/** + * + * + * Parent Class: CompiledChunk + */ +m.setVisibility = "func_178488_a" +/** + * + * + * Parent Class: CompiledChunk + */ +m.isLayerEmpty = "func_178491_b" +/** + * + * + * Parent Class: CompiledChunk + */ +m.isLayerStarted = "func_178492_d" +/** + * + * + * Parent Class: CompiledChunk$1 + */ +m.setLayerStarted = "func_178493_c" +m.isVisible = {} +/** + * + * + * Parent Class: CompiledChunk$1 + */ +m.isVisible.CompiledChunk$1 = "func_178495_a" +/** + * + * + * Parent Class: SetVisibility + */ +m.isVisible.SetVisibility = "func_178621_a" + +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +m.uploadChunk = "func_178503_a" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +m.getDebugInfo = "func_178504_a" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +m.updateChunkNow = "func_178505_b" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +m.uploadVertexBuffer = "func_178506_a" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +m.updateChunkLater = "func_178507_a" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +m.updateTransparencyLater = "func_178509_c" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +m.uploadDisplayList = "func_178510_a" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +m.getNextChunkUpdate = "func_178511_d" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +m.clearChunkUpdates = "func_178513_e" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +m.allocateRenderBuilder = "func_178515_c" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +m.runChunkUploads = "func_178516_a" +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +m.setStatus = "func_178535_a" +m.isFinished = {} +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +m.isFinished.ChunkCompileTaskGenerator = "func_178537_h" +/** + * Returns true if this path has reached the end + * + * Parent Class: PathEntity + */ +m.isFinished.PathEntity = "func_75879_b" + +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +m.addFinishRunnable = "func_178539_a" +m.getLock = {} +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +m.getLock.ChunkCompileTaskGenerator = "func_178540_f" +/** + * + * + * Parent Class: LockCode + */ +m.getLock.LockCode = "func_180159_b" + +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +m.setRegionRenderCacheBuilder = "func_178541_a" +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +m.finish = "func_178542_e" +m.setCompiledChunk = {} +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +m.setCompiledChunk.ChunkCompileTaskGenerator = "func_178543_a" +/** + * + * + * Parent Class: RenderChunk + */ +m.setCompiledChunk.RenderChunk = "func_178580_a" + +m.getCompiledChunk = {} +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +m.getCompiledChunk.ChunkCompileTaskGenerator = "func_178544_c" +/** + * + * + * Parent Class: RenderChunk + */ +m.getCompiledChunk.RenderChunk = "func_178571_g" + +/** + * + * + * Parent Class: RenderChunk + */ +m.getVertexBufferByLayer = "func_178565_b" +/** + * + * + * Parent Class: RenderChunk + */ +m.initModelviewMatrix = "func_178567_n" +m.getPosition = {} +/** + * + * + * Parent Class: RenderChunk + */ +m.getPosition.RenderChunk = "func_178568_j" +/** + * + * + * Parent Class: ActiveRenderInfo + */ +m.getPosition.ActiveRenderInfo = "func_178804_a" +/** + * + * + * Parent Class: C07PacketPlayerDigging + */ +m.getPosition.C07PacketPlayerDigging = "func_179715_a" +/** + * + * + * Parent Class: C12PacketUpdateSign + */ +m.getPosition.C12PacketUpdateSign = "func_179722_a" +/** + * + * + * Parent Class: C08PacketPlayerBlockPlacement + */ +m.getPosition.C08PacketPlayerBlockPlacement = "func_179724_a" +/** + * + * + * Parent Class: S25PacketBlockBreakAnim + */ +m.getPosition.S25PacketBlockBreakAnim = "func_179821_b" +/** + * + * + * Parent Class: S10PacketSpawnPainting + */ +m.getPosition.S10PacketSpawnPainting = "func_179837_b" +/** + * + * + * Parent Class: DestroyBlockProgress + */ +m.getPosition.DestroyBlockProgress = "func_180246_b" +/** + * + * + * Parent Class: BlockEventData + */ +m.getPosition.BlockEventData = "func_180328_a" +/** + * "Get the position in the world. <b>{@code null} is not allowed!</b> If you are not an entity in the world + * + * Parent Class: EntityMinecartCommandBlock$1 + */ +m.getPosition.EntityMinecartCommandBlock$1 = "func_180425_c" +/** + * returns the current PathEntity target node as Vec3D + * + * Parent Class: PathEntity + */ +m.getPosition.PathEntity = "func_75878_a" + +/** + * + * + * Parent Class: RenderChunk + */ +m.isNeedsUpdate = "func_178569_m" +/** + * + * + * Parent Class: RenderChunk + */ +m.resortTransparency = "func_178570_a" +/** + * + * + * Parent Class: RenderChunk + */ +m.multModelviewMatrix = "func_178572_f" +/** + * + * + * Parent Class: RenderChunk + */ +m.preRenderBlocks = "func_178573_a" +/** + * + * + * Parent Class: RenderChunk + */ +m.makeCompileTaskChunk = "func_178574_d" +/** + * + * + * Parent Class: RenderChunk + */ +m.setNeedsUpdate = "func_178575_a" +m.setPosition = {} +/** + * + * + * Parent Class: RenderChunk + */ +m.setPosition.RenderChunk = "func_178576_a" +/** + * "Sets the x + * + * Parent Class: EntityMinecart + */ +m.setPosition.EntityMinecart = "func_70107_b" +/** + * + * + * Parent Class: Frustum + */ +m.setPosition.Frustum = "func_78547_a" + +/** + * + * + * Parent Class: RenderChunk + */ +m.setFrameIndex = "func_178577_a" +/** + * + * + * Parent Class: RenderChunk + */ +m.finishCompileTask = "func_178578_b" +/** + * + * + * Parent Class: RenderChunk + */ +m.getLockCompileTask = "func_178579_c" +/** + * + * + * Parent Class: RenderChunk + */ +m.rebuildChunk = "func_178581_b" +/** + * + * + * Parent Class: RenderChunk + */ +m.makeCompileTaskTransparency = "func_178582_e" +/** + * + * + * Parent Class: RenderChunk + */ +m.postRenderBlocks = "func_178584_a" +/** + * + * + * Parent Class: RenderChunk + */ +m.stopCompileTask = "func_178585_h" +/** + * + * + * Parent Class: ListedRenderChunk + */ +m.getDisplayList = "func_178600_a" +/** + * + * + * Parent Class: VboChunkFactory + */ +m.makeRenderChunk = "func_178602_a" +/** + * + * + * Parent Class: VisGraph + */ +m.computeVisibility = "func_178607_a" +/** + * + * + * Parent Class: SetVisibility + */ +m.setAllVisible = "func_178618_a" +/** + * + * + * Parent Class: SetVisibility + */ +m.setManyVisible = "func_178620_a" +/** + * + * + * Parent Class: ClippingHelper + */ +m.dot = "func_178624_a" +/** + * + * + * Parent Class: RenderManager + */ +m.isRenderShadow = "func_178627_a" +/** + * + * + * Parent Class: RenderManager + */ +m.setRenderPosition = "func_178628_a" +/** + * + * + * Parent Class: RenderManager + */ +m.setDebugBoundingBox = "func_178629_b" +/** + * + * + * Parent Class: RenderManager + */ +m.renderWitherSkull = "func_178630_b" +/** + * + * + * Parent Class: RenderManager + */ +m.setPlayerViewY = "func_178631_a" +/** + * + * + * Parent Class: RenderManager + */ +m.setRenderShadow = "func_178633_a" +/** + * + * + * Parent Class: RenderManager + */ +m.isDebugBoundingBox = "func_178634_b" +/** + * + * + * Parent Class: TeleportToTeam$TeamSelectionObject + */ +m.getSpectatorName = "func_178664_z_" +/** + * "Copies the angles from one object to another. This is used when objects should stay aligned with each other + * + * Parent Class: ModelBase + */ +m.copyModelAngles = "func_178685_a" +/** + * + * + * Parent Class: ModelBase + */ +m.setModelAttributes = "func_178686_a" +/** + * Renders the banner model in. + * + * Parent Class: ModelBanner + */ +m.renderBanner = "func_178687_a" +/** + * + * + * Parent Class: ModelRabbit + */ +m.setRotationOffset = "func_178691_a" +/** + * + * + * Parent Class: ModelPlayer + */ +m.postRenderArm = "func_178718_a" +m.setInvisible = {} +/** + * + * + * Parent Class: ModelPlayer + */ +m.setInvisible.ModelPlayer = "func_178719_a" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.setInvisible.EntityArmorStand = "func_82142_c" + +/** + * + * + * Parent Class: ModelPlayer + */ +m.renderDeadmau5Head = "func_178727_b" +/** + * + * + * Parent Class: ModelPlayer + */ +m.renderCape = "func_178728_c" +m.draw = {} +/** + * Draw this primitve. This is typically called only once as the generated drawing instructions are saved by the renderer and reused later. + * + * Parent Class: TexturedQuad + */ +m.draw.TexturedQuad = "func_178765_a" +/** + * Draw with the WorldRenderer + * + * @param posX X position for the render + * @param posY Y position for the render + * @param texU X position for the texture + * @param texV Y position for the texture + * @param width Width of the render + * @param height Height of the render + * @param red The red component of the render's color + * @param green The green component of the render's color + * @param blue The blue component of the render's color + * @param alpha The alpha component of the render's color + * + * Parent Class: Minecraft + */ +m.draw.Minecraft = "func_181536_a" +/** + * Draw with the WorldRenderer + * + * @param renderer The WorldRenderer's instance + * @param x X position where the render begin + * @param y Y position where the render begin + * @param width The width of the render + * @param height The height of the render + * @param red Red component of the color + * @param green Green component of the color + * @param blue Blue component of the color + * @param alpha Alpha component of the color + * + * Parent Class: RenderItem + */ +m.draw.RenderItem = "func_181565_a" +/** + * + * + * Parent Class: VertexBufferUploader + */ +m.draw.VertexBufferUploader = "func_181679_a" +/** + * Draws the data set up in this tessellator and resets the state to prepare for new drawing. + * + * Parent Class: Tessellator + */ +m.draw.Tessellator = "func_78381_a" + +/** + * + * + * Parent Class: ScoreObjective + */ +m.setRenderType = "func_178767_a" +/** + * "Creates a textured box. Args: originX + * + * Parent Class: ModelRenderer + */ +m.addBox = "func_78790_a" +m.getNameTagVisibility = {} +/** + * + * + * Parent Class: Team + */ +m.getNameTagVisibility.Team = "func_178770_i" +/** + * + * + * Parent Class: S3EPacketTeams + */ +m.getNameTagVisibility.S3EPacketTeams = "func_179814_i" + +/** + * + * + * Parent Class: Team + */ +m.getDeathMessageVisibility = "func_178771_j" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +m.setNameTagVisibility = "func_178772_a" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +m.setDeathMessageVisibility = "func_178773_b" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +m.setChatFormat = "func_178774_a" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +m.getChatFormat = "func_178775_l" +/** + * Retrieves an instance of the threadedFileIOBase. + * + * Parent Class: ThreadedFileIOBase + */ +m.getThreadedIOInstance = "func_178779_a" +/** + * "returns an AABB with corners x1 + * + * Parent Class: AxisAlignedBB + */ +m.fromBounds = "func_178781_a" +m.getBlockPos = {} +/** + * + * + * Parent Class: MovingObjectPosition + */ +m.getBlockPos.MovingObjectPosition = "func_178782_a" +/** + * + * + * Parent Class: BlockSourceImpl + */ +m.getBlockPos.BlockSourceImpl = "func_180699_d" + +/** + * + * + * Parent Class: Vec3 + */ +m.rotateYaw = "func_178785_b" +/** + * + * + * Parent Class: Vec3 + */ +m.rotatePitch = "func_178789_a" +/** + * + * + * Parent Class: ActiveRenderInfo + */ +m.getRotationZ = "func_178803_d" +/** + * + * + * Parent Class: ActiveRenderInfo + */ +m.getRotationYZ = "func_178805_e" +/** + * + * + * Parent Class: ActiveRenderInfo + */ +m.projectViewFromEntity = "func_178806_a" +/** + * + * + * Parent Class: ActiveRenderInfo + */ +m.getRotationXY = "func_178807_f" +/** + * + * + * Parent Class: ActiveRenderInfo + */ +m.getRotationX = "func_178808_b" +/** + * + * + * Parent Class: ActiveRenderInfo + */ +m.getRotationXZ = "func_178809_c" +/** + * + * + * Parent Class: Score + */ +m.setLocked = "func_178815_a" +/** + * Returns if the entity has the given ScoreObjective + * + * Parent Class: Scoreboard + */ +m.entityHasObjective = "func_178819_b" +/** + * + * + * Parent Class: Scoreboard + */ +m.getDisplaySlotStrings = "func_178821_h" +/** + * Remove the given ScoreObjective for the given Entity name. + * + * Parent Class: Scoreboard + */ +m.removeObjectiveFromEntity = "func_178822_d" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +m.setResponseTime = "func_178838_a" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +m.loadPlayerTextures = "func_178841_j" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +m.getPlayerTeam = "func_178850_i" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +m.getResponseTime = "func_178853_c" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +m.hasLocationSkin = "func_178856_e" +m.setDisplayName = {} +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +m.setDisplayName.NetworkPlayerInfo = "func_178859_a" +/** + * + * + * Parent Class: ScoreObjective + */ +m.setDisplayName.ScoreObjective = "func_96681_a" + +/** + * + * + * Parent Class: GLAllocation + */ +m.deleteDisplayLists = "func_74523_b" +/** + * + * + * Parent Class: GameSettings + */ +m.getModelParts = "func_178876_d" +/** + * + * + * Parent Class: GameSettings + */ +m.switchModelPartEnabled = "func_178877_a" +/** + * + * + * Parent Class: GameSettings + */ +m.setModelPartEnabled = "func_178878_a" +/** + * + * + * Parent Class: PlayerControllerMP + */ +m.isSpectatorMode = "func_178887_k" +/** + * Called when a player completes the destruction of a block + * + * Parent Class: PlayerControllerMP + */ +m.onPlayerDestroyBlock = "func_178888_a" +/** + * + * + * Parent Class: PlayerControllerMP + */ +m.getCurrentGameType = "func_178889_l" +/** + * + * + * Parent Class: PlayerControllerMP + */ +m.onPlayerRightClick = "func_178890_a" +/** + * + * + * Parent Class: PlayerControllerMP + */ +m.clickBlockCreative = "func_178891_a" +/** + * + * + * Parent Class: PlayerControllerMP + */ +m.isHittingPosition = "func_178893_a" +/** + * Return true when the player rightclick on an entity + * + * @param player The player's instance + * @param entityIn The entity clicked + * @param movingObject The object clicked + * + * Parent Class: PlayerControllerMP + */ +m.isPlayerRightClickingOnEntity = "func_178894_a" +/** + * + * + * Parent Class: EntityRainFX$Factory + */ +m.getEntityFX = "func_178902_a" +/** + * + * + * Parent Class: GuiUtilRenderComponents + */ +m.splitText = "func_178908_a" +/** + * + * + * Parent Class: EffectRenderer + */ +m.updateEffectLayer = "func_178922_a" +/** + * + * + * Parent Class: EffectRenderer + */ +m.tickParticle = "func_178923_d" +/** + * + * + * Parent Class: EffectRenderer + */ +m.moveToLayer = "func_178924_a" +/** + * + * + * Parent Class: EffectRenderer + */ +m.updateEffectAlphaLayer = "func_178925_a" +/** + * + * + * Parent Class: EffectRenderer + */ +m.emitParticleAtEntity = "func_178926_a" +/** + * "Spawns the relevant particle according to the particle id. + * + * @param xCoord X position of the particle + * @param yCoord Y position of the particle + * @param zCoord Z position of the particle + * @param xSpeed X speed of the particle + * @param ySpeed Y speed of the particle + * @param zSpeed Z speed of the particle + * @param parameters Parameters for the particle (color for redstone + * + * Parent Class: EffectRenderer + */ +m.spawnEffectParticle = "func_178927_a" +/** + * + * + * Parent Class: EffectRenderer + */ +m.moveToAlphaLayer = "func_178928_b" +/** + * + * + * Parent Class: EffectRenderer + */ +m.registerParticle = "func_178929_a" +/** + * + * + * Parent Class: EffectRenderer + */ +m.registerVanillaParticles = "func_178930_c" +/** + * + * + * Parent Class: EffectRenderer + */ +m.moveToNoAlphaLayer = "func_178931_c" +/** + * + * + * Parent Class: WorldRenderer + */ +m.putBrightness4 = "func_178962_a" +m.reset = {} +/** + * + * + * Parent Class: WorldRenderer + */ +m.reset.WorldRenderer = "func_178965_a" +/** + * + * + * Parent Class: MouseFilter + */ +m.reset.MouseFilter = "func_180179_a" +/** + * Resets the byte array output. + * + * Parent Class: RConOutputStream + */ +m.reset.RConOutputStream = "func_72669_b" +/** + * Resets this trackers list of combat entries + * + * Parent Class: CombatTracker + */ +m.reset.CombatTracker = "func_94549_h" + +/** + * + * + * Parent Class: WorldRenderer + */ +m.getByteBuffer = "func_178966_f" +/** + * + * + * Parent Class: WorldRenderer + */ +m.putColor4 = "func_178968_d" +/** + * + * + * Parent Class: WorldRenderer + */ +m.setTranslation = "func_178969_c" +/** + * + * + * Parent Class: WorldRenderer + */ +m.putColorRGBA = "func_178972_a" +m.getVertexFormat = {} +/** + * + * + * Parent Class: WorldRenderer + */ +m.getVertexFormat.WorldRenderer = "func_178973_g" +/** + * + * + * Parent Class: WorldRenderer$State + */ +m.getVertexFormat.WorldRenderer$State = "func_179016_d" + +/** + * + * + * Parent Class: WorldRenderer + */ +m.putNormal = "func_178975_e" +/** + * + * + * Parent Class: WorldRenderer + */ +m.finishDrawing = "func_178977_d" +/** + * + * + * Parent Class: WorldRenderer + */ +m.putColorMultiplier = "func_178978_a" +/** + * + * + * Parent Class: WorldRenderer + */ +m.getDrawMode = "func_178979_i" +/** + * + * + * Parent Class: WorldRenderer + */ +m.addVertexData = "func_178981_a" +/** + * + * + * Parent Class: WorldRenderer + */ +m.putPosition = "func_178987_a" +/** + * + * + * Parent Class: WorldRenderer + */ +m.putColor = "func_178988_b" +m.getVertexCount = {} +/** + * + * + * Parent Class: WorldRenderer + */ +m.getVertexCount.WorldRenderer = "func_178989_h" +/** + * + * + * Parent Class: WorldRenderer$State + */ +m.getVertexCount.WorldRenderer$State = "func_179014_c" + +/** + * + * + * Parent Class: WorldRenderer + */ +m.putColorRGB_F4 = "func_178990_f" +/** + * + * + * Parent Class: WorldRenderer + */ +m.setVertexState = "func_178993_a" +/** + * + * + * Parent Class: WorldRenderer + */ +m.putColorRGB_F = "func_178994_b" +/** + * + * + * Parent Class: WorldRenderer$State + */ +m.getRawBuffer = "func_179013_a" +/** + * + * + * Parent Class: TileEntityItemStackRenderer + */ +m.renderByItem = "func_179022_a" +/** + * + * + * Parent Class: EnumFaceDirection + */ +m.getVertexInformation = "func_179025_a" +/** + * + * + * Parent Class: RegionRenderCacheBuilder + */ +m.getWorldRendererByLayer = "func_179038_a" +/** + * + * + * Parent Class: RegionRenderCacheBuilder + */ +m.getWorldRendererByLayerId = "func_179039_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.clearColor = "func_179082_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.viewport = "func_179083_b" +/** + * + * + * Parent Class: GlStateManager + */ +m.disableBlend = "func_179084_k" +/** + * + * + * Parent Class: GlStateManager + */ +m.enableLight = "func_179085_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.enableTexGenCoord = "func_179087_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.enablePolygonOffset = "func_179088_q" +/** + * + * + * Parent Class: GlStateManager + */ +m.enableCull = "func_179089_o" +/** + * + * + * Parent Class: GlStateManager + */ +m.disableTexture2D = "func_179090_x" +/** + * + * + * Parent Class: GlStateManager + */ +m.enableRescaleNormal = "func_179091_B" +/** + * + * + * Parent Class: GlStateManager + */ +m.alphaFunc = "func_179092_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.setFog = "func_179093_d" +/** + * + * + * Parent Class: GlStateManager + */ +m.pushMatrix = "func_179094_E" +/** + * + * + * Parent Class: GlStateManager + */ +m.setFogDensity = "func_179095_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.loadIdentity = "func_179096_D" +/** + * + * + * Parent Class: GlStateManager + */ +m.disableDepth = "func_179097_i" +/** + * + * + * Parent Class: GlStateManager + */ +m.enableTexture2D = "func_179098_w" +/** + * + * + * Parent Class: GlStateManager + */ +m.popAttrib = "func_179099_b" +/** + * + * + * Parent Class: GlStateManager + */ +m.disableTexGenCoord = "func_179100_b" +/** + * + * + * Parent Class: GlStateManager + */ +m.disableRescaleNormal = "func_179101_C" +/** + * + * + * Parent Class: GlStateManager + */ +m.setFogStart = "func_179102_b" +/** + * + * + * Parent Class: GlStateManager + */ +m.shadeModel = "func_179103_j" +/** + * + * + * Parent Class: GlStateManager + */ +m.colorMaterial = "func_179104_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.texGen = "func_179149_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.disableFog = "func_179106_n" +/** + * + * + * Parent Class: GlStateManager + */ +m.cullFace = "func_179107_e" +/** + * + * + * Parent Class: GlStateManager + */ +m.enableNormalize = "func_179108_z" +/** + * + * + * Parent Class: GlStateManager + */ +m.translate = "func_179137_b" +/** + * + * + * Parent Class: GlStateManager + */ +m.multMatrix = "func_179110_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.blendFunc = "func_179112_b" +/** + * + * + * Parent Class: GlStateManager + */ +m.disablePolygonOffset = "func_179113_r" +m.rotate = {} +/** + * + * + * Parent Class: GlStateManager + */ +m.rotate.GlStateManager = "func_179114_b" +/** + * + * + * Parent Class: Stitcher$Holder + */ +m.rotate.Stitcher$Holder = "func_94194_d" + +/** + * + * + * Parent Class: GlStateManager + */ +m.enableColorLogic = "func_179115_u" +/** + * + * + * Parent Class: GlStateManager + */ +m.colorLogicOp = "func_179116_f" +/** + * + * + * Parent Class: GlStateManager + */ +m.resetColor = "func_179117_G" +/** + * + * + * Parent Class: GlStateManager + */ +m.disableAlpha = "func_179118_c" +/** + * + * + * Parent Class: GlStateManager + */ +m.disableColorMaterial = "func_179119_h" +/** + * + * + * Parent Class: GlStateManager + */ +m.tryBlendFuncSeparate = "func_179120_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.popMatrix = "func_179121_F" +/** + * + * + * Parent Class: GlStateManager + */ +m.disableLight = "func_179122_b" +/** + * + * + * Parent Class: GlStateManager + */ +m.pushAttrib = "func_179123_a" +m.color = {} +/** + * + * + * Parent Class: GlStateManager + */ +m.color.GlStateManager = "func_179131_c" +/** + * + * + * Parent Class: WorldRenderer + */ +m.color.WorldRenderer = "func_181669_b" + +/** + * + * + * Parent Class: GlStateManager + */ +m.texGenCoord = "func_179125_c" +/** + * + * + * Parent Class: GlStateManager + */ +m.enableDepth = "func_179126_j" +/** + * + * + * Parent Class: GlStateManager + */ +m.enableFog = "func_179127_m" +/** + * + * + * Parent Class: GlStateManager + */ +m.matrixMode = "func_179128_n" +/** + * + * + * Parent Class: GlStateManager + */ +m.disableCull = "func_179129_p" +/** + * + * + * Parent Class: GlStateManager + */ +m.ortho = "func_179130_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.depthMask = "func_179132_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.disableNormalize = "func_179133_A" +/** + * + * + * Parent Class: GlStateManager + */ +m.disableColorLogic = "func_179134_v" +/** + * + * + * Parent Class: GlStateManager + */ +m.colorMask = "func_179135_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.doPolygonOffset = "func_179136_a" +m.setActiveTexture = {} +/** + * + * + * Parent Class: GlStateManager + */ +m.setActiveTexture.GlStateManager = "func_179138_g" +/** + * Sets the current lightmap texture to the specified OpenGL constant + * + * Parent Class: OpenGlHelper + */ +m.setActiveTexture.OpenGlHelper = "func_77473_a" + +/** + * + * + * Parent Class: GlStateManager + */ +m.scale = "func_179152_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.disableLighting = "func_179140_f" +/** + * + * + * Parent Class: GlStateManager + */ +m.enableAlpha = "func_179141_d" +/** + * + * + * Parent Class: GlStateManager + */ +m.enableColorMaterial = "func_179142_g" +/** + * + * + * Parent Class: GlStateManager + */ +m.depthFunc = "func_179143_c" +/** + * + * + * Parent Class: GlStateManager + */ +m.enableLighting = "func_179145_e" +/** + * + * + * Parent Class: GlStateManager + */ +m.generateTexture = "func_179146_y" +/** + * + * + * Parent Class: GlStateManager + */ +m.enableBlend = "func_179147_l" +/** + * + * + * Parent Class: GlStateManager + */ +m.callList = "func_179148_o" +/** + * + * + * Parent Class: GlStateManager + */ +m.clearDepth = "func_179151_a" +/** + * + * + * Parent Class: GlStateManager + */ +m.setFogEnd = "func_179153_c" +/** + * + * + * Parent Class: GlStateManager$BooleanState + */ +m.setDisabled = "func_179198_a" +/** + * Register a default ItemBlock for the given Block. + * + * Parent Class: Item + */ +m.registerItemBlock = "func_179216_c" +/** + * Called when an ItemStack with NBT data is read to potentially that ItemStack's NBT data + * + * Parent Class: Item + */ +m.updateItemStackNBT = "func_179215_a" +m.onBlockDestroyed = {} +/** + * "Called when a Block is destroyed using this Item. Return true to trigger the ""Use Item"" statistic." + * + * Parent Class: Item + */ +m.onBlockDestroyed.Item = "func_179218_a" +/** + * Called when a Block is destroyed using this ItemStack + * + * Parent Class: ItemStack + */ +m.onBlockDestroyed.ItemStack = "func_179548_a" + +/** + * + * + * Parent Class: ItemArmorStand + */ +m.applyRandomRotations = "func_179221_a" +/** + * + * + * Parent Class: ItemBlock + */ +m.setTileEntityNBT = "func_179224_a" +/** + * + * + * Parent Class: ItemEditableBook + */ +m.resolveContents = "func_179229_a" +/** + * Gets the generation of the book (how many times it has been cloned) + * + * Parent Class: ItemEditableBook + */ +m.getGeneration = "func_179230_h" +/** + * + * + * Parent Class: ItemHoe + */ +m.useHoe = "func_179232_a" +/** + * + * + * Parent Class: ItemHangingEntity + */ +m.createEntity = "func_179233_a" +/** + * + * + * Parent Class: ItemDye + */ +m.applyBonemeal = "func_179234_a" +m.placeDoor = {} +/** + * + * + * Parent Class: ItemDoor + */ +m.placeDoor.ItemDoor = "func_179235_a" +/** + * builds a door of the enumerated types (empty opening is a door) + * + * Parent Class: StructureStrongholdPieces$Stronghold + */ +m.placeDoor.StructureStrongholdPieces$Stronghold = "func_74990_a" + +/** + * "Merges this NBTTagCompound with the given compound. Any sub-compounds are merged using the same methods + * + * Parent Class: NBTTagCompound + */ +m.merge = "func_179237_a" +/** + * + * + * Parent Class: EnumConnectionState + */ +m.registerPacket = "func_179245_a" +/** + * + * + * Parent Class: EnumConnectionState + */ +m.getPacketId = "func_179246_a" +/** + * + * + * Parent Class: PacketBuffer + */ +m.writeEnumValue = "func_179249_a" +m.writeByteArray = {} +/** + * + * + * Parent Class: PacketBuffer + */ +m.writeByteArray.PacketBuffer = "func_179250_a" +/** + * Writes the given byte array to the output stream + * + * Parent Class: RConOutputStream + */ +m.writeByteArray.RConOutputStream = "func_72670_a" + +/** + * + * + * Parent Class: PacketBuffer + */ +m.readByteArray = "func_179251_a" +/** + * + * + * Parent Class: PacketBuffer + */ +m.writeUuid = "func_179252_a" +/** + * + * + * Parent Class: PacketBuffer + */ +m.readUuid = "func_179253_g" +/** + * + * + * Parent Class: PacketBuffer + */ +m.writeVarLong = "func_179254_b" +/** + * + * + * Parent Class: PacketBuffer + */ +m.writeBlockPos = "func_179255_a" +/** + * + * + * Parent Class: PacketBuffer + */ +m.writeChatComponent = "func_179256_a" +/** + * + * + * Parent Class: PacketBuffer + */ +m.readEnumValue = "func_179257_a" +/** + * + * + * Parent Class: PacketBuffer + */ +m.readChatComponent = "func_179258_d" +/** + * + * + * Parent Class: PacketBuffer + */ +m.readBlockPos = "func_179259_c" +/** + * + * + * Parent Class: PacketBuffer + */ +m.readVarLong = "func_179260_f" +m.setCompressionTreshold = {} +/** + * + * + * Parent Class: NetworkManager + */ +m.setCompressionTreshold.NetworkManager = "func_179289_a" +/** + * + * + * Parent Class: NettyCompressionEncoder + */ +m.setCompressionTreshold.NettyCompressionEncoder = "func_179299_a" +/** + * + * + * Parent Class: NettyCompressionDecoder + */ +m.setCompressionTreshold.NettyCompressionDecoder = "func_179303_a" + +/** + * + * + * Parent Class: NetworkManager + */ +m.hasNoChannel = "func_179291_h" +/** + * + * + * Parent Class: NetworkManager + */ +m.getIsencrypted = "func_179292_f" +/** + * + * + * Parent Class: NetworkManager + */ +m.checkDisconnected = "func_179293_l" +/** + * "Like cartesianProduct(Class + * + * Parent Class: Cartesian + */ +m.cartesianProduct = "func_179321_a" +/** + * + * + * Parent Class: Cartesian + */ +m.createArray = "func_179319_b" +/** + * Create a new Array of type clazz with the contents of the given Iterable + * + * Parent Class: Cartesian + */ +m.toArray = "func_179322_b" +/** + * Convert an Iterable of Arrays (Object[]) to an Iterable of Lists + * + * Parent Class: Cartesian + */ +m.arraysAsLists = "func_179323_b" +/** + * + * + * Parent Class: EnumPlayerModelParts + */ +m.getPartMask = "func_179327_a" +/** + * + * + * Parent Class: EnumPlayerModelParts + */ +m.getPartId = "func_179328_b" +/** + * + * + * Parent Class: EnumPlayerModelParts + */ +m.getPartName = "func_179329_c" +/** + * Gets the relative EnumParticleTypes by id. + * + * Parent Class: EnumParticleTypes + */ +m.getParticleFromId = "func_179342_a" +m.hasArguments = {} +/** + * + * + * Parent Class: EnumParticleTypes + */ +m.hasArguments.EnumParticleTypes = "func_179343_f" +/** + * Returns whether the given token has any arguments set. + * + * Parent Class: PlayerSelector + */ +m.hasArguments.PlayerSelector = "func_82378_b" + +/** + * + * + * Parent Class: EnumParticleTypes + */ +m.getShouldIgnoreRange = "func_179344_e" +/** + * + * + * Parent Class: EnumParticleTypes + */ +m.getArgumentCount = "func_179345_d" +/** + * + * + * Parent Class: EnumParticleTypes + */ +m.getParticleName = "func_179346_b" +/** + * + * + * Parent Class: EnumParticleTypes + */ +m.getParticleID = "func_179348_c" +/** + * + * + * Parent Class: EnumParticleTypes + */ +m.getParticleNames = "func_179349_a" +/** + * Populate the given Map with the given keys and values. + * + * Parent Class: MapPopulator + */ +m.populateMap = "func_179399_a" +/** + * Create a Map from the given keys and values. This method creates a LinkedHashMap. + * + * Parent Class: MapPopulator + */ +m.createMap = "func_179400_b" +/** + * Affects the given MerchantRecipeList to possibly add or remove MerchantRecipes. + * + * Parent Class: EntityVillager$ITradeList + */ +m.modifyMerchantRecipeList = "func_179401_a" +/** + * + * + * Parent Class: EntityVillager$PriceInfo + */ +m.getPrice = "func_179412_a" +/** + * Called when no more data is available in this Iterator. + * + * Parent Class: Cartesian$Product$ProductIterator + */ +m.endOfData = "func_179422_b" +/** + * Return the max target range of the entiity (16 by default) + * + * Parent Class: EntityAIFindEntityNearestPlayer + */ +m.maxTargetRange = "func_179431_f" +/** + * + * + * Parent Class: EntityAIFindEntityNearest + */ +m.getFollowRange = "func_179438_f" +/** + * "A method used to see if an entity is a suitable target through a number of checks. Args : entity + * + * Parent Class: EntityAITarget + */ +m.isSuitableTarget = "func_75296_a" +/** + * + * + * Parent Class: EntityPigZombie$AIHurtByAggressor + */ +m.setEntityAttackTarget = "func_179446_a" +/** + * Changes task random possibility for execution + * + * Parent Class: EntityAIWander + */ +m.setExecutionChance = "func_179479_b" +/** + * Makes task to bypass chance + * + * Parent Class: EntityAIWander + */ +m.makeUpdate = "func_179480_f" +/** + * + * + * Parent Class: EntityAIMoveToBlock + */ +m.getIsAboveDestination = "func_179487_f" +/** + * Return true to set given position as destination + * + * Parent Class: EntityRabbit$AIRaidFarm + */ +m.shouldMoveTo = "func_179488_a" +/** + * "Searches and sets new destination block and returns true if a suitable block (specified in {@link net.minecraft.entity.ai.EntityAIMoveToBlock#shouldMoveTo(World + * + * Parent Class: EntityAIMoveToBlock + */ +m.searchForDestination = "func_179489_g" +/** + * + * + * Parent Class: EntityAIDoorInteract + */ +m.getBlockDoor = "func_179506_a" +/** + * All EnumFacing values for this Plane + * + * Parent Class: EnumFacing$Plane + */ +m.facings = "func_179516_a" +m.getOffset = {} +/** + * "Get the offset for this AxisDirection. 1 for POSITIVE + * + * Parent Class: EnumFacing$AxisDirection + */ +m.getOffset.EnumFacing$AxisDirection = "func_179524_a" +/** + * + * + * Parent Class: VertexFormat + */ +m.getOffset.VertexFormat = "func_181720_d" +/** + * "args: x + * + * Parent Class: RegionFile + */ +m.getOffset.RegionFile = "func_76707_e" + +/** + * + * + * Parent Class: ShapelessRecipes + */ +m.getRemainingItems = "func_179532_b" +m.addRecipes = {} +/** + * Adds the banner recipes to the CraftingManager. + * + * Parent Class: RecipesBanners + */ +m.addRecipes.RecipesBanners = "func_179534_a" +/** + * Adds the weapon recipes to the CraftingManager. + * + * Parent Class: RecipesWeapons + */ +m.addRecipes.RecipesWeapons = "func_77583_a" +/** + * Adds the tool recipes to the CraftingManager. + * + * Parent Class: RecipesTools + */ +m.addRecipes.RecipesTools = "func_77586_a" +/** + * Adds the crafting recipes to the CraftingManager. + * + * Parent Class: RecipesCrafting + */ +m.addRecipes.RecipesCrafting = "func_77589_a" +/** + * Adds the ingot recipes to the CraftingManager. + * + * Parent Class: RecipesIngots + */ +m.addRecipes.RecipesIngots = "func_77590_a" +/** + * Adds the dye recipes to the CraftingManager. + * + * Parent Class: RecipesDyes + */ +m.addRecipes.RecipesDyes = "func_77607_a" +/** + * Adds the food recipes to the CraftingManager. + * + * Parent Class: RecipesFood + */ +m.addRecipes.RecipesFood = "func_77608_a" +/** + * Adds the armor recipes to the CraftingManager. + * + * Parent Class: RecipesArmor + */ +m.addRecipes.RecipesArmor = "func_77609_a" + +/** + * Get an NBTTagCompound from this stack's NBT data. + * + * Parent Class: ItemStack + */ +m.getSubCompound = "func_179543_a" +/** + * + * + * Parent Class: ItemStack + */ +m.canDestroy = "func_179544_c" +/** + * Compares Item and damage value of the two stacks + * + * Parent Class: ItemStack + */ +m.areItemsEqual = "func_179545_c" +m.onItemUse = {} +/** + * "Called when the player uses this ItemStack on a Block (right-click). Places blocks + * + * Parent Class: ItemStack + */ +m.onItemUse.ItemStack = "func_179546_a" +/** + * Called when a Block is right-clicked with this Item + * + * Parent Class: ItemLead + */ +m.onItemUse.ItemLead = "func_180614_a" + +/** + * + * + * Parent Class: ItemStack + */ +m.getIsItemStackEqual = "func_179549_c" +/** + * + * + * Parent Class: Items + */ +m.getRegisteredItem = "func_179554_a" +/** + * Returns the names of all possible Result Types. + * + * Parent Class: CommandResultStats$Type + */ +m.getTypeNames = "func_179634_c" +/** + * Retrieves the Type indicated by the supplied name string. + * + * Parent Class: CommandResultStats$Type + */ +m.getTypeByName = "func_179635_a" +/** + * Retrieves the integer ID of the result type. + * + * Parent Class: CommandResultStats$Type + */ +m.getTypeID = "func_179636_a" +/** + * Retrieves the name of the type. + * + * Parent Class: CommandResultStats$Type + */ +m.getTypeName = "func_179637_b" +/** + * + * + * Parent Class: PlayerSelector + */ +m.getNamePredicates = "func_179647_f" +/** + * + * + * Parent Class: PlayerSelector + */ +m.getXpLevelPredicates = "func_179648_b" +/** + * + * + * Parent Class: PlayerSelector + */ +m.getGamemodePredicates = "func_179649_c" +/** + * Returns one entity of the given class that matches the given at-token. Returns null if more than one entity matches. + * + * Parent Class: PlayerSelector + */ +m.matchOneEntity = "func_179652_a" +m.parseIntWithDefault = {} +/** + * + * + * Parent Class: PlayerSelector + */ +m.parseIntWithDefault.PlayerSelector = "func_179653_a" +/** + * + * + * Parent Class: ServerAddress + */ +m.parseIntWithDefault.ServerAddress = "func_78862_a" +/** + * parses the string as integer or returns the second parameter if it fails + * + * Parent Class: MathHelper + */ +m.parseIntWithDefault.MathHelper = "func_82715_a" + +/** + * Returns the worlds to match the entities in for the specified command sender and token. This returns the sender's world if the selector specifies a location or all currently loaded worlds on the server if not. + * + * Parent Class: PlayerSelector + */ +m.getWorlds = "func_179654_a" +/** + * Checks to make sure that the specified type is valid + * + * Parent Class: PlayerSelector + */ +m.isEntityTypeValid = "func_179655_b" +/** + * Returns all entities of the given class that matches the given at-token in a list. + * + * Parent Class: PlayerSelector + */ +m.matchEntities = "func_179656_b" +/** + * + * + * Parent Class: PlayerSelector + */ +m.getScorePredicates = "func_179657_e" +/** + * + * + * Parent Class: PlayerSelector + */ +m.getTeamPredicates = "func_179659_d" +/** + * Filters the results based on the paramaters of the selector + * + * Parent Class: PlayerSelector + */ +m.filterResults = "func_179660_a" +/** + * + * + * Parent Class: PlayerSelector + */ +m.getRotationsPredicates = "func_179662_g" +/** + * Set a stat in the scoreboard + * + * @param entityID The username of the player or the UUID of an Entity + * @param objectiveName The name of the Objective + * + * Parent Class: CommandResultStats + */ +m.setScoreBoardStat = "func_179667_a" +/** + * + * + * Parent Class: CommandResultStats + */ +m.readStatsFromNBT = "func_179668_a" +/** + * Remove a stat from the scoreboard + * + * Parent Class: CommandResultStats + */ +m.removeScoreBoardStat = "func_179669_a" +/** + * + * + * Parent Class: CommandResultStats + */ +m.writeStatsToNBT = "func_179670_b" +/** + * Add all stats in the CommandResultStats + * + * Parent Class: CommandResultStats + */ +m.addAllStats = "func_179671_a" +/** + * Set the score on the ScoreBoard + * + * @param scorePoint The score to set to the score board + * + * Parent Class: CommandResultStats + */ +m.setCommandStatScore = "func_179672_a" +/** + * "Checks if entity haven't been moved when last checked and if so + * + * Parent Class: PathNavigate + */ +m.checkForStuck = "func_179677_a" +/** + * Sets vertical space requirement for path + * + * Parent Class: PathNavigate + */ +m.setHeightRequirement = "func_179678_a" +/** + * + * + * Parent Class: PathNavigateSwimmer + */ +m.getPathFinder = "func_179679_a" +/** + * Returns path to given BlockPos + * + * Parent Class: PathNavigateClimber + */ +m.getPathToPos = "func_179680_a" +/** + * "Returns true when an entity could stand at a position + * + * Parent Class: PathNavigateGround + */ +m.isSafeToStandAt = "func_179683_a" +/** + * + * + * Parent Class: PathNavigateGround + */ +m.setAvoidSun = "func_179685_e" +/** + * Gets the safe pathing Y position for the entity depending on if it can path swim or not + * + * Parent Class: PathNavigateGround + */ +m.getPathablePosY = "func_179687_p" +/** + * Returns true if an entity does not collide with any solid blocks at the position. + * + * Parent Class: PathNavigateGround + */ +m.isPositionClear = "func_179692_b" +m.getOnGround = {} +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +m.getOnGround.S18PacketEntityTeleport = "func_179697_g" +/** + * + * + * Parent Class: S14PacketEntity + */ +m.getOnGround.S14PacketEntity = "func_179742_g" + +/** + * + * + * Parent Class: S47PacketPlayerListHeaderFooter + */ +m.getHeader = "func_179700_a" +/** + * + * + * Parent Class: S47PacketPlayerListHeaderFooter + */ +m.getFooter = "func_179701_b" +/** + * + * + * Parent Class: C14PacketTabComplete + */ +m.getTargetBlock = "func_179709_b" +/** + * + * + * Parent Class: C02PacketUseEntity + */ +m.getHitVec = "func_179712_b" +/** + * + * + * Parent Class: S03PacketEnableCompression + */ +m.getCompressionTreshold = "func_179731_a" +/** + * Sets new MapData from the packet to given MapData param + * + * Parent Class: S34PacketMaps + */ +m.setMapdataTo = "func_179734_a" +/** + * + * + * Parent Class: S01PacketJoinGame + */ +m.isReducedDebugInfo = "func_179744_h" +/** + * + * + * Parent Class: S28PacketEffect + */ +m.getSoundPos = "func_179746_d" +/** + * Gets the particle arguments. Some particles rely on block and/or item ids and sometimes metadata ids to color or texture the particle. + * + * Parent Class: S2APacketParticles + */ +m.getParticleArgs = "func_179748_k" +m.getParticleType = {} +/** + * + * + * Parent Class: S2APacketParticles + */ +m.getParticleType.S2APacketParticles = "func_179749_a" +/** + * + * + * Parent Class: EntitySlime + */ +m.getParticleType.EntitySlime = "func_180487_n" + +/** + * + * + * Parent Class: S2APacketParticles + */ +m.isLongDistance = "func_179750_b" +/** + * + * + * Parent Class: S26PacketMapChunkBulk + */ +m.getChunkSize = "func_179754_d" +/** + * + * + * Parent Class: S21PacketChunkData + */ +m.getExtractedData = "func_179756_a" +/** + * + * + * Parent Class: S46PacketSetCompressionLevel + */ +m.getThreshold = "func_179760_a" +/** + * + * + * Parent Class: S38PacketPlayerListItem + */ +m.getEntries = "func_179767_a" +/** + * + * + * Parent Class: S36PacketSignEditorOpen + */ +m.getSignPosition = "func_179777_a" +/** + * + * + * Parent Class: S48PacketResourcePackSend + */ +m.getURL = "func_179783_a" +m.getHash = {} +/** + * + * + * Parent Class: S48PacketResourcePackSend + */ +m.getHash.S48PacketResourcePackSend = "func_179784_b" +/** + * Returns the hash code for this entry + * + * Parent Class: IntHashMap$Entry + */ +m.getHash.IntHashMap$Entry = "func_76031_a" + +/** + * + * + * Parent Class: S0APacketUseBed + */ +m.getBedPosition = "func_179798_a" +/** + * + * + * Parent Class: S05PacketSpawnPosition + */ +m.getSpawnPos = "func_179800_a" +/** + * + * + * Parent Class: S45PacketTitle + */ +m.getFadeOutTime = "func_179803_e" +/** + * + * + * Parent Class: S45PacketTitle + */ +m.getDisplayTime = "func_179804_d" +/** + * + * + * Parent Class: S45PacketTitle + */ +m.getFadeInTime = "func_179806_c" +m.getBlockPosition = {} +/** + * + * + * Parent Class: S24PacketBlockAction + */ +m.getBlockPosition.S24PacketBlockAction = "func_179825_a" +/** + * + * + * Parent Class: S23PacketBlockChange + */ +m.getBlockPosition.S23PacketBlockChange = "func_179827_b" + +/** + * + * + * Parent Class: S2DPacketOpenWindow + */ +m.getWindowTitle = "func_179840_c" +/** + * + * + * Parent Class: S22PacketMultiBlockChange + */ +m.getChangedBlocks = "func_179844_a" +/** + * + * + * Parent Class: VillageDoorInfo + */ +m.getDistanceToInsideBlockSq = "func_179846_b" +/** + * + * + * Parent Class: VillageDoorInfo + */ +m.getInsideOffsetX = "func_179847_f" +/** + * + * + * Parent Class: VillageDoorInfo + */ +m.getDistanceToDoorBlockSq = "func_179848_a" +/** + * + * + * Parent Class: VillageDoorInfo + */ +m.getIsDetachedFromVillageFlag = "func_179851_i" +/** + * + * + * Parent Class: VillageDoorInfo + */ +m.getDoorBlockPos = "func_179852_d" +/** + * + * + * Parent Class: VillageDoorInfo + */ +m.setIsDetachedFromVillageFlag = "func_179853_a" +/** + * + * + * Parent Class: VillageDoorInfo + */ +m.getFaceDirection = "func_179854_a" +/** + * + * + * Parent Class: VillageDoorInfo + */ +m.getInsideOffsetZ = "func_179855_g" +/** + * + * + * Parent Class: VillageDoorInfo + */ +m.getInsideBlockPos = "func_179856_e" +/** + * Returns {@link net.minecraft.village.VillageDoorInfo VillageDoorInfo} from given block position + * + * Parent Class: Village + */ +m.getDoorInfo = "func_179863_c" +/** + * "if door not existed in this village + * + * Parent Class: Village + */ +m.getExistedDoor = "func_179864_e" +/** + * + * + * Parent Class: Village + */ +m.getNearestDoor = "func_179865_b" +/** + * redirect standard streams to logger + * + * Parent Class: Bootstrap + */ +m.redirectOutputToLog = "func_179868_d" +/** + * Is Bootstrap registration already done? + * + * Parent Class: Bootstrap + */ +m.isRegistered = "func_179869_a" +/** + * + * + * Parent Class: Bootstrap + */ +m.printToSYSOUT = "func_179870_a" +/** + * + * + * Parent Class: LoggingPrintStream + */ +m.logString = "func_179882_a" +/** + * + * + * Parent Class: PropertyManager + */ +m.getLongProperty = "func_179885_a" +m.setSpeed = {} +/** + * + * + * Parent Class: EntitySlime$SlimeMoveHelper + */ +m.setSpeed.EntitySlime$SlimeMoveHelper = "func_179921_a" +/** + * Sets the speed + * + * Parent Class: PathNavigate + */ +m.setSpeed.PathNavigate = "func_75489_a" + +m.isNotColliding = {} +/** + * Checks if entity bounding box is not colliding with terrain + * + * Parent Class: EntityGhast$GhastMoveHelper + */ +m.isNotColliding.EntityGhast$GhastMoveHelper = "func_179926_b" +/** + * Checks that the entity is not colliding with any blocks / liquids + * + * Parent Class: EntityPigZombie + */ +m.isNotColliding.EntityPigZombie = "func_70058_J" + +/** + * + * + * Parent Class: S38PacketPlayerListItem$AddPlayerData + */ +m.getGameMode = "func_179960_c" +/** + * + * + * Parent Class: S38PacketPlayerListItem$AddPlayerData + */ +m.getPing = "func_179963_b" +/** + * + * + * Parent Class: S45PacketTitle$Type + */ +m.getNames = "func_179971_a" +/** + * + * + * Parent Class: ChatComponentProcessor + */ +m.processComponent = "func_179985_a" +/** + * Get the text to be inserted into Chat when the component is shift-clicked + * + * Parent Class: ChatStyle$1 + */ +m.getInsertion = "func_179986_j" +/** + * Set a text to be inserted into Chat when the component is shift-clicked + * + * Parent Class: ChatStyle + */ +m.setInsertion = "func_179989_a" +/** + * "Gets the selector of this component + * + * Parent Class: ChatComponentSelector + */ +m.getSelector = "func_179992_g" +m.setValue = {} +/** + * Sets the value displayed instead of the real score. + * + * Parent Class: ChatComponentScore + */ +m.setValue.ChatComponentScore = "func_179997_b" +/** + * Set this game rule value. + * + * Parent Class: GameRules$Value + */ +m.setValue.GameRules$Value = "func_82757_a" + +/** + * "Handles pumping inbound packets across threads by checking whether the current thread is actually the main thread for the side in question. If not + * + * Parent Class: PacketThreadUtil + */ +m.checkThreadAndEnqueue = "func_180031_a" +/** + * + * + * Parent Class: EntityMinecart$EnumMinecartType + */ +m.byNetworkID = "func_180038_a" +/** + * + * + * Parent Class: EntityMinecart$EnumMinecartType + */ +m.getNetworkID = "func_180039_a" +/** + * + * + * Parent Class: EntityRabbit$RabbitJumpHelper + */ +m.getIsJumping = "func_180067_c" +m.getSpeed = {} +/** + * + * + * Parent Class: EntityRabbit$EnumMoveType + */ +m.getSpeed.EntityRabbit$EnumMoveType = "func_180072_a" +/** + * + * + * Parent Class: EntityMoveHelper + */ +m.getSpeed.EntityMoveHelper = "func_75638_b" + +m.getDuration = {} +/** + * + * + * Parent Class: EntityRabbit$EnumMoveType + */ +m.getDuration.EntityRabbit$EnumMoveType = "func_180075_c" +/** + * + * + * Parent Class: S1DPacketEntityEffect + */ +m.getDuration.S1DPacketEntityEffect = "func_180755_e" +/** + * + * + * Parent Class: PotionEffect + */ +m.getDuration.PotionEffect = "func_76459_b" + +/** + * + * + * Parent Class: EntitySpawnPlacementRegistry + */ +m.getPlacementForEntity = "func_180109_a" +/** + * + * + * Parent Class: DataWatcher + */ +m.getWatchableObjectRotations = "func_180115_h" +/** + * Returns the ID assigned to it's string representation + * + * Parent Class: EntityList + */ +m.getIDFromString = "func_180122_a" +/** + * + * + * Parent Class: EntityList + */ +m.isStringEntityName = "func_180123_a" +/** + * + * + * Parent Class: EntityList + */ +m.getEntityNameList = "func_180124_b" +/** + * + * + * Parent Class: EntityList + */ +m.isStringValidEntityName = "func_180125_b" +/** + * Returns EntityLivingBase assigned for this CombatTracker + * + * Parent Class: CombatTracker + */ +m.getFighter = "func_180135_h" +/** + * + * + * Parent Class: DamageSource + */ +m.isCreativePlayer = "func_180136_u" +/** + * Sets this EntityDamageSource as originating from Thorns armor + * + * Parent Class: EntityDamageSource + */ +m.setIsThornsDamage = "func_180138_v" +/** + * + * + * Parent Class: EntityDamageSource + */ +m.getIsThornsDamage = "func_180139_w" +/** + * + * + * Parent Class: Potion + */ +m.getPotionFromResourceLocation = "func_180142_b" +/** + * + * + * Parent Class: PotionEffect + */ +m.getIsShowParticles = "func_180154_f" +m.toNBT = {} +/** + * + * + * Parent Class: LockCode + */ +m.toNBT.LockCode = "func_180157_a" +/** + * + * + * Parent Class: MobSpawnerBaseLogic$WeightedRandomMinecart + */ +m.toNBT.MobSpawnerBaseLogic$WeightedRandomMinecart = "func_98220_a" + +/** + * + * + * Parent Class: LockCode + */ +m.fromNBT = "func_180158_b" +/** + * "Returns a random choice from the input items + * + * Parent Class: WeightedRandom + */ +m.getRandomItem = "func_76273_a" +/** + * + * + * Parent Class: DifficultyInstance + */ +m.getAdditionalDifficulty = "func_180168_b" +/** + * + * + * Parent Class: DifficultyInstance + */ +m.calculateAdditionalDifficulty = "func_180169_a" +/** + * + * + * Parent Class: DifficultyInstance + */ +m.getClampedAdditionalDifficulty = "func_180170_c" +/** + * + * + * Parent Class: InventoryHelper + */ +m.spawnItemStack = "func_180173_a" +/** + * + * + * Parent Class: InventoryHelper + */ +m.dropInventoryItems = "func_180176_a" +/** + * + * + * Parent Class: MathHelper + */ +m.getRandomUuid = "func_180182_a" +/** + * + * + * Parent Class: MathHelper + */ +m.normalizeAngle = "func_180184_b" +/** + * + * + * Parent Class: MathHelper + */ +m.epsilonEquals = "func_180185_a" +/** + * + * + * Parent Class: MathHelper + */ +m.getPositionRandom = "func_180186_a" +/** + * + * + * Parent Class: MathHelper + */ +m.getCoordinateRandom = "func_180187_c" +m.downloadResourcePack = {} +/** + * + * + * Parent Class: HttpUtil + */ +m.downloadResourcePack.HttpUtil = "func_180192_a" +/** + * + * + * Parent Class: ResourcePackRepository + */ +m.downloadResourcePack.ResourcePackRepository = "func_180601_a" + +/** + * + * + * Parent Class: JsonUtils + */ +m.isBoolean = "func_180199_c" +/** + * + * + * Parent Class: ClassInheritanceMultiMap + */ +m.createLookup = "func_180213_a" +/** + * + * + * Parent Class: ClassInheritanceMultiMap + */ +m.getByClass = "func_180215_b" +/** + * Removes a block and triggers the appropriate events + * + * Parent Class: ItemInWorldManager + */ +m.removeBlock = "func_180235_c" +/** + * "Activate the clicked on block + * + * Parent Class: ItemInWorldManager + */ +m.activateBlockOrUseItem = "func_180236_a" +/** + * Attempts to harvest a block + * + * Parent Class: ItemInWorldManager + */ +m.tryHarvestBlock = "func_180237_b" +/** + * Stops the block breaking process + * + * Parent Class: ItemInWorldManager + */ +m.cancelDestroyingBlock = "func_180238_e" +/** + * + * + * Parent Class: ItemInWorldManager + */ +m.survivalOrAdventure = "func_180239_c" +/** + * + * + * Parent Class: ServerHangWatchdog + */ +m.scheduleHalt = "func_180248_a" +/** + * + * + * Parent Class: GameRules + */ +m.addGameRule = "func_180262_a" +/** + * + * + * Parent Class: GameRules + */ +m.areSameType = "func_180264_a" +/** + * + * + * Parent Class: Teleporter + */ +m.placeInPortal = "func_180266_a" +/** + * + * + * Parent Class: SpawnerAnimals + */ +m.canCreatureTypeSpawnAtLocation = "func_180267_a" +/** + * + * + * Parent Class: BiomeGenBase + */ +m.getBiomeFromBiomeList = "func_180276_a" +/** + * + * + * Parent Class: BiomeGenTaiga + */ +m.createMutatedBiome = "func_180277_d" +m.getColorAtPos = {} +/** + * + * + * Parent Class: BiomeColorHelper$ColorResolver + */ +m.getColorAtPos.BiomeColorHelper$ColorResolver = "func_180283_a" +/** + * + * + * Parent Class: BiomeColorHelper + */ +m.getColorAtPos.BiomeColorHelper = "func_180285_a" + +m.getGrassColorAtPos = {} +/** + * + * + * Parent Class: BiomeColorHelper + */ +m.getGrassColorAtPos.BiomeColorHelper = "func_180286_a" +/** + * + * + * Parent Class: BiomeGenSwamp + */ +m.getGrassColorAtPos.BiomeGenSwamp = "func_180627_b" + +m.getFoliageColorAtPos = {} +/** + * + * + * Parent Class: BiomeColorHelper + */ +m.getFoliageColorAtPos.BiomeColorHelper = "func_180287_b" +/** + * + * + * Parent Class: BiomeGenSwamp + */ +m.getFoliageColorAtPos.BiomeGenSwamp = "func_180625_c" + +/** + * + * + * Parent Class: BiomeColorHelper + */ +m.getWaterColorAtPos = "func_180288_c" +m.decorate = {} +/** + * + * + * Parent Class: BiomeDecorator + */ +m.decorate.BiomeDecorator = "func_180292_a" +/** + * + * + * Parent Class: BiomeGenTaiga + */ +m.decorate.BiomeGenTaiga = "func_180624_a" + +m.getBiomeGenerator = {} +/** + * + * + * Parent Class: WorldChunkManager + */ +m.getBiomeGenerator.WorldChunkManager = "func_180300_a" +/** + * Returns the biome generator + * + * Parent Class: WorldChunkManagerHell + */ +m.getBiomeGenerator.WorldChunkManagerHell = "func_180631_a" + +/** + * Adds a shaped recipe to the games recipe list. + * + * Parent Class: CraftingManager + */ +m.addRecipe = "func_92103_a" +/** + * Retrieves an enchantment by using its location name. + * + * Parent Class: Enchantment + */ +m.getEnchantmentByLocation = "func_180305_b" +/** + * Retrieves an Enchantment from the enchantmentsList + * + * Parent Class: Enchantment + */ +m.getEnchantmentById = "func_180306_c" +/** + * Returns the level of the Depth Strider enchantment. + * + * Parent Class: EnchantmentHelper + */ +m.getDepthStriderModifier = "func_180318_b" +/** + * Returns the 'Water Breathing' modifier of enchantments on player equipped armors. + * + * Parent Class: EnchantmentHelper + */ +m.getRespiration = "func_180319_a" +/** + * + * + * Parent Class: MerchantRecipe + */ +m.getMaxTradeUses = "func_180320_f" +/** + * + * + * Parent Class: MerchantRecipe + */ +m.getToolUses = "func_180321_e" +/** + * + * + * Parent Class: MerchantRecipe + */ +m.getRewardsExp = "func_180322_j" +/** + * Get the last world Z coordinate that belongs to this Chunk + * + * Parent Class: ChunkCoordIntPair + */ +m.getZEnd = "func_180330_f" +/** + * Get the last world X coordinate that belongs to this Chunk + * + * Parent Class: ChunkCoordIntPair + */ +m.getXEnd = "func_180332_e" +/** + * Get the first world Z coordinate that belongs to this Chunk + * + * Parent Class: ChunkCoordIntPair + */ +m.getZStart = "func_180333_d" +/** + * Get the first world X coordinate that belongs to this Chunk + * + * Parent Class: ChunkCoordIntPair + */ +m.getXStart = "func_180334_c" +/** + * + * + * Parent Class: Explosion + */ +m.clearAffectedBlockPositions = "func_180342_d" +/** + * + * + * Parent Class: BlockRailBase$Rail + */ +m.hasRailAt = "func_180359_a" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +m.hasModifier = "func_180374_a" +/** + * Returns the Block in the blockRegistry with the specified name. + * + * @param blockName The block's name to register + * + * Parent Class: Blocks + */ +m.getRegisteredBlock = "func_180383_a" +/** + * + * + * Parent Class: EntityLookHelper + */ +m.getLookPosZ = "func_180421_g" +/** + * + * + * Parent Class: EntityLookHelper + */ +m.getLookPosY = "func_180422_f" +/** + * + * + * Parent Class: EntityLookHelper + */ +m.getLookPosX = "func_180423_e" +/** + * + * + * Parent Class: EntityLookHelper + */ +m.getIsLooking = "func_180424_b" +/** + * + * + * Parent Class: EntityArrow + */ +m.setPositionAndRotation2 = "func_180426_a" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.isImmuneToExplosions = "func_180427_aV" +/** + * + * + * Parent Class: EntityZombie + */ +m.playStepSound = "func_180429_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.fall = "func_180430_e" +/** + * + * + * Parent Class: Entity + */ +m.isEntityInvulnerable = "func_180431_b" +/** + * Prepares this entity in new dimension by copying NBT data from entity in old dimension + * + * Parent Class: Entity + */ +m.copyDataFromOld = "func_180432_n" +/** + * + * + * Parent Class: EntityBoat + */ +m.updateFallState = "func_180433_a" +/** + * Renders the particle + * + * Parent Class: EntityParticleEmitter + */ +m.renderParticle = "func_180434_a" +/** + * Sets the particle's icon. + * + * Parent Class: EntityFX + */ +m.setParticleIcon = "func_180435_a" +/** + * + * + * Parent Class: EntityRenderer + */ +m.enableLightmap = "func_180436_i" +/** + * + * + * Parent Class: EntityRenderer + */ +m.renderCloudsCheck = "func_180437_a" +/** + * + * + * Parent Class: EntityRenderer + */ +m.getNightVisionBrightness = "func_180438_a" +/** + * + * + * Parent Class: WorldManager + */ +m.broadcastSound = "func_180440_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.preRenderDamagedBlocks = "func_180443_s" +/** + * + * + * Parent Class: RenderGlobal + */ +m.renderStars = "func_180444_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.renderCloudsFancy = "func_180445_c" +/** + * + * + * Parent Class: RenderGlobal + */ +m.renderEntities = "func_180446_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.renderClouds = "func_180447_b" +/** + * + * + * Parent Class: RenderGlobal + */ +m.renderSkyEnd = "func_180448_r" +/** + * + * + * Parent Class: RenderGlobal + */ +m.renderWorldBorder = "func_180449_a" +/** + * + * + * Parent Class: RenderItem + */ +m.renderItemAndEffectIntoGUI = "func_180450_b" +/** + * + * + * Parent Class: RenderItem + */ +m.renderEffect = "func_180451_a" +/** + * + * + * Parent Class: RenderItem + */ +m.setupGuiTransform = "func_180452_a" +/** + * Renders the stack size and/or damage bar for the given ItemStack. + * + * Parent Class: RenderItem + */ +m.renderItemOverlayIntoGUI = "func_180453_a" +/** + * "Render single line string by setting GL color + * + * Parent Class: FontRenderer + */ +m.renderString = "func_180455_b" +/** + * + * + * Parent Class: EntityMinecartTNT + */ +m.getMinecartType = "func_180456_s" +/** + * + * + * Parent Class: EntityMinecartTNT + */ +m.getDefaultDisplayTile = "func_180457_u" +/** + * + * + * Parent Class: EntityMinecart + */ +m.getMinecart = "func_180458_a" +/** + * Moves a minecart that is not attached to a rail + * + * Parent Class: EntityMinecart + */ +m.moveDerailedMinecart = "func_180459_n" +/** + * "Returns true if automation can extract the given item in the given slot from the given side. Args: slot + * + * Parent Class: ISidedInventory + */ +m.canExtractItem = "func_180461_b" +/** + * "Returns true if automation can insert the given item in the given slot from the given side. Args: slot + * + * Parent Class: ISidedInventory + */ +m.canInsertItem = "func_180462_a" +/** + * + * + * Parent Class: ISidedInventory + */ +m.getSlotsForFace = "func_180463_a" +/** + * + * + * Parent Class: INetHandlerLoginClient + */ +m.handleEnableCompression = "func_180464_a" +/** + * + * + * Parent Class: EntityEnderEye + */ +m.moveTowards = "func_180465_a" +/** + * + * + * Parent Class: EntityMagmaCube + */ +m.handleJumpLava = "func_180466_bG" +/** + * Return null if bed is invalid + * + * Parent Class: EntityPlayer + */ +m.getBedSpawnLocation = "func_180467_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.displayGui = "func_180468_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.trySleep = "func_180469_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.getBedLocation = "func_180470_cg" +/** + * Block hardness will be further counted in net/minecraft/block/Block.getPlayerRelativeBlockHardness + * + * Parent Class: EntityPlayer + */ +m.getToolDigEfficiency = "func_180471_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.displayVillagerTradeGui = "func_180472_a" +/** + * + * + * Parent Class: GuiIngame + */ +m.renderPortal = "func_180474_b" +/** + * + * + * Parent Class: GuiIngame + */ +m.renderScoreboard = "func_180475_a" +/** + * + * + * Parent Class: GuiIngame + */ +m.renderPumpkinOverlay = "func_180476_e" +/** + * + * + * Parent Class: GuiIngame + */ +m.renderPlayerStats = "func_180477_d" +/** + * Renders a Vignette arount the entire screen that changes with light level. + * + * @param lightLevel The current brightness + * @param scaledRes The current resolution of the game + * + * Parent Class: GuiIngame + */ +m.renderVignette = "func_180480_a" +/** + * Gives armor or weapon for entity based on given DifficultyInstance + * + * Parent Class: EntityZombie + */ +m.setEquipmentBasedOnDifficulty = "func_180481_a" +/** + * "Called only once on an entity when first time spawned + * + * Parent Class: EntityVillager + */ +m.onInitialSpawn = "func_180482_a" +/** + * Enchants Entity's current equipments based on given DifficultyInstance + * + * Parent Class: EntityLiving + */ +m.setEnchantmentBasedOnDifficulty = "func_180483_b" +/** + * + * + * Parent Class: EntitySilverfish + */ +m.getBlockPathWeight = "func_180484_a" +/** + * + * + * Parent Class: EntityCreature + */ +m.isWithinHomeDistanceFromPosition = "func_180485_d" +/** + * + * + * Parent Class: EntityCreature + */ +m.getHomePosition = "func_180486_cf" +m.spawnParticles = {} +/** + * + * + * Parent Class: EntityVillager + */ +m.spawnParticles.EntityVillager = "func_180489_a" +/** + * + * + * Parent Class: BlockRedstoneOre + */ +m.spawnParticles.BlockRedstoneOre = "func_180691_e" + +/** + * + * + * Parent Class: ChunkCache + */ +m.getBiomeGenForCoords = "func_180494_b" +/** + * + * + * Parent Class: World + */ +m.notifyBlockOfStateChange = "func_180496_d" +/** + * + * + * Parent Class: WorldServer + */ +m.scheduleBlockUpdate = "func_180497_b" +/** + * + * + * Parent Class: World + */ +m.playAuxSFXAtEntity = "func_180498_a" +/** + * + * + * Parent Class: World + */ +m.getStrongholdPos = "func_180499_a" +/** + * + * + * Parent Class: World + */ +m.checkLightFor = "func_180500_c" +/** + * + * + * Parent Class: World + */ +m.isBlockinHighHumidity = "func_180502_D" +/** + * + * + * Parent Class: WorldClient + */ +m.invalidateRegionAndSetBlock = "func_180503_b" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getTabCompletions = "func_180506_a" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setResourcePack = "func_180507_a_" +/** + * + * + * Parent Class: Minecraft + */ +m.getTwitchDetails = "func_180509_L" +/** + * + * + * Parent Class: Minecraft + */ +m.drawSplashScreen = "func_180510_a" +/** + * Called when the player is hitting a block with an item. + * + * Parent Class: PlayerControllerMP + */ +m.clickBlock = "func_180511_b" +/** + * + * + * Parent Class: PlayerControllerMP + */ +m.onPlayerDamageBlock = "func_180512_c" +/** + * + * + * Parent Class: ChunkProviderServer + */ +m.getStrongholdGen = "func_180513_a" +/** + * + * + * Parent Class: ChunkProviderServer + */ +m.recreateStructures = "func_180514_a" +/** + * "Possibly reshapes the biome if appropriate for the biome type + * + * Parent Class: ChunkProviderGenerate + */ +m.replaceBlocksForBiome = "func_180517_a" +/** + * "Generates a bare-bones chunk of nothing but stone or ocean blocks + * + * Parent Class: ChunkProviderGenerate + */ +m.setBlocksInChunk = "func_180518_a" +/** + * + * + * Parent Class: CrashReportCategory + */ +m.getCoordinateInfo = "func_85074_a" +/** + * Get a list of possible completion options for when the TAB key is pressed. This can be a list of commands if no command is specified or a partial command is specified. It could also be a list of arguments for the command that is specified. + * + * @param sender The command sender who is requesting tab completion results. + * @param input The input that was passed when the TAB key was pressed. + * @param pos The block pos that the players mouse is over. <b>Could be null!</b> + * + * Parent Class: ICommandManager + */ +m.getTabCompletionOptions = "func_180524_a" +/** + * Return a list of options when the user types TAB + * + * Parent Class: CommandEffect + */ +m.addTabCompletionOptions = "func_180525_a" +/** + * + * + * Parent Class: CommandBase + */ +m.parseBoolean = "func_180527_d" +/** + * Builds a string starting at startPos + * + * Parent Class: CommandBase + */ +m.buildString = "func_180529_a" +/** + * + * + * Parent Class: CommandBase + */ +m.join = "func_180530_a" +/** + * + * + * Parent Class: CommandDifficulty + */ +m.getDifficultyFromCommand = "func_180531_e" +/** + * Adds block hit particles for the specified block + * + * Parent Class: EffectRenderer + */ +m.addBlockHitEffects = "func_180532_a" +/** + * + * + * Parent Class: EffectRenderer + */ +m.addBlockDestroyEffects = "func_180533_a" +/** + * + * + * Parent Class: TileEntitySkullRenderer + */ +m.renderSkull = "func_180543_a" +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +m.renderTileEntity = "func_180546_a" +m.normalize = {} +/** + * + * + * Parent Class: ClippingHelperImpl + */ +m.normalize.ClippingHelperImpl = "func_180547_a" +/** + * Normalizes the vector to a length of 1 (except if it is the zero vector) + * + * Parent Class: Vec3 + */ +m.normalize.Vec3 = "func_72432_b" + +/** + * + * + * Parent Class: Render + */ +m.bindEntityTexture = "func_180548_c" +/** + * + * + * Parent Class: Render + */ +m.renderShadowBlock = "func_180549_a" +/** + * + * + * Parent Class: RendererLivingEntity + */ +m.unsetScoreTeamColor = "func_180565_e" +/** + * Draws the ray from the dragon to it's crystal + * + * Parent Class: RenderDragon + */ +m.drawRechargeRay = "func_180574_a" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.loadSprite = "func_180598_a" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.updateAnimationInterpolated = "func_180599_n" +/** + * + * + * Parent Class: TextureUtil + */ +m.allocateTextureImpl = "func_180600_a" +m.getCenter = {} +/** + * + * + * Parent Class: Village + */ +m.getCenter.Village = "func_180608_a" +/** + * + * + * Parent Class: StructureBoundingBox + */ +m.getCenter.StructureBoundingBox = "func_180717_f" + +/** + * + * + * Parent Class: VillageCollection + */ +m.addDoorsAround = "func_180609_b" +/** + * + * + * Parent Class: Container + */ +m.isValidDragMode = "func_180610_a" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +m.spawnNewEntity = "func_180613_a" +/** + * + * + * Parent Class: ItemSlab + */ +m.tryPlace = "func_180615_a" +/** + * + * + * Parent Class: ItemBucket + */ +m.tryPlaceContainedLiquid = "func_180616_a" +/** + * + * + * Parent Class: ItemDye + */ +m.spawnBonemealParticles = "func_180617_a" +/** + * + * + * Parent Class: ItemLead + */ +m.attachToFence = "func_180618_a" +/** + * Get the coordinates of the Block in the center of this chunk with the given Y coordinate + * + * Parent Class: ChunkCoordIntPair + */ +m.getCenterBlock = "func_180619_a" +/** + * + * + * Parent Class: Teleporter + */ +m.placeInExistingPortal = "func_180620_b" +/** + * + * + * Parent Class: SpawnerAnimals + */ +m.getRandomChunkPosition = "func_180621_a" +/** + * + * + * Parent Class: BiomeGenTaiga + */ +m.genTerrainBlocks = "func_180622_a" +/** + * + * + * Parent Class: BiomeGenSwamp + */ +m.pickRandomFlower = "func_180623_a" +/** + * Gets a floating point representation of this biome's temperature + * + * Parent Class: BiomeGenBase + */ +m.getFloatTemperature = "func_180626_a" +/** + * "Given x + * + * Parent Class: BiomeGenBase + */ +m.generateBiomeTerrain = "func_180628_b" +/** + * + * + * Parent Class: WorldChunkManagerHell + */ +m.findBiomePosition = "func_180630_a" +/** + * + * + * Parent Class: Block + */ +m.setDefaultState = "func_180632_j" +/** + * "Called by ItemBlocks after a block is set in the world + * + * Parent Class: BlockPistonBase + */ +m.onBlockPlacedBy = "func_180633_a" +/** + * Spawns the given ItemStack as an EntityItem into the World at the given position + * + * Parent Class: Block + */ +m.spawnAsEntity = "func_180635_a" +/** + * Ray traces through the blocks collision from start vector to end vector returning a ray trace hit. + * + * Parent Class: BlockPistonMoving + */ +m.collisionRayTrace = "func_180636_a" +/** + * Spawns the given amount of experience into the World as XP orb entities + * + * Parent Class: Block + */ +m.dropXpOnBlockBreak = "func_180637_b" +/** + * Add all collision boxes of this Block to the list that intersect with the given mask. + * + * Parent Class: BlockPistonExtension + */ +m.addCollisionBoxesToList = "func_180638_a" +/** + * + * + * Parent Class: BlockPistonMoving + */ +m.onBlockActivated = "func_180639_a" +m.getCollisionBoundingBox = {} +/** + * + * + * Parent Class: BlockPistonMoving + */ +m.getCollisionBoundingBox.BlockPistonMoving = "func_180640_a" +/** + * Returns the collision bounding box for this entity + * + * Parent Class: EntityMinecart + */ +m.getCollisionBoundingBox.EntityMinecart = "func_70046_E" + +/** + * + * + * Parent Class: BlockJukebox + */ +m.getComparatorInputOverride = "func_180641_l" +/** + * "Called by ItemBlocks just before a block is actually set in the world + * + * Parent Class: BlockPistonBase + */ +m.onBlockPlaced = "func_180642_a" +/** + * + * + * Parent Class: BlockRedstoneLight + */ +m.createStackedBlock = "func_180643_i" +/** + * + * + * Parent Class: BlockLilyPad + */ +m.getRenderColor = "func_180644_h" +/** + * "Called randomly when setTickRandomly is set to true (used by e.g. crops to grow + * + * Parent Class: BlockTripWireHook + */ +m.randomTick = "func_180645_a" +/** + * + * + * Parent Class: BlockTrapDoor + */ +m.getSelectedBoundingBox = "func_180646_a" +/** + * Get the hardness of this Block relative to the ability of the given player + * + * Parent Class: Block + */ +m.getPlayerRelativeBlockHardness = "func_180647_a" +/** + * Called on both Client and Server when World#addBlockEvent is called + * + * Parent Class: BlockPistonBase + */ +m.onBlockEventReceived = "func_180648_a" +m.onBlockClicked = {} +/** + * + * + * Parent Class: BlockStairs + */ +m.onBlockClicked.BlockStairs = "func_180649_a" +/** + * "If not creative + * + * Parent Class: ItemInWorldManager + */ +m.onBlockClicked.ItemInWorldManager = "func_180784_a" + +m.updateTick = {} +/** + * + * + * Parent Class: BlockVine + */ +m.updateTick.BlockVine = "func_180650_b" +/** + * The update tick for the ingame UI + * + * Parent Class: GuiIngame + */ +m.updateTick.GuiIngame = "func_73831_a" + +/** + * Gets the metadata of the item this Block can drop. This method is called when the block gets destroyed. It returns the metadata of the dropped item based on the old metadata of the block. + * + * Parent Class: BlockCarpet + */ +m.damageDropped = "func_180651_a" +/** + * Called when this Block is destroyed by an Explosion + * + * Parent Class: BlockTNT + */ +m.onBlockDestroyedByExplosion = "func_180652_a" +/** + * Spawns this Block's drops into the World as EntityItems. + * + * Parent Class: BlockPistonMoving + */ +m.dropBlockAsItemWithChance = "func_180653_a" +/** + * + * + * Parent Class: BlockPistonMoving + */ +m.setBlockBoundsBasedOnState = "func_180654_a" +/** + * + * + * Parent Class: BlockTorch + */ +m.randomDisplayTick = "func_180655_c" +/** + * + * + * Parent Class: BlockTripWireHook + */ +m.getWeakPower = "func_180656_a" +/** + * + * + * Parent Class: BlockVine + */ +m.harvestBlock = "func_180657_a" +/** + * Block's chance to react to a living entity falling on it. + * + * Parent Class: BlockSlime + */ +m.onFallenUpon = "func_180658_a" +/** + * Get the Item that this Block should drop when harvested. + * + * Parent Class: BlockPistonMoving + */ +m.getItemDropped = "func_180660_a" +/** + * + * + * Parent Class: BlockPistonMoving + */ +m.createBlockState = "func_180661_e" +/** + * + * + * Parent Class: BlockPistonMoving + */ +m.breakBlock = "func_180663_b" +/** + * + * + * Parent Class: BlockWeb + */ +m.getBlockLayer = "func_180664_k" +/** + * Returns the cubic AABB inset by 1/8 on all sides + * + * Parent Class: BlockBasePressurePlate + */ +m.getSensitiveAABB = "func_180667_a" +/** + * + * + * Parent Class: BlockBasePressurePlate + */ +m.setBlockBoundsBasedOnState0 = "func_180668_d" +/** + * + * + * Parent Class: BlockPressurePlateWeighted + */ +m.computeRedstoneStrength = "func_180669_e" +/** + * + * + * Parent Class: BlockTallGrass + */ +m.canUseBonemeal = "func_180670_a" +/** + * + * + * Parent Class: BlockCrops + */ +m.getGrowthChance = "func_180672_a" +/** + * + * + * Parent Class: BlockPumpkin + */ +m.trySpawnGolem = "func_180673_e" +/** + * + * + * Parent Class: BlockRedstoneRepeater + */ +m.getPoweredState = "func_180674_e" +/** + * + * + * Parent Class: BlockRedstoneRepeater + */ +m.getUnpoweredState = "func_180675_k" +/** + * + * + * Parent Class: BlockChest + */ +m.getLockableContainer = "func_180676_d" +/** + * + * + * Parent Class: BlockDaylightDetector + */ +m.updatePower = "func_180677_d" +/** + * + * + * Parent Class: BlockJukebox + */ +m.dropRecord = "func_180678_e" +/** + * + * + * Parent Class: BlockSkull + */ +m.checkWitherSpawn = "func_180679_a" +/** + * + * + * Parent Class: BlockButton + */ +m.checkForArrows = "func_180680_f" +/** + * + * + * Parent Class: BlockButton + */ +m.updateBlockBounds = "func_180681_d" +/** + * + * + * Parent Class: BlockCake + */ +m.eatCake = "func_180682_b" +/** + * + * + * Parent Class: BlockDragonEgg + */ +m.checkFall = "func_180683_d" +/** + * + * + * Parent Class: BlockDragonEgg + */ +m.teleport = "func_180684_e" +/** + * + * + * Parent Class: BlockFalling + */ +m.canFallInto = "func_180685_d" +/** + * + * + * Parent Class: BlockFire + */ +m.setFireInfo = "func_180686_a" +/** + * + * + * Parent Class: BlockLiquid + */ +m.getFlowVector = "func_180687_h" +/** + * + * + * Parent Class: BlockLiquid + */ +m.triggerMixEffects = "func_180688_d" +/** + * + * + * Parent Class: BlockLiquid + */ +m.getFlowDirection = "func_180689_a" +/** + * + * + * Parent Class: BlockDynamicLiquid + */ +m.placeStaticBlock = "func_180690_f" +/** + * + * + * Parent Class: BlockTrapDoor + */ +m.setBounds = "func_180693_d" +/** + * + * + * Parent Class: BlockPistonBase + */ +m.getFacingFromEntity = "func_180695_a" +/** + * + * + * Parent Class: BlockPistonBase + */ +m.canPush = "func_180696_a" +/** + * + * + * Parent Class: BlockRailBase$Rail + */ +m.findRailAt = "func_180697_b" +/** + * Recursively called by generate() + * + * Parent Class: MapGenStructure + */ +m.recursiveGenerate = "func_180701_a" +/** + * + * + * Parent Class: MapGenStructure + */ +m.getClosestStrongholdPos = "func_180706_b" +/** + * Writes a GameProfile to an NBTTagCompound. + * + * Parent Class: NBTUtil + */ +m.writeGameProfile = "func_180708_a" +/** + * + * + * Parent Class: WorldGenDoublePlant + */ +m.setPlantType = "func_180710_a" +/** + * + * + * Parent Class: JsonToNBT + */ +m.getTagFromJson = "func_180713_a" +m.writeString = {} +/** + * + * + * Parent Class: PacketBuffer + */ +m.writeString.PacketBuffer = "func_180714_a" +/** + * Writes the given String to the output stream + * + * Parent Class: RConOutputStream + */ +m.writeString.RConOutputStream = "func_72671_a" + +m.getBufferData = {} +/** + * + * + * Parent Class: S3FPacketCustomPayload + */ +m.getBufferData.S3FPacketCustomPayload = "func_180735_b" +/** + * + * + * Parent Class: C17PacketCustomPayload + */ +m.getBufferData.C17PacketCustomPayload = "func_180760_b" + +/** + * + * + * Parent Class: S3CPacketUpdateScore + */ +m.getScoreAction = "func_180751_d" +m.getLines = {} +/** + * + * + * Parent Class: S33PacketUpdateSign + */ +m.getLines.S33PacketUpdateSign = "func_180753_b" +/** + * + * + * Parent Class: C12PacketUpdateSign + */ +m.getLines.C12PacketUpdateSign = "func_180768_b" + +/** + * + * + * Parent Class: StructureComponent + */ +m.getBoundingBoxCenter = "func_180776_a" +/** + * + * + * Parent Class: StructureComponent + */ +m.randomlyRareFillWithBlocks = "func_180777_a" +/** + * + * + * Parent Class: GenLayer + */ +m.initializeAllBiomeGenerators = "func_180781_a" +/** + * + * + * Parent Class: WorldInfo + */ +m.setDifficultyLocked = "func_180783_e" +/** + * + * + * Parent Class: ItemInWorldManager + */ +m.blockRemoving = "func_180785_a" +/** + * + * + * Parent Class: ActiveRenderInfo + */ +m.getBlockAtEntityViewpoint = "func_180786_a" +/** + * + * + * Parent Class: ResourcePackListEntry + */ +m.drawEntry = "func_180790_a" +/** + * + * + * Parent Class: Potion + */ +m.affectEntity = "func_180793_a" +/** + * + * + * Parent Class: GuiOverlayDebug + */ +m.renderDebugInfoLeft = "func_180798_a" +/** + * + * + * Parent Class: Entity + */ +m.isInLava = "func_180799_ab" +/** + * + * + * Parent Class: Entity + */ +m.getTeleportDirection = "func_181012_aH" +/** + * Set the render yaw offset + * + * @param offset The render yaw offset + * + * Parent Class: EntityLivingBase + */ +m.setRenderYawOffset = "func_181013_g" +/** + * "Marks the entity as being inside a portal + * + * Parent Class: Entity + */ +m.setPortal = "func_181015_d" +/** + * + * + * Parent Class: TileEntityBanner + */ +m.setBaseColorAndPatterns = "func_181020_a" +/** + * + * + * Parent Class: EntityRenderer + */ +m.stopUseShader = "func_181022_b" +/** + * + * + * Parent Class: RenderGlobal + */ +m.updateTileEntities = "func_181023_a" +/** + * "Gets whether the armor stand has marker enabled. If true + * + * Parent Class: EntityArmorStand + */ +m.hasMarker = "func_181026_s" +/** + * "Marker defines where if true + * + * Parent Class: EntityArmorStand + */ +m.setMarker = "func_181027_m" +/** + * Reset the GuiPlayerTabOverlay's message header and footer + * + * Parent Class: GuiIngame + */ +m.resetPlayersOverlayFooterHeader = "func_181029_i" +/** + * + * + * Parent Class: GuiPlayerTabOverlay + */ +m.resetFooterHeader = "func_181030_a" +/** + * + * + * Parent Class: EntityWither + */ +m.canDestroyBlock = "func_181033_a" +/** + * Get if RCON command events should be broadcast to ops + * + * Parent Class: MinecraftServer + */ +m.shouldBroadcastRconToOps = "func_181034_q" +/** + * Get if native transport should be used. Native transport means linux server performance improvements and optimized packet sending/receiving on linux + * + * Parent Class: MinecraftServer + */ +m.shouldUseNativeTransport = "func_181035_ah" +/** + * "Return an ItemStack with the NBTTag of the TileEntity (""Owner"" if the block is a skull) + * + * @param itemIn The item from the block picked + * @param meta Metadata of the item + * @param tileEntityIn TileEntity of the block picked" + * + * Parent Class: Minecraft + */ +m.pickBlockWithNBT = "func_181036_a" +/** + * Return the player's GameProfile properties + * + * Parent Class: Minecraft + */ +m.getProfileProperties = "func_181037_M" +/** + * Return isHittingBlock + * + * Parent Class: PlayerControllerMP + */ +m.getIsHittingBlock = "func_181040_m" +/** + * Return true if the server is a LAN server + * + * Parent Class: ServerData + */ +m.isOnLAN = "func_181041_d" +/** + * If true the {@link TileEntitySpecialRenderer} will always be rendered while the player is in the render bounding box {@link TileEntity#getRenderBoundingBox()} and his squared distance with the {@link TileEntity} is smaller than {@link TileEntity#getMaxRenderDistanceSquared()}. + * + * Parent Class: TileEntitySpecialRenderer + */ +m.forceTileEntityRender = "func_181055_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.getPlayerList = "func_181057_v" +/** + * + * + * Parent Class: EnumFacing + */ +m.getFacingFromAxis = "func_181076_a" +/** + * + * + * Parent Class: BlockContainer + */ +m.isInvalidNeighbor = "func_181086_a" +/** + * + * + * Parent Class: BlockContainer + */ +m.hasInvalidNeighbor = "func_181087_e" +/** + * Create a new NetworkManager from the server host and connect it to the server + * + * @param address The address of the server + * @param serverPort The server port + * @param useNativeTransport True if the client use the native transport system + * + * Parent Class: NetworkManager + */ +m.createNetworkManagerAndConnect = "func_181124_a" +/** + * Return true if the clouds should be rendered + * + * Parent Class: GameSettings + */ +m.shouldRenderClouds = "func_181147_e" +/** + * Return true if the client connect to a server using the native transport system + * + * Parent Class: GameSettings + */ +m.isUsingNativeTransport = "func_181148_f" +/** + * + * + * Parent Class: ClassInheritanceMultiMap + */ +m.initializeClassLookup = "func_181157_b" +/** + * + * + * Parent Class: MathHelper + */ +m.atan2 = "func_181159_b" +/** + * + * + * Parent Class: Potion + */ +m.getPotionLocations = "func_181168_c" +/** + * Return the musicTicker's instance + * + * Parent Class: Minecraft + */ +m.getMusicTicker = "func_181535_r" +/** + * Set if the player is connected to a realms server + * + * @param isConnected The value that set if the player is connected to a realms server or not + * + * Parent Class: Minecraft + */ +m.setConnectedToRealms = "func_181537_a" +/** + * Return the current action's name + * + * Parent Class: Minecraft + */ +m.getCurrentAction = "func_181538_aA" +/** + * Return the FrameTimer's instance + * + * Parent Class: Minecraft + */ +m.getFrameTimer = "func_181539_aj" +/** + * Return true if the player is connected to a realms server + * + * Parent Class: Minecraft + */ +m.isConnectedToRealms = "func_181540_al" +/** + * Warning this value may not be respected in all cases as it is still hardcoded in many places. + * + * Parent Class: World + */ +m.setSeaLevel = "func_181544_b" +/** + * + * + * Parent Class: World + */ +m.getSeaLevel = "func_181545_F" +/** + * + * + * Parent Class: GuiOverlayDebug + */ +m.getFrameColor = "func_181552_c" +/** + * + * + * Parent Class: GuiOverlayDebug + */ +m.renderLagometer = "func_181554_e" +/** + * Render the given char + * + * Parent Class: FontRenderer + */ +m.renderChar = "func_181559_a" +/** + * + * + * Parent Class: EntityRenderer + */ +m.updateCameraAndRender = "func_181560_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.drawSelectionBoundingBox = "func_181561_a" +/** + * "Returns RenderChunk offset from given RenderChunk in given direction + * + * Parent Class: RenderGlobal + */ +m.getRenderChunkOffset = "func_181562_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.drawOutlinedBoundingBox = "func_181563_a" +/** + * "Run a task and return the result + * + * Parent Class: Util + */ +m.runTask = "func_181617_a" +/** + * Return true if an entity can be spawned inside the block (used to get the player's bed spawn location) + * + * Parent Class: BlockSign + */ +m.canSpawnInBlock = "func_181623_g" +/** + * + * + * Parent Class: AxisAlignedBB + */ +m.hasNaN = "func_181656_b" +/** + * + * + * Parent Class: WorldRenderer + */ +m.pos = "func_181662_b" +/** + * + * + * Parent Class: WorldRenderer + */ +m.normal = "func_181663_c" +/** + * + * + * Parent Class: WorldRenderer + */ +m.getBufferSize = "func_181664_j" +/** + * + * + * Parent Class: WorldRenderer + */ +m.nextVertexFormatIndex = "func_181667_k" +/** + * + * + * Parent Class: WorldRenderer + */ +m.begin = "func_181668_a" +/** + * + * + * Parent Class: WorldRenderer + */ +m.growBuffer = "func_181670_b" +/** + * + * + * Parent Class: WorldRenderer + */ +m.lightmap = "func_181671_a" +/** + * + * + * Parent Class: WorldRenderer + */ +m.getVertexState = "func_181672_a" +/** + * + * + * Parent Class: WorldRenderer + */ +m.tex = "func_181673_a" +/** + * + * + * Parent Class: WorldRenderer + */ +m.sortVertexData = "func_181674_a" +/** + * + * + * Parent Class: WorldRenderer + */ +m.endVertex = "func_181675_d" +m.getTransform = {} +/** + * + * + * Parent Class: ModelBlock + */ +m.getTransform.ModelBlock = "func_181681_a" +/** + * + * + * Parent Class: ItemCameraTransforms + */ +m.getTransform.ItemCameraTransforms = "func_181688_b" + +/** + * + * + * Parent Class: ModelBlock + */ +m.getAllTransforms = "func_181682_g" +/** + * + * + * Parent Class: ItemCameraTransforms + */ +m.applyTransform = "func_181689_a" +/** + * + * + * Parent Class: RenderChunk + */ +m.getBlockPosOffset16 = "func_181701_a" +/** + * + * + * Parent Class: VertexFormat + */ +m.getIntegerSize = "func_181719_f" +/** + * + * + * Parent Class: VertexFormat + */ +m.addElement = "func_181721_a" +/** + * + * + * Parent Class: VertexBuffer + */ +m.bufferData = "func_181722_a" +/** + * + * + * Parent Class: ClassInheritanceMultiMap + */ +m.addForClass = "func_181743_a" +/** + * Return the array of frames + * + * Parent Class: FrameTimer + */ +m.getFrames = "func_181746_c" +/** + * Add a frame at the next index in the array frames + * + * @param runningTime The game's uptime in nanoseconds + * + * Parent Class: FrameTimer + */ +m.addFrame = "func_181747_a" +/** + * Return a value from time and multiplier to display the lagometer + * + * @param time The time corresponding to the frame + * @param multiplier Use to multiply + * + * Parent Class: FrameTimer + */ +m.getLagometerValue = "func_181748_a" +/** + * Return the last index used when 240 frames have been set + * + * Parent Class: FrameTimer + */ +m.getLastIndex = "func_181749_a" +/** + * Change 240 to 0 + * + * @param rawIndex The index to parse + * + * Parent Class: FrameTimer + */ +m.parseIndex = "func_181751_b" +m.getInteger = {} +/** + * "Get an Integer from the cache if it exists + * + * Parent Class: IntegerCache + */ +m.getInteger.IntegerCache = "func_181756_a" +/** + * "Retrieves an integer value using the specified key + * + * Parent Class: NBTTagCompound + */ +m.getInteger.NBTTagCompound = "func_74762_e" + +/** + * + * + * Parent Class: MathHelper + */ +m.hsvToRGB = "func_181758_c" +/** + * Get if console command events should be broadcast to ops + * + * Parent Class: MinecraftServer + */ +m.shouldBroadcastConsoleToOps = "func_183002_r" +/** + * Return true if only one scale is negative + * + * @param itemTranformVec The ItemTransformVec3f instance + * + * Parent Class: RenderItem + */ +m.isThereOneNegativeScale = "func_183005_a" +m.bypassesPlayerLimit = {} +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.bypassesPlayerLimit.ServerConfigurationManager = "func_183023_f" +/** + * + * + * Parent Class: UserListOpsEntry + */ +m.bypassesPlayerLimit.UserListOpsEntry = "func_183024_b" +/** + * + * + * Parent Class: UserListOps + */ +m.bypassesPlayerLimit.UserListOps = "func_183026_b" + +/** + * "Keep only the 10 most recent resources packs + * + * Parent Class: ResourcePackRepository + */ +m.deleteOldServerResourcesPacks = "func_183028_i" +/** + * + * + * Parent Class: OpenGlHelper + */ +m.getCpu = "func_183029_j" +/** + * Set the gui to the specified width and height + * + * @param w The width of the screen + * @param h The height of the screen + * + * Parent Class: undefined + */ +m.setGuiSize = "func_183500_a" +/** + * + * + * Parent Class: IPlayerUsage + */ +m.addServerStatsToSnooper = "func_70000_a" +/** + * + * + * Parent Class: IPlayerUsage + */ +m.addServerTypeToSnooper = "func_70001_b" +/** + * Returns whether snooping is enabled or not. + * + * Parent Class: IPlayerUsage + */ +m.isSnooperEnabled = "func_70002_Q" +m.canCommandSenderUseCommand = {} +/** + * "Returns {@code true} if the CommandSender is allowed to execute the command + * + * Parent Class: Entity + */ +m.canCommandSenderUseCommand.Entity = "func_70003_b" +/** + * Returns true if the given command sender is allowed to use this command. + * + * Parent Class: CommandBanPlayer + */ +m.canCommandSenderUseCommand.CommandBanPlayer = "func_71519_b" + +/** + * Clears the RCon log + * + * Parent Class: RConConsoleSource + */ +m.resetLog = "func_70007_b" +/** + * Gets the contents of the RCon log + * + * Parent Class: RConConsoleSource + */ +m.getLogContents = "func_70008_c" +/** + * "Gets the distance to the position. Args: x + * + * Parent Class: Entity + */ +m.getDistance = "func_70011_f" +/** + * Sets the location and Yaw/Pitch of an entity in the world + * + * Parent Class: EntityPainting + */ +m.setLocationAndAngles = "func_70012_b" +/** + * Gets how bright this entity is. + * + * Parent Class: EntityFireworkRocket + */ +m.getBrightness = "func_70013_c" +/** + * (abstract) Protected helper method to write subclass entity data to NBT. + * + * Parent Class: EntityPotion + */ +m.writeEntityToNBT = "func_70014_b" +/** + * "Sets entity to burn for x amount of seconds + * + * Parent Class: Entity + */ +m.setFire = "func_70015_d" +/** + * "Sets the velocity to the args. Args: x + * + * Parent Class: EntityThrowable + */ +m.setVelocity = "func_70016_h" +/** + * Sets that this entity has been attacked. + * + * Parent Class: EntityLivingBase + */ +m.setBeenAttacked = "func_70018_K" +/** + * + * + * Parent Class: EntityHorse + */ +m.setEating = "func_70019_c" +/** + * Return the Entity parts making up this Entity (currently only for dragons) + * + * Parent Class: EntityDragon + */ +m.getParts = "func_70021_al" +m.getEntityString = {} +/** + * Returns the string that identifies this Entity's class + * + * Parent Class: Entity + */ +m.getEntityString.Entity = "func_70022_Q" +/** + * Gets the string representation of a specific entity. + * + * Parent Class: EntityList + */ +m.getEntityString.EntityList = "func_75621_b" + +/** + * "Adds to the current velocity of the entity. Args: x + * + * Parent Class: EntityHanging + */ +m.addVelocity = "func_70024_g" +/** + * Checks if this entity is either in water or on an open air block in rain (used in wolves). + * + * Parent Class: Entity + */ +m.isWet = "func_70026_G" +/** + * Returns true if Entity argument is equal to this Entity + * + * Parent Class: EntityDragonPart + */ +m.isEntityEqual = "func_70028_i" +/** + * Gets called every tick from main Entity class + * + * Parent Class: EntityWaterMob + */ +m.onEntityUpdate = "func_70030_z" +/** + * Set sprinting switch for Entity. + * + * Parent Class: EntityLivingBase + */ +m.setSprinting = "func_70031_b" +/** + * Returns the distance to the entity. Args: entity + * + * Parent Class: Entity + */ +m.getDistanceToEntity = "func_70032_d" +/** + * Sets the head's yaw rotation of the entity. + * + * Parent Class: EntityLivingBase + */ +m.setRotationYawHead = "func_70034_d" +m.getInventory = {} +/** + * returns the inventory of this entity (only used in EntityPlayerMP it seems) + * + * Parent Class: EntityPlayer + */ +m.getInventory.EntityPlayer = "func_70035_c" +/** + * "returns a list if itemStacks + * + * Parent Class: Container + */ +m.getInventory.Container = "func_75138_a" + +/** + * (abstract) Protected helper method to read subclass entity data from NBT. + * + * Parent Class: EntityPotion + */ +m.readEntityFromNBT = "func_70037_a" +/** + * "Checks if the offset position from the entity's current position is inside of liquid. Args: x + * + * Parent Class: Entity + */ +m.isOffsetPositionInLiquid = "func_70038_c" +/** + * "Either write this entity to the NBT tag given and return true + * + * Parent Class: EntityLeashKnot + */ +m.writeToNBTOptional = "func_70039_c" +/** + * returns a (normalized) vector of where this entity is looking + * + * Parent Class: EntityLivingBase + */ +m.getLookVec = "func_70040_Z" +/** + * returns if this entity triggers Block.onEntityWalking on the blocks they walk on. used for spiders and wolves to prevent them from trampling crops + * + * Parent Class: EntityArrow + */ +m.canTriggerWalking = "func_70041_e_" +/** + * Returns the Y offset from the entity's position for any entity riding this one. + * + * Parent Class: EntitySpider + */ +m.getMountedYOffset = "func_70042_X" +/** + * + * + * Parent Class: EntityBoat + */ +m.updateRiderPosition = "func_70043_V" +/** + * Called whenever the entity is walking inside of lava. + * + * Parent Class: Entity + */ +m.setOnFireFromLava = "func_70044_A" +/** + * + * + * Parent Class: Entity + */ +m.isImmuneToFire = "func_70045_F" +/** + * + * + * Parent Class: EntityArrow + */ +m.getEyeHeight = "func_70047_e" +/** + * Returns a new NBTTagList filled with the specified floats + * + * Parent Class: Entity + */ +m.newFloatNBTList = "func_70049_a" +/** + * + * + * Parent Class: Entity + */ +m.setAir = "func_70050_g" +/** + * Get if the Entity is sprinting. + * + * Parent Class: Entity + */ +m.isSprinting = "func_70051_ag" +/** + * "Enable or disable a entity flag + * + * Parent Class: Entity + */ +m.setFlag = "func_70052_a" +/** + * Checks if the current block the entity is within of the specified material type + * + * Parent Class: Entity + */ +m.isInsideOfMaterial = "func_70055_a" +/** + * Setups the entity to do the hurt animation. Only used by packets in multiplayer. + * + * Parent Class: EntityMinecart + */ +m.performHurtAnimation = "func_70057_ab" +/** + * Used in both water and by flying objects + * + * Parent Class: Entity + */ +m.moveFlying = "func_70060_a" +/** + * "Sets the held item + * + * Parent Class: EntityPlayer + */ +m.setCurrentItemOrArmor = "func_70062_b" +/** + * Keeps moving the entity up so it isn't colliding with blocks and other requirements for this entity to be spawned (only actually used on players though its also on Entity) + * + * Parent Class: EntityPlayer + */ +m.preparePlayerToSpawn = "func_70065_x" +/** + * Removes fire from entity. + * + * Parent Class: Entity + */ +m.extinguish = "func_70066_B" +/** + * Returns true if other Entities should be prevented from moving through this Entity. + * + * Parent Class: EntityWitherSkull + */ +m.canBeCollidedWith = "func_70067_L" +/** + * Returns the squared distance to the entity. Args: entity + * + * Parent Class: Entity + */ +m.getDistanceSqToEntity = "func_70068_e" +/** + * + * + * Parent Class: EntityFireworkRocket + */ +m.getBrightnessForRender = "func_70070_b" +m.onUpdate = {} +/** + * Called to update the entity's position/logic. + * + * Parent Class: EntityEnderPearl + */ +m.onUpdate.EntityEnderPearl = "func_70071_h_" +/** + * + * + * Parent Class: PlayerManager$PlayerInstance + */ +m.onUpdate.PlayerManager$PlayerInstance = "func_73254_a" +/** + * Handles the food game logic. + * + * Parent Class: FoodStats + */ +m.onUpdate.FoodStats = "func_75118_a" +/** + * + * + * Parent Class: PotionEffect + */ +m.onUpdate.PotionEffect = "func_76455_a" +/** + * Called each tick as long the item is on a player inventory. Uses by maps to check if is on a player hand and update it's contents. + * + * Parent Class: Item + */ +m.onUpdate.Item = "func_77663_a" + +/** + * Returns if this entity is in water and will end up adding the waters velocity to the entity + * + * Parent Class: EntityItem + */ +m.handleWaterMovement = "func_70072_I" +/** + * This method gets called when the entity kills another one. + * + * Parent Class: EntityPlayer + */ +m.onKillEntity = "func_70074_a" +/** + * "If returns false + * + * Parent Class: EntityFireworkRocket + */ +m.canAttackWithItem = "func_70075_an" +/** + * sets the dead flag. Used when you fall off the bottom of the world. + * + * Parent Class: EntityLivingBase + */ +m.kill = "func_70076_C" +/** + * Called when a lightning bolt hits the entity. + * + * Parent Class: EntityVillager + */ +m.onStruckByLightning = "func_70077_a" +/** + * "Called when a player mounts an entity. e.g. mounts a pig + * + * Parent Class: EntityWither + */ +m.mountEntity = "func_70078_a" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.getRotationYawHead = "func_70079_am" +/** + * Sets the entity's position and rotation. + * + * Parent Class: Entity + */ +m.setPositionAndRotation = "func_70080_a" +/** + * Will deal the specified amount of damage to the entity if the entity isn't immune to fire damage. Args: amountDamage + * + * Parent Class: EntityItem + */ +m.dealFireDamage = "func_70081_e" +/** + * Adds 15% to the entity's yaw and subtracts 15% from the pitch. Clamps pitch from -90 to 90. Both arguments in degrees. + * + * Parent Class: Entity + */ +m.setAngles = "func_70082_c" +/** + * Returns true if the flag is active for the entity. Known flags: 0) is burning; 1) is sneaking; 2) is riding something; 3) is sprinting; 4) is eating + * + * Parent Class: Entity + */ +m.getFlag = "func_70083_f" +/** + * "Adds a value to the player score. Currently not actually used and the entity passed in does nothing. Args: entity + * + * Parent Class: EntityPlayer + */ +m.addToPlayerScore = "func_70084_c" +/** + * "Called when a player interacts with a mob. e.g. gets milk from a cow + * + * Parent Class: EntityVillager + */ +m.interact = "func_70085_c" +/** + * + * + * Parent Class: Entity + */ +m.getAir = "func_70086_ai" +/** + * creates a NBT list from the array of doubles passed to this function + * + * Parent Class: Entity + */ +m.newDoubleNBTList = "func_70087_a" +/** + * + * + * Parent Class: EntityWitherSkull + */ +m.entityInit = "func_70088_a" +/** + * Checks whether target entity is alive. + * + * Parent Class: EntityLivingBase + */ +m.isEntityAlive = "func_70089_S" +/** + * Checks if this entity is inside water (if inWater field is true as a result of handleWaterMovement() returning true) + * + * Parent Class: EntitySquid + */ +m.isInWater = "func_70090_H" +/** + * "Tries to moves the entity by the passed in displacement. Args: x + * + * Parent Class: EntityHanging + */ +m.moveEntity = "func_70091_d" +/** + * Checks if this entity is inside of an opaque block + * + * Parent Class: EntityPlayer + */ +m.isEntityInsideOpaqueBlock = "func_70094_T" +/** + * Sets the sneaking flag. + * + * Parent Class: Entity + */ +m.setSneaking = "func_70095_a" +/** + * + * + * Parent Class: Entity + */ +m.getDataWatcher = "func_70096_w" +/** + * Called when the entity is attacked. + * + * Parent Class: EntityWitherSkull + */ +m.attackEntityFrom = "func_70097_a" +/** + * Handles updating while being ridden by an entity + * + * Parent Class: EntityPlayer + */ +m.updateRidden = "func_70098_U" +/** + * Drops an item at the position of the entity. + * + * Parent Class: Entity + */ +m.entityDropItem = "func_70099_a" +/** + * Called by a player entity when they collide with an entity + * + * Parent Class: EntityArrow + */ +m.onCollideWithPlayer = "func_70100_b_" +/** + * "Sets the rotation of the entity. Args: yaw + * + * Parent Class: Entity + */ +m.setRotation = "func_70101_b" +/** + * + * + * Parent Class: EntityFireworkRocket + */ +m.handleStatusUpdate = "func_70103_a" +/** + * Returns true if this entity should push and be pushed by other entities when colliding. + * + * Parent Class: EntityMinecart + */ +m.canBePushed = "func_70104_M" +/** + * Will get destroyed next tick. + * + * Parent Class: EntityPlayer + */ +m.setDead = "func_70106_y" +/** + * Applies a velocity to each of the entities pushing them away from each other. Args: entity + * + * Parent Class: EntitySlime + */ +m.applyEntityCollision = "func_70108_f" +/** + * Sets the Entity inside a web block. + * + * Parent Class: EntityPlayer + */ +m.setInWeb = "func_70110_aj" +/** + * + * + * Parent Class: EntityFireball + */ +m.getCollisionBorderSize = "func_70111_Y" +/** + * Checks if the entity is in range to render by using the past in distance and comparing it to its average edge length * 64 * renderDistanceWeight Args: distance + * + * Parent Class: EntityThrowable + */ +m.isInRangeToRenderDist = "func_70112_a" +/** + * + * + * Parent Class: Entity + */ +m.isEating = "func_70113_ah" +/** + * "Returns a boundingBox used to collide the entity with other entities and blocks. This enables the entity to be pushable on contact + * + * Parent Class: EntityMinecart + */ +m.getCollisionBox = "func_70114_g" +/** + * "Returns true if the entity is riding another entity + * + * Parent Class: Entity + */ +m.isRiding = "func_70115_ae" +/** + * + * + * Parent Class: EntityPotion + */ +m.getVelocity = "func_70182_d" +/** + * + * + * Parent Class: EntityPotion + */ +m.getInaccuracy = "func_70183_g" +m.onImpact = {} +/** + * Called when this EntityThrowable hits a block or entity. + * + * Parent Class: EntityPotion + */ +m.onImpact.EntityPotion = "func_70184_a" +/** + * Called when this EntityFireball hits a block or entity. + * + * Parent Class: EntityWitherSkull + */ +m.onImpact.EntityWitherSkull = "func_70227_a" + +/** + * Gets the amount of gravity to apply to the thrown entity with each tick. + * + * Parent Class: EntityPotion + */ +m.getGravityVelocity = "func_70185_h" +/** + * "Similar to setArrowHeading + * + * Parent Class: EntityThrowable + */ +m.setThrowableHeading = "func_70186_c" +/** + * Returns the damage value of the thrown potion that this EntityPotion represents. + * + * Parent Class: EntityPotion + */ +m.getPotionDamage = "func_70196_i" +m.setDamage = {} +/** + * + * + * Parent Class: EntityArrow + */ +m.setDamage.EntityArrow = "func_70239_b" +/** + * Sets the current amount of damage the minecart has taken. Decreases over time. The cart breaks when this is over 40. + * + * Parent Class: EntityMinecart + */ +m.setDamage.EntityMinecart = "func_70492_c" + +/** + * Sets the amount of knockback the arrow applies when it hits a mob. + * + * Parent Class: EntityArrow + */ +m.setKnockbackStrength = "func_70240_a" +/** + * Whether the arrow has a stream of critical hit particles flying behind it. + * + * Parent Class: EntityArrow + */ +m.getIsCritical = "func_70241_g" +m.getDamage = {} +/** + * + * + * Parent Class: EntityArrow + */ +m.getDamage.EntityArrow = "func_70242_d" +/** + * Gets the current amount of damage the minecart has taken. Decreases over time. The cart breaks when this is over 40. + * + * Parent Class: EntityMinecart + */ +m.getDamage.EntityMinecart = "func_70491_i" + +/** + * Whether the arrow has a stream of critical hit particles flying behind it. + * + * Parent Class: EntityArrow + */ +m.setIsCritical = "func_70243_d" +/** + * Sets the time to count down from since the last time entity was hit. + * + * Parent Class: EntityBoat + */ +m.setTimeSinceHit = "func_70265_b" +/** + * Sets the damage taken from the last hit. + * + * Parent Class: EntityBoat + */ +m.setDamageTaken = "func_70266_a" +/** + * Gets the forward direction of the entity. + * + * Parent Class: EntityBoat + */ +m.getForwardDirection = "func_70267_i" +/** + * Gets the time since the last hit. + * + * Parent Class: EntityBoat + */ +m.getTimeSinceHit = "func_70268_h" +/** + * Sets the forward direction of the entity. + * + * Parent Class: EntityBoat + */ +m.setForwardDirection = "func_70269_c" +/** + * true if no player in boat + * + * Parent Class: EntityBoat + */ +m.setIsBoatEmpty = "func_70270_d" +/** + * Gets the damage taken from the last hit. + * + * Parent Class: EntityBoat + */ +m.getDamageTaken = "func_70271_g" +/** + * sets the age of the item so that it'll despawn one minute after it has been dropped (instead of five). Used when items are dropped from players in creative mode + * + * Parent Class: EntityItem + */ +m.setAgeToCreativeDespawnTime = "func_70288_d" +/** + * Tries to merge this item with the item passed as the parameter. Returns true if successful. Either this item or the other item will be removed from the world. + * + * Parent Class: EntityItem + */ +m.combineItems = "func_70289_a" +/** + * "Returns the maximum stack size for a inventory slot. Seems to always be 64 + * + * Parent Class: InventoryCraftResult + */ +m.getInventoryStackLimit = "func_70297_j_" +m.decrStackSize = {} +/** + * Removes up to a specified number of items from an inventory slot and returns them in a new stack. + * + * Parent Class: InventoryCraftResult + */ +m.decrStackSize.InventoryCraftResult = "func_70298_a" +/** + * Decrease the size of the stack in slot (first int arg) by the amount of the second int arg. Returns the new stack. + * + * Parent Class: Slot + */ +m.decrStackSize.Slot = "func_75209_a" + +/** + * Sets the given item stack to the specified slot in the inventory (can be crafting or armor sections). + * + * Parent Class: InventoryCraftResult + */ +m.setInventorySlotContents = "func_70299_a" +/** + * Do not make give this method the name canInteractWith because it clashes with Container + * + * Parent Class: InventoryCraftResult + */ +m.isUseableByPlayer = "func_70300_a" +/** + * Returns the stack in the given slot. + * + * Parent Class: InventoryCraftResult + */ +m.getStackInSlot = "func_70301_a" +/** + * Returns the number of slots in the inventory. + * + * Parent Class: InventoryCraftResult + */ +m.getSizeInventory = "func_70302_i_" +/** + * Removes a stack from the given slot and returns it. + * + * Parent Class: InventoryCraftResult + */ +m.removeStackFromSlot = "func_70304_b" +/** + * Decrement the number of animations remaining. Only called on client side. This is used to handle the animation of receiving a block. + * + * Parent Class: InventoryPlayer + */ +m.decrementAnimations = "func_70429_k" +m.getTotalArmorValue = {} +/** + * "Based on the damage values and maximum damage values of each armor item + * + * Parent Class: InventoryPlayer + */ +m.getTotalArmorValue.InventoryPlayer = "func_70430_l" +/** + * Returns the current armor value as determined by a call to InventoryPlayer.getTotalArmorValue + * + * Parent Class: EntityPlayer + */ +m.getTotalArmorValue.EntityPlayer = "func_70658_aO" + +/** + * Returns true if the specified ItemStack exists in the inventory. + * + * Parent Class: InventoryPlayer + */ +m.hasItemStack = "func_70431_c" +/** + * stores an itemstack in the users inventory + * + * Parent Class: InventoryPlayer + */ +m.storeItemStack = "func_70432_d" +/** + * Drop all armor and main inventory items. + * + * Parent Class: InventoryPlayer + */ +m.dropAllItems = "func_70436_m" +/** + * "Set the stack helds by mouse + * + * Parent Class: InventoryPlayer + */ +m.setItemStack = "func_70437_b" +/** + * returns a player armor item (as itemstack) contained in specified armor slot. + * + * @param slotIn the slot index requested + * + * Parent Class: InventoryPlayer + */ +m.armorItemInSlot = "func_70440_f" +/** + * "Adds the item stack to the inventory + * + * Parent Class: InventoryPlayer + */ +m.addItemStackToInventory = "func_70441_a" +/** + * Returns the first item stack that is empty. + * + * Parent Class: InventoryPlayer + */ +m.getFirstEmptyStack = "func_70447_i" +/** + * Returns the item stack currently held by the player. + * + * Parent Class: InventoryPlayer + */ +m.getCurrentItem = "func_70448_g" +m.damageArmor = {} +/** + * Damages armor in each slot by the specified amount. + * + * Parent Class: InventoryPlayer + */ +m.damageArmor.InventoryPlayer = "func_70449_g" +/** + * + * + * Parent Class: EntityPlayer + */ +m.damageArmor.EntityPlayer = "func_70675_k" + +/** + * Get the size of the player hotbar inventory + * + * Parent Class: InventoryPlayer + */ +m.getHotbarSize = "func_70451_h" +/** + * This function stores as many items of an ItemStack as possible in a matching slot and returns the quantity of left over items. + * + * Parent Class: InventoryPlayer + */ +m.storePartialItemStack = "func_70452_e" +/** + * "Switch the current item to the next one or the previous one + * + * @param direction Direction to switch (1 + * + * Parent Class: InventoryPlayer + */ +m.changeCurrentItem = "func_70453_c" +/** + * Copy the ItemStack contents from another InventoryPlayer instance + * + * Parent Class: InventoryPlayer + */ +m.copyInventory = "func_70455_b" +/** + * "Returns the itemstack in the slot specified (Top left is 0 + * + * Parent Class: InventoryCrafting + */ +m.getStackInRowAndColumn = "func_70463_b" +/** + * + * + * Parent Class: InventoryMerchant + */ +m.getCurrentRecipe = "func_70468_h" +/** + * "if par1 slot has changed + * + * Parent Class: InventoryMerchant + */ +m.inventoryResetNeededOnSlotChange = "func_70469_d" +/** + * + * + * Parent Class: InventoryMerchant + */ +m.resetRecipeAndSlots = "func_70470_g" +m.setCurrentRecipeIndex = {} +/** + * + * + * Parent Class: InventoryMerchant + */ +m.setCurrentRecipeIndex.InventoryMerchant = "func_70471_c" +/** + * + * + * Parent Class: ContainerMerchant + */ +m.setCurrentRecipeIndex.ContainerMerchant = "func_75175_c" + +/** + * + * + * Parent Class: InventoryEnderChest + */ +m.loadInventoryFromNBT = "func_70486_a" +/** + * + * + * Parent Class: InventoryEnderChest + */ +m.saveInventoryToNBT = "func_70487_g" +/** + * Gets the rolling direction the cart rolls while being attacked. Can be 1 or -1. + * + * Parent Class: EntityMinecart + */ +m.getRollingDirection = "func_70493_k" +/** + * Sets the rolling direction the cart rolls while being attacked. Can be 1 or -1. + * + * Parent Class: EntityMinecart + */ +m.setRollingDirection = "func_70494_i" +/** + * Gets the rolling amplitude the cart rolls while being attacked. + * + * Parent Class: EntityMinecart + */ +m.getRollingAmplitude = "func_70496_j" +/** + * Sets the rolling amplitude the cart rolls while being attacked. + * + * Parent Class: EntityMinecart + */ +m.setRollingAmplitude = "func_70497_h" +/** + * checks to make sure painting can be placed there + * + * Parent Class: EntityLeashKnot + */ +m.onValidSurface = "func_70518_d" +/** + * Returns the XP value of this XP orb. + * + * Parent Class: EntityXPOrb + */ +m.getXpValue = "func_70526_d" +/** + * Get a fragment of the maximum experience points value for the supplied value of experience points value. + * + * Parent Class: EntityXPOrb + */ +m.getXPSplit = "func_70527_a" +/** + * Returns a number from 1 to 10 based on how much XP this orb is worth. This is used by RenderXPOrb to determine what texture to use. + * + * Parent Class: EntityXPOrb + */ +m.getTextureByXP = "func_70528_g" +/** + * + * + * Parent Class: EntityFX + */ +m.getRedColorF = "func_70534_d" +/** + * + * + * Parent Class: EntityFX + */ +m.getBlueColorF = "func_70535_g" +/** + * Public method to set private field particleTextureIndex. + * + * Parent Class: EntityFX + */ +m.setParticleTextureIndex = "func_70536_a" +/** + * + * + * Parent Class: EntityParticleEmitter + */ +m.getFXLayer = "func_70537_b" +/** + * + * + * Parent Class: EntityFX + */ +m.setRBGColorF = "func_70538_b" +/** + * + * + * Parent Class: EntityFX + */ +m.multipleParticleScaleBy = "func_70541_f" +/** + * + * + * Parent Class: EntityFX + */ +m.getGreenColorF = "func_70542_f" +/** + * + * + * Parent Class: EntityFX + */ +m.multiplyVelocity = "func_70543_e" +/** + * Sets the base spell texture index + * + * Parent Class: EntitySpellParticleFX + */ +m.setBaseSpellTextureIndex = "func_70589_b" +/** + * Checks if the entity's current position is a valid location to spawn this entity. + * + * Parent Class: EntitySlime + */ +m.getCanSpawnHere = "func_70601_bi" +/** + * Returns render size modifier + * + * Parent Class: EntityLiving + */ +m.getRenderSizeModifier = "func_70603_bj" +/** + * + * + * Parent Class: EntityVillager + */ +m.setRevengeTarget = "func_70604_c" +/** + * + * + * Parent Class: EntityLiving + */ +m.getMoveHelper = "func_70605_aq" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.setHealth = "func_70606_j" +/** + * Returns whether player is sleeping or not + * + * Parent Class: EntityPlayer + */ +m.isPlayerSleeping = "func_70608_bn" +/** + * "handles entity death timer + * + * Parent Class: EntityDragon + */ +m.onDeathUpdate = "func_70609_aI" +/** + * Dead and sleeping entities cannot move + * + * Parent Class: EntityPlayer + */ +m.isMovementBlocked = "func_70610_aX" +/** + * "Moves the entity based on the specified heading. Args: strafe + * + * Parent Class: EntityPlayer + */ +m.moveEntityWithHeading = "func_70612_e" +/** + * Returns whether the entity is in a server world + * + * Parent Class: EntityArmorStand + */ +m.isServerWorld = "func_70613_aW" +/** + * This function applies the benefits of growing back wool and faster growing up to the acting entity. (This function is used in the AIEatGrass) + * + * Parent Class: EntitySheep + */ +m.eatGrassBonus = "func_70615_aA" +/** + * "returns true if this entity is by a ladder + * + * Parent Class: EntitySpider + */ +m.isOnLadder = "func_70617_f_" +/** + * Remove the speified potion effect from this entity. + * + * Parent Class: EntityLivingBase + */ +m.removePotionEffectClient = "func_70618_n" +/** + * + * + * Parent Class: EntityVillager + */ +m.updateAITasks = "func_70619_bc" +/** + * Returns the sound this mob makes when it is hurt. + * + * Parent Class: EntityPlayer + */ +m.getHurtSound = "func_70621_aR" +/** + * Makes the entity despawn if requirements are reached + * + * Parent Class: EntityWither + */ +m.despawnEntity = "func_70623_bb" +/** + * Sets the active target the Task system uses for tracking + * + * Parent Class: EntityWolf + */ +m.setAttackTarget = "func_70624_b" +/** + * Changes pitch and yaw so that the entity calling the function is facing the entity provided as an argument. + * + * Parent Class: EntityLiving + */ +m.faceEntity = "func_70625_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.updateEntityActionState = "func_70626_be" +/** + * "Get number of ticks + * + * Parent Class: EntityGuardian + */ +m.getTalkInterval = "func_70627_aG" +/** + * Drop 0-2 items of this living's type + * + * @param wasRecentlyHit true if this this entity was recently hit by appropriate entity (generally only if player or tameable) + * @param lootingModifier level of enchanment to be applied to this drop + * + * Parent Class: EntityWitch + */ +m.dropFewItems = "func_70628_a" +/** + * "main AI tick function + * + * Parent Class: EntityLivingBase + */ +m.updateAITick = "func_70629_bd" +/** + * "If Animal + * + * Parent Class: EntityZombie + */ +m.isChild = "func_70631_g_" +/** + * + * + * Parent Class: EntityPlayer + */ +m.isBlocking = "func_70632_aY" +/** + * Sets the position of the entity and updates the 'last' variables + * + * Parent Class: Entity + */ +m.setPositionAndUpdate = "func_70634_a" +/** + * returns the EntitySenses Object for the EntityLiving + * + * Parent Class: EntityLiving + */ +m.getEntitySenses = "func_70635_at" +/** + * "Called frequently so the entity can update its state every tick as required. For example + * + * Parent Class: EntityPlayer + */ +m.onLivingUpdate = "func_70636_d" +/** + * Gets the active target the Task system uses for tracking + * + * Parent Class: EntityLiving + */ +m.getAttackTarget = "func_70638_az" +/** + * Returns the sound this mob makes while it's alive. + * + * Parent Class: EntityVillager + */ +m.getLivingSound = "func_70639_aQ" +/** + * Will return how many at most can spawn in a chunk at once. + * + * Parent Class: EntityGhast + */ +m.getMaxSpawnedInChunk = "func_70641_bl" +/** + * Plays living's sound at its position + * + * Parent Class: EntityLiving + */ +m.playLivingSound = "func_70642_aH" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.getAITarget = "func_70643_av" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.isPotionActive = "func_82165_m" +/** + * Called when the mob's health reaches 0. + * + * Parent Class: EntityPlayer + */ +m.onDeath = "func_70645_a" +/** + * The speed it takes to move the entityliving's rotationPitch through the faceEntity method. This is only currently use in wolves. + * + * Parent Class: EntitySlime + */ +m.getVerticalFaceSpeed = "func_70646_bf" +/** + * Gets the pitch of living sounds in living entities. + * + * Parent Class: EntityBat + */ +m.getSoundPitch = "func_70647_i" +/** + * + * + * Parent Class: EntityWaterMob + */ +m.canBreatheUnderwater = "func_70648_aU" +/** + * Returns true if the newer Entity AI code should be run + * + * Parent Class: EntityCreeper + */ +m.isAIEnabled = "func_70650_aV" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.getActivePotionEffects = "func_70651_bq" +/** + * + * + * Parent Class: EntityZombie + */ +m.attackEntityAsMob = "func_70652_k" +/** + * knocks back this entity + * + * Parent Class: EntityLivingBase + */ +m.knockBack = "func_70653_a" +/** + * "Reduces damage + * + * Parent Class: EntityLivingBase + */ +m.applyArmorCalculations = "func_70655_b" +/** + * Spawns an explosion particle around the Entity's location + * + * Parent Class: EntityLiving + */ +m.spawnExplosionParticle = "func_70656_aK" +/** + * + * + * Parent Class: EntityLiving + */ +m.setMoveForward = "func_70657_f" +/** + * set the movespeed used for the new AI system + * + * Parent Class: EntityLiving + */ +m.setAIMoveSpeed = "func_70659_e" +/** + * "returns the PotionEffect for the supplied Potion if it is active + * + * Parent Class: EntityLivingBase + */ +m.getActivePotionEffect = "func_70660_b" +/** + * + * + * Parent Class: EntityLiving + */ +m.getNavigator = "func_70661_as" +/** + * Returns true if this entity is undead. + * + * Parent Class: EntityLivingBase + */ +m.isEntityUndead = "func_70662_br" +m.updateRotation = {} +/** + * "Arguments: current rotation + * + * Parent Class: EntityLiving + */ +m.updateRotation.EntityLiving = "func_70663_b" +/** + * + * + * Parent Class: EntityLookHelper + */ +m.updateRotation.EntityLookHelper = "func_75652_a" + +/** + * Causes this entity to do an upwards motion (jumping). + * + * Parent Class: EntityPlayer + */ +m.jump = "func_70664_aZ" +/** + * Deals damage to the entity. If its a EntityPlayer then will take damage from the armor first and then health second with the reduced value. Args: damageAmount + * + * Parent Class: EntityPlayer + */ +m.damageEntity = "func_70665_d" +/** + * Get this Entity's EnumCreatureAttribute + * + * Parent Class: EntityZombie + */ +m.getCreatureAttribute = "func_70668_bt" +/** + * Renders broken item particles using the given ItemStack + * + * Parent Class: EntityLivingBase + */ +m.renderBrokenItemStack = "func_70669_a" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.onNewPotionEffect = "func_70670_a" +/** + * + * + * Parent Class: EntityLiving + */ +m.getLookHelper = "func_70671_ap" +/** + * "Reduces damage + * + * Parent Class: EntityWitch + */ +m.applyPotionDamageCalculations = "func_70672_c" +/** + * Returns the sound this mob makes on death. + * + * Parent Class: EntityPlayer + */ +m.getDeathSound = "func_70673_aS" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.clearActivePotions = "func_70674_bp" +/** + * interpolated look vector + * + * Parent Class: EntityLivingBase + */ +m.getLook = "func_70676_i" +m.getSwingProgress = {} +/** + * Returns where in the swing animation the living entity is (from 0 to 1). Args: partialTickTime + * + * Parent Class: EntityLivingBase + */ +m.getSwingProgress.EntityLivingBase = "func_70678_g" +/** + * "Returns where in the swing animation the living entity is (from 0 to 1). Args : entity + * + * Parent Class: RendererLivingEntity + */ +m.getSwingProgress.RendererLivingEntity = "func_77040_d" + +/** + * + * + * Parent Class: EntityLivingBase + */ +m.updatePotionEffects = "func_70679_bo" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.getRNG = "func_70681_au" +/** + * Decrements the entity's air supply when underwater + * + * Parent Class: EntityIronGolem + */ +m.decreaseAirSupply = "func_70682_h" +/** + * + * + * Parent Class: EntityLiving + */ +m.getJumpHelper = "func_70683_ar" +/** + * Only use is to identify if class is an instance of player for experience dropping + * + * Parent Class: EntityPlayer + */ +m.isPlayer = "func_70684_aJ" +/** + * returns true if the entity provided in the argument can be seen. (Raytrace) + * + * Parent Class: EntityLivingBase + */ +m.canEntityBeSeen = "func_70685_l" +/** + * Returns true if this entity can attack entities of the specified class. + * + * Parent Class: EntityIronGolem + */ +m.canAttackClass = "func_70686_a" +/** + * + * + * Parent Class: EntitySpider + */ +m.isPotionApplicable = "func_70687_e" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.onFinishedPotionEffect = "func_70688_c" +/** + * the movespeed used for the new AI system + * + * Parent Class: EntityPlayer + */ +m.getAIMoveSpeed = "func_70689_ay" +/** + * adds a PotionEffect to the entity + * + * Parent Class: EntityWither + */ +m.addPotionEffect = "func_70690_d" +/** + * Heal living entity (param: amount of half-hearts) + * + * Parent Class: EntityLivingBase + */ +m.heal = "func_70691_i" +/** + * "Determines if an entity can be despawned + * + * Parent Class: EntityVillager + */ +m.canDespawn = "func_70692_ba" +/** + * Get the experience points the entity currently has. + * + * Parent Class: EntityPlayer + */ +m.getExperiencePoints = "func_70693_a" +/** + * "Returns the item that this EntityLiving is holding + * + * Parent Class: EntityPlayer + */ +m.getHeldItem = "func_70694_bm" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.onChangedPotionEffect = "func_70695_b" +/** + * "if the entity got a PathEntity it returns true + * + * Parent Class: EntityCreature + */ +m.hasPath = "func_70781_l" +/** + * + * + * Parent Class: EntitySlime + */ +m.setSlimeSize = "func_70799_a" +/** + * Indicates weather the slime is able to damage the player (based upon the slime's size) + * + * Parent Class: EntitySlime + */ +m.canDamagePlayer = "func_70800_m" +/** + * + * + * Parent Class: EntitySlime + */ +m.createInstance = "func_70802_j" +/** + * Returns the name of the sound played when the slime jumps. + * + * Parent Class: EntitySlime + */ +m.getJumpSound = "func_70803_o" +/** + * Returns true if the slime makes a sound when it lands after a jump (based upon the slime's size) + * + * Parent Class: EntitySlime + */ +m.makesSoundOnLand = "func_70804_p" +/** + * "Gets the amount of damage dealt to the player when ""attacked"" by the slime." + * + * Parent Class: EntitySlime + */ +m.getAttackStrength = "func_70805_n" +/** + * Gets the amount of time the slime needs to wait between jumps. + * + * Parent Class: EntitySlime + */ +m.getJumpDelay = "func_70806_k" +/** + * Returns true if the slime makes a sound when it jumps (based upon the slime's size) + * + * Parent Class: EntitySlime + */ +m.makesSoundOnJump = "func_70807_r" +/** + * + * + * Parent Class: EntitySlime + */ +m.alterSquishAmount = "func_70808_l" +/** + * Returns the size of the slime. + * + * Parent Class: EntitySlime + */ +m.getSlimeSize = "func_70809_q" +/** + * Checks to make sure the light is not too bright where the mob is spawning + * + * Parent Class: EntitySilverfish + */ +m.isValidLightLevel = "func_70814_o" +/** + * Teleport the enderman to another entity + * + * Parent Class: EntityEnderman + */ +m.teleportToEntity = "func_70816_c" +/** + * + * + * Parent Class: EntityEnderman + */ +m.setScreaming = "func_70819_e" +/** + * Teleport the enderman to a random nearby position + * + * Parent Class: EntityEnderman + */ +m.teleportRandomly = "func_70820_n" +/** + * Checks to see if this enderman should be attacking this player + * + * Parent Class: EntityEnderman + */ +m.shouldAttackPlayer = "func_70821_d" +/** + * + * + * Parent Class: EntityEnderman + */ +m.isScreaming = "func_70823_r" +/** + * Teleport the enderman + * + * Parent Class: EntityEnderman + */ +m.teleportTo = "func_70825_j" +/** + * "Sets the state of creeper + * + * Parent Class: EntityCreeper + */ +m.setCreeperState = "func_70829_a" +/** + * Returns true if the creeper is powered by a lightning bolt. + * + * Parent Class: EntityCreeper + */ +m.getPowered = "func_70830_n" +/** + * Params: (Float)Render tick. Returns the intensity of the creeper's flash when it is ignited. + * + * Parent Class: EntityCreeper + */ +m.getCreeperFlashIntensity = "func_70831_j" +/** + * "Returns the current state of creeper + * + * Parent Class: EntityCreeper + */ +m.getCreeperState = "func_70832_p" +/** + * Causes this PigZombie to become angry at the supplied Entity (which will be a player). + * + * Parent Class: EntityPigZombie + */ +m.becomeAngryAt = "func_70835_c" +/** + * "Updates the WatchableObject (Byte) created in entityInit() + * + * Parent Class: EntitySpider + */ +m.setBesideClimbableBlock = "func_70839_e" +/** + * Returns true if the WatchableObject (Byte) is 0x01 otherwise returns false. The WatchableObject is updated using setBesideClimableBlock. + * + * Parent Class: EntitySpider + */ +m.isBesideClimbableBlock = "func_70841_p" +/** + * + * + * Parent Class: EntityBlaze + */ +m.setOnFire = "func_70844_e" +/** + * + * + * Parent Class: EntityIronGolem + */ +m.setPlayerCreated = "func_70849_f" +/** + * + * + * Parent Class: EntityIronGolem + */ +m.isPlayerCreated = "func_70850_q" +/** + * + * + * Parent Class: EntityIronGolem + */ +m.setHoldingRose = "func_70851_e" +/** + * + * + * Parent Class: EntityIronGolem + */ +m.getVillage = "func_70852_n" +/** + * + * + * Parent Class: EntityIronGolem + */ +m.getHoldRoseTick = "func_70853_p" +/** + * + * + * Parent Class: EntityIronGolem + */ +m.getAttackTimer = "func_70854_o" +/** + * "The age value may be negative or positive or zero. If it's negative + * + * Parent Class: EntityAgeable + */ +m.setGrowingAge = "func_70873_a" +/** + * "The age value may be negative or positive or zero. If it's negative + * + * Parent Class: EntityAgeable + */ +m.getGrowingAge = "func_70874_b" +/** + * + * + * Parent Class: EntityAnimal + */ +m.resetInLove = "func_70875_t" +/** + * "Checks if the parameter is an item which this animal can be fed to breed it (wheat + * + * Parent Class: EntityWolf + */ +m.isBreedingItem = "func_70877_b" +/** + * Returns true if the mob is currently able to mate with the specified mob. + * + * Parent Class: EntityWolf + */ +m.canMateWith = "func_70878_b" +/** + * Returns if the entity is currently in 'love mode'. + * + * Parent Class: EntityAnimal + */ +m.isInLove = "func_70880_s" +/** + * + * + * Parent Class: EntitySheep + */ +m.getHeadRotationAngleX = "func_70890_k" +/** + * returns true if a sheeps wool has been sheared + * + * Parent Class: EntitySheep + */ +m.getSheared = "func_70892_o" +/** + * make a sheep sheared if set to true + * + * Parent Class: EntitySheep + */ +m.setSheared = "func_70893_e" +/** + * + * + * Parent Class: EntitySheep + */ +m.getHeadRotationPointY = "func_70894_j" +/** + * Set or remove the saddle of the pig. + * + * Parent Class: EntityPig + */ +m.setSaddled = "func_70900_e" +/** + * Returns true if the pig is saddled. + * + * Parent Class: EntityPig + */ +m.getSaddled = "func_70901_n" +/** + * + * + * Parent Class: EntityWolf + */ +m.setTamed = "func_70903_f" +m.setSitting = {} +/** + * + * + * Parent Class: EntityTameable + */ +m.setSitting.EntityTameable = "func_70904_g" +/** + * Sets the sitting flag. + * + * Parent Class: EntityAISit + */ +m.setSitting.EntityAISit = "func_75270_a" + +/** + * + * + * Parent Class: EntityTameable + */ +m.isSitting = "func_70906_o" +/** + * Returns the AITask responsible of the sit logic + * + * Parent Class: EntityTameable + */ +m.getAISit = "func_70907_r" +/** + * "Play the taming effect + * + * Parent Class: EntityTameable + */ +m.playTameEffect = "func_70908_e" +/** + * + * + * Parent Class: EntityTameable + */ +m.isTamed = "func_70909_n" +/** + * + * + * Parent Class: EntityOcelot + */ +m.setTameSkin = "func_70912_b" +/** + * + * + * Parent Class: EntityOcelot + */ +m.getTameSkin = "func_70913_u" +/** + * Used when calculating the amount of shading to apply while the wolf is wet. + * + * Parent Class: EntityWolf + */ +m.getShadingWhileWet = "func_70915_j" +/** + * Sets whether this wolf is angry or not. + * + * Parent Class: EntityWolf + */ +m.setAngry = "func_70916_h" +/** + * + * + * Parent Class: EntityWolf + */ +m.getInterestedAngle = "func_70917_k" +/** + * + * + * Parent Class: EntityWolf + */ +m.setBegging = "func_70918_i" +/** + * + * + * Parent Class: EntityWolf + */ +m.getTailRotation = "func_70920_v" +/** + * True if the wolf is wet + * + * Parent Class: EntityWolf + */ +m.isWolfWet = "func_70921_u" +/** + * + * + * Parent Class: EntityWolf + */ +m.isBegging = "func_70922_bv" +/** + * + * + * Parent Class: EntityWolf + */ +m.getShakeAngle = "func_70923_f" +/** + * + * + * Parent Class: EntityVillager + */ +m.setRecipes = "func_70930_a" +/** + * + * + * Parent Class: EntityVillager + */ +m.getCustomer = "func_70931_l_" +/** + * + * + * Parent Class: EntityVillager + */ +m.setCustomer = "func_70932_a_" +/** + * + * + * Parent Class: EntityVillager + */ +m.useRecipe = "func_70933_a" +/** + * + * + * Parent Class: EntityVillager + */ +m.getRecipes = "func_70934_b" +/** + * + * + * Parent Class: EntityVillager + */ +m.setProfession = "func_70938_b" +/** + * + * + * Parent Class: EntityVillager + */ +m.setPlaying = "func_70939_f" +/** + * + * + * Parent Class: EntityVillager + */ +m.isTrading = "func_70940_q" +/** + * + * + * Parent Class: EntityVillager + */ +m.isMating = "func_70941_o" +/** + * + * + * Parent Class: EntityVillager + */ +m.isPlaying = "func_70945_p" +/** + * + * + * Parent Class: EntityVillager + */ +m.getProfession = "func_70946_n" +/** + * + * + * Parent Class: EntityVillager + */ +m.setMating = "func_70947_e" +/** + * + * + * Parent Class: EntityDragon + */ +m.attackEntityFromPart = "func_70965_a" +/** + * Sets a new target for the flight AI. It can be a random coordinate or a nearby player. + * + * Parent Class: EntityDragon + */ +m.setNewTarget = "func_70967_k" +/** + * Updates the state of the enderdragon's current endercrystal. + * + * Parent Class: EntityDragon + */ +m.updateDragonEnderCrystal = "func_70969_j" +/** + * Pushes all entities inside the list away from the enderdragon. + * + * Parent Class: EntityDragon + */ +m.collideWithEntities = "func_70970_a" +/** + * "Attacks all entities inside this list + * + * Parent Class: EntityDragon + */ +m.attackEntitiesInList = "func_70971_b" +/** + * Destroys all blocks that aren't associated with 'The End' inside the given bounding box. + * + * Parent Class: EntityDragon + */ +m.destroyBlocksInAABB = "func_70972_a" +/** + * Simplifies the value of a number by adding/subtracting 180 to the point that the number is between -180 and 180. + * + * Parent Class: EntityDragon + */ +m.simplifyAngle = "func_70973_b" +/** + * "Returns a double[3] array with movement offsets + * + * Parent Class: EntityDragon + */ +m.getMovementOffsets = "func_70974_a" +/** + * Checks if the player's health is not full and not zero. + * + * Parent Class: EntityPlayer + */ +m.shouldHeal = "func_70996_bM" +/** + * + * + * Parent Class: EntityPlayer + */ +m.interactWith = "func_70998_m" +/** + * Wake up the player if they're sleeping. + * + * Parent Class: EntityPlayer + */ +m.wakeUpPlayer = "func_70999_a" +/** + * "Adds a value to a movement statistic field - like run + * + * Parent Class: EntityPlayer + */ +m.addMovementStat = "func_71000_j" +/** + * "Called whenever an item is picked up from walking over it. Args: pickedUpEntity + * + * Parent Class: EntityLivingBase + */ +m.onItemPickup = "func_71001_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.respawnPlayer = "func_71004_bE" +/** + * Returns the InventoryEnderChest of this player. + * + * Parent Class: EntityPlayer + */ +m.getInventoryEnderChest = "func_71005_bN" +/** + * Displays the GUI for interacting with a chest inventory. Args: chestInventory + * + * Parent Class: EntityPlayer + */ +m.displayGUIChest = "func_71007_a" +/** + * "sets the itemInUse when the use item button is clicked. Args: itemstack + * + * Parent Class: EntityPlayer + */ +m.setItemInUse = "func_71008_a" +/** + * Called when the player performs a critical hit on the Entity. Args: entity that was hit critically + * + * Parent Class: EntityPlayer + */ +m.onCriticalHit = "func_71009_b" +/** + * Plays sounds and makes particles for item in use state + * + * Parent Class: EntityPlayer + */ +m.updateItemUse = "func_71010_c" +/** + * returns the ItemStack containing the itemInUse + * + * Parent Class: EntityPlayer + */ +m.getItemInUse = "func_71011_bu" +/** + * Joins the passed in entity item with the world. Args: entityItem + * + * Parent Class: EntityPlayer + */ +m.joinEntityItemWithWorld = "func_71012_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.removeExperienceLevel = "func_71013_b" +/** + * "Adds a value to a mounted movement statistic field - by minecart + * + * Parent Class: EntityPlayer + */ +m.addMountedMovementStat = "func_71015_k" +/** + * Sends the player's abilities to the server (if there is one). + * + * Parent Class: EntityPlayer + */ +m.sendPlayerAbilities = "func_71016_p" +/** + * "Args: itemstack + * + * Parent Class: EntityPlayer + */ +m.dropPlayerItemWithRandomChoice = "func_71019_a" +m.addExhaustion = {} +/** + * increases exhaustion level by supplied amount + * + * Parent Class: EntityPlayer + */ +m.addExhaustion.EntityPlayer = "func_71020_j" +/** + * adds input to foodExhaustionLevel to a max of 40 + * + * Parent Class: FoodStats + */ +m.addExhaustion.FoodStats = "func_75113_a" + +/** + * Add experience points to player. + * + * Parent Class: EntityPlayer + */ +m.addExperience = "func_71023_q" +/** + * Returns the player's FoodStats object. + * + * Parent Class: EntityPlayer + */ +m.getFoodStats = "func_71024_bL" +/** + * Returns whether or not the player is asleep and the screen has fully faded. + * + * Parent Class: EntityPlayer + */ +m.isPlayerFullyAsleep = "func_71026_bH" +/** + * Teleports the entity to another dimension. Params: Dimension number to teleport to + * + * Parent Class: EntityMinecartContainer + */ +m.travelToDimension = "func_71027_c" +/** + * Destroys the currently equipped item from the player's inventory. + * + * Parent Class: EntityPlayer + */ +m.destroyCurrentEquippedItem = "func_71028_bD" +/** + * Will trigger the specified trigger. + * + * Parent Class: EntityPlayer + */ +m.triggerAchievement = "func_71029_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.stopUsingItem = "func_71034_by" +m.onItemUseFinish = {} +/** + * "Used for when item use count runs out + * + * Parent Class: EntityPlayer + */ +m.onItemUseFinish.EntityPlayer = "func_71036_o" +/** + * Called when the player finishes using this Item (E.g. finishes eating.). Not called when the player stops using the Item before the action is complete. + * + * Parent Class: Item + */ +m.onItemUseFinish.Item = "func_77654_b" +/** + * "Called when the item in use count reach 0 + * + * Parent Class: ItemStack + */ +m.onItemUseFinish.ItemStack = "func_77950_b" + +/** + * + * + * Parent Class: EntityPlayer + */ +m.getScore = "func_71037_bA" +/** + * Swings the item the player is holding. + * + * Parent Class: EntityLivingBase + */ +m.swingItem = "func_71038_i" +/** + * "Checks if the entity is currently using an item (e.g. + * + * Parent Class: EntityPlayer + */ +m.isUsingItem = "func_71039_bw" +/** + * Called when player presses the drop item key + * + * Parent Class: EntityPlayer + */ +m.dropOneItem = "func_71040_bB" +/** + * + * + * Parent Class: EntityPlayer + */ +m.clearItemInUse = "func_71041_bz" +/** + * + * + * Parent Class: EntityPlayer + */ +m.canEat = "func_71043_e" +/** + * + * + * Parent Class: EntityPlayer + */ +m.collideWithPlayer = "func_71044_o" +/** + * Returns the currently being used item by the player. + * + * Parent Class: EntityPlayer + */ +m.getCurrentEquippedItem = "func_71045_bC" +/** + * + * + * Parent Class: EntityPlayer + */ +m.onEnchantmentCritical = "func_71047_c" +/** + * Displays the GUI for interacting with a book. + * + * Parent Class: EntityPlayer + */ +m.displayGUIBook = "func_71048_c" +/** + * Copies the values from the given player into this player if boolean par2 is true. Always clones Ender Chest Inventory. + * + * Parent Class: EntityPlayer + */ +m.clonePlayer = "func_71049_a" +/** + * "This method returns the cap amount of experience that the experience bar can hold. With each level + * + * Parent Class: EntityPlayer + */ +m.xpBarCap = "func_71050_bK" +/** + * Returns the orientation of the bed in degrees. + * + * Parent Class: EntityPlayer + */ +m.getBedOrientationInDegrees = "func_71051_bG" +/** + * Returns the item in use count + * + * Parent Class: EntityPlayer + */ +m.getItemInUseCount = "func_71052_bv" +/** + * set current crafting inventory back to the 2x2 square + * + * Parent Class: EntityPlayer + */ +m.closeScreen = "func_71053_j" +/** + * gets the duration for how long the current itemInUse has been in use + * + * Parent Class: EntityPlayer + */ +m.getItemInUseDuration = "func_71057_bx" +/** + * Attacks for the player the targeted entity with the currently equipped item. The equipped item has hitEntity called on it. Args: targetEntity + * + * Parent Class: EntityPlayer + */ +m.attackTargetEntityWithCurrentItem = "func_71059_n" +/** + * + * + * Parent Class: EntityPlayer + */ +m.getSleepTimer = "func_71060_bI" +/** + * sets the players height back to normal after doing things like sleeping and dieing + * + * Parent Class: EntityPlayer + */ +m.resetHeight = "func_71061_d_" +/** + * Adds a value to a statistic field. + * + * Parent Class: EntityPlayer + */ +m.addStat = "func_71064_a" +/** + * update the crafting window inventory with the items in the list + * + * Parent Class: ICrafting + */ +m.updateCraftingInventory = "func_71110_a" +/** + * "Sends the contents of an inventory slot to the client-side Container. This doesn't have to match the actual contents of that slot. Args: Container + * + * Parent Class: ICrafting + */ +m.sendSlotContents = "func_71111_a" +/** + * "Sends two ints to the client-side Container. Used for furnace burning time + * + * Parent Class: ICrafting + */ +m.sendProgressBarUpdate = "func_71112_a" +/** + * updates item held by mouse + * + * Parent Class: EntityPlayerMP + */ +m.updateHeldItem = "func_71113_k" +/** + * Gets the player's IP address. Used in /banip. + * + * Parent Class: EntityPlayerMP + */ +m.getPlayerIP = "func_71114_r" +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.addSelfToInternalCraftingInventory = "func_71116_b" +/** + * get the next window id to use + * + * Parent Class: EntityPlayerMP + */ +m.getNextWindowId = "func_71117_bO" +/** + * "this function is called when a players inventory is sent to him + * + * Parent Class: EntityPlayerMP + */ +m.setPlayerHealthUpdated = "func_71118_n" +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.sendContainerToPlayer = "func_71120_a" +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.getServerForPlayer = "func_71121_q" +/** + * process player falling based on movement packet + * + * Parent Class: EntityPlayerMP + */ +m.handleFalling = "func_71122_b" +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.mountEntityAndWakeUp = "func_71123_m" +/** + * 0: Tool in Hand; 1-4: Armor + * + * Parent Class: EntityPlayer + */ +m.getEquipmentInSlot = "func_71124_b" +/** + * + * + * Parent Class: EntityPlayerMP + */ +m.onUpdateEntity = "func_71127_g" +/** + * Closes the container the player currently has open. + * + * Parent Class: EntityPlayerMP + */ +m.closeContainer = "func_71128_l" +/** + * Updates health locally. + * + * Parent Class: EntityPlayerSP + */ +m.setPlayerSPHealth = "func_71150_b" +/** + * "Sets the current XP + * + * Parent Class: EntityPlayerSP + */ +m.setXPStats = "func_71152_a" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getCommandManager = "func_71187_D" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setAllowPvp = "func_71188_g" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setHostname = "func_71189_e" +/** + * + * + * Parent Class: MinecraftServer + */ +m.updateTimeLightAndEntities = "func_71190_q" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setBuildLimit = "func_71191_d" +/** + * "Typically ""menu.convertingLevel"" + * + * Parent Class: MinecraftServer + */ +m.setUserMessage = "func_71192_d" +/** + * + * + * Parent Class: MinecraftServer + */ +m.allowSpawnMonsters = "func_71193_K" +/** + * + * + * Parent Class: MinecraftServer + */ +m.canCreateBonusChest = "func_71194_c" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getUserMessage = "func_71195_b_" +/** + * Initialises the server and starts it. + * + * Parent Class: MinecraftServer + */ +m.startServer = "func_71197_b" +m.logDebug = {} +/** + * "If isDebuggingEnabled() + * + * Parent Class: MinecraftServer + */ +m.logDebug.MinecraftServer = "func_71198_k" +/** + * Log debug message + * + * Parent Class: RConThreadBase + */ +m.logDebug.RConThreadBase = "func_72607_a" + +/** + * Defaults to false. + * + * Parent Class: MinecraftServer + */ +m.isHardcore = "func_71199_h" +/** + * + * + * Parent Class: MinecraftServer + */ +m.serverIsInRunLoop = "func_71200_ad" +m.logSevere = {} +/** + * Logs the error message with a level of SEVERE. + * + * Parent Class: MinecraftServer + */ +m.logSevere.MinecraftServer = "func_71201_j" +/** + * Log severe error message + * + * Parent Class: RConThreadBase + */ +m.logSevere.RConThreadBase = "func_72610_d" + +/** + * + * + * Parent Class: MinecraftServer + */ +m.getConfigurationManager = "func_71203_ab" +/** + * Sets whether this is a demo or not. + * + * Parent Class: MinecraftServer + */ +m.setDemo = "func_71204_b" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setMOTD = "func_71205_p" +/** + * "On dedicated does nothing. On integrated + * + * Parent Class: MinecraftServer + */ +m.shareToLAN = "func_71206_a" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getBuildLimit = "func_71207_Z" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setServerPort = "func_71208_b" +m.getFile = {} +/** + * Returns a File object from the specified string. + * + * Parent Class: MinecraftServer + */ +m.getFile.MinecraftServer = "func_71209_f" +/** + * Gets the file this crash report is saved into. + * + * Parent Class: CrashReport + */ +m.getFile.CrashReport = "func_71497_f" + +/** + * """getHostname"" is already taken + * + * Parent Class: MinecraftServer + */ +m.getServerHostname = "func_71211_k" +m.getAllUsernames = {} +/** + * Returns an array of the usernames of all the connected players. + * + * Parent Class: MinecraftServer + */ +m.getAllUsernames.MinecraftServer = "func_71213_z" +/** + * + * + * Parent Class: CommandXP + */ +m.getAllUsernames.CommandXP = "func_71542_c" +/** + * Returns an array of the usernames of all the connected players. + * + * Parent Class: ServerConfigurationManager + */ +m.getAllUsernames.ServerConfigurationManager = "func_72369_d" +/** + * + * + * Parent Class: CommandEffect + */ +m.getAllUsernames.CommandEffect = "func_98152_d" + +/** + * Returns the username of the server owner (for integrated servers) + * + * Parent Class: MinecraftServer + */ +m.getServerOwner = "func_71214_G" +/** + * Gets serverPort. + * + * Parent Class: MinecraftServer + */ +m.getServerPort = "func_71215_F" +/** + * Used to display a percent remaining given text and the percentage. + * + * Parent Class: MinecraftServer + */ +m.outputPercentRemaining = "func_71216_a_" +/** + * Gets the worldServer by the given dimension. + * + * Parent Class: MinecraftServer + */ +m.worldServerForDimension = "func_71218_a" +/** + * + * + * Parent Class: MinecraftServer + */ +m.isPVPEnabled = "func_71219_W" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getCanSpawnNPCs = "func_71220_V" +m.getWorldName = {} +/** + * + * + * Parent Class: MinecraftServer + */ +m.getWorldName.MinecraftServer = "func_71221_J" +/** + * Get current world name + * + * Parent Class: WorldInfo + */ +m.getWorldName.WorldInfo = "func_76065_j" +/** + * + * + * Parent Class: WorldSettings + */ +m.getWorldName.WorldSettings = "func_82749_j" + +/** + * + * + * Parent Class: MinecraftServer + */ +m.initialWorldChunkLoad = "func_71222_d" +/** + * + * + * Parent Class: MinecraftServer + */ +m.enableProfiling = "func_71223_ag" +/** + * Sets the username of the owner of this server (in the case of an integrated server) + * + * Parent Class: MinecraftServer + */ +m.setServerOwner = "func_71224_l" +/** + * + * + * Parent Class: MinecraftServer + */ +m.canStructuresSpawn = "func_71225_e" +/** + * Called on exit from the main run() loop. + * + * Parent Class: MinecraftServer + */ +m.finalTick = "func_71228_a" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setOnlineMode = "func_71229_d" +/** + * "Adds the server info + * + * Parent Class: MinecraftServer + */ +m.addServerInfoToCrashReport = "func_71230_b" +/** + * + * + * Parent Class: MinecraftServer + */ +m.isFlightAllowed = "func_71231_X" +m.getCurrentPlayerCount = {} +/** + * Returns the number of players currently on the server. + * + * Parent Class: MinecraftServer + */ +m.getCurrentPlayerCount.MinecraftServer = "func_71233_x" +/** + * Returns the number of players currently on the server. + * + * Parent Class: ServerConfigurationManager + */ +m.getCurrentPlayerCount.ServerConfigurationManager = "func_72394_k" + +m.getPort = {} +/** + * "Never used + * + * Parent Class: MinecraftServer + */ +m.getPort.MinecraftServer = "func_71234_u" +/** + * + * + * Parent Class: ServerAddress + */ +m.getPort.ServerAddress = "func_78864_b" + +/** + * + * + * Parent Class: MinecraftServer + */ +m.convertMapIfNeeded = "func_71237_c" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getDataDirectory = "func_71238_n" +/** + * "Returns true if debugging is enabled + * + * Parent Class: MinecraftServer + */ +m.isDebuggingEnabled = "func_71239_B" +/** + * "Directly calls System.exit(0) + * + * Parent Class: MinecraftServer + */ +m.systemExitNow = "func_71240_o" +/** + * + * + * Parent Class: MinecraftServer + */ +m.isServerStopped = "func_71241_aa" +m.isDemo = {} +/** + * Gets whether this is a demo or not. + * + * Parent Class: MinecraftServer + */ +m.isDemo.MinecraftServer = "func_71242_L" +/** + * Gets whether this is a demo or not. + * + * Parent Class: Minecraft + */ +m.isDemo.Minecraft = "func_71355_q" + +/** + * Set current task to null and set its percentage to 0. + * + * Parent Class: MinecraftServer + */ +m.clearCurrentTask = "func_71243_i" +m.logInfo = {} +/** + * Logs the message with a level of INFO. + * + * Parent Class: MinecraftServer + */ +m.logInfo.MinecraftServer = "func_71244_g" +/** + * Log information message + * + * Parent Class: RConThreadBase + */ +m.logInfo.RConThreadBase = "func_72609_b" + +/** + * + * + * Parent Class: MinecraftServer + */ +m.setAllowFlight = "func_71245_h" +m.setWorldName = {} +/** + * + * + * Parent Class: MinecraftServer + */ +m.setWorldName.MinecraftServer = "func_71246_n" +/** + * + * + * Parent Class: WorldInfo + */ +m.setWorldName.WorldInfo = "func_76062_a" +/** + * + * + * Parent Class: WorldSettings + */ +m.setWorldName.WorldSettings = "func_82750_a" + +/** + * + * + * Parent Class: MinecraftServer + */ +m.loadAllWorlds = "func_71247_a" +/** + * Returns the server's Minecraft version as string. + * + * Parent Class: MinecraftServer + */ +m.getMinecraftVersion = "func_71249_w" +/** + * Gets KeyPair instanced in MinecraftServer. + * + * Parent Class: MinecraftServer + */ +m.getKeyPair = "func_71250_E" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setCanSpawnAnimals = "func_71251_e" +/** + * Handle a command received by an RCon instance + * + * Parent Class: DedicatedServer + */ +m.handleRConCommand = "func_71252_i" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setKeyPair = "func_71253_a" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getActiveAnvilConverter = "func_71254_M" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getAllowNether = "func_71255_r" +/** + * + * + * Parent Class: MinecraftServer + */ +m.startServerThread = "func_71256_s" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setCanSpawnNPCs = "func_71257_f" +/** + * "Used by RCon's Query in the form of ""MajorServerMod 1.2.3: MyPlugin 1.3; AnotherPlugin 2.1; AndSoForth 1.0""." + * + * Parent Class: DedicatedServer + */ +m.getPlugins = "func_71258_A" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getTickCounter = "func_71259_af" +/** + * Saves all necessary data as preparation for stopping the server. + * + * Parent Class: MinecraftServer + */ +m.stopServer = "func_71260_j" +/** + * + * + * Parent Class: MinecraftServer + */ +m.setFolderName = "func_71261_m" +/** + * + * + * Parent Class: MinecraftServer + */ +m.isDedicatedServer = "func_71262_S" +/** + * "Sets the serverRunning variable to false + * + * Parent Class: MinecraftServer + */ +m.initiateShutdown = "func_71263_m" +/** + * + * + * Parent Class: MinecraftServer + */ +m.isSinglePlayer = "func_71264_H" +/** + * + * + * Parent Class: MinecraftServer + */ +m.isServerInOnlineMode = "func_71266_T" +/** + * par1 indicates if a log message should be output. + * + * Parent Class: MinecraftServer + */ +m.saveAllWorlds = "func_71267_a" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getCanSpawnAnimals = "func_71268_U" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getFolderName = "func_71270_I" +/** + * WARNING : directly calls getActiveAnvilConverter().deleteWorldDirectory(theWorldServer[0].getSaveHandler().getWorldDirectoryName()); + * + * Parent Class: MinecraftServer + */ +m.deleteWorldAndStopServer = "func_71272_O" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getMOTD = "func_71273_Y" +/** + * Returns the server's hostname. + * + * Parent Class: MinecraftServer + */ +m.getHostname = "func_71277_t" +/** + * + * + * Parent Class: MinecraftServer + */ +m.isServerRunning = "func_71278_l" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getGuiEnabled = "func_71279_ae" +m.saveProperties = {} +/** + * Saves all of the server properties to the properties file. + * + * Parent Class: DedicatedServer + */ +m.saveProperties.DedicatedServer = "func_71326_a" +/** + * Writes the properties to the properties file. + * + * Parent Class: PropertyManager + */ +m.saveProperties.PropertyManager = "func_73668_b" + +m.getIntProperty = {} +/** + * "Gets an integer property. If it does not exist + * + * Parent Class: DedicatedServer + */ +m.getIntProperty.DedicatedServer = "func_71327_a" +/** + * "Gets an integer property. If it does not exist + * + * Parent Class: PropertyManager + */ +m.getIntProperty.PropertyManager = "func_73669_a" + +m.setProperty = {} +/** + * Saves an Object with the given property name. + * + * Parent Class: DedicatedServer + */ +m.setProperty.DedicatedServer = "func_71328_a" +/** + * Saves an Object with the given property name. + * + * Parent Class: PropertyManager + */ +m.setProperty.PropertyManager = "func_73667_a" + +/** + * Returns the filename where server properties are stored + * + * Parent Class: DedicatedServer + */ +m.getSettingsFilename = "func_71329_c" +m.getStringProperty = {} +/** + * "Gets a string property. If it does not exist + * + * Parent Class: DedicatedServer + */ +m.getStringProperty.DedicatedServer = "func_71330_a" +/** + * Returns a string property. If the property doesn't exist the default is returned. + * + * Parent Class: PropertyManager + */ +m.getStringProperty.PropertyManager = "func_73671_a" + +/** + * + * + * Parent Class: DedicatedServer + */ +m.addPendingCommand = "func_71331_a" +m.getBooleanProperty = {} +/** + * "Gets a boolean property. If it does not exist + * + * Parent Class: DedicatedServer + */ +m.getBooleanProperty.DedicatedServer = "func_71332_a" +/** + * "Gets a boolean property. If it does not exist + * + * Parent Class: PropertyManager + */ +m.getBooleanProperty.PropertyManager = "func_73670_a" + +/** + * + * + * Parent Class: DedicatedServer + */ +m.executePendingCommands = "func_71333_ah" +/** + * Returns true if this integrated server is open to LAN + * + * Parent Class: IntegratedServer + */ +m.getPublic = "func_71344_c" +/** + * Set the current ServerData instance. + * + * Parent Class: Minecraft + */ +m.setServerData = "func_71351_a" +/** + * Toggles fullscreen mode. + * + * Parent Class: Minecraft + */ +m.toggleFullscreen = "func_71352_k" +/** + * unloads the current world first + * + * Parent Class: Minecraft + */ +m.loadWorld = "func_71403_a" +/** + * + * + * Parent Class: Minecraft + */ +m.setDimensionAndSpawnPlayer = "func_71354_a" +/** + * "Returns true if there is only one player playing + * + * Parent Class: Minecraft + */ +m.isSingleplayer = "func_71356_B" +m.getSaveLoader = {} +/** + * Returns the save loader that is currently being used + * + * Parent Class: Minecraft + */ +m.getSaveLoader.Minecraft = "func_71359_d" +/** + * Returns back a loader for the specified save directory + * + * Parent Class: ISaveFormat + */ +m.getSaveLoader.ISaveFormat = "func_75804_a" + +/** + * "Checks for an OpenGL error. If there is one + * + * Parent Class: Minecraft + */ +m.checkGLError = "func_71361_d" +/** + * + * + * Parent Class: Minecraft + */ +m.stopIntegratedServer = "func_71363_D" +/** + * "Resets the player keystate + * + * Parent Class: Minecraft + */ +m.setIngameNotInFocus = "func_71364_i" +/** + * Parameter appears to be unused + * + * Parent Class: Minecraft + */ +m.displayDebugInfo = "func_71366_a" +/** + * Used in the usage snooper. + * + * Parent Class: Minecraft + */ +m.getGLMaximumTextureSize = "func_71369_N" +/** + * Called to resize the current screen. + * + * Parent Class: Minecraft + */ +m.resize = "func_71370_a" +/** + * "Arguments: World foldername + * + * Parent Class: Minecraft + */ +m.launchIntegratedServer = "func_71371_a" +/** + * Returns whether we're in full screen or not. + * + * Parent Class: Minecraft + */ +m.isFullScreen = "func_71372_G" +/** + * + * + * Parent Class: Minecraft + */ +m.isFancyGraphicsEnabled = "func_71375_t" +/** + * Wrapper around displayCrashReportInternal + * + * Parent Class: Minecraft + */ +m.displayCrashReport = "func_71377_b" +m.getPlayerUsageSnooper = {} +/** + * Returns the PlayerUsageSnooper instance. + * + * Parent Class: Minecraft + */ +m.getPlayerUsageSnooper.Minecraft = "func_71378_E" +/** + * + * + * Parent Class: MinecraftServer + */ +m.getPlayerUsageSnooper.MinecraftServer = "func_80003_ah" + +/** + * Returns if ambient occlusion is enabled + * + * Parent Class: Minecraft + */ +m.isAmbientOcclusionEnabled = "func_71379_u" +/** + * Will set the focus to ingame if the Minecraft window is the active with focus. Also clears any GUI screen currently displayed + * + * Parent Class: Minecraft + */ +m.setIngameFocus = "func_71381_h" +/** + * + * + * Parent Class: Minecraft + */ +m.isGuiEnabled = "func_71382_s" +/** + * Update debugProfilerName in response to number keys in debug screen + * + * Parent Class: Minecraft + */ +m.updateDebugProfilerName = "func_71383_b" +/** + * "Starts the game: initializes the canvas + * + * Parent Class: Minecraft + */ +m.startGame = "func_71384_a" +/** + * Displays the ingame menu + * + * Parent Class: Minecraft + */ +m.displayInGameMenu = "func_71385_j" +/** + * Gets the system time in milliseconds. + * + * Parent Class: Minecraft + */ +m.getSystemTime = "func_71386_F" +/** + * + * + * Parent Class: Minecraft + */ +m.isIntegratedServerRunning = "func_71387_A" +/** + * + * + * Parent Class: Minecraft + */ +m.startTimerHackThread = "func_71389_H" +/** + * "adds core server Info (GL version + * + * Parent Class: Minecraft + */ +m.addGraphicsAndWorldToCrashReport = "func_71396_d" +/** + * + * + * Parent Class: Minecraft + */ +m.freeMemory = "func_71398_f" +/** + * Called when the window is closing. Sets 'running' to false which allows the game loop to exit cleanly. + * + * Parent Class: Minecraft + */ +m.shutdown = "func_71400_g" +/** + * Returns the currently running integrated server + * + * Parent Class: Minecraft + */ +m.getIntegratedServer = "func_71401_C" +/** + * + * + * Parent Class: Minecraft + */ +m.crashed = "func_71404_a" +/** + * "Shuts down the minecraft applet by stopping the resource downloads + * + * Parent Class: Minecraft + */ +m.shutdownMinecraftApplet = "func_71405_e" +/** + * Runs the current tick. + * + * Parent Class: Minecraft + */ +m.runTick = "func_71407_l" +/** + * Return the singleton Minecraft instance for the game + * + * Parent Class: Minecraft + */ +m.getMinecraft = "func_71410_x" +/** + * Called repeatedly from run() + * + * Parent Class: Minecraft + */ +m.runGameLoop = "func_71411_J" +/** + * "Gets the stack trace of the Throwable that caused this crash report + * + * Parent Class: CrashReport + */ +m.getCauseStackTraceOrString = "func_71498_d" +/** + * Adds a Crashreport section with the given name with the given Throwable + * + * Parent Class: CrashReportCategory + */ +m.addCrashSectionThrowable = "func_71499_a" +/** + * Adds a Crashreport section with the given name with the value set to the result of the given Callable; + * + * Parent Class: CrashReportCategory + */ +m.addCrashSectionCallable = "func_71500_a" +/** + * "Gets the complete report with headers + * + * Parent Class: CrashReport + */ +m.getCompleteReport = "func_71502_e" +/** + * Populates this crash report with initial information about the running server and operating system / java environment + * + * Parent Class: CrashReport + */ +m.populateEnvironment = "func_71504_g" +/** + * Returns the Throwable object that is the cause for the crash and Crash Report. + * + * Parent Class: CrashReport + */ +m.getCrashCause = "func_71505_b" +/** + * Gets the various sections of the crash report into the given StringBuilder + * + * Parent Class: CrashReport + */ +m.getSectionsInStringBuilder = "func_71506_a" +/** + * Adds a Crashreport section with the given name with the given value (convered .toString()) + * + * Parent Class: CrashReportCategory + */ +m.addCrashSection = "func_71507_a" +/** + * Get a list of aliases for this command. <b>Never return null!</b> + * + * Parent Class: ICommand + */ +m.getCommandAliases = "func_71514_a" +/** + * Callback when the command is invoked + * + * Parent Class: CommandEffect + */ +m.processCommand = "func_71515_b" +/** + * Gets the name of the command + * + * Parent Class: CommandEffect + */ +m.getCommandName = "func_71517_b" +/** + * Gets the usage string for the command. + * + * Parent Class: CommandEffect + */ +m.getCommandUsage = "func_71518_a" +/** + * Returns the given ICommandSender as a EntityPlayer or throw an exception. + * + * Parent Class: CommandBase + */ +m.getCommandSenderAsPlayer = "func_71521_c" +/** + * Returns true if the given substring is exactly equal to the start of the given string (case insensitive). + * + * Parent Class: CommandBase + */ +m.doesStringStartWith = "func_71523_a" +/** + * "Creates a linguistic series joining the input objects together. Examples: 1) {} --> """" + * + * Parent Class: CommandBase + */ +m.joinNiceString = "func_71527_a" +/** + * Sets the static IAdminCommander. + * + * Parent Class: CommandBase + */ +m.setAdminCommander = "func_71529_a" +/** + * Returns a sorted list of all possible commands for the given ICommandSender. + * + * Parent Class: CommandHelp + */ +m.getSortedPossibleCommands = "func_71534_d" +m.getCommands = {} +/** + * + * + * Parent Class: CommandHelp + */ +m.getCommands.CommandHelp = "func_71535_c" +/** + * Get a Map of all the name to command pairs stored in this command manager. + * + * Parent Class: ICommandManager + */ +m.getCommands.ICommandManager = "func_71555_a" + +/** + * Returns String array containing all player usernames in the server. + * + * Parent Class: CommandGameMode + */ +m.getListOfPlayerUsernames = "func_71538_c" +/** + * Gets the Game Mode specified in the command. + * + * Parent Class: CommandGameMode + */ +m.getGameModeFromCommand = "func_71539_b" +/** + * Set the time in the server object. + * + * Parent Class: CommandTime + */ +m.setTime = "func_71552_a" +/** + * Adds (or removes) time in the server object. + * + * Parent Class: CommandTime + */ +m.addTime = "func_71553_b" +/** + * Toggle rain and enable thundering. + * + * Parent Class: CommandToggleDownfall + */ +m.toggleDownfall = "func_71554_c" +/** + * Get a list of commands that the given command sender has access to execute. + * + * @param sender The command sender + * + * Parent Class: ICommandManager + */ +m.getPossibleCommands = "func_71557_a" +/** + * creates a new array and sets elements 0..n-2 to be 0..n-1 of the input (n elements) + * + * Parent Class: CommandHandler + */ +m.dropFirstString = "func_71559_a" +/** + * adds the command and any aliases it has to the internal map of available commands + * + * Parent Class: CommandHandler + */ +m.registerCommand = "func_71560_a" +/** + * Filter string by only keeping those characters for which isAllowedCharacter() returns true. + * + * Parent Class: ChatAllowedCharacters + */ +m.filterAllowedCharacters = "func_71565_a" +/** + * + * + * Parent Class: ChatAllowedCharacters + */ +m.isAllowedCharacter = "func_71566_a" +/** + * Gets the CrashReport wrapped by this exception. + * + * Parent Class: ReportedException + */ +m.getCrashReport = "func_71575_a" +/** + * "Returns a bounding box expanded by the specified vector (if negative numbers are given it will shrink). Args: x + * + * Parent Class: AxisAlignedBB + */ +m.expand = "func_72314_b" +/** + * Checks if the specified vector is within the XZ dimensions of the bounding box. Args: Vec3D + * + * Parent Class: AxisAlignedBB + */ +m.isVecInXZ = "func_72315_c" +/** + * "if instance and the argument bounding boxes overlap in the Y and Z dimensions + * + * Parent Class: AxisAlignedBB + */ +m.calculateXOffset = "func_72316_a" +/** + * Checks if the specified vector is within the XY dimensions of the bounding box. Args: Vec3D + * + * Parent Class: AxisAlignedBB + */ +m.isVecInXY = "func_72319_d" +/** + * Returns the average length of the edges of the bounding box. + * + * Parent Class: AxisAlignedBB + */ +m.getAverageEdgeLength = "func_72320_b" +/** + * "Adds the coordinates to the bounding box extending it if the point lies outside the current ranges. Args: x + * + * Parent Class: AxisAlignedBB + */ +m.addCoord = "func_72321_a" +/** + * "if instance and the argument bounding boxes overlap in the Y and X dimensions + * + * Parent Class: AxisAlignedBB + */ +m.calculateZOffset = "func_72322_c" +/** + * "if instance and the argument bounding boxes overlap in the X and Z dimensions + * + * Parent Class: AxisAlignedBB + */ +m.calculateYOffset = "func_72323_b" +m.intersectsWith = {} +/** + * Returns whether the given bounding box intersects with this one. Args: axisAlignedBB + * + * Parent Class: AxisAlignedBB + */ +m.intersectsWith.AxisAlignedBB = "func_72326_a" +/** + * Discover if a coordinate is inside the bounding box area. + * + * Parent Class: StructureBoundingBox + */ +m.intersectsWith.StructureBoundingBox = "func_78885_a" + +/** + * + * + * Parent Class: AxisAlignedBB + */ +m.calculateIntercept = "func_72327_a" +/** + * Returns a bounding box that is inset by the specified amounts + * + * Parent Class: AxisAlignedBB + */ +m.contract = "func_72331_e" +/** + * Checks if the specified vector is within the YZ dimensions of the bounding box. Args: Vec3D + * + * Parent Class: AxisAlignedBB + */ +m.isVecInYZ = "func_72333_b" +/** + * Updates the time and weather for the given player to those of the given world + * + * Parent Class: ServerConfigurationManager + */ +m.updateTimeAndWeatherForPlayer = "func_72354_b" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.initializeConnectionToPlayer = "func_72355_a" +/** + * moves provided player from overworld to nether or vice versa + * + * Parent Class: ServerConfigurationManager + */ +m.transferPlayerToDimension = "func_72356_a" +/** + * "using player's dimension + * + * Parent Class: ServerConfigurationManager + */ +m.serverUpdateMountedMovingPlayer = "func_72358_d" +/** + * "Either does nothing + * + * Parent Class: ServerConfigurationManager + */ +m.loadWhiteList = "func_72362_j" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.getBannedIPs = "func_72363_f" +/** + * Sets the NBT manager to the one for the WorldServer given. + * + * Parent Class: ServerConfigurationManager + */ +m.setPlayerManager = "func_72364_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.getServerInstance = "func_72365_p" +/** + * Called when a player disconnects from the game. Writes player data to disk and removes them from the world. + * + * Parent Class: ServerConfigurationManager + */ +m.playerLoggedOut = "func_72367_e" +/** + * Called on respawn + * + * Parent Class: ServerConfigurationManager + */ +m.recreatePlayerEntity = "func_72368_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.setWhiteListEnabled = "func_72371_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.getEntityViewDistance = "func_72372_a" +m.getAvailablePlayerDat = {} +/** + * Returns an array of usernames for which player.dat exists for. + * + * Parent Class: ServerConfigurationManager + */ +m.getAvailablePlayerDat.ServerConfigurationManager = "func_72373_m" +/** + * Returns an array of usernames for which player.dat exists for. + * + * Parent Class: IPlayerFileData + */ +m.getAvailablePlayerDat.IPlayerFileData = "func_75754_f" + +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.preparePlayer = "func_72375_a" +/** + * Called when a player successfully logs in. Reads player data from disk and inserts the player into the world. + * + * Parent Class: ServerConfigurationManager + */ +m.playerLoggedIn = "func_72377_c" +/** + * "On integrated servers + * + * Parent Class: ServerConfigurationManager + */ +m.getHostPlayerData = "func_72378_q" +/** + * called during player login. reads the player information from disk. + * + * Parent Class: ServerConfigurationManager + */ +m.readPlayerDataFromFile = "func_72380_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.setPlayerGameTypeBasedOnOther = "func_72381_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.getPlayersMatchingAddress = "func_72382_j" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.isWhiteListEnabled = "func_72383_n" +/** + * sends the players inventory to himself + * + * Parent Class: ServerConfigurationManager + */ +m.syncPlayerInventory = "func_72385_f" +/** + * Sets whether all players are allowed to use commands (cheats) on the server. + * + * Parent Class: ServerConfigurationManager + */ +m.setCommandsAllowedForAll = "func_72387_b" +/** + * Saves all of the players' current states. + * + * Parent Class: ServerConfigurationManager + */ +m.saveAllPlayerData = "func_72389_g" +m.writePlayerData = {} +/** + * also stores the NBTTags if this is an intergratedPlayerList + * + * Parent Class: ServerConfigurationManager + */ +m.writePlayerData.ServerConfigurationManager = "func_72391_b" +/** + * Writes the player data to disk from the specified PlayerEntityMP. + * + * Parent Class: IPlayerFileData + */ +m.writePlayerData.IPlayerFileData = "func_75753_a" + +/** + * "Kicks everyone with ""Server closed"" as reason." + * + * Parent Class: ServerConfigurationManager + */ +m.removeAllPlayers = "func_72392_r" +/** + * Gets the View Distance. + * + * Parent Class: ServerConfigurationManager + */ +m.getViewDistance = "func_72395_o" +/** + * + * + * Parent Class: DedicatedPlayerList + */ +m.loadOpsList = "func_72417_t" +/** + * + * + * Parent Class: DedicatedPlayerList + */ +m.readWhiteList = "func_72418_v" +/** + * + * + * Parent Class: DedicatedPlayerList + */ +m.saveOpsList = "func_72419_u" +/** + * + * + * Parent Class: DedicatedPlayerList + */ +m.saveWhiteList = "func_72421_w" +/** + * "Returns a new vector with x value equal to the second parameter + * + * Parent Class: Vec3 + */ +m.getIntermediateWithXValue = "func_72429_b" +/** + * + * + * Parent Class: Vec3 + */ +m.dotProduct = "func_72430_b" +/** + * Returns the length of the vector. + * + * Parent Class: Vec3 + */ +m.lengthVector = "func_72433_c" +/** + * "Returns a new vector with z value equal to the second parameter + * + * Parent Class: Vec3 + */ +m.getIntermediateWithZValue = "func_72434_d" +/** + * "Returns a new vector with y value equal to the second parameter + * + * Parent Class: Vec3 + */ +m.getIntermediateWithYValue = "func_72435_c" +/** + * The square of the Euclidean distance between this and the specified vector. + * + * Parent Class: Vec3 + */ +m.squareDistanceTo = "func_72436_e" +m.distanceTo = {} +/** + * "Euclidean distance between this and the specified vector + * + * Parent Class: Vec3 + */ +m.distanceTo.Vec3 = "func_72438_d" +/** + * Returns the linear distance to another path point + * + * Parent Class: PathPoint + */ +m.distanceTo.PathPoint = "func_75829_a" + +/** + * "Adds the specified x + * + * Parent Class: Vec3 + */ +m.addVector = "func_72441_c" +/** + * Returns a new vector with the result of the specified vector minus this. + * + * Parent Class: Vec3 + */ +m.subtractReverse = "func_72444_a" +/** + * Returns the request ID provided by the client. + * + * Parent Class: RConThreadQuery$Auth + */ +m.getRequestId = "func_72591_c" +/** + * Returns the random challenge number assigned to this auth + * + * Parent Class: RConThreadQuery$Auth + */ +m.getRandomChallenge = "func_72592_a" +/** + * "Returns true if the auth's creation timestamp is less than the given time + * + * Parent Class: RConThreadQuery$Auth + */ +m.hasExpired = "func_72593_a" +/** + * Returns the auth challenge value + * + * Parent Class: RConThreadQuery$Auth + */ +m.getChallengeValue = "func_72594_b" +/** + * Registers a DatagramSocket with this thread + * + * Parent Class: RConThreadBase + */ +m.registerSocket = "func_72601_a" +/** + * Creates a new Thread object from this class and starts running + * + * Parent Class: RConThreadMain + */ +m.startThread = "func_72602_a" +/** + * Returns the number of players on the server + * + * Parent Class: RConThreadBase + */ +m.getNumberOfPlayers = "func_72603_d" +m.closeSocket = {} +/** + * Closes the specified DatagramSocket + * + * Parent Class: RConThreadBase + */ +m.closeSocket.RConThreadBase = "func_72604_a" +/** + * Closes the client socket + * + * Parent Class: RConThreadClient + */ +m.closeSocket.RConThreadClient = "func_72653_g" + +/** + * Closes the specified ServerSocket + * + * Parent Class: RConThreadBase + */ +m.closeServerSocket_do = "func_72605_a" +/** + * Closes the specified ServerSocket + * + * Parent Class: RConThreadBase + */ +m.closeServerSocket = "func_72608_b" +/** + * Closes all of the opened sockets + * + * Parent Class: RConThreadBase + */ +m.closeAllSockets = "func_72611_e" +/** + * Closes all of the opened sockets + * + * Parent Class: RConThreadBase + */ +m.closeAllSockets_do = "func_72612_a" +m.isRunning = {} +/** + * "Returns true if the Thread is running + * + * Parent Class: RConThreadBase + */ +m.isRunning.RConThreadBase = "func_72613_c" +/** + * @see #isRunning + * + * Parent Class: EntityAITempt + */ +m.isRunning.EntityAITempt = "func_75277_f" + +/** + * Sends a byte array as a DatagramPacket response to the client who sent the given DatagramPacket + * + * Parent Class: RConThreadQuery + */ +m.sendResponsePacket = "func_72620_a" +/** + * "Parses an incoming DatagramPacket + * + * Parent Class: RConThreadQuery + */ +m.parseIncomingPacket = "func_72621_a" +/** + * Sends an auth challenge DatagramPacket to the client and adds the client to the queryClients map + * + * Parent Class: RConThreadQuery + */ +m.sendAuthChallenge = "func_72622_d" +/** + * Stops the query server and reports the given Exception + * + * Parent Class: RConThreadQuery + */ +m.stopWithException = "func_72623_a" +/** + * Creates a query response as a byte array for the specified query DatagramPacket + * + * Parent Class: RConThreadQuery + */ +m.createQueryResponse = "func_72624_b" +/** + * Returns the request ID provided by the authorized client + * + * Parent Class: RConThreadQuery + */ +m.getRequestID = "func_72625_a" +/** + * Initializes the query system by binding it to a port + * + * Parent Class: RConThreadQuery + */ +m.initQuerySystem = "func_72626_g" +/** + * "Returns true if the client has a valid auth + * + * Parent Class: RConThreadQuery + */ +m.verifyClientAuth = "func_72627_c" +/** + * Removes all clients whose auth is no longer valid + * + * Parent Class: RConThreadQuery + */ +m.cleanQueryClientsMap = "func_72628_f" +/** + * Cleans up the clientThreads map by removing client Threads that are not running + * + * Parent Class: RConThreadMain + */ +m.cleanClientThreadsMap = "func_72645_g" +/** + * + * + * Parent Class: RConThreadMain + */ +m.initClientThreadList = "func_72646_f" +/** + * Sends the given response message to the client + * + * Parent Class: RConThreadClient + */ +m.sendResponse = "func_72654_a" +/** + * Splits the response message into individual packets and sends each one + * + * Parent Class: RConThreadClient + */ +m.sendMultipacketResponse = "func_72655_a" +/** + * Sends the standard RCon 'authorization failed' response packet + * + * Parent Class: RConThreadClient + */ +m.sendLoginFailedResponse = "func_72656_f" +/** + * Read a null-terminated string from the given byte array + * + * Parent Class: RConUtils + */ +m.getBytesAsString = "func_72661_a" +/** + * Read 4 bytes from the + * + * Parent Class: RConUtils + */ +m.getRemainingBytesAsLEInt = "func_72662_b" +/** + * Returns a String representation of the byte in hexadecimal format + * + * Parent Class: RConUtils + */ +m.getByteAsHexString = "func_72663_a" +/** + * Read 4 bytes from the given array in big-endian format and return them as an int + * + * Parent Class: RConUtils + */ +m.getBytesAsBEint = "func_72664_c" +/** + * Read 4 bytes from the given array in little-endian format and return them as an int + * + * Parent Class: RConUtils + */ +m.getBytesAsLEInt = "func_72665_b" +/** + * Writes the given int to the output stream + * + * Parent Class: RConOutputStream + */ +m.writeInt = "func_72667_a" +/** + * Writes the given short to the output stream + * + * Parent Class: RConOutputStream + */ +m.writeShort = "func_72668_a" +m.addPlayer = {} +/** + * Adds an EntityPlayerMP to the PlayerManager and to all player instances within player visibility + * + * Parent Class: PlayerManager + */ +m.addPlayer.PlayerManager = "func_72683_a" +/** + * + * + * Parent Class: PlayerManager$PlayerInstance + */ +m.addPlayer.PlayerManager$PlayerInstance = "func_73255_a" + +/** + * "Determine if two rectangles centered at the given points overlap for the provided radius. Arguments: x1 + * + * Parent Class: PlayerManager + */ +m.overlaps = "func_72684_a" +/** + * "update chunks around a player being moved by server logic (e.g. cart + * + * Parent Class: PlayerManager + */ +m.updateMountedMovingPlayer = "func_72685_d" +/** + * Get the furthest viewable block given player's view distance + * + * Parent Class: PlayerManager + */ +m.getFurthestViewableBlock = "func_72686_a" +/** + * Returns the WorldServer associated with this PlayerManager + * + * Parent Class: PlayerManager + */ +m.getWorldServer = "func_72688_a" +/** + * passi n the chunk x and y and a flag as to whether or not the instance should be made if it doesnt exist + * + * Parent Class: PlayerManager + */ +m.getPlayerInstance = "func_72690_a" +/** + * Removes all chunks from the given player's chunk load queue that are not in viewing range of the player. + * + * Parent Class: PlayerManager + */ +m.filterChunkLoadQueue = "func_72691_b" +/** + * updates all the player instances that need to be updated + * + * Parent Class: PlayerManager + */ +m.updatePlayerInstances = "func_72693_b" +/** + * + * + * Parent Class: PlayerManager + */ +m.isPlayerWatchingChunk = "func_72694_a" +m.removePlayer = {} +/** + * Removes an EntityPlayerMP from the PlayerManager. + * + * Parent Class: PlayerManager + */ +m.removePlayer.PlayerManager = "func_72695_c" +/** + * + * + * Parent Class: PlayerManager$PlayerInstance + */ +m.removePlayer.PlayerManager$PlayerInstance = "func_73252_b" + +m.onEntityAdded = {} +/** + * "Called on all IWorldAccesses when an entity is created or loaded. On client worlds + * + * Parent Class: WorldManager + */ +m.onEntityAdded.WorldManager = "func_72703_a" +/** + * + * + * Parent Class: WorldServer + */ +m.onEntityAdded.WorldServer = "func_72923_a" + +m.onEntityRemoved = {} +/** + * "Called on all IWorldAccesses when an entity is unloaded or destroyed. On client worlds + * + * Parent Class: WorldManager + */ +m.onEntityRemoved.WorldManager = "func_72709_b" +/** + * + * + * Parent Class: WorldServer + */ +m.onEntityRemoved.WorldServer = "func_72847_b" + +/** + * Loads all the renderers and sets up the basic settings usage + * + * Parent Class: RenderGlobal + */ +m.loadRenderers = "func_72712_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.createBindEntityOutlineFbs = "func_72720_a" +/** + * Checks if the given position is to be rendered with cloud fog + * + * Parent Class: RenderGlobal + */ +m.hasCloudFog = "func_72721_a" +/** + * Gets the entities info for use on the Debug screen + * + * Parent Class: RenderGlobal + */ +m.getDebugInfoEntities = "func_72723_d" +/** + * Deletes all display lists + * + * Parent Class: RenderGlobal + */ +m.deleteAllDisplayLists = "func_72728_f" +/** + * set null to clear + * + * Parent Class: RenderGlobal + */ +m.setWorldAndLoadRenderers = "func_72732_a" +/** + * + * + * Parent Class: RenderGlobal + */ +m.updateClouds = "func_72734_e" +/** + * Gets the render info for use on the Debug screen + * + * Parent Class: RenderGlobal + */ +m.getDebugInfoRenders = "func_72735_c" +/** + * "Args : Entity + * + * Parent Class: EntityTracker + */ +m.addEntityToTracker = "func_72785_a" +/** + * + * + * Parent Class: EntityTracker + */ +m.trackEntity = "func_72791_a" +/** + * + * + * Parent Class: EntityTracker + */ +m.removePlayerFromTrackers = "func_72787_a" +/** + * + * + * Parent Class: EntityTracker + */ +m.updateTrackedEntities = "func_72788_a" +/** + * + * + * Parent Class: EntityTracker + */ +m.untrackEntity = "func_72790_b" +/** + * set by !chunk.getAreLevelsEmpty + * + * Parent Class: ChunkCache + */ +m.extendedLevelsInChunkCache = "func_72806_N" +/** + * + * + * Parent Class: World + */ +m.getThunderStrength = "func_72819_i" +/** + * "Assigns the given String id to the given MapDataBase using the MapStorage + * + * Parent Class: World + */ +m.setItemData = "func_72823_a" +/** + * + * + * Parent Class: World + */ +m.getCloudColour = "func_72824_f" +/** + * calls calculateCelestialAngle + * + * Parent Class: World + */ +m.getCelestialAngle = "func_72826_c" +/** + * "Returns the name of the current chunk provider + * + * Parent Class: World + */ +m.getProviderName = "func_72827_u" +/** + * Returns true if there are any blocks in the region constrained by an AxisAlignedBB + * + * Parent Class: World + */ +m.checkBlockCollision = "func_72829_c" +/** + * checks if the given AABB is in the material given. Used while swimming. + * + * Parent Class: World + */ +m.isAABBInMaterial = "func_72830_b" +/** + * Calculates the color for the skybox + * + * Parent Class: World + */ +m.getSkyColor = "func_72833_a" +/** + * Called when an entity is spawned in the world. This includes players. + * + * Parent Class: WorldClient + */ +m.spawnEntityInWorld = "func_72838_d" +/** + * "Will get all entities within the specified AABB excluding the one passed into it. Args: entityToExclude + * + * Parent Class: World + */ +m.getEntitiesWithinAABBExcludingEntity = "func_72839_b" +m.getUniqueDataId = {} +/** + * Returns an unique new data id from the MapStorage for the given prefix and saves the idCounts map to the 'idcounts' file. + * + * Parent Class: World + */ +m.getUniqueDataId.World = "func_72841_b" +/** + * Returns an unique new data id for the given prefix and saves the idCounts map to the 'idcounts' file. + * + * Parent Class: MapStorage + */ +m.getUniqueDataId.MapStorage = "func_75743_a" + +/** + * "Gets the percentage of real blocks within within a bounding box + * + * Parent Class: World + */ +m.getBlockDensity = "func_72842_a" +/** + * puts the World Random seed to a specific state dependant on the inputs + * + * Parent Class: World + */ +m.setRandomSeed = "func_72843_D" +/** + * Removes a worldAccess from the worldAccesses object + * + * Parent Class: World + */ +m.removeWorldAccess = "func_72848_b" +m.getMoonPhase = {} +/** + * + * + * Parent Class: World + */ +m.getMoonPhase.World = "func_72853_d" +/** + * + * + * Parent Class: WorldProvider + */ +m.getMoonPhase.WorldProvider = "func_76559_b" + +/** + * Updates the flag that indicates whether or not all players in the world are sleeping. + * + * Parent Class: WorldServer + */ +m.updateAllPlayersSleepingFlag = "func_72854_c" +/** + * "Returns true if there are no solid + * + * Parent Class: World + */ +m.checkNoEntityCollision = "func_72917_a" +/** + * + * + * Parent Class: World + */ +m.findNearestEntityWithinAABB = "func_72857_a" +/** + * Returns this world's current save handler + * + * Parent Class: World + */ +m.getSaveHandler = "func_72860_G" +/** + * gets the world's chunk provider + * + * Parent Class: World + */ +m.getChunkProvider = "func_72863_F" +/** + * "Will update the entity in the world if the chunk the entity is in is currently loaded or its forced to update. Args: entity + * + * Parent Class: WorldServer + */ +m.updateEntityWithOptionalForce = "func_72866_a" +/** + * Returns rain strength. + * + * Parent Class: World + */ +m.getRainStrength = "func_72867_j" +/** + * Will update the entity in the world if the chunk the entity is in is currently loaded. Args: entity + * + * Parent Class: World + */ +m.updateEntity = "func_72870_g" +/** + * Returns true if the given bounding box contains the given material + * + * Parent Class: World + */ +m.isMaterialInBB = "func_72875_a" +/** + * "Creates an explosion. Args: entity + * + * Parent Class: World + */ +m.createExplosion = "func_72876_a" +m.setWorldTime = {} +/** + * Sets the world time. + * + * Parent Class: WorldClient + */ +m.setWorldTime.WorldClient = "func_72877_b" +/** + * Set current world time + * + * Parent Class: WorldInfo + */ +m.setWorldTime.WorldInfo = "func_76068_b" + +/** + * How bright are stars in the sky + * + * Parent Class: World + */ +m.getStarBrightness = "func_72880_h" +/** + * "If on MP + * + * Parent Class: WorldClient + */ +m.sendQuittingDisconnectingPacket = "func_72882_A" +/** + * returns a new explosion. Does initiation (at time of writing Explosion is not finished) + * + * Parent Class: WorldServer + */ +m.newExplosion = "func_72885_a" +/** + * "Gets the closest player to the entity within the specified distance (if distance is less than 0 then ignored). Args: entity + * + * Parent Class: World + */ +m.getClosestPlayerToEntity = "func_72890_a" +/** + * first boolean for hostile mobs and second for peaceful mobs + * + * Parent Class: World + */ +m.setAllowedSpawnTypes = "func_72891_a" +/** + * Sets the strength of the rain. + * + * Parent Class: World + */ +m.setRainStrength = "func_72894_k" +m.isRaining = {} +/** + * Returns true if the current rain strength is greater than 0.2 + * + * Parent Class: World + */ +m.isRaining.World = "func_72896_J" +/** + * "Returns true if it is raining + * + * Parent Class: WorldInfo + */ +m.isRaining.WorldInfo = "func_76059_o" + +/** + * spwans an entity and loads surrounding chunks + * + * Parent Class: World + */ +m.joinEntityInSurroundings = "func_72897_h" +/** + * + * + * Parent Class: World + */ +m.setActivePlayerChunksAndCheckLight = "func_72903_x" +m.checkSessionLock = {} +/** + * Checks whether the session lock file was modified by another process + * + * Parent Class: World + */ +m.checkSessionLock.World = "func_72906_B" +/** + * Checks the session lock to prevent save collisions + * + * Parent Class: SaveHandlerMP + */ +m.checkSessionLock.SaveHandlerMP = "func_75762_c" + +/** + * Counts how many entities of an entity class exist in the world. Args: entityClass + * + * Parent Class: World + */ +m.countEntities = "func_72907_a" +/** + * "Play a sound effect. Many many parameters for this function. Not sure what they do + * + * Parent Class: World + */ +m.playSoundEffect = "func_72908_a" +/** + * Accessor for world Loaded Entity List + * + * Parent Class: World + */ +m.getLoadedEntityList = "func_72910_y" +m.isThundering = {} +/** + * Returns true if the current thunder strength (weighted with the rain strength) is greater than 0.9 + * + * Parent Class: World + */ +m.isThundering.World = "func_72911_I" +/** + * "Returns true if it is thundering + * + * Parent Class: WorldInfo + */ +m.isThundering.WorldInfo = "func_76061_m" + +m.getWorldInfo = {} +/** + * Returns the world's WorldInfo object + * + * Parent Class: World + */ +m.getWorldInfo.World = "func_72912_H" +/** + * Returns the world's WorldInfo object + * + * Parent Class: ISaveFormat + */ +m.getWorldInfo.ISaveFormat = "func_75803_c" + +/** + * Adds some basic stats of the world to the given crash report. + * + * Parent Class: WorldClient + */ +m.addWorldInfoToCrashReport = "func_72914_a" +/** + * Returns true if the chunk is located near the spawn point + * + * Parent Class: World + */ +m.isSpawnChunk = "func_72916_c" +/** + * handles the acceleration of an object whilst in water. Not sure if it is used elsewhere. + * + * Parent Class: World + */ +m.handleMaterialAcceleration = "func_72918_a" +/** + * Returns horizon height for use in rendering the sky. + * + * Parent Class: World + */ +m.getHorizon = "func_72919_O" +/** + * + * + * Parent Class: WorldServer + */ +m.getPendingBlockUpdates = "func_72920_a" +/** + * Find a player by name in this world. + * + * Parent Class: World + */ +m.getPlayerEntityByName = "func_72924_a" +/** + * Return getCelestialAngle()*2*PI + * + * Parent Class: World + */ +m.getCelestialAngleRadians = "func_72929_e" +/** + * Checks whether its daytime by seeing if the light subtracted from the skylight is less than 4 + * + * Parent Class: World + */ +m.isDaytime = "func_72935_r" +/** + * Updates (and cleans up) entities and tile entities + * + * Parent Class: WorldServer + */ +m.updateEntities = "func_72939_s" +/** + * Returns current world height. + * + * Parent Class: World + */ +m.getActualHeight = "func_72940_L" +/** + * adds a lightning bolt to the list of lightning bolts in this world. + * + * Parent Class: WorldServer + */ +m.addWeatherEffect = "func_72942_c" +/** + * "Loads an existing MapDataBase corresponding to the given String id from disk using the MapStorage + * + * Parent Class: World + */ +m.loadItemData = "func_72943_a" +/** + * "Returns a list of bounding boxes that collide with aabb excluding the passed in entity's collision. Args: entity + * + * Parent Class: World + */ +m.getCollidingBoundingBoxes = "func_72945_a" +/** + * Called from World constructor to set rainingStrength and thunderingStrength + * + * Parent Class: World + */ +m.calculateInitialWeather = "func_72947_a" +m.getFogColor = {} +/** + * Returns vector(ish) with R/G/B for fog + * + * Parent Class: World + */ +m.getFogColor.World = "func_72948_g" +/** + * Return Vec3D with biome specific fog color + * + * Parent Class: WorldProviderEnd + */ +m.getFogColor.WorldProviderEnd = "func_76562_b" + +/** + * Returns if any of the blocks within the aabb are liquids. Args: aabb + * + * Parent Class: World + */ +m.isAnyLiquid = "func_72953_d" +/** + * Adds a IWorldAccess to the list of worldAccesses + * + * Parent Class: World + */ +m.addWorldAccess = "func_72954_a" +/** + * Runs through the list of updates to run and ticks them + * + * Parent Class: WorldServer + */ +m.tickUpdates = "func_72955_a" +/** + * "Plays a sound at the entity's position. Args: entity + * + * Parent Class: World + */ +m.playSoundAtEntity = "func_72956_a" +/** + * sends a Packet 38 (Entity Status) to all tracked players of that entity + * + * Parent Class: WorldServer + */ +m.setEntityState = "func_72960_a" +/** + * "Returns back a chunk looked up by chunk coordinates Args: x + * + * Parent Class: World + */ +m.getChunkFromChunkCoords = "func_72964_e" +/** + * Called on construction of the World class to setup the initial skylight values + * + * Parent Class: World + */ +m.calculateInitialSkylight = "func_72966_v" +/** + * Returns the amount of skylight subtracted for the current time + * + * Parent Class: World + */ +m.calculateSkylightSubtracted = "func_72967_a" +/** + * Creates the chunk provider for this world. Called in the constructor. Retrieves provider from worldProvider? + * + * Parent Class: WorldServer + */ +m.createChunkProvider = "func_72970_h" +/** + * "Returns the sun brightness - checks time of day + * + * Parent Class: World + */ +m.getSunBrightness = "func_72971_b" +/** + * Do NOT use this method to remove normal entities- use normal removeEntity + * + * Parent Class: World + */ +m.removePlayerEntityDangerously = "func_72973_f" +/** + * "Sets a new spawn location by finding an uncovered block at a random (x + * + * Parent Class: WorldServer + */ +m.setInitialSpawnLocation = "func_72974_f" +/** + * marks a vertical line of blocks as dirty + * + * Parent Class: World + */ +m.markBlocksDirtyVertical = "func_72975_g" +/** + * "Gets the closest player to the point within the specified distance (distance can be set to less than 0 to not limit the distance). Args: x + * + * Parent Class: World + */ +m.getClosestPlayer = "func_72977_a" +/** + * Updates all weather states. + * + * Parent Class: WorldServer + */ +m.updateWeather = "func_72979_l" +/** + * This string is 'All: (number of loaded entities)' Viewable by press ing F3 + * + * Parent Class: World + */ +m.getDebugLoadedEntities = "func_72981_t" +/** + * also releases skins. + * + * Parent Class: WorldClient + */ +m.removeAllEntities = "func_73022_a" +/** + * + * + * Parent Class: WorldClient + */ +m.doPreChunk = "func_73025_a" +/** + * Add an ID to Entity mapping to entityHashSet + * + * @param entityID The ID to give to the entity to spawn + * @param entityToSpawn The Entity to spawn in the World + * + * Parent Class: WorldClient + */ +m.addEntityToWorld = "func_73027_a" +/** + * + * + * Parent Class: WorldClient + */ +m.removeEntityFromWorld = "func_73028_b" +/** + * + * + * Parent Class: WorldClient + */ +m.doVoidFogParticles = "func_73029_E" +/** + * "Invalidates an AABB region of blocks from the receive queue + * + * Parent Class: WorldClient + */ +m.invalidateBlockReceiveRegion = "func_73031_a" +/** + * Gets the EntityTracker + * + * Parent Class: WorldServer + */ +m.getEntityTracker = "func_73039_n" +/** + * + * + * Parent Class: WorldServer + */ +m.getPlayerManager = "func_73040_p" +m.flush = {} +/** + * Syncs all changes to disk and wait for completion. + * + * Parent Class: WorldServer + */ +m.flush.WorldServer = "func_73041_k" +/** + * "Called to flush all changes to disk + * + * Parent Class: SaveHandlerMP + */ +m.flush.SaveHandlerMP = "func_75759_a" + +/** + * Saves the chunks to disk. + * + * Parent Class: WorldServer + */ +m.saveLevel = "func_73042_a" +/** + * Saves all chunks to disk while updating progress bar. + * + * Parent Class: WorldServer + */ +m.saveAllChunks = "func_73044_a" +/** + * "Returns the Entity with the given ID + * + * Parent Class: WorldClient + */ +m.getEntityByID = "func_73045_a" +/** + * + * + * Parent Class: WorldServer + */ +m.getMinecraftServer = "func_73046_m" +/** + * Creates the bonus chest in the world. + * + * Parent Class: WorldServer + */ +m.createBonusChest = "func_73047_i" +/** + * + * + * Parent Class: WorldServer + */ +m.resetRainAndThunder = "func_73051_P" +/** + * "creates a spawn position at random within 256 blocks of 0 + * + * Parent Class: WorldServer + */ +m.createSpawnPosition = "func_73052_b" +/** + * + * + * Parent Class: WorldServer + */ +m.wakeAllPlayers = "func_73053_d" +/** + * + * + * Parent Class: WorldServer + */ +m.areAllPlayersAsleep = "func_73056_e" +/** + * + * + * Parent Class: ItemInWorldManager + */ +m.updateBlockRemoving = "func_73075_a" +/** + * if the gameType is currently NOT_SET then change it to par1 + * + * Parent Class: ItemInWorldManager + */ +m.initializeGameType = "func_73077_b" +m.isCreative = {} +/** + * Get if we are in creative game mode. + * + * Parent Class: ItemInWorldManager + */ +m.isCreative.ItemInWorldManager = "func_73083_d" +/** + * Returns true if this is the CREATIVE game type + * + * Parent Class: WorldSettings$GameType + */ +m.isCreative.WorldSettings$GameType = "func_77145_d" + +/** + * Attempts to right-click use an item by the given EntityPlayer in the given World + * + * Parent Class: ItemInWorldManager + */ +m.tryUseItem = "func_73085_a" +/** + * Sends a message to the player reminding them that this is the demo version + * + * Parent Class: DemoWorldManager + */ +m.sendDemoReminder = "func_73101_e" +/** + * + * + * Parent Class: DestroyBlockProgress + */ +m.getPartialBlockDamage = "func_73106_e" +/** + * "inserts damage value into this partially destroyed Block. -1 causes client renderer to delete it + * + * Parent Class: DestroyBlockProgress + */ +m.setPartialBlockDamage = "func_73107_a" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +m.updatePlayerEntity = "func_73117_b" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +m.removeFromTrackedPlayers = "func_73118_a" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +m.sendDestroyEntityPacketToTrackedPlayers = "func_73119_a" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +m.isPlayerWatchingThisChunk = "func_73121_d" +/** + * Remove a tracked player from our list and tell the tracked player to destroy us from their world. + * + * Parent Class: EntityTrackerEntry + */ +m.removeTrackedPlayerSymmetric = "func_73123_c" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +m.updatePlayerEntities = "func_73125_b" +/** + * Converts the instance data to a readable string. + * + * Parent Class: ChunkProviderServer + */ +m.makeString = "func_73148_d" +/** + * "Checks to see if a chunk exists at x + * + * Parent Class: ChunkProviderServer + */ +m.chunkExists = "func_73149_a" +/** + * "Two modes of operation: if passed true + * + * Parent Class: ChunkProviderServer + */ +m.saveChunks = "func_73151_a" +/** + * + * + * Parent Class: ChunkProviderServer + */ +m.getLoadedChunkCount = "func_73152_e" +/** + * Populates chunk with ores etc etc + * + * Parent Class: ChunkProviderServer + */ +m.populate = "func_73153_a" +/** + * Unloads chunks that are marked to be unloaded. This is not guaranteed to unload every such chunk. + * + * Parent Class: ChunkProviderServer + */ +m.unloadQueuedChunks = "func_73156_b" +/** + * Returns if the IChunkProvider supports saving. + * + * Parent Class: ChunkProviderServer + */ +m.canSave = "func_73157_c" +m.loadChunk = {} +/** + * loads or generates the chunk at the chunk location specified + * + * @param chunkX x coord of the chunk to load (block coord >> 4) + * @param chunkZ z coord of the chunk to load (block coord >> 4) + * + * Parent Class: ChunkProviderServer + */ +m.loadChunk.ChunkProviderServer = "func_73158_c" +/** + * Loads the specified(XZ) chunk into the specified world. + * + * Parent Class: AnvilChunkLoader + */ +m.loadChunk.AnvilChunkLoader = "func_75815_a" + +m.initializeNoiseField = {} +/** + * "generates a subset of the level's terrain data. Takes 7 arguments: the [empty] noise array + * + * Parent Class: ChunkProviderHell + */ +m.initializeNoiseField.ChunkProviderHell = "func_73164_a" +/** + * "generates a subset of the level's terrain data. Takes 7 arguments: the [empty] noise array + * + * Parent Class: ChunkProviderEnd + */ +m.initializeNoiseField.ChunkProviderEnd = "func_73187_a" + +/** + * Unload chunk from ChunkProviderClient's hashmap. Called in response to a Packet50PreChunk with its mode field set to false + * + * Parent Class: ChunkProviderClient + */ +m.unloadChunk = "func_73234_b" +/** + * + * + * Parent Class: ChunkProviderServer + */ +m.loadChunkFromFile = "func_73239_e" +/** + * "marks all chunks for unload + * + * Parent Class: ChunkProviderServer + */ +m.unloadAllChunks = "func_73240_a" +/** + * + * + * Parent Class: ChunkProviderServer + */ +m.dropChunk = "func_73241_b" +/** + * + * + * Parent Class: ChunkProviderServer + */ +m.saveChunkExtraData = "func_73243_a" +/** + * Returns this PropertyManager's file object used for property saving. + * + * Parent Class: PropertyManager + */ +m.getPropertiesFile = "func_73665_c" +/** + * Generates a new properties file. + * + * Parent Class: PropertyManager + */ +m.generateNewProperties = "func_73666_a" +/** + * + * + * Parent Class: BanEntry + */ +m.getBanEndDate = "func_73680_d" +/** + * + * + * Parent Class: UserListEntry + */ +m.hasBanExpired = "func_73682_e" +/** + * + * + * Parent Class: BanEntry + */ +m.getBanReason = "func_73686_f" +/** + * Updates the progress bar on the loading screen to the specified amount. Args: loadProgress + * + * Parent Class: IProgressUpdate + */ +m.setLoadingProgress = "func_73718_a" +/** + * Displays a string on the loading screen supposed to indicate what is being done currently. + * + * Parent Class: IProgressUpdate + */ +m.displayLoadingString = "func_73719_c" +/** + * Shows the 'Saving level' string. + * + * Parent Class: IProgressUpdate + */ +m.displaySavingString = "func_73720_a" +/** + * "this string + * + * Parent Class: IProgressUpdate + */ +m.resetProgressAndMessage = "func_73721_b" +/** + * + * + * Parent Class: LoadingScreenRenderer + */ +m.displayString = "func_73722_d" +/** + * "Draw a 1 pixel wide vertical line. Args : x + * + * Parent Class: Gui + */ +m.drawVerticalLine = "func_73728_b" +/** + * "Draw a 1 pixel wide horizontal line. Args: x1 + * + * Parent Class: Gui + */ +m.drawHorizontalLine = "func_73730_a" +/** + * "Renders the specified text to the screen + * + * Parent Class: Gui + */ +m.drawCenteredString = "func_73732_a" +/** + * "Draws a rectangle with a vertical gradient between the specified colors (ARGB format). Args : x1 + * + * Parent Class: GuiScreenRealmsProxy + */ +m.drawGradientRect = "func_73733_a" +/** + * "Draws a solid color rectangle with the specified coordinates and color (ARGB format). Args: x1 + * + * Parent Class: Gui + */ +m.drawRect = "func_73734_a" +/** + * Renders dragon's (boss) health on the HUD + * + * Parent Class: GuiIngame + */ +m.renderBossHealth = "func_73828_d" +/** + * + * + * Parent Class: GuiIngame + */ +m.setRecordPlayingMessage = "func_73833_a" +/** + * + * + * Parent Class: GuiIngame + */ +m.getUpdateCounter = "func_73834_c" +/** + * "Adds the buttons (and other controls) to the screen in question. Called when the GUI is displayed and when the window resizes + * + * Parent Class: GuiTwitchUserMode + */ +m.initGui = "func_73866_w_" +/** + * Returns true if this GUI should pause the game when it is displayed in single-player + * + * Parent Class: GuiContainer + */ +m.doesGuiPauseGame = "func_73868_f" +/** + * "Fired when a key is typed (except F11 which toggles full screen). This is the equivalent of KeyListener.keyTyped(KeyEvent e). Args : character (character on the key) + * + * Parent Class: GuiMultiplayer + */ +m.keyTyped = "func_73869_a" +/** + * Called from the main game loop to update the screen. + * + * Parent Class: GuiMultiplayer + */ +m.updateScreen = "func_73876_c" +/** + * + * + * Parent Class: NetHandlerPlayClient$3$1 + */ +m.confirmClicked = "func_73878_a" +/** + * Rotate and blurs the skybox view in the main menu + * + * Parent Class: GuiMainMenu + */ +m.rotateAndBlurSkybox = "func_73968_a" +/** + * Adds Singleplayer and Multiplayer buttons on Main Menu for players who have bought the game. + * + * Parent Class: GuiMainMenu + */ +m.addSingleplayerMultiplayerButtons = "func_73969_a" +/** + * Draws the main menu panorama + * + * Parent Class: GuiMainMenu + */ +m.drawPanorama = "func_73970_b" +/** + * Renders the skybox in the main menu + * + * Parent Class: GuiMainMenu + */ +m.renderSkybox = "func_73971_c" +/** + * Adds Demo buttons on Main Menu for players who are playing Demo. + * + * Parent Class: GuiMainMenu + */ +m.addDemoButtons = "func_73972_b" +/** + * Updates all fields of the Timer using the current time + * + * Parent Class: Timer + */ +m.updateTimer = "func_74275_a" +/** + * "Creates a unique PNG file in the given directory named by a timestamp. Handles cases where the timestamp alone is not enough to create a uniquely named file + * + * Parent Class: ScreenShotHelper + */ +m.getTimestampedPNGFileForDirectory = "func_74290_a" +/** + * + * + * Parent Class: GameSettings + */ +m.getOptionFloatValue = "func_74296_a" +/** + * Gets a key binding. + * + * @param settingOption The KeyBinding is generated from this option + * + * Parent Class: GameSettings + */ +m.getKeyBinding = "func_74297_c" +/** + * Represents a key or mouse button as a string. Args: key + * + * @param key The key to display + * + * Parent Class: GameSettings + */ +m.getKeyDisplayString = "func_74298_c" +/** + * "Returns the translation of the given index in the given String array. If the index is smaller than 0 or greater than/equal to the length of the String array + * + * Parent Class: GameSettings + */ +m.getTranslation = "func_74299_a" +/** + * Loads the options from the options file. It appears that this has replaced the previous 'loadOptions' + * + * Parent Class: GameSettings + */ +m.loadOptions = "func_74300_a" +/** + * Saves the options to the options file. + * + * Parent Class: GameSettings + */ +m.saveOptions = "func_74303_b" +/** + * "If the specified option is controlled by a slider (float value) + * + * Parent Class: GameSettings + */ +m.setOptionFloatValue = "func_74304_a" +/** + * Parses a string into a float. + * + * @param str The string to parse + * + * Parent Class: GameSettings + */ +m.parseFloat = "func_74305_a" +/** + * "For non-float options. Toggles the option on/off + * + * Parent Class: GameSettings + */ +m.setOptionValue = "func_74306_a" +/** + * + * + * Parent Class: GameSettings + */ +m.getOptionOrdinalValue = "func_74308_b" +/** + * Grabs the mouse cursor it doesn't move and isn't seen. + * + * Parent Class: MouseHelper + */ +m.grabMouseCursor = "func_74372_a" +/** + * Ungrabs the mouse cursor so it can be moved and set it to the center of the screen + * + * Parent Class: MouseHelper + */ +m.ungrabMouseCursor = "func_74373_b" +/** + * + * + * Parent Class: MouseHelper + */ +m.mouseXYChange = "func_74374_c" +/** + * + * + * Parent Class: GameSettings$Options + */ +m.getEnumString = "func_74378_d" +/** + * + * + * Parent Class: GameSettings$Options + */ +m.getEnumOptions = "func_74379_a" +/** + * + * + * Parent Class: GameSettings$Options + */ +m.getEnumFloat = "func_74380_a" +/** + * + * + * Parent Class: GameSettings$Options + */ +m.returnEnumOrdinal = "func_74381_c" +/** + * + * + * Parent Class: GameSettings$Options + */ +m.getEnumBoolean = "func_74382_b" +/** + * Checks timeouts and processes all packets received + * + * Parent Class: NetworkManager + */ +m.processReceivedPackets = "func_74428_b" +/** + * Returns the socket address of the remote side. Server-only. + * + * Parent Class: NetworkManager + */ +m.getRemoteAddress = "func_74430_c" +/** + * + * + * Parent Class: KeyBinding + */ +m.unpressKey = "func_74505_d" +/** + * + * + * Parent Class: KeyBinding + */ +m.unPressAllKeys = "func_74506_a" +/** + * + * + * Parent Class: KeyBinding + */ +m.resetKeyBindingArrayAndHash = "func_74508_b" +/** + * + * + * Parent Class: KeyBinding + */ +m.setKeyBindState = "func_74510_a" +/** + * Update and return colorBuffer with the RGBA values passed as arguments + * + * Parent Class: RenderHelper + */ +m.setColorBuffer = "func_74521_a" +/** + * Disables the OpenGL lighting properties enabled by enableStandardItemLighting + * + * Parent Class: RenderHelper + */ +m.disableStandardItemLighting = "func_74518_a" +/** + * Sets the OpenGL lighting properties to the values used when rendering blocks as items + * + * Parent Class: RenderHelper + */ +m.enableStandardItemLighting = "func_74519_b" +/** + * Sets OpenGL lighting for rendering blocks as items inside GUI screens (such as containers). + * + * Parent Class: RenderHelper + */ +m.enableGUIStandardItemLighting = "func_74520_c" +/** + * Creates and returns a direct byte buffer with the specified capacity. Applies native ordering to speed up access. + * + * Parent Class: GLAllocation + */ +m.createDirectByteBuffer = "func_74524_c" +/** + * Generates the specified number of display lists and returns the first index. + * + * Parent Class: GLAllocation + */ +m.generateDisplayLists = "func_74526_a" +/** + * Creates and returns a direct int buffer with the specified capacity. Applies native ordering to speed up access. + * + * Parent Class: GLAllocation + */ +m.createDirectIntBuffer = "func_74527_f" +/** + * Creates and returns a direct float buffer with the specified capacity. Applies native ordering to speed up access. + * + * Parent Class: GLAllocation + */ +m.createDirectFloatBuffer = "func_74529_h" +/** + * + * + * Parent Class: ChatLine + */ +m.getChatLineID = "func_74539_c" +/** + * + * + * Parent Class: ChatLine + */ +m.getUpdatedCounter = "func_74540_b" +/** + * Updates the current render info and camera location based on entity look angles and 1st/3rd person view mode + * + * Parent Class: ActiveRenderInfo + */ +m.updateRenderInfo = "func_74583_a" +m.write = {} +/** + * "Write the actual data contents of the tag + * + * Parent Class: NBTBase + */ +m.write.NBTBase = "func_74734_a" +/** + * + * + * Parent Class: CompressedStreamTools + */ +m.write.CompressedStreamTools = "func_74800_a" +/** + * "args: sectorNumber + * + * Parent Class: RegionFile + */ +m.write.RegionFile = "func_76712_a" + +m.copy = {} +/** + * Creates a clone of the tag. + * + * Parent Class: NBTBase + */ +m.copy.NBTBase = "func_74737_b" +/** + * Returns a new stack with the same properties. + * + * Parent Class: ItemStack + */ +m.copy.ItemStack = "func_77946_l" + +/** + * Adds the provided tag to the end of the list. There is no check to verify this tag is of the same type as any previous tag. + * + * Parent Class: NBTTagList + */ +m.appendTag = "func_74742_a" +m.removeTag = {} +/** + * Removes a tag at the given index. + * + * Parent Class: NBTTagList + */ +m.removeTag.NBTTagList = "func_74744_a" +/** + * Remove the specified tag. + * + * Parent Class: NBTTagCompound + */ +m.removeTag.NBTTagCompound = "func_82580_o" + +/** + * Returns the number of tags in the list. + * + * Parent Class: NBTTagList + */ +m.tagCount = "func_74745_c" +/** + * "Stores the given boolean value as a NBTTagByte + * + * Parent Class: NBTTagCompound + */ +m.setBoolean = "func_74757_a" +/** + * Stores a new NBTTagInt with the given integer value into the map with the given string key. + * + * Parent Class: NBTTagCompound + */ +m.setInteger = "func_74768_a" +/** + * Stores a new NBTTagLong with the given long value into the map with the given string key. + * + * Parent Class: NBTTagCompound + */ +m.setLong = "func_74772_a" +/** + * Stores a new NBTTagByteArray with the given array as data into the map with the given string key. + * + * Parent Class: NBTTagCompound + */ +m.setByteArray = "func_74773_a" +/** + * Stores a new NBTTagByte with the given byte value into the map with the given string key. + * + * Parent Class: NBTTagCompound + */ +m.setByte = "func_74774_a" +/** + * "Retrieves a NBTTagCompound subtag matching the specified key + * + * Parent Class: NBTTagCompound + */ +m.getCompoundTag = "func_74775_l" +/** + * Stores a new NBTTagFloat with the given float value into the map with the given string key. + * + * Parent Class: NBTTagCompound + */ +m.setFloat = "func_74776_a" +/** + * Stores a new NBTTagShort with the given short value into the map with the given string key. + * + * Parent Class: NBTTagCompound + */ +m.setShort = "func_74777_a" +/** + * Stores a new NBTTagString with the given string value into the map with the given string key. + * + * Parent Class: NBTTagCompound + */ +m.setString = "func_74778_a" +/** + * Stores a new NBTTagDouble with the given double value into the map with the given string key. + * + * Parent Class: NBTTagCompound + */ +m.setDouble = "func_74780_a" +/** + * gets a generic tag with the specified name + * + * Parent Class: NBTTagCompound + */ +m.getTag = "func_74781_a" +/** + * Stores the given tag into the map with the given string key. This is mostly used to store tag lists. + * + * Parent Class: NBTTagCompound + */ +m.setTag = "func_74782_a" +/** + * Stores a new NBTTagIntArray with the given array as data into the map with the given string key. + * + * Parent Class: NBTTagCompound + */ +m.setIntArray = "func_74783_a" +/** + * + * + * Parent Class: CompressedStreamTools + */ +m.safeWrite = "func_74793_a" +/** + * Load the gzipped compound from the inputstream. + * + * Parent Class: CompressedStreamTools + */ +m.readCompressed = "func_74796_a" +/** + * "Write the compound + * + * Parent Class: CompressedStreamTools + */ +m.writeCompressed = "func_74799_a" +/** + * Translate a key to current language applying String.format() + * + * Parent Class: StringTranslate + */ +m.translateKeyFormat = "func_74803_a" +/** + * Translate a key to current language. + * + * Parent Class: StringTranslate + */ +m.translateKey = "func_74805_b" +/** + * Translates a Stat name with format args + * + * Parent Class: StatCollector + */ +m.translateToLocalFormatted = "func_74837_a" +/** + * Translates a Stat name + * + * Parent Class: StatCollector + */ +m.translateToLocal = "func_74838_a" +/** + * + * + * Parent Class: CommandException + */ +m.getErrorObjects = "func_74844_a" +/** + * checks the entire StructureBoundingBox for Liquids + * + * Parent Class: StructureComponent + */ +m.isLiquidInStructureBoundingBox = "func_74860_a" +/** + * "Initiates construction of the Structure Component picked + * + * Parent Class: StructureVillagePieces$Well + */ +m.buildComponent = "func_74861_a" +/** + * + * + * Parent Class: StructureComponent + */ +m.getYWithOffset = "func_74862_a" +/** + * + * + * Parent Class: StructureComponent + */ +m.getXWithOffset = "func_74865_a" +/** + * Deletes all continuous blocks from selected position upwards. Stops at hitting air. + * + * Parent Class: StructureComponent + */ +m.clearCurrentPositionBlocksUpwards = "func_74871_b" +/** + * + * + * Parent Class: StructureComponent + */ +m.getZWithOffset = "func_74873_b" +/** + * "second Part of Structure generating + * + * Parent Class: StructureVillagePieces$Well + */ +m.addComponentParts = "func_74875_a" +/** + * Returns the component type ID of this component. + * + * Parent Class: StructureComponent + */ +m.getComponentType = "func_74877_c" +/** + * "arguments: (World worldObj + * + * Parent Class: StructureComponent + */ +m.fillWithAir = "func_74878_a" +/** + * "arguments: World worldObj + * + * Parent Class: StructureComponent + */ +m.fillWithRandomizedBlocks = "func_74882_a" +/** + * Discover if bounding box can fit within the current bounding box object. + * + * Parent Class: StructureComponent + */ +m.findIntersecting = "func_74883_a" +m.getAverageGroundLevel = {} +/** + * Discover the y coordinate that will serve as the ground level of the supplied BoundingBox. (A median of all the levels in the BB's horizontal rectangle). + * + * Parent Class: StructureVillagePieces$Village + */ +m.getAverageGroundLevel.StructureVillagePieces$Village = "func_74889_b" +/** + * + * + * Parent Class: WorldProviderEnd + */ +m.getAverageGroundLevel.WorldProviderEnd = "func_76557_i" + +/** + * "Gets the next village component + * + * Parent Class: StructureVillagePieces$Village + */ +m.getNextComponentNN = "func_74891_a" +/** + * "Spawns a number of villagers in this component. Parameters: world + * + * Parent Class: StructureVillagePieces$Village + */ +m.spawnVillagers = "func_74893_a" +/** + * "Gets the next village component + * + * Parent Class: StructureVillagePieces$Village + */ +m.getNextComponentPP = "func_74894_b" +/** + * + * + * Parent Class: StructureVillagePieces$Village + */ +m.canVillageGoDeeper = "func_74895_a" +m.getTotalWeight = {} +/** + * + * + * Parent Class: StructureNetherBridgePieces$Piece + */ +m.getTotalWeight.StructureNetherBridgePieces$Piece = "func_74960_a" +/** + * Returns the total weight of all items in a collection. + * + * Parent Class: WeightedRandom + */ +m.getTotalWeight.WeightedRandom = "func_76272_a" + +m.getNextComponentX = {} +/** + * Gets the next component in the +/- X direction + * + * Parent Class: StructureNetherBridgePieces$Piece + */ +m.getNextComponentX.StructureNetherBridgePieces$Piece = "func_74961_b" +/** + * Gets the next component in the +/- X direction + * + * Parent Class: StructureStrongholdPieces$Stronghold + */ +m.getNextComponentX.StructureStrongholdPieces$Stronghold = "func_74989_b" + +m.getNextComponentNormal = {} +/** + * Gets the next component in any cardinal direction + * + * Parent Class: StructureNetherBridgePieces$Piece + */ +m.getNextComponentNormal.StructureNetherBridgePieces$Piece = "func_74963_a" +/** + * Gets the next component in any cardinal direction + * + * Parent Class: StructureStrongholdPieces$Stronghold + */ +m.getNextComponentNormal.StructureStrongholdPieces$Stronghold = "func_74986_a" + +/** + * Checks if the bounding box's minY is > 10 + * + * Parent Class: StructureNetherBridgePieces$Piece + */ +m.isAboveGround = "func_74964_a" +m.getNextComponentZ = {} +/** + * Gets the next component in the +/- Z direction + * + * Parent Class: StructureNetherBridgePieces$Piece + */ +m.getNextComponentZ.StructureNetherBridgePieces$Piece = "func_74965_c" +/** + * Gets the next component in the +/- Z direction + * + * Parent Class: StructureStrongholdPieces$Stronghold + */ +m.getNextComponentZ.StructureStrongholdPieces$Stronghold = "func_74987_c" + +/** + * + * + * Parent Class: StructureStrongholdPieces$Stronghold + */ +m.getRandomDoor = "func_74988_a" +/** + * returns false if the Structure Bounding Box goes below 10 + * + * Parent Class: StructureStrongholdPieces$Stronghold + */ +m.canStrongholdGoDeeper = "func_74991_a" +/** + * + * + * Parent Class: MapGenVillage + */ +m.canSpawnStructureAtCoords = "func_75047_a" +/** + * "Returns a list of other locations at which the structure generation has been run + * + * Parent Class: MapGenStructure + */ +m.getCoordList = "func_75052_o_" +/** + * + * + * Parent Class: MapGenNetherBridge + */ +m.getSpawnList = "func_75059_a" +/** + * picks Block Ids and Metadata (Silverfish) + * + * Parent Class: StructureComponent$BlockSelector + */ +m.selectBlocks = "func_75062_a" +/** + * "offsets the structure Bounding Boxes up to a certain height + * + * Parent Class: StructureStart + */ +m.markAvailableHeight = "func_75067_a" +/** + * "currently only defined for Villages + * + * Parent Class: MapGenVillage$Start + */ +m.isSizeableStructure = "func_75069_d" +/** + * + * + * Parent Class: StructureStart + */ +m.setRandomHeight = "func_75070_a" +/** + * + * + * Parent Class: StructureStart + */ +m.getComponents = "func_75073_b" +/** + * + * + * Parent Class: StructureVillagePieces + */ +m.getStructureVillageWeightedPieceList = "func_75084_a" +/** + * + * + * Parent Class: StructureVillagePieces$PieceWeight + */ +m.canSpawnMoreVillagePiecesOfType = "func_75085_a" +/** + * + * + * Parent Class: StructureVillagePieces$PieceWeight + */ +m.canSpawnMoreVillagePieces = "func_75086_a" +/** + * + * + * Parent Class: PlayerCapabilities + */ +m.writeCapabilitiesToNBT = "func_75091_a" +/** + * + * + * Parent Class: PlayerCapabilities + */ +m.readCapabilitiesFromNBT = "func_75095_b" +/** + * + * + * Parent Class: FoodStats + */ +m.setFoodLevel = "func_75114_a" +/** + * Writes the food data for the player. + * + * Parent Class: FoodStats + */ +m.writeNBT = "func_75117_b" +/** + * + * + * Parent Class: FoodStats + */ +m.setFoodSaturationLevel = "func_75119_b" +/** + * + * + * Parent Class: FoodStats + */ +m.getPrevFoodLevel = "func_75120_b" +/** + * Get whether the player must eat food. + * + * Parent Class: FoodStats + */ +m.needFood = "func_75121_c" +/** + * sets whether the player can craft in this inventory or not + * + * Parent Class: Container + */ +m.setCanCraft = "func_75128_a" +/** + * gets whether or not the player can craft in this inventory or not + * + * Parent Class: Container + */ +m.getCanCraft = "func_75129_b" +/** + * Callback for when the crafting matrix is changed. + * + * Parent Class: ContainerMerchant + */ +m.onCraftMatrixChanged = "func_75130_a" +/** + * "places itemstacks in first x slots + * + * Parent Class: Container + */ +m.putStacksInSlots = "func_75131_a" +/** + * + * + * Parent Class: ContainerMerchant + */ +m.onCraftGuiOpened = "func_75132_a" +/** + * Retries slotClick() in case of failure + * + * Parent Class: Container + */ +m.retrySlotClick = "func_75133_b" +/** + * Called when the container is closed. + * + * Parent Class: ContainerMerchant + */ +m.onContainerClosed = "func_75134_a" +/** + * "Merges provided ItemStack with the first avaliable one in the container/player inventor between minIndex (included) and maxIndex (excluded). Args : stack + * + * Parent Class: Container + */ +m.mergeItemStack = "func_75135_a" +/** + * Gets a unique transaction ID. Parameter is unused. + * + * Parent Class: Container + */ +m.getNextTransactionID = "func_75136_a" +/** + * + * + * Parent Class: ContainerMerchant + */ +m.updateProgressBar = "func_75137_b" +/** + * + * + * Parent Class: Container + */ +m.getSlot = "func_75139_a" +/** + * "Handles the given Button-click on the server + * + * Parent Class: ContainerEnchantment + */ +m.enchantItem = "func_75140_a" +/** + * "args: slotID + * + * Parent Class: Container + */ +m.putStackInSlot = "func_75141_a" +/** + * "Looks for changes made in the container + * + * Parent Class: ContainerMerchant + */ +m.detectAndSendChanges = "func_75142_b" +/** + * Handles slot click. + * + * Parent Class: Container + */ +m.slotClick = "func_75144_a" +/** + * + * + * Parent Class: ContainerMerchant + */ +m.canInteractWith = "func_75145_c" +/** + * Adds an item slot to this container + * + * Parent Class: Container + */ +m.addSlotToContainer = "func_75146_a" +/** + * + * + * Parent Class: Container + */ +m.getSlotFromInventory = "func_75147_a" +/** + * + * + * Parent Class: ContainerMerchant + */ +m.getMerchantInventory = "func_75174_d" +/** + * + * + * Parent Class: StructureStrongholdPieces$PieceWeight + */ +m.canSpawnMoreStructuresOfType = "func_75189_a" +/** + * + * + * Parent Class: StructureStrongholdPieces$PieceWeight + */ +m.canSpawnMoreStructures = "func_75190_a" +/** + * sets up Arrays with the Structure pieces and their weights + * + * Parent Class: StructureStrongholdPieces + */ +m.prepareStructurePieces = "func_75198_a" +/** + * + * + * Parent Class: StructureStrongholdPieces + */ +m.canAddStructurePieces = "func_75202_c" +m.onCrafting = {} +/** + * "the itemStack passed in is the output - ie + * + * Parent Class: Slot + */ +m.onCrafting.Slot = "func_75210_a" +/** + * + * + * Parent Class: ItemStack + */ +m.onCrafting.ItemStack = "func_77980_a" + +/** + * Check if the stack is a valid item for this slot. Always true beside for the armor slots. + * + * Parent Class: Slot + */ +m.isItemValid = "func_75214_a" +/** + * Helper method to put a stack in the slot. + * + * Parent Class: Slot + */ +m.putStack = "func_75215_d" +/** + * Returns if this slot contains a stack. + * + * Parent Class: Slot + */ +m.getHasStack = "func_75216_d" +/** + * returns true if the slot exists in the given inventory and location + * + * Parent Class: Slot + */ +m.isHere = "func_75217_a" +/** + * Called when the stack in a Slot changes + * + * Parent Class: Slot + */ +m.onSlotChanged = "func_75218_e" +/** + * "Returns the maximum stack size for a given slot (usually the same as getInventoryStackLimit() + * + * Parent Class: Slot + */ +m.getSlotStackLimit = "func_75219_a" +/** + * "if par2 has more items than par1 + * + * Parent Class: Slot + */ +m.onSlotChange = "func_75220_a" +/** + * + * + * Parent Class: SlotMerchantResult + */ +m.doTrade = "func_75230_a" +/** + * Returns true if this itemstack can be filled with a potion + * + * Parent Class: ContainerBrewingStand$Potion + */ +m.canHoldPotion = "func_75243_a_" +/** + * Updates the task + * + * Parent Class: EntitySlime$AISlimeFaceRandom + */ +m.updateTask = "func_75246_d" +/** + * "Get a bitmask telling which other tasks may not run concurrently. The test is a simple bitwise AND - if it yields zero + * + * Parent Class: EntityAIBase + */ +m.getMutexBits = "func_75247_h" +/** + * "Sets a bitmask telling which other tasks may not run concurrently. The test is a simple bitwise AND - if it yields zero + * + * Parent Class: EntityAIBase + */ +m.setMutexBits = "func_75248_a" +/** + * Execute a one shot task or start executing a continuous task + * + * Parent Class: EntitySlime$AISlimeAttack + */ +m.startExecuting = "func_75249_e" +/** + * Returns whether the EntityAIBase should begin execution. + * + * Parent Class: EntitySpider$AISpiderTarget + */ +m.shouldExecute = "func_75250_a" +/** + * Resets the task + * + * Parent Class: EntityGuardian$AIGuardianAttack + */ +m.resetTask = "func_75251_c" +/** + * Determine if this AI Task is interruptible by a higher (= lower value) priority task. All vanilla AITask have this value set to true. + * + * Parent Class: EntityAIBase + */ +m.isInterruptible = "func_75252_g" +/** + * Returns whether an in-progress EntityAIBase should continue executing + * + * Parent Class: EntitySpider$AISpiderAttack + */ +m.continueExecuting = "func_75253_b" +/** + * Checks to see if this entity can find a short path to the given target. + * + * @param target the entity to find a path to + * + * Parent Class: EntityAITarget + */ +m.canEasilyReach = "func_75295_a" +/** + * + * + * Parent Class: EntityAIFleeSun + */ +m.findPossibleShelter = "func_75366_f" +/** + * Gets if the Player has the Bone in the hand. + * + * Parent Class: EntityAIBeg + */ +m.hasPlayerGotBoneInHand = "func_75382_a" +/** + * Spawns a baby animal of the same type. + * + * Parent Class: EntityAIMate + */ +m.spawnBaby = "func_75388_i" +/** + * Loops through nearby animals and finds another animal of the same type that can be mated with. Returns the first valid mate found. + * + * Parent Class: EntityAIMate + */ +m.getNearbyMate = "func_75389_f" +/** + * + * + * Parent Class: EntityAIMoveThroughVillage + */ +m.findNearestDoor = "func_75412_a" +/** + * + * + * Parent Class: EntityAIMoveThroughVillage + */ +m.doesDoorListContain = "func_75413_a" +/** + * + * + * Parent Class: EntityAIMoveThroughVillage + */ +m.resizeDoorList = "func_75414_f" +/** + * + * + * Parent Class: EntityAIVillagerMate + */ +m.checkSufficientDoorsPresentForNewVillager = "func_75446_f" +/** + * + * + * Parent Class: EntityAIVillagerMate + */ +m.giveBirth = "func_75447_i" +/** + * "finds a random target within par1(x + * + * Parent Class: RandomPositionGenerator + */ +m.findRandomTargetBlockAwayFrom = "func_75461_b" +/** + * "searches 10 blocks at random in a within par1(x + * + * Parent Class: RandomPositionGenerator + */ +m.findRandomTargetBlock = "func_75462_c" +/** + * "finds a random target within par1(x + * + * Parent Class: RandomPositionGenerator + */ +m.findRandomTarget = "func_75463_a" +/** + * "finds a random target within par1(x + * + * Parent Class: RandomPositionGenerator + */ +m.findRandomTargetBlockTowards = "func_75464_a" +/** + * + * + * Parent Class: VillageDoorInfo + */ +m.resetDoorOpeningRestrictionCounter = "func_75466_d" +/** + * + * + * Parent Class: VillageDoorInfo + */ +m.getDoorOpeningRestrictionCounter = "func_75468_f" +/** + * + * + * Parent Class: VillageDoorInfo + */ +m.incrementDoorOpeningRestrictionCounter = "func_75470_e" +/** + * + * + * Parent Class: VillageDoorInfo + */ +m.getInsidePosY = "func_75473_b" +/** + * Returns the squared distance between this door and the given coordinate. + * + * Parent Class: VillageDoorInfo + */ +m.getDistanceSquared = "func_75474_b" +/** + * "Sets a new path. If it's diferent from the old path. Checks to adjust path for sun avoiding + * + * Parent Class: PathNavigate + */ +m.setPath = "func_75484_a" +/** + * If on ground or swimming and can swim + * + * Parent Class: PathNavigateSwimmer + */ +m.canNavigate = "func_75485_k" +/** + * Trims path data from the end to the first sun covered block + * + * Parent Class: PathNavigateSwimmer + */ +m.removeSunnyPath = "func_75487_m" +/** + * "Returns the path to the given coordinates. Args : x + * + * Parent Class: PathNavigate + */ +m.getPathToXYZ = "func_75488_a" +/** + * "Try to find and set a path to XYZ. Returns true if successful. Args : x + * + * Parent Class: PathNavigate + */ +m.tryMoveToXYZ = "func_75492_a" +/** + * "Returns true when an entity of specified size could safely walk in a straight line between the two points. Args: pos1 + * + * Parent Class: PathNavigateSwimmer + */ +m.isDirectPathBetweenPoints = "func_75493_a" +/** + * Returns the path to the given EntityLiving. Args : entity + * + * Parent Class: PathNavigateClimber + */ +m.getPathToEntityLiving = "func_75494_a" +/** + * "Try to find and set a path to EntityLiving. Returns true if successful. Args : entity + * + * Parent Class: PathNavigateClimber + */ +m.tryMoveToEntityLiving = "func_75497_a" +/** + * sets active PathEntity to null + * + * Parent Class: PathNavigate + */ +m.clearPathEntity = "func_75499_g" +/** + * If null path or reached the end + * + * Parent Class: PathNavigate + */ +m.noPath = "func_75500_f" +/** + * + * + * Parent Class: PathNavigateClimber + */ +m.onUpdateNavigation = "func_75501_e" +/** + * + * + * Parent Class: PathNavigateSwimmer + */ +m.getEntityPosition = "func_75502_i" +/** + * gets the actively used PathEntity + * + * Parent Class: PathNavigate + */ +m.getPath = "func_75505_d" +/** + * "Returns true if the entity is in water or lava + * + * Parent Class: PathNavigate + */ +m.isInLiquid = "func_75506_l" +/** + * + * + * Parent Class: PathNavigateSwimmer + */ +m.pathFollow = "func_75508_h" +/** + * "Checks + * + * Parent Class: EntitySenses + */ +m.canSee = "func_75522_a" +/** + * Clears canSeeCachePositive and canSeeCacheNegative. + * + * Parent Class: EntitySenses + */ +m.clearSensingCache = "func_75523_a" +/** + * + * + * Parent Class: VillageSiege + */ +m.spawnZombie = "func_75530_c" +/** + * Get a list of villages. + * + * Parent Class: VillageCollection + */ +m.getVillageList = "func_75540_b" +/** + * + * + * Parent Class: VillageCollection + */ +m.dropOldestVillagerPosition = "func_75543_d" +/** + * + * + * Parent Class: VillageCollection + */ +m.addNewDoorsToVillageOrCreateVillage = "func_75545_e" +/** + * + * + * Parent Class: VillageCollection + */ +m.removeAnnihilatedVillages = "func_75549_c" +/** + * + * + * Parent Class: Village + */ +m.removeDeadAndOutOfRangeDoors = "func_75557_k" +/** + * called only by class EntityAIMoveThroughVillage + * + * Parent Class: Village + */ +m.getVillageDoorInfoList = "func_75558_f" +/** + * + * + * Parent Class: Village + */ +m.getTicksSinceLastDoorAdding = "func_75561_d" +/** + * + * + * Parent Class: Village + */ +m.getNumVillagers = "func_75562_e" +/** + * + * + * Parent Class: Village + */ +m.removeDeadAndOldAgressors = "func_75565_j" +/** + * "Returns true + * + * Parent Class: Village + */ +m.isAnnihilated = "func_75566_g" +/** + * "Actually get num village door info entries + * + * Parent Class: Village + */ +m.getNumVillageDoors = "func_75567_c" +/** + * + * + * Parent Class: Village + */ +m.getVillageRadius = "func_75568_b" +/** + * + * + * Parent Class: Village + */ +m.findNearestVillageAggressor = "func_75571_b" +/** + * + * + * Parent Class: Village + */ +m.updateNumVillagers = "func_75572_i" +/** + * + * + * Parent Class: Village + */ +m.updateVillageRadiusAndCenter = "func_75573_l" +/** + * + * + * Parent Class: Village + */ +m.addOrRenewAgressor = "func_75575_a" +/** + * + * + * Parent Class: Village + */ +m.addVillageDoorInfo = "func_75576_a" +/** + * + * + * Parent Class: Village + */ +m.updateNumIronGolems = "func_75579_h" +/** + * + * + * Parent Class: EnumCreatureType + */ +m.getCreatureClass = "func_75598_a" +/** + * Gets whether or not this creature type is peaceful. + * + * Parent Class: EnumCreatureType + */ +m.getPeacefulCreature = "func_75599_d" +/** + * + * + * Parent Class: EnumCreatureType + */ +m.getMaxNumberOfCreature = "func_75601_b" +/** + * create a new instance of an entity from NBT store + * + * Parent Class: EntityList + */ +m.createEntityFromNBT = "func_75615_a" +/** + * Create a new instance of an entity in the world by using an entity ID. + * + * Parent Class: EntityList + */ +m.createEntityByID = "func_75616_a" +/** + * Finds the class using IDtoClassMapping and classToStringMapping + * + * Parent Class: EntityList + */ +m.getStringFromID = "func_75617_a" +/** + * Create a new instance of an entity in the world by using the entity name. + * + * Parent Class: EntityList + */ +m.createEntityByName = "func_75620_a" +/** + * Limits the given angle to a upper and lower limit. + * + * Parent Class: EntityMoveHelper + */ +m.limitAngle = "func_75639_a" +/** + * + * + * Parent Class: EntityMoveHelper + */ +m.isUpdating = "func_75640_a" +/** + * + * + * Parent Class: EntitySlime$SlimeMoveHelper + */ +m.onUpdateMoveHelper = "func_75641_c" +/** + * Sets the speed and location to move to + * + * Parent Class: EntityMoveHelper + */ +m.setMoveTo = "func_75642_a" +/** + * Updates look + * + * Parent Class: EntityLookHelper + */ +m.onUpdateLook = "func_75649_a" +/** + * Sets position to look at + * + * Parent Class: EntityLookHelper + */ +m.setLookPosition = "func_75650_a" +/** + * Sets position to look at using entity + * + * Parent Class: EntityLookHelper + */ +m.setLookPositionWithEntity = "func_75651_a" +/** + * Called to actually make the entity jump if isJumping is true. + * + * Parent Class: EntityRabbit$RabbitJumpHelper + */ +m.doJump = "func_75661_b" +/** + * Update the Head and Body rendenring angles + * + * Parent Class: EntityBodyHelper + */ +m.updateRenderAngles = "func_75664_a" +/** + * "Return the new angle2 such that the difference between angle1 and angle2 is lower than angleMax. Args : angle1 + * + * Parent Class: EntityBodyHelper + */ +m.computeAngleWithBound = "func_75665_a" +m.getObject = {} +/** + * + * + * Parent Class: DataWatcher$WatchableObject + */ +m.getObject.DataWatcher$WatchableObject = "func_75669_b" +/** + * + * + * Parent Class: RegistrySimple + */ +m.getObject.RegistrySimple = "func_82594_a" + +/** + * + * + * Parent Class: DataWatcher$WatchableObject + */ +m.isWatched = "func_75670_d" +/** + * + * + * Parent Class: DataWatcher$WatchableObject + */ +m.setWatched = "func_75671_a" +/** + * + * + * Parent Class: DataWatcher$WatchableObject + */ +m.getDataValueId = "func_75672_a" +/** + * + * + * Parent Class: DataWatcher$WatchableObject + */ +m.setObject = "func_75673_a" +/** + * + * + * Parent Class: DataWatcher$WatchableObject + */ +m.getObjectType = "func_75674_c" +/** + * gets a watchable object and returns it as a Integer + * + * Parent Class: DataWatcher + */ +m.getWatchableObjectInt = "func_75679_c" +/** + * gets a watchable object and returns it as a String + * + * Parent Class: DataWatcher + */ +m.getWatchableObjectString = "func_75681_e" +/** + * "adds a new object to dataWatcher to watch + * + * Parent Class: DataWatcher + */ +m.addObject = "func_75682_a" +/** + * gets the bytevalue of a watchable object + * + * Parent Class: DataWatcher + */ +m.getWatchableObjectByte = "func_75683_a" +/** + * true if one or more object was changed + * + * Parent Class: DataWatcher + */ +m.hasObjectChanged = "func_75684_a" +/** + * + * + * Parent Class: DataWatcher + */ +m.getAllWatched = "func_75685_c" +/** + * + * + * Parent Class: DataWatcher + */ +m.updateWatchedObjectsFromList = "func_75687_a" +/** + * + * + * Parent Class: DataWatcher + */ +m.getChanged = "func_75688_b" +/** + * "is threadsafe + * + * Parent Class: DataWatcher + */ +m.getWatchedObject = "func_75691_i" +/** + * updates an already existing object + * + * Parent Class: DataWatcher + */ +m.updateObject = "func_75692_b" +/** + * + * + * Parent Class: DataWatcher + */ +m.getWatchableObjectShort = "func_75693_b" +/** + * + * + * Parent Class: ThreadedFileIOBase + */ +m.waitForFinish = "func_75734_a" +/** + * threaded io + * + * Parent Class: ThreadedFileIOBase + */ +m.queueIO = "func_75735_a" +/** + * Process the items that are in the queue + * + * Parent Class: ThreadedFileIOBase + */ +m.processQueue = "func_75736_b" +/** + * "Loads an existing MapDataBase corresponding to the given String id from disk + * + * Parent Class: MapStorage + */ +m.loadData = "func_75742_a" +/** + * Saves all dirty loaded MapDataBases to disk. + * + * Parent Class: MapStorage + */ +m.saveAllData = "func_75744_a" +/** + * Loads the idCounts Map from the 'idcounts' file. + * + * Parent Class: MapStorage + */ +m.loadIdCounts = "func_75746_b" +/** + * Saves the given MapDataBase to disk. + * + * Parent Class: MapStorage + */ +m.saveData = "func_75747_a" +/** + * Reads the player data from disk into the specified PlayerEntityMP. + * + * Parent Class: IPlayerFileData + */ +m.readPlayerData = "func_75752_b" +/** + * Saves the given World Info with the given NBTTagCompound as the Player. + * + * Parent Class: SaveHandlerMP + */ +m.saveWorldInfoWithPlayer = "func_75755_a" +/** + * + * + * Parent Class: SaveHandlerMP + */ +m.getPlayerNBTManager = "func_75756_e" +/** + * Loads and returns the world info + * + * Parent Class: SaveHandlerMP + */ +m.loadWorldInfo = "func_75757_d" +/** + * Gets the file location of the given map + * + * Parent Class: SaveHandlerMP + */ +m.getMapFileFromName = "func_75758_b" +/** + * Returns the name of the directory where world information is saved. + * + * Parent Class: SaveHandlerMP + */ +m.getWorldDirectoryName = "func_75760_g" +/** + * used to update level.dat from old format to MCRegion format + * + * Parent Class: SaveHandlerMP + */ +m.saveWorldInfo = "func_75761_a" +/** + * initializes and returns the chunk loader for the specified world provider + * + * Parent Class: SaveHandlerMP + */ +m.getChunkLoader = "func_75763_a" +/** + * Gets the File object corresponding to the base directory of this world. + * + * Parent Class: SaveHandlerMP + */ +m.getWorldDirectory = "func_75765_b" +/** + * Creates a session lock file for this process + * + * Parent Class: SaveHandler + */ +m.setSessionLock = "func_75766_h" +/** + * Determine if a specific AI Task should continue being executed. + * + * Parent Class: EntityAITasks + */ +m.canContinue = "func_75773_a" +/** + * + * + * Parent Class: EntityAITasks + */ +m.onUpdateTasks = "func_75774_a" +/** + * "Determine if a specific AI Task can be executed + * + * Parent Class: EntityAITasks + */ +m.canUse = "func_75775_b" +/** + * "Add a now AITask. Args : priority + * + * Parent Class: EntityAITasks + */ +m.addTask = "func_75776_a" +/** + * Returns whether two EntityAITaskEntries can be executed concurrently + * + * Parent Class: EntityAITasks + */ +m.areTasksCompatible = "func_75777_a" +/** + * @return {@code true} if cheats are enabled for this world + * + * Parent Class: SaveFormatComparator + */ +m.getCheatsEnabled = "func_75783_h" +m.getLastTimePlayed = {} +/** + * + * + * Parent Class: SaveFormatComparator + */ +m.getLastTimePlayed.SaveFormatComparator = "func_75784_e" +/** + * Return the last time the player was in this world. + * + * Parent Class: WorldInfo + */ +m.getLastTimePlayed.WorldInfo = "func_76057_l" + +/** + * + * + * Parent Class: SaveFormatComparator + */ +m.requiresConversion = "func_75785_d" +/** + * return the file name + * + * Parent Class: SaveFormatComparator + */ +m.getFileName = "func_75786_a" +m.isHardcoreModeEnabled = {} +/** + * + * + * Parent Class: SaveFormatComparator + */ +m.isHardcoreModeEnabled.SaveFormatComparator = "func_75789_g" +/** + * "Returns true if hardcore mode is enabled + * + * Parent Class: WorldInfo + */ +m.isHardcoreModeEnabled.WorldInfo = "func_76093_s" + +/** + * Gets the EnumGameType. + * + * Parent Class: SaveFormatComparator + */ +m.getEnumGameType = "func_75790_f" +/** + * + * + * Parent Class: ISaveFormat + */ +m.getSaveList = "func_75799_b" +/** + * + * + * Parent Class: ISaveFormat + */ +m.flushCache = "func_75800_d" +/** + * gets if the map is old chunk saving (true) or McRegion (false) + * + * Parent Class: ISaveFormat + */ +m.isOldMapFormat = "func_75801_b" +/** + * @args: Takes one argument - the name of the directory of the world to delete. @desc: Delete the world by deleting the associated directory recursively. + * + * @param saveName The current save's name + * + * Parent Class: ISaveFormat + */ +m.deleteWorldDirectory = "func_75802_e" +/** + * converts the map to mcRegion + * + * Parent Class: ISaveFormat + */ +m.convertMapFormat = "func_75805_a" +/** + * Renames the world by storing the new name in level.dat. It does *not* rename the directory containing the world data. + * + * Parent Class: ISaveFormat + */ +m.renameWorld = "func_75806_a" +/** + * @args: Takes one argument - the list of files and directories to delete. @desc: Deletes the files and directory listed in the list recursively. + * + * Parent Class: SaveFormatOld + */ +m.deleteFiles = "func_75807_a" +/** + * par: filename for the level.dat_mcr backup + * + * Parent Class: AnvilSaveConverter + */ +m.createFile = "func_75809_f" +/** + * "filters the files in the par1 directory + * + * Parent Class: AnvilSaveConverter + */ +m.addRegionFilesToCollection = "func_75810_a" +/** + * "copies a 32x32 chunk set from par2File to par1File + * + * Parent Class: AnvilSaveConverter + */ +m.convertChunks = "func_75811_a" +m.getSaveVersion = {} +/** + * + * + * Parent Class: AnvilSaveConverter + */ +m.getSaveVersion.AnvilSaveConverter = "func_75812_c" +/** + * Returns the save version of this world + * + * Parent Class: WorldInfo + */ +m.getSaveVersion.WorldInfo = "func_76088_k" + +/** + * + * + * Parent Class: AnvilSaveConverter + */ +m.convertFile = "func_75813_a" +/** + * Returns a boolean stating if the write was unsuccessful. + * + * Parent Class: IThreadedFileIO + */ +m.writeNextIO = "func_75814_c" +/** + * + * + * Parent Class: AnvilChunkLoader + */ +m.saveChunk = "func_75816_a" +/** + * Called every World.tick() + * + * Parent Class: AnvilChunkLoader + */ +m.chunkTick = "func_75817_a" +/** + * "Save extra data associated with this Chunk not normally saved during autosave + * + * Parent Class: AnvilChunkLoader + */ +m.saveExtraChunkData = "func_75819_b" +/** + * "Writes the Chunk passed as an argument to the NBTTagCompound also passed + * + * Parent Class: AnvilChunkLoader + */ +m.writeChunkToNBT = "func_75820_a" +/** + * Wraps readChunkFromNBT. Checks the coordinates and several NBT tags. + * + * Parent Class: AnvilChunkLoader + */ +m.checkedReadChunkFromNBT = "func_75822_a" +/** + * Reads the data stored in the passed NBTTagCompound and creates a Chunk with that data in the passed World. Returns the created Chunk. + * + * Parent Class: AnvilChunkLoader + */ +m.readChunkFromNBT = "func_75823_a" +/** + * + * + * Parent Class: AnvilChunkLoader + */ +m.addChunkToPending = "func_75824_a" +/** + * + * + * Parent Class: PathPoint + */ +m.makeHash = "func_75830_a" +/** + * Returns true if this point has already been assigned to a path + * + * Parent Class: PathPoint + */ +m.isAssigned = "func_75831_a" +/** + * Returns the squared distance to another path point + * + * Parent Class: PathPoint + */ +m.distanceToSquared = "func_75832_b" +/** + * Returns and removes the first point in the path + * + * Parent Class: Path + */ +m.dequeue = "func_75844_c" +/** + * Returns true if this path contains no points + * + * Parent Class: Path + */ +m.isPathEmpty = "func_75845_e" +/** + * Sorts a point to the right + * + * Parent Class: Path + */ +m.sortForward = "func_75846_b" +/** + * Sorts a point to the left + * + * Parent Class: Path + */ +m.sortBack = "func_75847_a" +/** + * Clears the path + * + * Parent Class: Path + */ +m.clearPath = "func_75848_a" +/** + * Adds a point to the path + * + * Parent Class: Path + */ +m.addPoint = "func_75849_a" +/** + * Changes the provided point's distance to target + * + * Parent Class: Path + */ +m.changeDistance = "func_75850_a" +/** + * Returns a new PathEntity for a given start and end point + * + * Parent Class: PathFinder + */ +m.createEntityPath = "func_75853_a" +/** + * returns the last PathPoint of the Array + * + * Parent Class: PathEntity + */ +m.getFinalPathPoint = "func_75870_c" +/** + * + * + * Parent Class: PathEntity + */ +m.setCurrentPathLength = "func_75871_b" +/** + * + * + * Parent Class: PathEntity + */ +m.setCurrentPathIndex = "func_75872_c" +/** + * + * + * Parent Class: PathEntity + */ +m.getCurrentPathIndex = "func_75873_e" +/** + * + * + * Parent Class: PathEntity + */ +m.getCurrentPathLength = "func_75874_d" +/** + * Directs this path to the next point in its array + * + * Parent Class: PathEntity + */ +m.incrementPathIndex = "func_75875_a" +/** + * Returns true if the EntityPath are the same. Non instance related equals. + * + * Parent Class: PathEntity + */ +m.isSamePath = "func_75876_a" +/** + * "return the PathPoint located at the specified PathIndex + * + * Parent Class: PathEntity + */ +m.getPathPointFromIndex = "func_75877_a" +/** + * Returns true if the final PathPoint in the PathEntity is equal to Vec3D coords. + * + * Parent Class: PathEntity + */ +m.isDestinationSame = "func_75880_b" +/** + * Gets the vector of the PathPoint associated with the given index. + * + * Parent Class: PathEntity + */ +m.getVectorFromIndex = "func_75881_a" +/** + * Encrypt or decrypt byte[] data using the specified key + * + * Parent Class: CryptManager + */ +m.cipherOperation = "func_75885_a" +/** + * Creates the Cipher Instance. + * + * Parent Class: CryptManager + */ +m.createTheCipherInstance = "func_75886_a" +/** + * Decrypt shared secret AES key using RSA private key + * + * Parent Class: CryptManager + */ +m.decryptSharedKey = "func_75887_a" +/** + * Decrypt byte[] data with RSA private key + * + * Parent Class: CryptManager + */ +m.decryptData = "func_75889_b" +/** + * Generate a new shared secret AES key from a secure random source + * + * Parent Class: CryptManager + */ +m.createNewSharedKey = "func_75890_a" +/** + * Generates RSA KeyPair + * + * Parent Class: CryptManager + */ +m.generateKeyPair = "func_75891_b" +/** + * Compute a message digest on arbitrary byte[] data + * + * Parent Class: CryptManager + */ +m.digestOperation = "func_75893_a" +/** + * Encrypt byte[] data with RSA public key + * + * Parent Class: CryptManager + */ +m.encryptData = "func_75894_a" +/** + * Compute a serverId hash for use by sendSessionRequest() + * + * Parent Class: CryptManager + */ +m.getServerIdHash = "func_75895_a" +/** + * Create a new PublicKey from encoded X.509 data + * + * Parent Class: CryptManager + */ +m.decodePublicKey = "func_75896_a" +/** + * "returns a LCG pseudo random number from [0 + * + * Parent Class: GenLayer + */ +m.nextInt = "func_75902_a" +/** + * "Initialize layer's current chunkSeed based on the local worldGenSeed and the (x + * + * Parent Class: GenLayer + */ +m.initChunkSeed = "func_75903_a" +/** + * "Returns a list of integer values generated by this layer. These may be interpreted as temperatures + * + * Parent Class: GenLayerZoom + */ +m.getInts = "func_75904_a" +/** + * Initialize layer's local worldGenSeed based on its own baseSeed and the world's global seed (passed in as an argument). + * + * Parent Class: GenLayerRiverMix + */ +m.initWorldGenSeed = "func_75905_a" +/** + * "Magnify a layer. Parms are seed adjustment + * + * Parent Class: GenLayerZoom + */ +m.magnify = "func_75915_a" +/** + * Initializes statistics related to craftable items. Is only called after both block and item stats have been initialized. + * + * Parent Class: StatList + */ +m.initCraftableStats = "func_75918_d" +/** + * Forces all dual blocks to count for each other on the stats list + * + * Parent Class: StatList + */ +m.replaceAllSimilarBlocks = "func_75924_a" +/** + * + * + * Parent Class: StatList + */ +m.initStats = "func_75925_c" +/** + * "Initializes the current stat as independent (i.e. + * + * Parent Class: StatBase + */ +m.initIndependentStat = "func_75966_h" +/** + * Returns whether or not the StatBase-derived class is a statistic (running counter) or an achievement (one-shot). + * + * Parent Class: StatBase + */ +m.isAchievement = "func_75967_d" +/** + * Register the stat into StatList. + * + * Parent Class: StatBase + */ +m.registerStat = "func_75971_g" +/** + * "Special achievements have a 'spiked' (on normal texture pack) frame + * + * Parent Class: Achievement + */ +m.getSpecial = "func_75984_f" +/** + * "Special achievements have a 'spiked' (on normal texture pack) frame + * + * Parent Class: Achievement + */ +m.setSpecial = "func_75987_b" +/** + * Defines a string formatter for the achievement. + * + * @param statStringFormatterIn 1.8.9 + * + * Parent Class: Achievement + */ +m.setStatStringFormatter = "func_75988_a" +m.containsItem = {} +/** + * Returns true if this hash table contains the specified item. + * + * Parent Class: IntHashMap + */ +m.containsItem.IntHashMap = "func_76037_b" +/** + * + * + * Parent Class: LongHashMap + */ +m.containsItem.LongHashMap = "func_76161_b" + +/** + * Adds a key and associated value to this map + * + * Parent Class: IntHashMap + */ +m.addKey = "func_76038_a" +/** + * Adds an object to a slot + * + * Parent Class: IntHashMap + */ +m.insert = "func_76040_a" +/** + * Returns the object associated to a key + * + * Parent Class: IntHashMap + */ +m.lookup = "func_76041_a" +/** + * Computes the index of the slot for the hash and slot count passed in. + * + * Parent Class: IntHashMap + */ +m.getSlotIndex = "func_76043_a" +/** + * Makes the passed in integer suitable for hashing by a number of shifts + * + * Parent Class: IntHashMap + */ +m.computeHash = "func_76044_g" +/** + * Returns the internal entry for a key + * + * Parent Class: IntHashMap + */ +m.lookupEntry = "func_76045_c" +/** + * Copies the hash slots to a new array + * + * Parent Class: IntHashMap + */ +m.copyTo = "func_76048_a" +/** + * Removes the specified object from the map and returns it + * + * Parent Class: IntHashMap + */ +m.removeObject = "func_76049_d" +/** + * Sets the y spawn position + * + * Parent Class: WorldInfo + */ +m.setSpawnY = "func_76056_b" +/** + * Set the x spawn position to the passed in value + * + * Parent Class: WorldInfo + */ +m.setSpawnX = "func_76058_a" +/** + * + * + * Parent Class: WorldInfo + */ +m.updateTagCompound = "func_76064_a" +m.getTerrainType = {} +/** + * + * + * Parent Class: WorldInfo + */ +m.getTerrainType.WorldInfo = "func_76067_t" +/** + * + * + * Parent Class: WorldSettings + */ +m.getTerrainType.WorldSettings = "func_77165_h" + +/** + * Sets whether it is thundering or not. + * + * Parent Class: WorldInfo + */ +m.setThundering = "func_76069_a" +/** + * Returns true if the World is initialized. + * + * Parent Class: WorldInfo + */ +m.isInitialized = "func_76070_v" +/** + * Returns the number of ticks until next thunderbolt. + * + * Parent Class: WorldInfo + */ +m.getThunderTime = "func_76071_n" +/** + * Returns the player's NBTTagCompound to be loaded + * + * Parent Class: WorldInfo + */ +m.getPlayerNBTTagCompound = "func_76072_h" +/** + * Returns the z spawn position + * + * Parent Class: WorldInfo + */ +m.getSpawnZ = "func_76074_e" +/** + * Return the Y axis spawning point of the player. + * + * Parent Class: WorldInfo + */ +m.getSpawnY = "func_76075_d" +/** + * Sets the save version of the world + * + * Parent Class: WorldInfo + */ +m.setSaveVersion = "func_76078_e" +/** + * Returns the x spawn position + * + * Parent Class: WorldInfo + */ +m.getSpawnX = "func_76079_c" +/** + * Sets the number of ticks until rain. + * + * Parent Class: WorldInfo + */ +m.setRainTime = "func_76080_g" +/** + * "Creates a new NBTTagCompound for the world + * + * Parent Class: WorldInfo + */ +m.cloneNBTCompound = "func_76082_a" +/** + * Return the number of ticks until rain. + * + * Parent Class: WorldInfo + */ +m.getRainTime = "func_76083_p" +/** + * Sets whether it is raining or not. + * + * Parent Class: WorldInfo + */ +m.setRaining = "func_76084_b" +/** + * + * + * Parent Class: WorldInfo + */ +m.setTerrainType = "func_76085_a" +m.areCommandsAllowed = {} +/** + * Returns true if commands are allowed on this World. + * + * Parent Class: WorldInfo + */ +m.areCommandsAllowed.WorldInfo = "func_76086_u" +/** + * Returns true if Commands (cheats) are allowed. + * + * Parent Class: WorldSettings + */ +m.areCommandsAllowed.WorldSettings = "func_77163_i" + +/** + * Set the z spawn position to the passed in value + * + * Parent Class: WorldInfo + */ +m.setSpawnZ = "func_76087_c" +m.isMapFeaturesEnabled = {} +/** + * Get whether the map features (e.g. strongholds) generation is enabled or disabled. + * + * Parent Class: WorldInfo + */ +m.isMapFeaturesEnabled.WorldInfo = "func_76089_r" +/** + * Get whether the map features (e.g. strongholds) generation is enabled or disabled. + * + * Parent Class: WorldSettings + */ +m.isMapFeaturesEnabled.WorldSettings = "func_77164_g" + +/** + * Defines the number of ticks until next thunderbolt. + * + * Parent Class: WorldInfo + */ +m.setThunderTime = "func_76090_f" +/** + * Sets the initialization status of the World. + * + * Parent Class: WorldInfo + */ +m.setServerInitialized = "func_76091_d" +/** + * + * + * Parent Class: MathHelper + */ +m.ceiling_float_int = "func_76123_f" +/** + * Long version of floor_double + * + * Parent Class: MathHelper + */ +m.floor_double_long = "func_76124_d" +/** + * "Returns the value of the first parameter + * + * Parent Class: MathHelper + */ +m.clamp_int = "func_76125_a" +/** + * sin looked up in a table + * + * Parent Class: MathHelper + */ +m.sin = "func_76126_a" +/** + * + * + * Parent Class: MathHelper + */ +m.average = "func_76127_a" +/** + * Returns the greatest integer less than or equal to the double argument + * + * Parent Class: MathHelper + */ +m.floor_double = "func_76128_c" +/** + * + * + * Parent Class: MathHelper + */ +m.sqrt_float = "func_76129_c" +/** + * Returns the unsigned value of an int. + * + * Parent Class: MathHelper + */ +m.abs_int = "func_76130_a" +/** + * "Returns the value of the first parameter + * + * Parent Class: MathHelper + */ +m.clamp_float = "func_76131_a" +/** + * Maximum of the absolute value of two numbers. + * + * Parent Class: MathHelper + */ +m.abs_max = "func_76132_a" +/** + * + * + * Parent Class: MathHelper + */ +m.sqrt_double = "func_76133_a" +/** + * cos looked up in the sin table with the appropriate offset + * + * Parent Class: MathHelper + */ +m.cos = "func_76134_b" +/** + * + * + * Parent Class: MathHelper + */ +m.abs = "func_76135_e" +/** + * + * + * Parent Class: MathHelper + */ +m.getRandomIntegerInRange = "func_76136_a" +/** + * "Buckets an integer with specifed bucket sizes. Args: i + * + * Parent Class: MathHelper + */ +m.bucketInt = "func_76137_a" +/** + * "the angle is reduced to an angle between -180 and +180 by mod + * + * Parent Class: MathHelper + */ +m.wrapAngleTo180_double = "func_76138_g" +/** + * "returns par0 cast as an int + * + * Parent Class: MathHelper + */ +m.truncateDoubleToInt = "func_76140_b" +/** + * Returns the greatest integer less than or equal to the float argument + * + * Parent Class: MathHelper + */ +m.floor_float = "func_76141_d" +/** + * "the angle is reduced to an angle between -180 and +180 by mod + * + * Parent Class: MathHelper + */ +m.wrapAngleTo180_float = "func_76142_g" +/** + * + * + * Parent Class: MathHelper + */ +m.ceiling_double_int = "func_76143_f" +/** + * removes the key from the hash linked list + * + * Parent Class: LongHashMap + */ +m.removeKey = "func_76152_e" +/** + * resizes the table + * + * Parent Class: LongHashMap + */ +m.resizeTable = "func_76153_b" +/** + * copies the hash table to the specified array + * + * Parent Class: LongHashMap + */ +m.copyHashTableTo = "func_76154_a" +/** + * returns the hashed key given the original key + * + * Parent Class: LongHashMap + */ +m.getHashedKey = "func_76155_g" +/** + * creates the key in the hash table + * + * Parent Class: LongHashMap + */ +m.createKey = "func_76156_a" +/** + * the hash function + * + * Parent Class: LongHashMap + */ +m.hash = "func_76157_a" +/** + * gets the index in the hash given the array length and the hashed key + * + * Parent Class: LongHashMap + */ +m.getHashIndex = "func_76158_a" +/** + * calls the removeKey method and returns removed object + * + * Parent Class: LongHashMap + */ +m.remove = "func_76159_d" +/** + * + * + * Parent Class: LongHashMap + */ +m.getNumHashElements = "func_76162_a" +/** + * get the value from the map given the key + * + * Parent Class: LongHashMap + */ +m.getValueByKey = "func_76164_a" +/** + * Builds an encoded HTTP POST content string from a string map + * + * Parent Class: HttpUtil + */ +m.buildPostString = "func_76179_a" +/** + * + * + * Parent Class: HttpUtil + */ +m.getSuitableLanPort = "func_76181_a" +/** + * "Sets the dirty state of this MapDataBase + * + * Parent Class: WorldSavedData + */ +m.setDirty = "func_76186_a" +/** + * Whether this MapDataBase needs saving to disk. + * + * Parent Class: WorldSavedData + */ +m.isDirty = "func_76188_b" +/** + * Adds the player passed to the list of visible players and checks to see which players are visible + * + * Parent Class: MapData + */ +m.updateVisiblePlayers = "func_76191_a" +/** + * Returns if the block can burn or not. + * + * Parent Class: Material + */ +m.getCanBurn = "func_76217_h" +/** + * Indicate if the material is opaque + * + * Parent Class: Material + */ +m.isOpaque = "func_76218_k" +/** + * "This type of material can't be pushed + * + * Parent Class: Material + */ +m.setNoPushMobility = "func_76219_n" +/** + * Returns true if the block is a considered solid. This is true by default. + * + * Parent Class: MaterialPortal + */ +m.isSolid = "func_76220_a" +/** + * Makes blocks with this material require the correct tool to be harvested. + * + * Parent Class: Material + */ +m.setRequiresTool = "func_76221_f" +/** + * Marks the material as translucent + * + * Parent Class: Material + */ +m.setTranslucent = "func_76223_p" +/** + * Returns if blocks of these materials are liquids. + * + * Parent Class: Material + */ +m.isLiquid = "func_76224_d" +/** + * "This type of material can't be pushed + * + * Parent Class: Material + */ +m.setImmovableMobility = "func_76225_o" +/** + * Set the canBurn bool to True and return the current object. + * + * Parent Class: Material + */ +m.setBurning = "func_76226_g" +/** + * "Returns the mobility information of the material + * + * Parent Class: Material + */ +m.getMaterialMobility = "func_76227_m" +/** + * Will prevent grass from growing on dirt underneath and kill any grass below it if it returns true + * + * Parent Class: MaterialPortal + */ +m.blocksLight = "func_76228_b" +/** + * Returns true if the material can be harvested without a tool (or with the wrong tool) + * + * Parent Class: Material + */ +m.isToolNotRequired = "func_76229_l" +/** + * Returns if this material is considered solid or not + * + * Parent Class: MaterialPortal + */ +m.blocksMovement = "func_76230_c" +/** + * Sets {@link #replaceable} to true. + * + * Parent Class: Material + */ +m.setReplaceable = "func_76231_i" +/** + * Bouncer function to the main one with some default arguments. + * + * Parent Class: NoiseGeneratorOctaves + */ +m.generateNoiseOctaves = "func_76305_a" +/** + * noiseArray should be xSize*ySize*zSize in size + * + * Parent Class: NoiseGeneratorImproved + */ +m.populateNoiseArray = "func_76308_a" +/** + * + * + * Parent Class: NoiseGeneratorImproved + */ +m.grad = "func_76310_a" +/** + * + * + * Parent Class: NoiseGeneratorImproved + */ +m.lerp = "func_76311_b" +/** + * Called by InventoryBasic.onInventoryChanged() on a array that is never filled. + * + * Parent Class: EntityHorse + */ +m.onInventoryChanged = "func_76316_a" +/** + * Clear profiling. + * + * Parent Class: Profiler + */ +m.clearProfiling = "func_76317_a" +/** + * End current section and start a new section + * + * Parent Class: Profiler + */ +m.endStartSection = "func_76318_c" +/** + * End section + * + * Parent Class: Profiler + */ +m.endSection = "func_76319_b" +/** + * Start section + * + * Parent Class: Profiler + */ +m.startSection = "func_76320_a" +/** + * Get profiling data + * + * @param profilerName The profiler's name + * + * Parent Class: Profiler + */ +m.getProfilingData = "func_76321_b" +/** + * + * + * Parent Class: Profiler + */ +m.getNameOfLastSection = "func_76322_c" +/** + * Smooths mouse input + * + * Parent Class: MouseFilter + */ +m.smooth = "func_76333_a" +/** + * "Returns the time elapsed for the given number of ticks + * + * Parent Class: StringUtils + */ +m.ticksToElapsedTime = "func_76337_a" +/** + * + * + * Parent Class: StringUtils + */ +m.stripControlCodes = "func_76338_a" +/** + * Get the second Object in the Tuple + * + * Parent Class: Tuple + */ +m.getSecond = "func_76340_b" +/** + * Get the first Object in the Tuple + * + * Parent Class: Tuple + */ +m.getFirst = "func_76341_a" +/** + * How much satiate(food) is consumed by this DamageSource + * + * Parent Class: DamageSource + */ +m.getHungerDamage = "func_76345_d" +/** + * Returns true if the damage is fire based. + * + * Parent Class: DamageSource + */ +m.isFireDamage = "func_76347_k" +/** + * + * + * Parent Class: DamageSource + */ +m.setDamageBypassesArmor = "func_76348_h" +/** + * Define the damage type as projectile based. + * + * Parent Class: DamageSource + */ +m.setProjectile = "func_76349_b" +/** + * Return whether this damage source will have its damage amount scaled based on the current difficulty. + * + * Parent Class: EntityDamageSource + */ +m.isDifficultyScaled = "func_76350_n" +/** + * Set whether this damage source will have its damage amount scaled based on the current difficulty. + * + * Parent Class: DamageSource + */ +m.setDifficultyScaled = "func_76351_m" +/** + * Returns true if the damage is projectile based. + * + * Parent Class: DamageSource + */ +m.isProjectile = "func_76352_a" +/** + * returns EntityDamageSourceIndirect of an arrow + * + * @param indirectEntityIn The entity that shoot the arrow + * + * Parent Class: DamageSource + */ +m.causeArrowDamage = "func_76353_a" +/** + * + * + * Parent Class: DamageSource + */ +m.causeIndirectMagicDamage = "func_76354_b" +/** + * Return the name of damage type. + * + * Parent Class: DamageSource + */ +m.getDamageType = "func_76355_l" +/** + * + * + * Parent Class: DamageSource + */ +m.causeThrownDamage = "func_76356_a" +/** + * + * + * Parent Class: DamageSource + */ +m.canHarmInCreative = "func_76357_e" +/** + * + * + * Parent Class: DamageSource + */ +m.causeMobDamage = "func_76358_a" +/** + * + * + * Parent Class: DamageSource + */ +m.setDamageAllowedInCreativeMode = "func_76359_i" +/** + * Define the damage type as fire based. + * + * Parent Class: DamageSource + */ +m.setFireDamage = "func_76361_j" +/** + * returns EntityDamageSourceIndirect of a fireball + * + * @param indirectEntityIn The entity that shoot the fireball + * + * Parent Class: DamageSource + */ +m.causeFireballDamage = "func_76362_a" +/** + * + * + * Parent Class: DamageSource + */ +m.isUnblockable = "func_76363_c" +/** + * + * + * Parent Class: EntityDamageSourceIndirect + */ +m.getSourceOfDamage = "func_76364_f" +/** + * returns an EntityDamageSource of type player + * + * Parent Class: DamageSource + */ +m.causePlayerDamage = "func_76365_a" +/** + * + * + * Parent Class: Potion + */ +m.getEffectiveness = "func_76388_g" +/** + * + * + * Parent Class: Potion + */ +m.getDurationString = "func_76389_a" +/** + * Set the potion name. + * + * Parent Class: Potion + */ +m.setPotionName = "func_76390_b" +/** + * Returns the index for the icon to display when the potion is active. + * + * Parent Class: Potion + */ +m.getStatusIconIndex = "func_76392_e" +m.performEffect = {} +/** + * + * + * Parent Class: Potion + */ +m.performEffect.Potion = "func_76394_a" +/** + * + * + * Parent Class: PotionEffect + */ +m.performEffect.PotionEffect = "func_76457_b" + +/** + * + * + * Parent Class: Potion + */ +m.isUsable = "func_76395_i" +/** + * This method returns true if the potion effect is bad - negative - for the entity. + * + * Parent Class: Potion + */ +m.isBadEffect = "func_76398_f" +/** + * Sets the index for the icon displayed in the player's inventory when the status is active. + * + * Parent Class: Potion + */ +m.setIconIndex = "func_76399_b" +/** + * Returns true if the potion has a associated status icon to display in then inventory when active. + * + * Parent Class: Potion + */ +m.hasStatusIcon = "func_76400_d" +m.getLiquidColor = {} +/** + * Returns the color of the potion liquid. + * + * Parent Class: Potion + */ +m.getLiquidColor.Potion = "func_76401_j" +/** + * "Given a potion data value + * + * Parent Class: PotionHelper + */ +m.getLiquidColor.PotionHelper = "func_77915_a" + +/** + * Returns true if the potion has an instant effect instead of a continuous one (eg Harming) + * + * Parent Class: Potion + */ +m.isInstant = "func_76403_b" +/** + * + * + * Parent Class: Potion + */ +m.setEffectiveness = "func_76404_a" +/** + * + * + * Parent Class: IntCache + */ +m.getIntCache = "func_76445_a" +/** + * Mark all pre-allocated arrays as available for re-use by moving them to the appropriate free lists. + * + * Parent Class: IntCache + */ +m.resetIntCache = "func_76446_a" +/** + * merges the input PotionEffect into this one if this.amplifier <= tomerge.amplifier. The duration in the supplied potion effect is assumed to be greater. + * + * Parent Class: PotionEffect + */ +m.combine = "func_76452_a" +/** + * + * + * Parent Class: PotionEffect + */ +m.getEffectName = "func_76453_d" +/** + * + * + * Parent Class: PotionEffect + */ +m.deincrementDuration = "func_76454_e" +/** + * Retrieve the ID of the potion this effect matches. + * + * Parent Class: PotionEffect + */ +m.getPotionID = "func_76456_a" +/** + * Note issuing start multiple times is not an error. + * + * Parent Class: PlayerUsageSnooper + */ +m.startSnooper = "func_76463_a" +/** + * + * + * Parent Class: PlayerUsageSnooper + */ +m.getCurrentStats = "func_76465_c" +/** + * + * + * Parent Class: PlayerUsageSnooper + */ +m.addJvmArgsToSnooper = "func_76467_g" +/** + * + * + * Parent Class: PlayerUsageSnooper + */ +m.isSnooperRunning = "func_76468_d" +/** + * + * + * Parent Class: PlayerUsageSnooper + */ +m.stopSnooper = "func_76470_e" +/** + * + * + * Parent Class: PlayerUsageSnooper + */ +m.addMemoryStatsToSnooper = "func_76471_b" +/** + * "Generates a list of leaf nodes for the tree + * + * Parent Class: WorldGenBigTree + */ +m.generateLeafNodeList = "func_76489_a" +/** + * Gets the rough size of a layer of the tree. + * + * Parent Class: WorldGenBigTree + */ +m.layerSize = "func_76490_a" +/** + * Indicates whether or not a leaf node requires additional wood to be added to preserve integrity. + * + * Parent Class: WorldGenBigTree + */ +m.leafNodeNeedsBase = "func_76493_c" +/** + * + * + * Parent Class: WorldGenBigTree + */ +m.leafSize = "func_76495_b" +/** + * "Returns a boolean indicating whether or not the current location for the tree + * + * Parent Class: WorldGenBigTree + */ +m.validTreeLocation = "func_76497_e" +/** + * Randomly decides which spawner to use in a dungeon + * + * Parent Class: WorldGenDungeons + */ +m.pickMobSpawner = "func_76543_b" +/** + * "Returns an input stream for the specified chunk. Args: worldDir + * + * Parent Class: RegionFileCache + */ +m.getChunkInputStream = "func_76549_c" +/** + * + * + * Parent Class: RegionFileCache + */ +m.createOrLoadRegionFile = "func_76550_a" +/** + * clears region file references + * + * Parent Class: RegionFileCache + */ +m.clearRegionFileReferences = "func_76551_a" +/** + * "Returns an output stream for the specified chunk. Args: worldDir + * + * Parent Class: RegionFileCache + */ +m.getChunkOutputStream = "func_76552_d" +/** + * Returns a new chunk provider which generates chunks for this world + * + * Parent Class: WorldProviderEnd + */ +m.createChunkGenerator = "func_76555_c" +/** + * Creates the light to brightness table + * + * Parent Class: WorldProviderHell + */ +m.generateLightBrightnessTable = "func_76556_a" +/** + * "associate an existing world with a World provider + * + * Parent Class: WorldProvider + */ +m.registerWorld = "func_76558_a" +/** + * Returns array with sunrise/sunset colors + * + * Parent Class: WorldProviderEnd + */ +m.calcSunriseSunsetColors = "func_76560_a" +/** + * + * + * Parent Class: WorldProviderEnd + */ +m.isSkyColored = "func_76561_g" +/** + * Calculates the angle of sun and moon in the sky relative to a specified time (usually worldTime) + * + * Parent Class: WorldProviderEnd + */ +m.calculateCelestialAngle = "func_76563_a" +/** + * "Returns a double value representing the Y value relative to the top of the map at which void fog is at its maximum. The default factor of 0.03125 relative to 256 + * + * Parent Class: WorldProvider + */ +m.getVoidFogYFactor = "func_76565_k" +/** + * "Will check if the x + * + * Parent Class: WorldProviderEnd + */ +m.canCoordinateBeSpawn = "func_76566_a" +/** + * "True if the player can respawn in this dimension (true = overworld + * + * Parent Class: WorldProviderEnd + */ +m.canRespawnHere = "func_76567_e" +/** + * "Returns true if the given X + * + * Parent Class: WorldProviderEnd + */ +m.doesXZShowFog = "func_76568_b" +/** + * "Returns 'true' if in the ""main surface world"" + * + * Parent Class: WorldProviderEnd + */ +m.isSurfaceWorld = "func_76569_d" +/** + * + * + * Parent Class: WorldProvider + */ +m.getProviderForDimension = "func_76570_a" +/** + * the y level at which clouds are rendered. + * + * Parent Class: WorldProviderEnd + */ +m.getCloudHeight = "func_76571_f" +/** + * creates a new world chunk manager for WorldProvider + * + * Parent Class: WorldProviderEnd + */ +m.registerWorldChunkManager = "func_76572_b" +/** + * Returns the ExtendedBlockStorage array for this Chunk. + * + * Parent Class: Chunk + */ +m.getBlockStorageArray = "func_76587_i" +/** + * Generates the height map for a chunk from scratch + * + * Parent Class: Chunk + */ +m.generateHeightMap = "func_76590_a" +/** + * "Called once-per-chunk-per-tick + * + * Parent Class: Chunk + */ +m.enqueueRelightChecks = "func_76594_o" +/** + * Propagates a given sky-visible block's light value downward and upward to neighboring blocks as necessary. + * + * Parent Class: Chunk + */ +m.propagateSkylightOcclusion = "func_76595_e" +/** + * Checks the height of a block next to a sky-visible block and schedules a lighting update as necessary. + * + * Parent Class: Chunk + */ +m.checkSkylightNeighborHeight = "func_76599_g" +/** + * Checks whether the chunk is at the X/Z location specified + * + * Parent Class: Chunk + */ +m.isAtLocation = "func_76600_a" +/** + * Returns true if this Chunk needs to be saved + * + * Parent Class: Chunk + */ +m.needsSaving = "func_76601_a" +/** + * + * + * Parent Class: Chunk + */ +m.setStorageArrays = "func_76602_a" +/** + * Generates the initial skylight map for the chunk upon generation or load. + * + * Parent Class: Chunk + */ +m.generateSkylightMap = "func_76603_b" +/** + * Returns an array containing a 16x16 mapping on the X/Z of block positions in this Chunk to biome IDs. + * + * Parent Class: Chunk + */ +m.getBiomeArray = "func_76605_m" +/** + * Returns whether the ExtendedBlockStorages containing levels (in blocks) from arg 1 to arg 2 are fully empty (true) or not (false). + * + * Parent Class: Chunk + */ +m.getAreLevelsEmpty = "func_76606_c" +/** + * Removes entity at the specified index from the entity array. + * + * Parent Class: Chunk + */ +m.removeEntityAtIndex = "func_76608_a" +/** + * + * + * Parent Class: Chunk + */ +m.updateSkylightNeighborHeight = "func_76609_d" +/** + * "Returns the value in the height map at this x + * + * Parent Class: Chunk + */ +m.getHeightValue = "func_76611_b" +/** + * Adds an entity to the chunk. Args: entity + * + * Parent Class: Chunk + */ +m.addEntity = "func_76612_a" +/** + * Resets the relight check index to 0 for this Chunk. + * + * Parent Class: Chunk + */ +m.resetRelightChecks = "func_76613_n" +/** + * Initiates the recalculation of both the block-light and sky-light for a given block inside a chunk. + * + * Parent Class: Chunk + */ +m.relightBlock = "func_76615_h" +/** + * Accepts a 256-entry array that contains a 16x16 mapping on the X/Z plane of block positions in this Chunk to biome IDs. + * + * Parent Class: Chunk + */ +m.setBiomeArray = "func_76616_a" +/** + * + * + * Parent Class: Chunk + */ +m.getRandomWithSeed = "func_76617_a" +/** + * Called when this Chunk is unloaded by the ChunkProvider + * + * Parent Class: Chunk + */ +m.onChunkUnload = "func_76623_d" +/** + * Returns the topmost ExtendedBlockStorage instance for this Chunk that actually contains a block. + * + * Parent Class: Chunk + */ +m.getTopFilledSegment = "func_76625_h" +/** + * Sets the isModified flag for this Chunk + * + * Parent Class: Chunk + */ +m.setChunkModified = "func_76630_e" +/** + * Gets a ChunkCoordIntPair representing the Chunk's position. + * + * Parent Class: Chunk + */ +m.getChunkCoordIntPair = "func_76632_l" +/** + * Sets the saved Sky-light value in the extended block storage structure. + * + * Parent Class: ExtendedBlockStorage + */ +m.setExtSkylightValue = "func_76657_c" +/** + * Sets the NibbleArray instance used for Block-light values in this particular storage block. + * + * Parent Class: ExtendedBlockStorage + */ +m.setBlocklightArray = "func_76659_c" +/** + * Returns the NibbleArray instance containing Block-light data. + * + * Parent Class: ExtendedBlockStorage + */ +m.getBlocklightArray = "func_76661_k" +/** + * Returns the Y location of this ExtendedBlockStorage. + * + * Parent Class: ExtendedBlockStorage + */ +m.getYLocation = "func_76662_d" +/** + * Returns the metadata associated with the block at the given coordinates in this ExtendedBlockStorage. + * + * Parent Class: ExtendedBlockStorage + */ +m.getExtBlockMetadata = "func_76665_b" +/** + * Sets the NibbleArray instance used for Sky-light values in this particular storage block. + * + * Parent Class: ExtendedBlockStorage + */ +m.setSkylightArray = "func_76666_d" +/** + * Gets the saved Sky-light value in the extended block storage structure. + * + * Parent Class: ExtendedBlockStorage + */ +m.getExtSkylightValue = "func_76670_c" +/** + * Returns the NibbleArray instance containing Sky-light data. + * + * Parent Class: ExtendedBlockStorage + */ +m.getSkylightArray = "func_76671_l" +/** + * + * + * Parent Class: ExtendedBlockStorage + */ +m.removeInvalidBlocks = "func_76672_e" +/** + * Gets the saved Block-light value in the extended block storage structure. + * + * Parent Class: ExtendedBlockStorage + */ +m.getExtBlocklightValue = "func_76674_d" +/** + * "Returns whether or not this block storage's Chunk will require random ticking + * + * Parent Class: ExtendedBlockStorage + */ +m.getNeedsRandomTick = "func_76675_b" +/** + * Sets the saved Block-light value in the extended block storage structure. + * + * Parent Class: ExtendedBlockStorage + */ +m.setExtBlocklightValue = "func_76677_d" +/** + * + * + * Parent Class: ChunkLoader + */ +m.convertToAnvilFormat = "func_76690_a" +/** + * Returns an uncompressed chunk stream from the region file. + * + * Parent Class: RegionFile + */ +m.getChunkDataInputStream = "func_76704_a" +/** + * "args: x + * + * Parent Class: RegionFile + */ +m.outOfBounds = "func_76705_d" +/** + * close this RegionFile and prevent further writes + * + * Parent Class: RegionFile + */ +m.close = "func_76708_c" +/** + * "args: x + * + * Parent Class: RegionFile + */ +m.isChunkSaved = "func_76709_c" +/** + * Returns an output stream used to write chunk data. Data is on disk when the returned stream is closed. + * + * Parent Class: RegionFile + */ +m.getChunkDataOutputStream = "func_76710_b" +/** + * "args: x + * + * Parent Class: RegionFile + */ +m.setOffset = "func_76711_a" +/** + * "args: x + * + * Parent Class: RegionFile + */ +m.setChunkTimestamp = "func_76713_b" +/** + * Gets a floating point representation of this biome's rainfall + * + * Parent Class: BiomeGenBase + */ +m.getFloatRainfall = "func_76727_i" +/** + * Allocate a new BiomeDecorator for this BiomeGenBase + * + * Parent Class: BiomeGenBase + */ +m.createBiomeDecorator = "func_76729_a" +/** + * Gets a WorldGen appropriate for this biome. + * + * Parent Class: BiomeGenTaiga + */ +m.getRandomWorldGenForGrass = "func_76730_b" +/** + * "takes temperature + * + * Parent Class: BiomeGenEnd + */ +m.getSkyColorByTemp = "func_76731_a" +/** + * Sets the temperature and rainfall of this biome. + * + * Parent Class: BiomeGenBase + */ +m.setTemperatureRainfall = "func_76732_a" +/** + * + * + * Parent Class: BiomeGenBase + */ +m.setFillerBlockMetadata = "func_76733_a" +/** + * + * + * Parent Class: BiomeGenBase + */ +m.setBiomeName = "func_76735_a" +/** + * Checks to see if the rainfall level of the biome is extremely high + * + * Parent Class: BiomeGenBase + */ +m.isHighHumidity = "func_76736_e" +/** + * Check if rain can occur in biome + * + * Parent Class: BiomeGenBase + */ +m.canRain = "func_76738_d" +/** + * returns the chance a creature has to spawn. + * + * Parent Class: BiomeGenMutated + */ +m.getSpawningChance = "func_76741_f" +/** + * sets enableSnow to true during biome initialization. returns BiomeGenBase. + * + * Parent Class: BiomeGenBase + */ +m.setEnableSnow = "func_76742_b" +/** + * Gets an integer representation of this biome's rainfall + * + * Parent Class: BiomeGenBase + */ +m.getIntRainfall = "func_76744_g" +/** + * Disable the rain for the biome. + * + * Parent Class: BiomeGenBase + */ +m.setDisableRain = "func_76745_m" +/** + * Returns true if the biome have snowfall instead a normal rain. + * + * Parent Class: BiomeGenBase + */ +m.getEnableSnow = "func_76746_c" +/** + * Returns the correspondent list of the EnumCreatureType informed. + * + * Parent Class: BiomeGenBase + */ +m.getSpawnableList = "func_76747_a" +/** + * Standard ore generation helper. Generates Lapis Lazuli. + * + * Parent Class: BiomeDecorator + */ +m.genStandardOre2 = "func_76793_b" +/** + * Standard ore generation helper. Generates most ores. + * + * Parent Class: BiomeDecorator + */ +m.genStandardOre1 = "func_76795_a" +/** + * Generates ores in the current chunk + * + * Parent Class: BiomeDecorator + */ +m.generateOres = "func_76797_b" +m.cleanupCache = {} +/** + * Removes BiomeCacheBlocks from this cache that haven't been accessed in at least 30 seconds. + * + * Parent Class: BiomeCache + */ +m.cleanupCache.BiomeCache = "func_76838_a" +/** + * Calls the WorldChunkManager's biomeCache.cleanupCache() + * + * Parent Class: WorldChunkManager + */ +m.cleanupCache.WorldChunkManager = "func_76938_b" + +/** + * Returns the array of cached biome types in the BiomeCacheBlock at the given location. + * + * Parent Class: BiomeCache + */ +m.getCachedBiomes = "func_76839_e" +/** + * Returns a biome cache block at location specified. + * + * Parent Class: BiomeCache + */ +m.getBiomeCacheBlock = "func_76840_a" +m.getBiomeGenAt = {} +/** + * "Returns the BiomeGenBase related to the x + * + * Parent Class: BiomeCache$Block + */ +m.getBiomeGenAt.BiomeCache$Block = "func_76885_a" +/** + * "Return a list of biomes for the specified blocks. Args: listToReuse + * + * Parent Class: WorldChunkManagerHell + */ +m.getBiomeGenAt.WorldChunkManagerHell = "func_76931_a" + +/** + * Gets the list of valid biomes for the player to spawn in. + * + * Parent Class: WorldChunkManager + */ +m.getBiomesToSpawnIn = "func_76932_a" +/** + * "Returns biomes to use for the blocks and loads the other data like temperature and humidity onto the WorldChunkManager Args: oldBiomeList + * + * Parent Class: WorldChunkManagerHell + */ +m.loadBlockGeneratorData = "func_76933_b" +/** + * "Returns a list of rainfall values for the specified blocks. Args: listToReuse + * + * Parent Class: WorldChunkManagerHell + */ +m.getRainfall = "func_76936_a" +/** + * Returns an array of biomes for the location input. + * + * Parent Class: WorldChunkManagerHell + */ +m.getBiomesForGeneration = "func_76937_a" +/** + * Return an adjusted version of a given temperature based on the y height + * + * Parent Class: WorldChunkManager + */ +m.getTemperatureAtHeight = "func_76939_a" +/** + * checks given Chunk's Biomes against List of allowed ones + * + * Parent Class: WorldChunkManagerHell + */ +m.areBiomesViable = "func_76940_a" +/** + * "Renders the entity shadows at the position + * + * Parent Class: Render + */ +m.renderShadow = "func_76975_c" +/** + * "Renders fire on top of the entity. Args: entity + * + * Parent Class: Render + */ +m.renderEntityOnFire = "func_76977_a" +/** + * "Renders a white box with the bounds of the AABB translated by the offset. Args: aabb + * + * Parent Class: Render + */ +m.renderOffsetAABB = "func_76978_a" +/** + * "Renders the entity's shadow and fire (if its on fire). Args: entity + * + * Parent Class: Render + */ +m.doRenderShadowAndFire = "func_76979_b" +/** + * Returns the render manager's world object + * + * Parent Class: Render + */ +m.getWorldFromRenderManager = "func_76982_b" +/** + * Returns the font renderer from the set render manager + * + * Parent Class: Render + */ +m.getFontRendererFromRenderManager = "func_76983_a" +/** + * Renders the desired {@code T} type Entity. + * + * Parent Class: RenderPlayer + */ +m.doRender = "func_76986_a" +/** + * + * + * Parent Class: RenderPainting + */ +m.renderPainting = "func_77010_a" +/** + * "Returns an ARGB int color back. Args: entityLiving + * + * Parent Class: RendererLivingEntity + */ +m.getColorMultiplier = "func_77030_a" +/** + * "Returns a rotation angle that is inbetween two other rotation angles. par1 and par2 are the angles between which to interpolate + * + * Parent Class: RendererLivingEntity + */ +m.interpolateRotation = "func_77034_a" +/** + * + * + * Parent Class: RenderSpider + */ +m.getDeathMaxRotation = "func_77037_a" +/** + * Sets a simple glTranslate on a LivingEntity. + * + * Parent Class: RenderPlayer + */ +m.renderLivingAt = "func_77039_a" +/** + * "Allows the render to do any OpenGL state modifications necessary before the model is rendered. Args: entityLiving + * + * Parent Class: RenderPlayer + */ +m.preRenderCallback = "func_77041_b" +/** + * + * + * Parent Class: RenderPlayer + */ +m.rotateCorpse = "func_77043_a" +/** + * Defines what float the third param in setRotationAngles of ModelBase is + * + * Parent Class: RenderWolf + */ +m.handleRotationFloat = "func_77044_a" +/** + * "Sets canBeCreated to the provided value + * + * Parent Class: WorldType + */ +m.setCanBeCreated = "func_77124_a" +/** + * Returns true if this world Type has a version associated with it. + * + * Parent Class: WorldType + */ +m.isVersioned = "func_77125_e" +/** + * Gets whether this WorldType can be used to generate a new world. + * + * Parent Class: WorldType + */ +m.getCanBeCreated = "func_77126_d" +/** + * + * + * Parent Class: WorldType + */ +m.getWorldTypeName = "func_77127_a" +/** + * Gets the translation key for the name of this world type. + * + * Parent Class: WorldType + */ +m.getTranslateName = "func_77128_b" +/** + * Flags this world type as having an associated version. + * + * Parent Class: WorldType + */ +m.setVersioned = "func_77129_f" +/** + * + * + * Parent Class: WorldType + */ +m.parseWorldType = "func_77130_a" +/** + * Returns generatorVersion. + * + * Parent Class: WorldType + */ +m.getGeneratorVersion = "func_77131_c" +/** + * + * + * Parent Class: WorldType + */ +m.getWorldTypeForGeneratorVersion = "func_77132_a" +/** + * "Returns the game type with the specified name + * + * Parent Class: WorldSettings$GameType + */ +m.getByName = "func_77142_a" +/** + * Returns true if this is the SURVIVAL or ADVENTURE game type + * + * Parent Class: WorldSettings$GameType + */ +m.isSurvivalOrAdventure = "func_77144_e" +/** + * "Returns the game type with the specified ID + * + * Parent Class: WorldSettings$GameType + */ +m.getByID = "func_77146_a" +/** + * Configures the player capabilities based on the game type + * + * Parent Class: WorldSettings$GameType + */ +m.configurePlayerCapabilities = "func_77147_a" +/** + * "Returns true if hardcore mode is enabled + * + * Parent Class: WorldSettings + */ +m.getHardcoreEnabled = "func_77158_f" +/** + * Enables the bonus chest. + * + * Parent Class: WorldSettings + */ +m.enableBonusChest = "func_77159_a" +/** + * Gets the GameType by ID + * + * Parent Class: WorldSettings + */ +m.getGameTypeById = "func_77161_a" +/** + * Enables Commands (cheats). + * + * Parent Class: WorldSettings + */ +m.enableCommands = "func_77166_b" +/** + * Returns true if the Bonus Chest is enabled. + * + * Parent Class: WorldSettings + */ +m.isBonusChestEnabled = "func_77167_c" +/** + * Sets the scheduled time for this tick entry + * + * Parent Class: NextTickListEntry + */ +m.setScheduledTime = "func_77176_a" +/** + * Called during chunk generation to spawn initial creatures. + * + * Parent Class: SpawnerAnimals + */ +m.performWorldGenSpawning = "func_77191_a" +/** + * "adds all chunks within the spawn radius of the players to eligibleChunksForSpawning. pars: the world + * + * Parent Class: SpawnerAnimals + */ +m.findChunksForSpawning = "func_77192_a" +/** + * + * + * Parent Class: MerchantRecipeList + */ +m.readRecipiesFromTags = "func_77201_a" +/** + * + * + * Parent Class: MerchantRecipeList + */ +m.getRecipiesAsTags = "func_77202_a" +/** + * "can par1 + * + * Parent Class: MerchantRecipeList + */ +m.canRecipeBeUsed = "func_77203_a" +/** + * converts a chunk coordinate pair to an integer (suitable for hashing) + * + * Parent Class: ChunkCoordIntPair + */ +m.chunkXZ2Int = "func_77272_a" +/** + * + * + * Parent Class: ChunkCoordIntPair + */ +m.getCenterXPos = "func_77273_a" +/** + * + * + * Parent Class: ChunkCoordIntPair + */ +m.getCenterZPosition = "func_77274_b" +/** + * + * + * Parent Class: Explosion + */ +m.getPlayerKnockbackMap = "func_77277_b" +/** + * Does the first part of the explosion (destroy blocks) + * + * Parent Class: Explosion + */ +m.doExplosionA = "func_77278_a" +/** + * "Does the second part of the explosion (sound + * + * Parent Class: Explosion + */ +m.doExplosionB = "func_77279_a" +/** + * Returns the correct traslated name of the enchantment and the level in roman numbers. + * + * Parent Class: Enchantment + */ +m.getTranslatedName = "func_77316_c" +/** + * Returns the maximum value of enchantability nedded on the enchantment level passed. + * + * Parent Class: EnchantmentWaterWorker + */ +m.getMaxEnchantability = "func_77317_b" +/** + * Calculates the damage protection of the enchantment based on level and damage source passed. + * + * Parent Class: EnchantmentProtection + */ +m.calcModifierDamage = "func_77318_a" +/** + * Returns the minimum level that the enchantment can have. + * + * Parent Class: Enchantment + */ +m.getMinLevel = "func_77319_d" +/** + * Returns the minimal value of enchantability needed on the enchantment level passed. + * + * Parent Class: EnchantmentWaterWorker + */ +m.getMinEnchantability = "func_77321_a" +/** + * Returns the maximum level that the enchantment can have. + * + * Parent Class: EnchantmentWaterWorker + */ +m.getMaxLevel = "func_77325_b" +/** + * Determines if the enchantment passed can be applyied together with this enchantment. + * + * Parent Class: EnchantmentUntouching + */ +m.canApplyTogether = "func_77326_a" +/** + * + * + * Parent Class: MerchantRecipe + */ +m.readFromTags = "func_77390_a" +/** + * Gets the itemToBuy. + * + * Parent Class: MerchantRecipe + */ +m.getItemToBuy = "func_77394_a" +/** + * + * + * Parent Class: MerchantRecipe + */ +m.writeToTags = "func_77395_g" +/** + * Gets secondItemToBuy. + * + * Parent Class: MerchantRecipe + */ +m.getSecondItemToBuy = "func_77396_b" +/** + * Gets itemToSell. + * + * Parent Class: MerchantRecipe + */ +m.getItemToSell = "func_77397_d" +/** + * Gets if Villager has secondItemToBuy. + * + * Parent Class: MerchantRecipe + */ +m.hasSecondItemToBuy = "func_77398_c" +/** + * + * + * Parent Class: MerchantRecipe + */ +m.incrementToolUses = "func_77399_f" +/** + * "Returns true if the parent has been unlocked + * + * Parent Class: StatFileWriter + */ +m.canUnlockAchievement = "func_77442_b" +/** + * Returns true if the achievement has been unlocked. + * + * Parent Class: StatFileWriter + */ +m.hasAchievementUnlocked = "func_77443_a" +/** + * Reads the given stat and returns its value as an int. + * + * Parent Class: StatFileWriter + */ +m.readStat = "func_77444_a" +/** + * Gets the foliage color for pine type (metadata 1) trees + * + * Parent Class: ColorizerFoliage + */ +m.getFoliageColorPine = "func_77466_a" +/** + * + * + * Parent Class: ColorizerFoliage + */ +m.setFoliageBiomeColorizer = "func_77467_a" +/** + * + * + * Parent Class: ColorizerFoliage + */ +m.getFoliageColorBasic = "func_77468_c" +/** + * Gets the foliage color for birch type (metadata 2) trees + * + * Parent Class: ColorizerFoliage + */ +m.getFoliageColorBirch = "func_77469_b" +/** + * "Gets foliage color from temperature and humidity. Args: temperature + * + * Parent Class: ColorizerFoliage + */ +m.getFoliageColor = "func_77470_a" +/** + * Sets the current lightmap texture to the specified OpenGL constant + * + * Parent Class: OpenGlHelper + */ +m.setClientActiveTexture = "func_77472_b" +/** + * Initializes the texture constants to be used when rendering lightmap values + * + * Parent Class: OpenGlHelper + */ +m.initializeTextures = "func_77474_a" +/** + * Sets the current coordinates of the given lightmap texture + * + * Parent Class: OpenGlHelper + */ +m.setLightmapTextureCoords = "func_77475_a" +/** + * + * + * Parent Class: ColorizerGrass + */ +m.setGrassBiomeColorizer = "func_77479_a" +/** + * "Gets grass color from temperature and humidity. Args: temperature + * + * Parent Class: ColorizerGrass + */ +m.getGrassColor = "func_77480_a" +/** + * + * + * Parent Class: LanServerDetector$LanServer + */ +m.getServerMotd = "func_77487_a" +/** + * + * + * Parent Class: LanServerDetector$LanServer + */ +m.getServerIpPort = "func_77488_b" +/** + * Updates the time this LanServer was last seen. + * + * Parent Class: LanServerDetector$LanServer + */ +m.updateLastSeen = "func_77489_c" +/** + * Generic method use to calculate modifiers of offensive or defensive enchantment values. + * + * Parent Class: EnchantmentHelper$ModifierDamage + */ +m.calculateModifier = "func_77493_a" +/** + * Returns the Knockback modifier of the enchantment on the players held item. + * + * Parent Class: EnchantmentHelper + */ +m.getKnockbackModifier = "func_77501_a" +/** + * Returns the silk touch status of enchantments on current equipped item of player. + * + * Parent Class: EnchantmentHelper + */ +m.getSilkTouchModifier = "func_77502_d" +/** + * "Adds a random enchantment to the specified item. Args: random + * + * Parent Class: EnchantmentHelper + */ +m.addRandomEnchantment = "func_77504_a" +/** + * Creates a 'Map' of EnchantmentData (enchantments) possible to add on the ItemStack and the enchantability level passed. + * + * Parent Class: EnchantmentHelper + */ +m.mapEnchantmentData = "func_77505_b" +/** + * Returns the level of enchantment on the ItemStack passed. + * + * Parent Class: EnchantmentHelper + */ +m.getEnchantmentLevel = "func_77506_a" +/** + * Returns the modifier of protection enchantments on armors equipped on player. + * + * Parent Class: EnchantmentHelper + */ +m.getEnchantmentModifierDamage = "func_77508_a" +/** + * Return the extra efficiency of tools based on enchantments on equipped player item. + * + * Parent Class: EnchantmentHelper + */ +m.getEfficiencyModifier = "func_77509_b" +/** + * Returns the aqua affinity status of enchantments on current equipped item of player. + * + * Parent Class: EnchantmentHelper + */ +m.getAquaAffinityModifier = "func_77510_g" +/** + * Returns the biggest level of the enchantment on the array of ItemStack passed. + * + * Parent Class: EnchantmentHelper + */ +m.getMaxEnchantmentLevel = "func_77511_a" +/** + * "Create a list of random EnchantmentData (enchantments) that can be added together to the ItemStack + * + * Parent Class: EnchantmentHelper + */ +m.buildEnchantmentList = "func_77513_b" +/** + * "Returns the enchantability of itemstack + * + * Parent Class: EnchantmentHelper + */ +m.calcItemStackEnchantability = "func_77514_a" +/** + * Executes the enchantment modifier on the array of ItemStack passed. + * + * Parent Class: EnchantmentHelper + */ +m.applyEnchantmentModifierArray = "func_77516_a" +/** + * Returns the fortune enchantment modifier of the current equipped item of player. + * + * Parent Class: EnchantmentHelper + */ +m.getFortuneModifier = "func_77517_e" +/** + * Executes the enchantment modifier on the ItemStack passed. + * + * Parent Class: EnchantmentHelper + */ +m.applyEnchantmentModifier = "func_77518_a" +/** + * Returns the looting enchantment modifier of the current equipped item of player. + * + * Parent Class: EnchantmentHelper + */ +m.getLootingModifier = "func_77519_f" +/** + * + * + * Parent Class: ThreadLanServerPing + */ +m.getAdFromPingResponse = "func_77523_b" +/** + * + * + * Parent Class: ThreadLanServerPing + */ +m.getMotdFromPingResponse = "func_77524_a" +/** + * + * + * Parent Class: ThreadLanServerPing + */ +m.getPingResponse = "func_77525_a" +/** + * + * + * Parent Class: LanServerDetector$LanServerList + */ +m.setWasNotUpdated = "func_77552_b" +/** + * + * + * Parent Class: LanServerDetector$LanServerList + */ +m.getWasUpdated = "func_77553_a" +/** + * + * + * Parent Class: LanServerDetector$LanServerList + */ +m.getLanServers = "func_77554_c" +/** + * Return true if the item passed can be enchanted by a enchantment of this type. + * + * Parent Class: EnumEnchantmentType + */ +m.canEnchantItem = "func_77557_a" +/** + * Used to check if a recipe matches current crafting inventory + * + * Parent Class: ShapelessRecipes + */ +m.matches = "func_77569_a" +/** + * Returns the size of the recipe area + * + * Parent Class: ShapelessRecipes + */ +m.getRecipeSize = "func_77570_a" +/** + * + * + * Parent Class: ShapelessRecipes + */ +m.getRecipeOutput = "func_77571_b" +/** + * Returns an Item that is the result of this recipe + * + * Parent Class: ShapelessRecipes + */ +m.getCraftingResult = "func_77572_b" +/** + * Checks if the region of a crafting inventory is match for the recipe. + * + * Parent Class: ShapedRecipes + */ +m.checkMatch = "func_77573_a" +/** + * returns the List<> of all recipes + * + * Parent Class: CraftingManager + */ +m.getRecipeList = "func_77592_b" +/** + * Adds a shapeless crafting recipe to the the game. + * + * Parent Class: CraftingManager + */ +m.addShapelessRecipe = "func_77596_b" +/** + * + * + * Parent Class: FurnaceRecipes + */ +m.getSmeltingList = "func_77599_b" +/** + * Returns an instance of FurnaceRecipes. + * + * Parent Class: FurnaceRecipes + */ +m.instance = "func_77602_a" +m.getMaxDamage = {} +/** + * Returns the maximum damage an item can take. + * + * Parent Class: Item + */ +m.getMaxDamage.Item = "func_77612_l" +/** + * Returns the max damage an item in the stack can take. + * + * Parent Class: ItemStack + */ +m.getMaxDamage.ItemStack = "func_77958_k" + +m.getRarity = {} +/** + * Return an item rarity from EnumRarity + * + * Parent Class: Item + */ +m.getRarity.Item = "func_77613_e" +/** + * + * + * Parent Class: ItemStack + */ +m.getRarity.ItemStack = "func_77953_t" + +m.getHasSubtypes = {} +/** + * + * + * Parent Class: Item + */ +m.getHasSubtypes.Item = "func_77614_k" +/** + * + * + * Parent Class: ItemStack + */ +m.getHasSubtypes.ItemStack = "func_77981_g" + +m.onPlayerStoppedUsing = {} +/** + * Called when the player stops using an Item (stops holding the right mouse button). + * + * Parent Class: Item + */ +m.onPlayerStoppedUsing.Item = "func_77615_a" +/** + * "Called when the player releases the use item button. Args: world + * + * Parent Class: ItemStack + */ +m.onPlayerStoppedUsing.ItemStack = "func_77974_b" + +/** + * Checks isDamagable and if it cannot be stacked + * + * Parent Class: Item + */ +m.isItemTool = "func_77616_k" +/** + * "Return the enchantability factor of the item + * + * Parent Class: Item + */ +m.getItemEnchantability = "func_77619_b" +/** + * + * + * Parent Class: ItemPotion + */ +m.getColorFromDamage = "func_77620_a" +/** + * + * + * Parent Class: Item + */ +m.getMovingObjectPositionFromPlayer = "func_77621_a" +/** + * Called when item is crafted/smelted. Used only by maps so far. + * + * Parent Class: Item + */ +m.onCreated = "func_77622_d" +/** + * allows items to add custom lines of information to the mouseover description + * + * Parent Class: Item + */ +m.addInformation = "func_77624_a" +/** + * + * + * Parent Class: Item + */ +m.setMaxStackSize = "func_77625_d" +m.getMaxItemUseDuration = {} +/** + * How long it takes to use or consume an item + * + * Parent Class: Item + */ +m.getMaxItemUseDuration.Item = "func_77626_a" +/** + * + * + * Parent Class: ItemStack + */ +m.getMaxItemUseDuration.ItemStack = "func_77988_m" + +/** + * + * + * Parent Class: Item + */ +m.setHasSubtypes = "func_77627_a" +/** + * Returns true if this item should be rotated by 180 degrees around the Y axis when being held in an entities hands. + * + * Parent Class: Item + */ +m.shouldRotateAroundWhenRendering = "func_77629_n_" +m.setPotionEffect = {} +/** + * Sets the string representing this item's effect on a potion when used as an ingredient. + * + * Parent Class: Item + */ +m.setPotionEffect.Item = "func_77631_c" +/** + * "sets a potion effect on the item. Args: int potionId + * + * Parent Class: ItemFood + */ +m.setPotionEffect.ItemFood = "func_77844_a" + +/** + * True if this Item has a container item (a.k.a. crafting result) + * + * Parent Class: Item + */ +m.hasContainerItem = "func_77634_r" +m.hasEffect = {} +/** + * + * + * Parent Class: Item + */ +m.hasEffect.Item = "func_77636_d" +/** + * + * + * Parent Class: ItemStack + */ +m.hasEffect.ItemStack = "func_77962_s" + +/** + * gets the CreativeTab this item is displayed on + * + * Parent Class: Item + */ +m.getCreativeTab = "func_77640_w" +/** + * + * + * Parent Class: Item + */ +m.setContainerItem = "func_77642_a" +/** + * false for all Items except sub-classes of ItemMapBase + * + * Parent Class: Item + */ +m.isMap = "func_77643_m_" +m.hitEntity = {} +/** + * Current implementations of this method in child classes do not use the entry argument beside ev. They just raise the damage on the stack. + * + * Parent Class: Item + */ +m.hitEntity.Item = "func_77644_a" +/** + * Calls the corresponding fct in di + * + * Parent Class: ItemStack + */ +m.hitEntity.ItemStack = "func_77961_a" + +/** + * + * + * Parent Class: Item + */ +m.isDamageable = "func_77645_m" +/** + * "If this function returns true (or the item is damageable) + * + * Parent Class: Item + */ +m.getShareTag = "func_77651_p" +/** + * + * + * Parent Class: Item + */ +m.getItemStackDisplayName = "func_77653_i" +/** + * set max damage of an Item + * + * Parent Class: Item + */ +m.setMaxDamage = "func_77656_e" +/** + * "Translates the unlocalized name of this item + * + * Parent Class: Item + */ +m.getUnlocalizedNameInefficiently = "func_77657_g" +/** + * "Called whenever this item is equipped and the right mouse button is pressed. Args: itemStack + * + * Parent Class: Item + */ +m.onItemRightClick = "func_77659_a" +m.getItemUseAction = {} +/** + * returns the action that specifies what animation to play when the items is being used + * + * Parent Class: Item + */ +m.getItemUseAction.Item = "func_77661_b" +/** + * + * + * Parent Class: ItemStack + */ +m.getItemUseAction.ItemStack = "func_77975_n" + +/** + * Returns True is the item is renderer in full 3D when hold. + * + * Parent Class: Item + */ +m.isFull3D = "func_77662_d" +/** + * Sets bFull3D to True and return the object. + * + * Parent Class: Item + */ +m.setFull3D = "func_77664_n" +/** + * + * + * Parent Class: Item + */ +m.getContainerItem = "func_77668_q" +/** + * + * + * Parent Class: ItemEditableBook + */ +m.validBookTagContents = "func_77828_a" +/** + * returns wether or not a potion is a throwable splash potion based on damage value + * + * Parent Class: ItemPotion + */ +m.isSplash = "func_77831_g" +/** + * Returns a list of effects for the specified potion damage value. + * + * Parent Class: ItemPotion + */ +m.getEffects = "func_77834_f" +/** + * + * + * Parent Class: ItemPotion + */ +m.isEffectInstant = "func_77833_h" +/** + * "Spawns the creature specified by the egg's type in the location specified by the last three parameters. Parameters: world + * + * Parent Class: ItemMonsterPlacer + */ +m.spawnCreature = "func_77840_a" +/** + * "Returns the name of the material this tool is made from as it is declared in EnumToolMaterial (meaning diamond would return ""EMERALD"")" + * + * Parent Class: ItemHoe + */ +m.getMaterialName = "func_77842_f" +/** + * Whether wolves like this food (true for raw and cooked porkchop). + * + * Parent Class: ItemFood + */ +m.isWolfsFavoriteMeat = "func_77845_h" +/** + * "Set the field 'alwaysEdible' to true + * + * Parent Class: ItemFood + */ +m.setAlwaysEdible = "func_77848_i" +/** + * + * + * Parent Class: ItemAppleGold + */ +m.onFoodEaten = "func_77849_c" +/** + * + * + * Parent Class: ItemMap + */ +m.getMapData = "func_77873_a" +/** + * "Given a potion data value + * + * Parent Class: PotionHelper + */ +m.getPotionPrefix = "func_77905_c" +/** + * Manipulates the specified bit of the potion damage value according to the rules passed from applyIngredient. + * + * Parent Class: PotionHelper + */ +m.brewBitOperations = "func_77906_a" +/** + * Returns the number of 1 bits in the given integer. + * + * Parent Class: PotionHelper + */ +m.countSetFlags = "func_77907_h" +/** + * + * + * Parent Class: PotionHelper + */ +m.getPotionPrefixIndexFlags = "func_77908_a" +/** + * "Given a potion data value + * + * Parent Class: PotionHelper + */ +m.getPotionPrefixIndex = "func_77909_a" +/** + * "Returns 1 if the flag is set + * + * Parent Class: PotionHelper + */ +m.isFlagSet = "func_77910_c" +/** + * Given a {@link Collection}<{@link PotionEffect}> will return an Integer color. + * + * Parent Class: PotionHelper + */ +m.calcPotionLiquidColor = "func_77911_a" +/** + * + * + * Parent Class: PotionHelper + */ +m.parsePotionEffects = "func_77912_a" +/** + * Returns the new potion damage value after the specified ingredient info is applied to the specified potion. + * + * Parent Class: PotionHelper + */ +m.applyIngredient = "func_77913_a" +/** + * Checks if the bit at 1 << j is on in i. + * + * Parent Class: PotionHelper + */ +m.checkFlag = "func_77914_a" +/** + * "Returns 0 if the flag is set + * + * Parent Class: PotionHelper + */ +m.isFlagUnset = "func_77916_d" +/** + * Returns a list of effects for the specified potion damage value. + * + * Parent Class: PotionHelper + */ +m.getPotionEffects = "func_77917_b" +/** + * Returns true if the ItemStack has an NBTTagCompound. Currently used to store enchantments. + * + * Parent Class: ItemStack + */ +m.hasTagCompound = "func_77942_o" +/** + * "Creates a copy of a ItemStack + * + * Parent Class: ItemStack + */ +m.copyItemStack = "func_77944_b" +m.updateAnimation = {} +/** + * Called each tick as long the ItemStack in on player inventory. Used to progress the pickup animation and update maps. + * + * Parent Class: ItemStack + */ +m.updateAnimation.ItemStack = "func_77945_a" +/** + * + * + * Parent Class: TextureCompass + */ +m.updateAnimation.TextureCompass = "func_94219_l" + +/** + * True if the item has enchantment data + * + * Parent Class: ItemStack + */ +m.isItemEnchanted = "func_77948_v" +/** + * + * + * Parent Class: ItemStack + */ +m.loadItemStackFromNBT = "func_77949_a" +/** + * returns true when a damageable item is damaged + * + * Parent Class: ItemStack + */ +m.isItemDamaged = "func_77951_h" +/** + * + * + * Parent Class: ItemStack + */ +m.getItemDamage = "func_77952_i" +/** + * True if it is a tool and has no enchantments to begin with + * + * Parent Class: ItemStack + */ +m.isItemEnchantable = "func_77956_u" +/** + * "Called whenever this item stack is equipped and right clicked. Returns the new item stack to put in the position where this item is. Args: world + * + * Parent Class: ItemStack + */ +m.useItemRightClick = "func_77957_a" +/** + * compares ItemStack argument to the instance ItemStack; returns true if both ItemStacks are equal + * + * Parent Class: ItemStack + */ +m.isItemStackEqual = "func_77959_d" +/** + * + * + * Parent Class: ItemStack + */ +m.setItemDamage = "func_77964_b" +m.addEnchantment = {} +/** + * Adds an enchantment with a desired level on the ItemStack. + * + * Parent Class: ItemStack + */ +m.addEnchantment.ItemStack = "func_77966_a" +/** + * Adds an stored enchantment to an enchanted book ItemStack + * + * Parent Class: ItemEnchantedBook + */ +m.addEnchantment.ItemEnchantedBook = "func_92115_a" + +/** + * compares ItemStack argument to the instance ItemStack; returns true if the Items contained in both ItemStacks are equal + * + * Parent Class: ItemStack + */ +m.isItemEqual = "func_77969_a" +/** + * + * + * Parent Class: ItemStack + */ +m.areItemStackTagsEqual = "func_77970_a" +/** + * Damages the item in the ItemStack + * + * Parent Class: ItemStack + */ +m.damageItem = "func_77972_a" +/** + * Returns maximum size of the stack. + * + * Parent Class: ItemStack + */ +m.getMaxStackSize = "func_77976_d" +/** + * Splits off a stack of the given amount of this stack and reduces this stack by the amount. + * + * Parent Class: ItemStack + */ +m.splitStack = "func_77979_a" +/** + * "Assigns a NBTTagCompound to the ItemStack + * + * Parent Class: ItemStack + */ +m.setTagCompound = "func_77982_d" +/** + * + * + * Parent Class: ItemStack + */ +m.setTagInfo = "func_77983_a" +/** + * true if this itemStack is damageable + * + * Parent Class: ItemStack + */ +m.isItemStackDamageable = "func_77984_f" +/** + * Returns true if the ItemStack can hold 2 or more units of the item. + * + * Parent Class: ItemStack + */ +m.isStackable = "func_77985_e" +/** + * + * + * Parent Class: ItemStack + */ +m.getEnchantmentTagList = "func_77986_q" +/** + * compares ItemStack argument1 with ItemStack argument2; returns true if both ItemStacks are equal + * + * Parent Class: ItemStack + */ +m.areItemStacksEqual = "func_77989_b" +m.getEnchantability = {} +/** + * Return the natural enchantability factor of the material. + * + * Parent Class: Item$ToolMaterial + */ +m.getEnchantability.Item$ToolMaterial = "func_77995_e" +/** + * Return the enchantability factor of the material. + * + * Parent Class: ItemArmor$ArmorMaterial + */ +m.getEnchantability.ItemArmor$ArmorMaterial = "func_78045_a" + +/** + * "The level of material this tool can harvest (3 = DIAMOND + * + * Parent Class: Item$ToolMaterial + */ +m.getHarvestLevel = "func_77996_d" +/** + * "The number of uses this material allows. (wood = 59 + * + * Parent Class: Item$ToolMaterial + */ +m.getMaxUses = "func_77997_a" +/** + * The strength of this tool material against blocks which it is effective against. + * + * Parent Class: Item$ToolMaterial + */ +m.getEfficiencyOnProperMaterial = "func_77998_b" +/** + * + * + * Parent Class: CreativeTabs + */ +m.getTabLabel = "func_78013_b" +/** + * + * + * Parent Class: CreativeTabs + */ +m.setNoTitle = "func_78014_h" +/** + * + * + * Parent Class: CreativeTabs + */ +m.getBackgroundImageName = "func_78015_f" +/** + * + * + * Parent Class: CreativeTabs$9 + */ +m.getTabIconItem = "func_78016_d" +/** + * + * + * Parent Class: CreativeTabs + */ +m.shouldHidePlayerInventory = "func_78017_i" +/** + * only shows items which have tabToDisplayOn == this + * + * Parent Class: CreativeTabs + */ +m.displayAllReleventItems = "func_78018_a" +/** + * + * + * Parent Class: CreativeTabs + */ +m.drawInForegroundOfTab = "func_78019_g" +/** + * returns index % 6 + * + * Parent Class: CreativeTabs + */ +m.getTabColumn = "func_78020_k" +/** + * + * + * Parent Class: CreativeTabs + */ +m.getTabIndex = "func_78021_a" +/** + * + * + * Parent Class: CreativeTabs + */ +m.setNoScrollbar = "func_78022_j" +/** + * returns tabIndex < 6 + * + * Parent Class: CreativeTabs + */ +m.isTabInFirstRow = "func_78023_l" +/** + * Gets the translated Label. + * + * Parent Class: CreativeTabs + */ +m.getTranslatedTabLabel = "func_78024_c" +/** + * + * + * Parent Class: CreativeTabs + */ +m.setBackgroundImageName = "func_78025_a" +/** + * "Return the damage reduction (each 1 point is a half a shield on gui) of the piece index passed (0 = helmet + * + * Parent Class: ItemArmor$ArmorMaterial + */ +m.getDamageReductionAmount = "func_78044_b" +/** + * Returns the durability for a armor slot of for this type. + * + * Parent Class: ItemArmor$ArmorMaterial + */ +m.getDurability = "func_78046_a" +/** + * + * + * Parent Class: ModelBase + */ +m.getTextureOffset = "func_78084_a" +m.setTextureOffset = {} +/** + * + * + * Parent Class: ModelBase + */ +m.setTextureOffset.ModelBase = "func_78085_a" +/** + * + * + * Parent Class: ModelRenderer + */ +m.setTextureOffset.ModelRenderer = "func_78784_a" + +/** + * Used for easily adding entity-dependent animations. The second and third float params here are the same second and third as in the setRotationAngles method. + * + * Parent Class: ModelDragon + */ +m.setLivingAnimations = "func_78086_a" +/** + * "Sets the model's various rotation angles. For bipeds + * + * Parent Class: ModelZombie + */ +m.setRotationAngles = "func_78087_a" +/** + * Renders the sign model through TileEntitySignRenderer + * + * Parent Class: ModelSign + */ +m.renderSign = "func_78164_a" +/** + * "Updates the rotations in the parameters for rotations greater than 180 degrees or less than -180 degrees. It adds or subtracts 360 degrees + * + * Parent Class: ModelDragon + */ +m.updateRotations = "func_78214_a" +/** + * This method renders out all parts of the chest model. + * + * Parent Class: ModelChest + */ +m.renderAll = "func_78231_a" +/** + * + * + * Parent Class: TexturedQuad + */ +m.flipFace = "func_78235_a" +/** + * + * + * Parent Class: PositionTextureVertex + */ +m.setTexturePosition = "func_78240_a" +/** + * + * + * Parent Class: ModelBox + */ +m.setBoxName = "func_78244_a" +/** + * "Render a single line string at the current (posX + * + * Parent Class: FontRenderer + */ +m.renderStringAtPos = "func_78255_a" +/** + * Returns the width of this string. Equivalent of FontMetrics.stringWidth(String s). + * + * Parent Class: FontRenderer + */ +m.getStringWidth = "func_78256_a" +/** + * Load one of the /font/glyph_XX.png into a new GL texture and store the texture ID in glyphTextureName array. + * + * Parent Class: FontRenderer + */ +m.loadGlyphTexture = "func_78257_a" +/** + * Determines how many characters from the string will fit into the specified width. + * + * Parent Class: FontRenderer + */ +m.sizeStringToWidth = "func_78259_e" +/** + * Get bidiFlag that controls if the Unicode Bidirectional Algorithm should be run before rendering any string + * + * Parent Class: FontRenderer + */ +m.getBidiFlag = "func_78260_a" +/** + * Trims a string to fit a specified Width. + * + * Parent Class: FontRenderer + */ +m.trimStringToWidth = "func_78269_a" +/** + * Returns the width of this character as rendered. + * + * Parent Class: FontRenderer + */ +m.getCharWidth = "func_78263_a" +/** + * Set unicodeFlag controlling whether strings should be rendered with Unicode fonts instead of the default.png font. + * + * Parent Class: FontRenderer + */ +m.setUnicodeFlag = "func_78264_a" +/** + * Reset all style flag fields in the class to false; called at the start of string rendering + * + * Parent Class: FontRenderer + */ +m.resetStyles = "func_78265_b" +/** + * "Render a single character with the default.png font at current (posX + * + * Parent Class: FontRenderer + */ +m.renderDefaultChar = "func_78266_a" +/** + * Returns the width of the wordwrapped String (maximum length is parameter k) + * + * @param str The string to split + * @param maxLength The maximum length of a word + * + * Parent Class: FontRenderer + */ +m.splitStringWidth = "func_78267_b" +/** + * Perform actual work of rendering a multi-line string with wordwrap and with darker drop shadow color if flag is set + * + * Parent Class: FontRenderer + */ +m.renderSplitString = "func_78268_b" +/** + * Checks if the char code is O-K...lLrRk-o... used to set special formatting. + * + * Parent Class: FontRenderer + */ +m.isFormatSpecial = "func_78270_c" +/** + * Breaks a string into a list of pieces that will fit a specified width. + * + * Parent Class: FontRenderer + */ +m.listFormattedStringToWidth = "func_78271_c" +/** + * "Checks if the char code is a hexadecimal character + * + * Parent Class: FontRenderer + */ +m.isFormatColor = "func_78272_b" +/** + * Remove all newline characters from the end of the string + * + * Parent Class: FontRenderer + */ +m.trimStringNewline = "func_78273_d" +/** + * Render string either left or right aligned depending on bidiFlag + * + * Parent Class: FontRenderer + */ +m.renderStringAligned = "func_78274_b" +/** + * Set bidiFlag to control if the Unicode Bidirectional Algorithm should be run before rendering any string. + * + * Parent Class: FontRenderer + */ +m.setBidiFlag = "func_78275_b" +/** + * "Render a single Unicode character at current (posX + * + * Parent Class: FontRenderer + */ +m.renderUnicodeChar = "func_78277_a" +/** + * Splits and draws a String with wordwrap (maximum length is parameter k) + * + * Parent Class: FontRenderer + */ +m.drawSplitString = "func_78279_b" +/** + * Inserts newline and formatting into a string to wrap it within the specified width. + * + * Parent Class: FontRenderer + */ +m.wrapFormattedStringToWidth = "func_78280_d" +/** + * Digests a string for nonprinting formatting characters then returns a string containing only that formatting. + * + * Parent Class: FontRenderer + */ +m.getFormatFromString = "func_78282_e" +/** + * + * + * Parent Class: ScaledResolution + */ +m.getScaledHeight_double = "func_78324_d" +/** + * + * + * Parent Class: ScaledResolution + */ +m.getScaleFactor = "func_78325_e" +/** + * + * + * Parent Class: ScaledResolution + */ +m.getScaledWidth = "func_78326_a" +/** + * + * + * Parent Class: ScaledResolution + */ +m.getScaledWidth_double = "func_78327_c" +/** + * + * + * Parent Class: ScaledResolution + */ +m.getScaledHeight = "func_78328_b" +/** + * + * + * Parent Class: SkinManager$2 + */ +m.parseUserSkin = "func_78432_a" +/** + * Makes the given area of the image opaque + * + * Parent Class: ImageBufferDownload + */ +m.setAreaOpaque = "func_78433_b" +/** + * Makes the given area of the image transparent if it was previously completely opaque (used to remove the outer layer of a skin around the head if it was saved all opaque; this would be redundant so it's assumed that the skin maker is just using an image editor without an alpha channel) + * + * Parent Class: ImageBufferDownload + */ +m.setAreaTransparent = "func_78434_a" +/** + * Returns true if the given area of the image contains transparent pixels + * + * Parent Class: ImageBufferDownload + */ +m.hasTransparency = "func_78435_c" +/** + * Renders the active item in the player's hand when in first person mode. Args: partialTickTime + * + * Parent Class: ItemRenderer + */ +m.renderItemInFirstPerson = "func_78440_a" +/** + * + * + * Parent Class: ItemRenderer + */ +m.updateEquippedItem = "func_78441_a" +/** + * Renders the fire on the screen for first person mode. Arg: partialTickTime + * + * @param partialTicks Partial ticks + * + * Parent Class: ItemRenderer + */ +m.renderFireInFirstPerson = "func_78442_d" +/** + * Resets equippedProgress + * + * Parent Class: ItemRenderer + */ +m.resetEquippedProgress = "func_78444_b" +/** + * Resets equippedProgress + * + * Parent Class: ItemRenderer + */ +m.resetEquippedProgress2 = "func_78445_c" +/** + * Renders all the overlays that are in first person mode. Args: partialTickTime + * + * Parent Class: ItemRenderer + */ +m.renderOverlays = "func_78447_b" +/** + * Renders a texture that warps around based on the direction the player is looking. Texture needs to be bound before being called. Used for the water overlay. Args: parialTickTime + * + * @param partialTicks Partial ticks + * + * Parent Class: ItemRenderer + */ +m.renderWaterOverlayTexture = "func_78448_c" +/** + * Updates the entity renderer + * + * Parent Class: EntityRenderer + */ +m.updateRenderer = "func_78464_a" +/** + * calculates fog and calls glClearColor + * + * Parent Class: EntityRenderer + */ +m.updateFogColor = "func_78466_h" +/** + * sets up player's eye (or camera in third person mode) + * + * Parent Class: EntityRenderer + */ +m.orientCamera = "func_78467_g" +/** + * Sets up the fog to be rendered. If the arg passed in is -1 the fog starts at 0 and goes to 80% of far plane distance and is used for sky rendering. + * + * @param startCoords If is -1 the fog start at 0.0 + * + * Parent Class: EntityRenderer + */ +m.setupFog = "func_78468_a" +/** + * Update and return fogColorBuffer with the RGBA values passed as arguments + * + * Parent Class: EntityRenderer + */ +m.setFogColorBuffer = "func_78469_a" +/** + * Recompute a random value that is applied to block color in updateLightmap() + * + * Parent Class: EntityRenderer + */ +m.updateTorchFlicker = "func_78470_f" +/** + * + * + * Parent Class: EntityRenderer + */ +m.renderWorld = "func_78471_a" +/** + * + * + * Parent Class: EntityRenderer + */ +m.updateLightmap = "func_78472_g" +/** + * Finds what block or object the mouse is over at the specified partial tick time. Args: partialTickTime + * + * Parent Class: EntityRenderer + */ +m.getMouseOver = "func_78473_a" +/** + * Render rain and snow + * + * Parent Class: EntityRenderer + */ +m.renderRainSnow = "func_78474_d" +/** + * Setups all the GL settings for view bobbing. Args: partialTickTime + * + * Parent Class: EntityRenderer + */ +m.setupViewBobbing = "func_78475_f" +/** + * Render player hand + * + * Parent Class: EntityRenderer + */ +m.renderHand = "func_78476_b" +/** + * Update FOV modifier hand + * + * Parent Class: EntityRenderer + */ +m.updateFovModifierHand = "func_78477_e" +/** + * Setup orthogonal projection for rendering GUI screen overlays + * + * Parent Class: EntityRenderer + */ +m.setupOverlayRendering = "func_78478_c" +/** + * "sets up projection + * + * Parent Class: EntityRenderer + */ +m.setupCameraTransform = "func_78479_a" +/** + * Changes the field of view of the player depending on if they are underwater or not + * + * @param useFOVSetting If true the FOV set in the settings will be use in the calculation + * + * Parent Class: EntityRenderer + */ +m.getFOVModifier = "func_78481_a" +/** + * + * + * Parent Class: EntityRenderer + */ +m.hurtCameraEffect = "func_78482_e" +/** + * + * + * Parent Class: EntityRenderer + */ +m.addRainParticles = "func_78484_h" +/** + * "Returns true if the bounding box is inside all 6 clipping planes + * + * Parent Class: Frustum + */ +m.isBoundingBoxInFrustum = "func_78546_a" +m.isBoxInFrustum = {} +/** + * "Calls the clipping helper. Returns true if the box is inside all 6 clipping planes + * + * Parent Class: Frustum + */ +m.isBoxInFrustum.Frustum = "func_78548_b" +/** + * "Returns true if the box is inside all 6 clipping planes + * + * Parent Class: ClippingHelper + */ +m.isBoxInFrustum.ClippingHelper = "func_78553_b" + +/** + * + * + * Parent Class: RenderManager + */ +m.getEntityRenderObject = "func_78713_a" +/** + * + * + * Parent Class: RenderManager + */ +m.getDistanceToCamera = "func_78714_a" +/** + * + * + * Parent Class: RenderManager + */ +m.getEntityClassRenderObject = "func_78715_a" +/** + * Flips the player around. + * + * Parent Class: PlayerControllerMP + */ +m.flipPlayer = "func_78745_b" +/** + * Sets player capabilities depending on current gametype. params: player + * + * @param player The player's instance + * + * Parent Class: PlayerControllerMP + */ +m.setPlayerCapabilities = "func_78748_a" +/** + * true for hitting entities far away. + * + * Parent Class: PlayerControllerMP + */ +m.extendedReach = "func_78749_i" +/** + * Syncs the current player item with the server + * + * Parent Class: PlayerControllerMP + */ +m.syncCurrentPlayItem = "func_78750_j" +/** + * Sends a Packet107 to the server to drop the item on the ground + * + * Parent Class: PlayerControllerMP + */ +m.sendPacketDropItem = "func_78752_a" +/** + * Handles slot clicks sends a packet to the server. + * + * Parent Class: PlayerControllerMP + */ +m.windowClick = "func_78753_a" +/** + * + * + * Parent Class: PlayerControllerMP + */ +m.shouldDrawHUD = "func_78755_b" +/** + * GuiEnchantment uses this during multiplayer to tell PlayerControllerMP to send a packet indicating the enchantment action the player has taken. + * + * @param windowID The ID of the current window + * @param button The button id (enchantment selected) + * + * Parent Class: PlayerControllerMP + */ +m.sendEnchantPacket = "func_78756_a" +/** + * player reach distance = 4F + * + * Parent Class: PlayerControllerMP + */ +m.getBlockReachDistance = "func_78757_d" +/** + * returns true if player is in creative mode + * + * Parent Class: PlayerControllerMP + */ +m.isInCreativeMode = "func_78758_h" +/** + * Used in PlayerControllerMP to update the server with an ItemStack in a slot. + * + * Parent Class: PlayerControllerMP + */ +m.sendSlotPacket = "func_78761_a" +/** + * "Checks if the player is not creative + * + * Parent Class: PlayerControllerMP + */ +m.isNotCreative = "func_78762_g" +/** + * + * + * Parent Class: PlayerControllerMP + */ +m.gameIsSurvivalOrAdventure = "func_78763_f" +/** + * Attacks an entity + * + * Parent Class: PlayerControllerMP + */ +m.attackEntity = "func_78764_a" +/** + * + * + * Parent Class: PlayerControllerMP + */ +m.updateController = "func_78765_e" +/** + * + * + * Parent Class: PlayerControllerMP + */ +m.onStoppedUsingItem = "func_78766_c" +/** + * Resets current block damage and field_78778_j + * + * Parent Class: PlayerControllerMP + */ +m.resetBlockRemoving = "func_78767_c" +/** + * Send packet to server - player is interacting with another entity (left click) + * + * Parent Class: PlayerControllerMP + */ +m.interactWithEntitySendPacket = "func_78768_b" +/** + * "Notifies the server of things like consuming food + * + * Parent Class: PlayerControllerMP + */ +m.sendUseItem = "func_78769_a" +/** + * Returns the model renderer with the new texture parameters. + * + * Parent Class: ModelRenderer + */ +m.setTextureSize = "func_78787_b" +/** + * Compiles a GL display list for this model + * + * Parent Class: ModelRenderer + */ +m.compileDisplayList = "func_78788_d" +/** + * + * + * Parent Class: ModelRenderer + */ +m.renderWithRotation = "func_78791_b" +/** + * Sets the current box's rotation points and rotation angles to another box. + * + * Parent Class: ModelRenderer + */ +m.addChild = "func_78792_a" +/** + * + * + * Parent Class: ModelRenderer + */ +m.setRotationPoint = "func_78793_a" +/** + * Allows the changing of Angles after a box has been rendered + * + * Parent Class: ModelRenderer + */ +m.postRender = "func_78794_c" +/** + * "Returns an NBTTagCompound with the server's name + * + * Parent Class: ServerData + */ +m.getNBTCompound = "func_78836_a" +/** + * "Takes an NBTTagCompound with 'name' and 'ip' keys + * + * Parent Class: ServerData + */ +m.getServerDataFromNBTCompound = "func_78837_a" +/** + * Adds the given ServerData instance to the list. + * + * Parent Class: ServerList + */ +m.addServerData = "func_78849_a" +/** + * Removes the ServerData instance stored for the given index in the list. + * + * Parent Class: ServerList + */ +m.removeServerData = "func_78851_b" +/** + * "Loads a list of servers from servers.dat + * + * Parent Class: ServerList + */ +m.loadServerList = "func_78853_a" +/** + * "Runs getNBTCompound on each ServerData instance + * + * Parent Class: ServerList + */ +m.saveServerList = "func_78855_b" +/** + * Counts the number of ServerData instances in the list. + * + * Parent Class: ServerList + */ +m.countServers = "func_78856_c" +/** + * "Takes two list indexes + * + * Parent Class: ServerList + */ +m.swapServers = "func_78857_a" +/** + * + * + * Parent Class: ServerAddress + */ +m.fromString = "func_78860_a" +/** + * + * + * Parent Class: ServerAddress + */ +m.getIP = "func_78861_a" +/** + * "Returns a server's address and port for the specified hostname + * + * Parent Class: ServerAddress + */ +m.getServerAddress = "func_78863_b" +/** + * + * + * Parent Class: EffectRenderer + */ +m.updateEffects = "func_78868_a" +/** + * + * + * Parent Class: EffectRenderer + */ +m.getStatistics = "func_78869_b" +/** + * + * + * Parent Class: EffectRenderer + */ +m.clearEffects = "func_78870_a" +/** + * + * + * Parent Class: EffectRenderer + */ +m.renderLitParticles = "func_78872_b" +/** + * + * + * Parent Class: EffectRenderer + */ +m.addEffect = "func_78873_a" +/** + * "Renders all current particles. Args player + * + * Parent Class: EffectRenderer + */ +m.renderParticles = "func_78874_a" +/** + * Get dimension of the bounding box in the z direction. + * + * Parent Class: StructureBoundingBox + */ +m.getZSize = "func_78880_d" +/** + * Get dimension of the bounding box in the y direction. + * + * Parent Class: StructureBoundingBox + */ +m.getYSize = "func_78882_c" +/** + * Get dimension of the bounding box in the x direction. + * + * Parent Class: StructureBoundingBox + */ +m.getXSize = "func_78883_b" +/** + * returns a new StructureBoundingBox with MAX values + * + * Parent Class: StructureBoundingBox + */ +m.getNewBoundingBox = "func_78887_a" +/** + * Expands a bounding box's dimensions to include the supplied bounding box. + * + * Parent Class: StructureBoundingBox + */ +m.expandTo = "func_78888_b" +/** + * + * + * Parent Class: MovementInputFromOptions + */ +m.updatePlayerMoveState = "func_78898_a" +/** + * Disabels color processing. + * + * Parent Class: WorldRenderer + */ +m.noColor = "func_78914_f" +/** + * "Returns the dimension's name + * + * Parent Class: WorldProviderEnd + */ +m.getDimensionName = "func_80007_l" +/** + * + * + * Parent Class: MinecraftServer + */ +m.registerTickable = "func_82010_a" +/** + * The maximum height from where the entity is alowed to jump (used in pathfinder) + * + * Parent Class: EntityCreeper + */ +m.getMaxFallHeight = "func_82143_as" +/** + * Return the amount of time this entity should stay in a portal before being transported. + * + * Parent Class: EntityPlayer + */ +m.getMaxInPortalTime = "func_82145_z" +/** + * Return the amount of cooldown before this entity can use a portal again. + * + * Parent Class: EntityPlayer + */ +m.getPortalCooldown = "func_82147_ab" +/** + * Sets this entity's location and angles to the location and angles of the passed in entity. + * + * Parent Class: Entity + */ +m.copyLocationAndAnglesFrom = "func_82149_j" +/** + * + * + * Parent Class: Entity + */ +m.isInvisible = "func_82150_aj" +/** + * + * + * Parent Class: EntityLiving + */ +m.getArmorPosition = "func_82159_b" +/** + * Drop the equipment for this entity. + * + * @param wasRecentlyHit true if this this entity was recently hit by appropriate entity (generally only if player or tameable) + * @param lootingModifier level of enchanment to be applied to this drop + * + * Parent Class: EntityLiving + */ +m.dropEquipment = "func_82160_b" +/** + * Gets the vanilla armor Item that can go in the slot specified for the given tier. + * + * Parent Class: EntityLiving + */ +m.getArmorItemForSlot = "func_82161_a" +/** + * Causes this Entity to drop a random item. + * + * Parent Class: EntityZombie + */ +m.addRandomDrop = "func_82164_bB" +/** + * "Returns an integer indicating the end point of the swing animation + * + * Parent Class: EntityLivingBase + */ +m.getArmSwingAnimationEnd = "func_82166_i" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.collideWithEntity = "func_82167_n" +/** + * Updates the arm swing progress counters and animation progress + * + * Parent Class: EntityLivingBase + */ +m.updateArmSwingProgress = "func_82168_bl" +/** + * Remove the specified potion effect from this entity. + * + * Parent Class: EntityLivingBase + */ +m.removePotionEffect = "func_82170_o" +/** + * "returns true if all the conditions for steering the entity are met. For pigs + * + * Parent Class: EntityPig + */ +m.canBeSteered = "func_82171_bF" +/** + * Return the AI task for player control. + * + * Parent Class: EntityPig + */ +m.getAIControlledByPlayer = "func_82183_n" +/** + * + * + * Parent Class: EntityVillager + */ +m.setLookingForHome = "func_82187_q" +/** + * Provides a way to cause damage to an ender dragon. + * + * Parent Class: EntityDragon + */ +m.attackDragonFrom = "func_82195_e" +/** + * Attack the specified entity using a ranged attack. + * + * Parent Class: EntityWitch + */ +m.attackEntityWithRangedAttack = "func_82196_d" +/** + * Set whether this witch is aggressive at an entity. + * + * Parent Class: EntityWitch + */ +m.setAggressive = "func_82197_f" +/** + * Return whether this witch is aggressive at an entity. + * + * Parent Class: EntityWitch + */ +m.getAggressive = "func_82198_m" +/** + * Set this skeleton's type. + * + * Parent Class: EntitySkeleton + */ +m.setSkeletonType = "func_82201_a" +/** + * Return this skeleton's type. + * + * Parent Class: EntitySkeleton + */ +m.getSkeletonType = "func_82202_m" +/** + * "Returns the target entity ID if present + * + * Parent Class: EntityWither + */ +m.getWatchedTargetId = "func_82203_t" +/** + * Returns whether the wither is armored with its boss armor or not by checking whether its health is below half of its maximum. + * + * Parent Class: EntityWither + */ +m.isArmored = "func_82205_o" +/** + * "Launches a Wither skull toward (par2 + * + * Parent Class: EntityWither + */ +m.launchWitherSkullToCoords = "func_82209_a" +/** + * Updates the target entity ID + * + * Parent Class: EntityWither + */ +m.updateWatchedTargetId = "func_82211_c" +/** + * + * + * Parent Class: EntityWither + */ +m.getInvulTime = "func_82212_n" +/** + * + * + * Parent Class: EntityWither + */ +m.setInvulTime = "func_82215_s" +/** + * + * + * Parent Class: EntityWither + */ +m.launchWitherSkullToEntity = "func_82216_a" +/** + * Set whether this zombie is a child. + * + * Parent Class: EntityZombie + */ +m.setChild = "func_82227_f" +/** + * Starts converting this zombie into a villager. The zombie converts into a villager after the specified time in ticks. + * + * Parent Class: EntityZombie + */ +m.startConversion = "func_82228_a" +/** + * Set whether this zombie is a villager. + * + * Parent Class: EntityZombie + */ +m.setVillager = "func_82229_g" +/** + * Returns whether this zombie is in the process of converting to a villager + * + * Parent Class: EntityZombie + */ +m.isConverting = "func_82230_o" +/** + * Return whether this zombie is a villager. + * + * Parent Class: EntityZombie + */ +m.isVillager = "func_82231_m" +/** + * Convert this zombie into a villager. + * + * Parent Class: EntityZombie + */ +m.convertToVillager = "func_82232_p" +/** + * Return the amount of time decremented from conversionTime every tick. + * + * Parent Class: EntityZombie + */ +m.getConversionTimeBoost = "func_82233_q" +/** + * + * + * Parent Class: EntityBat + */ +m.getIsBatHanging = "func_82235_h" +/** + * + * + * Parent Class: EntityBat + */ +m.setIsBatHanging = "func_82236_f" +/** + * Add experience levels to this player. + * + * Parent Class: EntityPlayer + */ +m.addExperienceLevel = "func_82242_a" +/** + * "When searching for vulnerable players + * + * Parent Class: EntityPlayer + */ +m.getArmorVisibility = "func_82243_bO" +/** + * + * + * Parent Class: EntityPlayer + */ +m.isSpawnForced = "func_82245_bX" +/** + * + * + * Parent Class: EntityPainting + */ +m.getWidthPixels = "func_82329_d" +/** + * + * + * Parent Class: EntityPainting + */ +m.getHeightPixels = "func_82330_g" +/** + * + * + * Parent Class: EntityItemFrame + */ +m.setDisplayedItem = "func_82334_a" +/** + * + * + * Parent Class: EntityItemFrame + */ +m.getDisplayedItem = "func_82335_i" +/** + * + * + * Parent Class: EntityItemFrame + */ +m.setItemRotation = "func_82336_g" +/** + * Sets the particle alpha (float) + * + * Parent Class: EntityFX + */ +m.setAlphaF = "func_82338_g" +/** + * Sets the PotionEffect by the given id of the potion effect. + * + * Parent Class: EntityPotion + */ +m.setPotionDamage = "func_82340_a" +/** + * Return the motion factor for this projectile. The factor is multiplied by the original motion. + * + * Parent Class: EntityWitherSkull + */ +m.getMotionFactor = "func_82341_c" +/** + * Return whether command blocks are enabled. + * + * Parent Class: MinecraftServer + */ +m.isCommandBlockEnabled = "func_82356_Z" +/** + * Return the spawn protection area's size. + * + * Parent Class: MinecraftServer + */ +m.getSpawnProtectionSize = "func_82357_ak" +/** + * Return whether the specified command parameter index is a username parameter. + * + * Parent Class: CommandEffect + */ +m.isUsernameIndex = "func_82358_a" +/** + * Return the required permission level for this command. + * + * Parent Class: CommandEffect + */ +m.getRequiredPermissionLevel = "func_82362_a" +m.getGameRules = {} +/** + * Return the game rule set this command should be able to manipulate. + * + * Parent Class: CommandGameRule + */ +m.getGameRules.CommandGameRule = "func_82366_d" +/** + * Gets the GameRules instance. + * + * Parent Class: World + */ +m.getGameRules.World = "func_82736_K" + +/** + * Return a command's first parameter index containing a valid username. + * + * Parent Class: CommandHandler + */ +m.getUsernameIndex = "func_82370_a" +/** + * Returns whether the given pattern can match more than one player. + * + * Parent Class: PlayerSelector + */ +m.matchesMultiplePlayers = "func_82377_a" +/** + * "Parses the given argument string + * + * Parent Class: PlayerSelector + */ +m.getArgumentMap = "func_82381_h" +/** + * Returns the one player that matches the given at-token. Returns null if more than one player matches. + * + * Parent Class: PlayerSelector + */ +m.matchOnePlayer = "func_82386_a" +/** + * + * + * Parent Class: RenderPlayer + */ +m.transformHeldFull3DItemLayer = "func_82422_c" +/** + * Transfers an entity from a world to another world. + * + * @param oldWorldIn The world transfering from + * @param toWorldIn The world transfering the entity to + * + * Parent Class: ServerConfigurationManager + */ +m.transferEntityToWorld = "func_82448_a" +/** + * Play the dispense sound from the specified block. + * + * Parent Class: Bootstrap$8 + */ +m.playDispenseSound = "func_82485_a" +/** + * + * + * Parent Class: BehaviorDefaultDispenseItem + */ +m.doDispense = "func_82486_a" +/** + * "Dispense the specified stack + * + * Parent Class: ItemArmor$1 + */ +m.dispenseStack = "func_82487_b" +/** + * Order clients to display dispense particles from the specified block and facing. + * + * Parent Class: BehaviorDefaultDispenseItem + */ +m.spawnDispenseParticles = "func_82489_a" +/** + * Return the projectile entity spawned by this dispense behavior. + * + * Parent Class: Bootstrap$9 + */ +m.getProjectileEntity = "func_82499_a" +/** + * + * + * Parent Class: VillageCollection + */ +m.setWorldsForAll = "func_82566_a" +/** + * + * + * Parent Class: MapData + */ +m.updateDecorations = "func_82567_a" +/** + * + * + * Parent Class: MapData + */ +m.getMapInfo = "func_82568_a" +/** + * + * + * Parent Class: WorldInfo + */ +m.getGeneratorOptions = "func_82571_y" +/** + * + * + * Parent Class: WorldInfo + */ +m.setWorldTotalTime = "func_82572_b" +/** + * + * + * Parent Class: WorldInfo + */ +m.getWorldTotalTime = "func_82573_f" +/** + * Gets the GameRules class Instance. + * + * Parent Class: WorldInfo + */ +m.getGameRulesInstance = "func_82574_x" +/** + * Create a crash report which indicates a NBT read error. + * + * Parent Class: NBTTagCompound + */ +m.createCrashReport = "func_82581_a" +/** + * Return whether this compound has no tags. + * + * Parent Class: NBTBase + */ +m.hasNoTags = "func_82582_d" +/** + * Register an object on this registry. + * + * Parent Class: RegistrySimple + */ +m.putObject = "func_82595_a" +/** + * Returns a offset that addresses the block in front of this facing. + * + * Parent Class: EnumFacing + */ +m.getFrontOffsetZ = "func_82599_e" +/** + * Get a Facing by it's index (0-5). The order is D-U-N-S-W-E. Named getFront for legacy reasons. + * + * Parent Class: EnumFacing + */ +m.getFront = "func_82600_a" +/** + * Returns a offset that addresses the block in front of this facing. + * + * Parent Class: EnumFacing + */ +m.getFrontOffsetX = "func_82601_c" +/** + * Boost the entity's movement speed. + * + * Parent Class: EntityAIControlledByPlayer + */ +m.boostSpeed = "func_82632_g" +/** + * Return whether the entity is being controlled by a player. + * + * Parent Class: EntityAIControlledByPlayer + */ +m.isControlledByPlayer = "func_82633_h" +/** + * Return whether the entity's speed is boosted. + * + * Parent Class: EntityAIControlledByPlayer + */ +m.isSpeedBoosted = "func_82634_f" +/** + * Return the list of world features enabled on this preset. + * + * Parent Class: FlatGeneratorInfo + */ +m.getWorldFeatures = "func_82644_b" +/** + * Set the biome used on this preset. + * + * Parent Class: FlatGeneratorInfo + */ +m.setBiome = "func_82647_a" +/** + * + * + * Parent Class: FlatGeneratorInfo + */ +m.getDefaultFlatGenerator = "func_82649_e" +/** + * Return the list of layers on this preset. + * + * Parent Class: FlatGeneratorInfo + */ +m.getFlatLayers = "func_82650_c" +/** + * + * + * Parent Class: FlatGeneratorInfo + */ +m.createFlatGeneratorFromString = "func_82651_a" +/** + * "Return the minimum Y coordinate for this layer + * + * Parent Class: FlatLayerInfo + */ +m.getMinY = "func_82656_d" +/** + * Return the amount of layers for this set of layers. + * + * Parent Class: FlatLayerInfo + */ +m.getLayerCount = "func_82657_a" +/** + * Return the block metadata used on this set of layers. + * + * Parent Class: FlatLayerInfo + */ +m.getFillBlockMeta = "func_82658_c" +/** + * Set the minimum Y coordinate for this layer. + * + * Parent Class: FlatLayerInfo + */ +m.setMinY = "func_82660_d" +/** + * + * + * Parent Class: Village + */ +m.setDefaultPlayerReputation = "func_82683_b" +/** + * Return the village reputation for a player + * + * Parent Class: Village + */ +m.getReputationForPlayer = "func_82684_a" +/** + * + * + * Parent Class: Village + */ +m.getNearestTargetPlayer = "func_82685_c" +/** + * Return whether villagers mating refractory period has passed + * + * Parent Class: Village + */ +m.isMatingSeason = "func_82686_i" +/** + * Return whether this player has a too low reputation with this village. + * + * Parent Class: Village + */ +m.isPlayerReputationTooLow = "func_82687_d" +/** + * Set the village reputation for a player. + * + * Parent Class: Village + */ +m.setReputationForPlayer = "func_82688_a" +/** + * Write this village's data to NBT. + * + * Parent Class: Village + */ +m.writeVillageDataToNBT = "func_82689_b" +/** + * Read this village's data from NBT. + * + * Parent Class: Village + */ +m.readVillageDataFromNBT = "func_82690_a" +/** + * Prevent villager breeding for a fixed interval of time + * + * Parent Class: Village + */ +m.endMatingSeason = "func_82692_h" +/** + * Return whether this creature type is an animal. + * + * Parent Class: EnumCreatureType + */ +m.getAnimal = "func_82705_e" +/** + * + * + * Parent Class: DataWatcher + */ +m.setObjectWatched = "func_82708_h" +/** + * "Add a new object for the DataWatcher to watch + * + * Parent Class: DataWatcher + */ +m.addObjectByDataType = "func_82709_a" +/** + * Get a watchable object as an ItemStack. + * + * Parent Class: DataWatcher + */ +m.getWatchableObjectItemStack = "func_82710_f" +/** + * parses the string as double or returns the second parameter if it fails. + * + * Parent Class: MathHelper + */ +m.parseDoubleWithDefault = "func_82712_a" +/** + * + * + * Parent Class: MathHelper + */ +m.parseDoubleWithDefaultAndMax = "func_82713_a" +/** + * parses the string as integer or returns the second parameter if it fails. this value is capped to par2 + * + * Parent Class: MathHelper + */ +m.parseIntWithDefaultAndMax = "func_82714_a" +/** + * + * + * Parent Class: MathHelper + */ +m.getRandomDoubleInRange = "func_82716_a" +/** + * Write a custom potion effect to a potion item's NBT data. + * + * Parent Class: PotionEffect + */ +m.writeCustomPotionEffectToNBT = "func_82719_a" +/** + * Gets whether this potion effect originated from a beacon + * + * Parent Class: PotionEffect + */ +m.getIsAmbient = "func_82720_e" +/** + * Set whether this potion is a splash potion. + * + * Parent Class: PotionEffect + */ +m.setSplashPotion = "func_82721_a" +/** + * Read a custom potion effect from a potion item's NBT data. + * + * Parent Class: PotionEffect + */ +m.readCustomPotionEffectFromNBT = "func_82722_b" +/** + * Returns true if the damage is magic based. + * + * Parent Class: DamageSource + */ +m.isMagicDamage = "func_82725_o" +/** + * Define the damage type as magic based. + * + * Parent Class: DamageSource + */ +m.setMagicDamage = "func_82726_p" +/** + * Gets the lowest height of the chunk where sunlight directly reaches + * + * Parent Class: World + */ +m.getChunksLowestHorizon = "func_82734_g" +/** + * + * + * Parent Class: World + */ +m.setTotalWorldTime = "func_82738_a" +/** + * Resets the updateEntityTick field to 0 + * + * Parent Class: WorldServer + */ +m.resetUpdateEntityTick = "func_82742_i" +/** + * retrieves the 'date' at which the PartiallyDestroyedBlock was created + * + * Parent Class: DestroyBlockProgress + */ +m.getCreationCloudUpdateTick = "func_82743_f" +/** + * saves the current Cloud update tick into the PartiallyDestroyedBlock + * + * Parent Class: DestroyBlockProgress + */ +m.setCloudUpdateTick = "func_82744_b" +/** + * + * + * Parent Class: WorldType + */ +m.getWorldTypeID = "func_82747_f" +/** + * Returns true if this is the ADVENTURE game type + * + * Parent Class: WorldSettings$GameType + */ +m.isAdventure = "func_82752_c" +/** + * + * + * Parent Class: NextTickListEntry + */ +m.setPriority = "func_82753_a" +/** + * Return the defined game rules. + * + * Parent Class: GameRules + */ +m.getRules = "func_82763_b" +/** + * + * + * Parent Class: GameRules + */ +m.setOrCreateGameRule = "func_82764_b" +/** + * Return whether the specified game rule is defined. + * + * Parent Class: GameRules + */ +m.hasRule = "func_82765_e" +m.getEnchantments = {} +/** + * Return the enchantments for the specified stack. + * + * Parent Class: EnchantmentHelper + */ +m.getEnchantments.EnchantmentHelper = "func_82781_a" +/** + * + * + * Parent Class: ItemEnchantedBook + */ +m.getEnchantments.ItemEnchantedBook = "func_92110_g" + +/** + * Set the enchantments for the specified stack. + * + * Parent Class: EnchantmentHelper + */ +m.setEnchantments = "func_82782_a" +/** + * + * + * Parent Class: MerchantRecipe + */ +m.increaseMaxTradeUses = "func_82783_a" +/** + * + * + * Parent Class: MerchantRecipe + */ +m.isRecipeDisabled = "func_82784_g" +/** + * Compensates {@link net.minecraft.village.MerchantRecipe#toolUses toolUses} with {@link net.minecraft.village.MerchantRecipe#maxTradeUses maxTradeUses} + * + * Parent Class: MerchantRecipe + */ +m.compensateToolUses = "func_82785_h" +/** + * Retrieves an ItemStack that has multiple recipes for it. + * + * Parent Class: CraftingManager + */ +m.findMatchingRecipe = "func_82787_a" +/** + * "Returns true if players can use this item to affect the world (e.g. placing blocks + * + * Parent Class: Item + */ +m.canItemEditBlocks = "func_82788_x" +/** + * Return whether this item is repairable in an anvil. + * + * Parent Class: Item + */ +m.getIsRepairable = "func_82789_a" +/** + * + * + * Parent Class: Item + */ +m.getColorFromItemStack = "func_82790_a" +/** + * Return the armor material for this armor item. + * + * Parent Class: ItemArmor + */ +m.getArmorMaterial = "func_82812_d" +/** + * Remove the color from the specified armor ItemStack. + * + * Parent Class: ItemArmor + */ +m.removeColor = "func_82815_c" +/** + * Check whether a {@link Collection}<{@link PotionEffect}> are all ambient. + * + * Parent Class: PotionHelper + */ +m.getAreAmbient = "func_82817_b" +/** + * + * + * Parent Class: BossStatus + */ +m.setBossStatus = "func_82824_a" +/** + * + * + * Parent Class: ItemStack + */ +m.canEditBlocks = "func_82835_x" +/** + * Return the item frame this stack is on. Returns null if not on an item frame. + * + * Parent Class: ItemStack + */ +m.getItemFrame = "func_82836_z" +/** + * Returns true if the itemstack has a display name + * + * Parent Class: ItemStack + */ +m.hasDisplayName = "func_82837_s" +/** + * "Get this stack's repair cost + * + * Parent Class: ItemStack + */ +m.getRepairCost = "func_82838_A" +/** + * Return whether this stack is on an item frame. + * + * Parent Class: ItemStack + */ +m.isOnItemFrame = "func_82839_y" +/** + * Return a list of strings containing information about the item + * + * Parent Class: ItemStack + */ +m.getTooltip = "func_82840_a" +/** + * Set this stack's repair cost. + * + * Parent Class: ItemStack + */ +m.setRepairCost = "func_82841_c" +/** + * Set the item frame this stack is on. + * + * Parent Class: ItemStack + */ +m.setItemFrame = "func_82842_a" +/** + * Take a stack from the specified inventory slot. + * + * Parent Class: ContainerMerchant + */ +m.transferStackInSlot = "func_82846_b" +/** + * Remove the given Listener. Method name is for legacy. + * + * Parent Class: Container + */ +m.removeCraftingFromCrafters = "func_82847_b" +/** + * "called when the Anvil Input Slot changes + * + * Parent Class: ContainerRepair + */ +m.updateRepairOutput = "func_82848_d" +/** + * used by the Anvil GUI to update the Item Name being typed by the player + * + * Parent Class: ContainerRepair + */ +m.updateItemName = "func_82850_a" +/** + * Return whether this slot's stack can be taken from this slot. + * + * Parent Class: Slot + */ +m.canTakeStack = "func_82869_a" +/** + * + * + * Parent Class: Slot + */ +m.onPickupFromSlot = "func_82870_a" +/** + * + * + * Parent Class: PlayerCapabilities + */ +m.setPlayerWalkSpeed = "func_82877_b" +/** + * Send a client info packet with settings information to the server + * + * Parent Class: GameSettings + */ +m.sendSettingsToServer = "func_82879_c" +/** + * Get unicodeFlag controlling whether strings should be rendered with Unicode fonts instead of the default.png font. + * + * Parent Class: FontRenderer + */ +m.getUnicodeFlag = "func_82883_a" +/** + * returns a calendar object containing the current date + * + * Parent Class: World + */ +m.getCurrentDate = "func_83015_S" +/** + * + * + * Parent Class: EntityFallingBlock + */ +m.addEntityCrashInfo = "func_85029_a" +/** + * Called when a player attacks an entity. If this returns true the attack will not happen. + * + * Parent Class: EntityHanging + */ +m.hitByEntity = "func_85031_j" +/** + * + * + * Parent Class: EntityArmorStand + */ +m.collideWithNearbyEntities = "func_85033_bc" +/** + * sets the amount of arrows stuck in the entity. used for rendering those + * + * Parent Class: EntityLivingBase + */ +m.setArrowCountInEntity = "func_85034_r" +/** + * "counts the amount of arrows stuck in the entity. getting hit by arrows increases this + * + * Parent Class: EntityLivingBase + */ +m.getArrowCountInEntity = "func_85035_bI" +/** + * sets this entity's combat AI. + * + * Parent Class: EntitySkeleton + */ +m.setCombatTask = "func_85036_m" +/** + * Add to player's score + * + * Parent Class: EntityPlayer + */ +m.addScore = "func_85039_t" +m.setScore = {} +/** + * Set player's score + * + * Parent Class: EntityPlayer + */ +m.setScore.EntityPlayer = "func_85040_s" +/** + * + * + * Parent Class: IScoreObjectiveCriteria + */ +m.setScore.IScoreObjectiveCriteria = "func_96635_a" + +/** + * Looks for other itemstacks nearby and tries to stack them together + * + * Parent Class: EntityItem + */ +m.searchForOtherItemsNearby = "func_85054_d" +/** + * Creates a crash report for the exception + * + * Parent Class: CrashReport + */ +m.makeCrashReport = "func_85055_a" +/** + * Creates a CrashReportCategory for the given stack trace depth + * + * Parent Class: CrashReport + */ +m.makeCategoryDepth = "func_85057_a" +/** + * Creates a CrashReportCategory + * + * Parent Class: CrashReport + */ +m.makeCategory = "func_85058_a" +/** + * "Do the deepest two elements of our saved stack trace match the given elements + * + * Parent Class: CrashReportCategory + */ +m.firstTwoElementsOfStackTraceMatch = "func_85069_a" +/** + * Removes the given number entries from the bottom of the stack trace. + * + * Parent Class: CrashReportCategory + */ +m.trimStackTraceEntriesFromBottom = "func_85070_b" +/** + * + * + * Parent Class: CrashReportCategory + */ +m.appendToStringBuilder = "func_85072_a" +/** + * "Resets our stack trace according to the current trace + * + * Parent Class: CrashReportCategory + */ +m.getPrunedStackTrace = "func_85073_a" +/** + * Renders the bounding box around an entity when F3+B is pressed + * + * @param x X position where to render the debug bounding box + * @param y Y position where to render the debug bounding box + * @param z Z position where to render the debug bounding box + * @param entityYaw The entity yaw + * @param partialTicks The partials ticks + * + * Parent Class: RenderManager + */ +m.renderDebugBoundingBox = "func_85094_b" +m.playSoundToNearExcept = {} +/** + * Plays sound to all near players except the player reference given + * + * Parent Class: WorldManager + */ +m.playSoundToNearExcept.WorldManager = "func_85102_a" +/** + * Plays sound to all near players except the player reference given + * + * Parent Class: World + */ +m.playSoundToNearExcept.World = "func_85173_a" + +/** + * Adds this WorldInfo instance to the crash report. + * + * Parent Class: WorldInfo + */ +m.addToCrashReport = "func_85118_a" +/** + * Gets a human-readable string that indicates the sizes of all the cache fields. Basically a synchronized static toString. + * + * Parent Class: IntCache + */ +m.getCacheSizes = "func_85144_b" +/** + * Return this chest container's lower chest inventory. + * + * Parent Class: ContainerChest + */ +m.getLowerChestInventory = "func_85151_d" +/** + * removes the indicated task from the entity's AI tasks. + * + * Parent Class: EntityAITasks + */ +m.removeTask = "func_85156_a" +/** + * @see #isAdventureModeExempt() + * + * Parent Class: Material + */ +m.setAdventureModeExempt = "func_85158_p" +/** + * + * + * Parent Class: WorldServer + */ +m.getDefaultTeleporter = "func_85176_s" +/** + * + * + * Parent Class: ModelBase + */ +m.getRandomModelBox = "func_85181_a" +/** + * + * + * Parent Class: Teleporter + */ +m.makePortal = "func_85188_a" +/** + * called periodically to remove out-of-date portal locations from the cache list. Argument par1 is a WorldServer.getTotalWorldTime() value. + * + * Parent Class: Teleporter + */ +m.removeStalePortalLocations = "func_85189_a" +/** + * Return whether the given inventory is part of this large chest. + * + * Parent Class: InventoryLargeChest + */ +m.isPartOfLargeChest = "func_90010_a" +/** + * + * + * Parent Class: EntityVillager + */ +m.createChild = "func_90011_a" +/** + * + * + * Parent Class: Minecraft + */ +m.getLimitFramerate = "func_90020_K" +/** + * + * + * Parent Class: CommandEnchant + */ +m.getListOfPlayers = "func_90022_d" +/** + * Return whether the given world can be loaded. + * + * @param saveName The current save's name + * + * Parent Class: ISaveFormat + */ +m.canLoadWorld = "func_90033_f" +/** + * Return the class assigned to this entity ID. + * + * Parent Class: EntityList + */ +m.getClassFromID = "func_90035_a" +/** + * Returns the fire aspect modifier of the players held item. + * + * Parent Class: EnchantmentHelper + */ +m.getFireAspectModifier = "func_90036_a" +/** + * Return whether this entity should be rendered as on fire. + * + * Parent Class: EntityFallingBlock + */ +m.canRenderOnFire = "func_90999_ad" +/** + * "Creates a single particle. Args: x + * + * Parent Class: EntityFirework$StarterFX + */ +m.createParticle = "func_92034_a" +/** + * "Creates a small ball or large ball type explosion. Args: particle speed + * + * Parent Class: EntityFirework$StarterFX + */ +m.createBall = "func_92035_a" +/** + * "Creates a burst type explosion. Args: colours + * + * Parent Class: EntityFirework$StarterFX + */ +m.createBurst = "func_92036_a" +/** + * "Creates a creeper-shaped or star-shaped explosion. Args: particle speed + * + * Parent Class: EntityFirework$StarterFX + */ +m.createShaped = "func_92038_a" +/** + * + * + * Parent Class: EntityFirework$SparkFX + */ +m.setTwinkle = "func_92043_f" +/** + * + * + * Parent Class: EntityFirework$SparkFX + */ +m.setColour = "func_92044_a" +/** + * + * + * Parent Class: EntityFirework$SparkFX + */ +m.setTrail = "func_92045_e" +/** + * + * + * Parent Class: EntityFirework$SparkFX + */ +m.setFadeColour = "func_92046_g" +/** + * Sets the ItemStack for this entity + * + * Parent Class: EntityItem + */ +m.setEntityItemStack = "func_92058_a" +/** + * "Returns the ItemStack corresponding to the Entity (Note: if no item exists + * + * Parent Class: EntityItem + */ +m.getEntityItem = "func_92059_d" +/** + * + * + * Parent Class: DataWatcher + */ +m.getIsBlank = "func_92085_d" +/** + * Returns the EntityDamageSource of the Thorns enchantment + * + * @param source The Entity that wears the armor with thorn + * + * Parent Class: DamageSource + */ +m.causeThornsDamage = "func_92087_a" +/** + * + * + * Parent Class: WorldClient + */ +m.makeFireworks = "func_92088_a" +/** + * Determines if this enchantment can be applied to a specific ItemStack. + * + * Parent Class: EnchantmentUntouching + */ +m.canApply = "func_92089_a" +/** + * "Gets the amount of ticks an entity should be set fire + * + * Parent Class: EnchantmentProtection + */ +m.getFireTimeForEntity = "func_92093_a" +/** + * "Used by ItemStack.attemptDamageItem. Randomly determines if a point of damage should be negated using the enchantment level (par1). If the ItemStack is Armor then there is a flat 60% chance for damage to be negated no matter the enchantment level + * + * Parent Class: EnchantmentDurability + */ +m.negateDamage = "func_92097_a" +/** + * + * + * Parent Class: EnchantmentHelper + */ +m.getEnchantedItem = "func_92099_a" +/** + * Returns the ItemStack of an enchanted version of this item. + * + * Parent Class: ItemEnchantedBook + */ +m.getEnchantedItemStack = "func_92111_a" +/** + * + * + * Parent Class: ItemEnchantedBook + */ +m.getRandom = "func_92114_b" +/** + * + * + * Parent Class: ItemEnchantedBook + */ +m.getAll = "func_92113_a" +/** + * Adds the enchantment books from the supplied EnumEnchantmentType to the given list. + * + * Parent Class: CreativeTabs + */ +m.addEnchantmentBooksToList = "func_92116_a" +/** + * Returns true if automation is allowed to insert the given stack (ignoring stack size) into the given slot. + * + * Parent Class: InventoryCraftResult + */ +m.isItemValidForSlot = "func_94041_b" +/** + * + * + * Parent Class: EntityFX + */ +m.nextTextureIndexX = "func_94053_h" +/** + * + * + * Parent Class: EntityPlayer + */ +m.getAlwaysRenderNameTagForRender = "func_94059_bO" +/** + * + * + * Parent Class: EntityLivingBase + */ +m.getAttackingEntity = "func_94060_bK" +/** + * Set whether this Entity's AI is disabled + * + * Parent Class: EntityLiving + */ +m.setNoAI = "func_94061_f" +/** + * returns null or the entityliving it was placed or ignited by + * + * Parent Class: EntityTNTPrimed + */ +m.getTntPlacedBy = "func_94083_c" +/** + * + * + * Parent Class: EntityMinecartHopper + */ +m.getDefaultDisplayTileOffset = "func_94085_r" +/** + * + * + * Parent Class: EntityMinecart + */ +m.setDisplayTileOffset = "func_94086_l" +/** + * + * + * Parent Class: EntityMinecartTNT + */ +m.killMinecart = "func_94095_a" +/** + * + * + * Parent Class: EntityMinecart + */ +m.setHasDisplayTile = "func_94096_e" +/** + * + * + * Parent Class: EntityMinecart + */ +m.getDisplayTileOffset = "func_94099_q" +/** + * + * + * Parent Class: EntityMinecart + */ +m.hasDisplayTile = "func_94100_s" +/** + * + * + * Parent Class: EntityMinecartFurnace + */ +m.applyDrag = "func_94101_h" +/** + * Makes the minecart explode. + * + * Parent Class: EntityMinecartTNT + */ +m.explodeCart = "func_94103_c" +/** + * Gets the remaining fuse time in ticks. + * + * Parent Class: EntityMinecartTNT + */ +m.getFuseTicks = "func_94104_d" +/** + * + * + * Parent Class: EntityMinecartFurnace + */ +m.setMinecartPowered = "func_94107_f" +/** + * + * + * Parent Class: EntityMinecartFurnace + */ +m.isMinecartPowered = "func_94108_c" +/** + * + * + * Parent Class: Stitcher$Slot + */ +m.addSlot = "func_94182_a" +/** + * + * + * Parent Class: Stitcher$Slot + */ +m.getStitchHolder = "func_94183_a" +/** + * Gets the slot and all its subslots + * + * Parent Class: Stitcher$Slot + */ +m.getAllStitchSlots = "func_94184_a" +/** + * + * + * Parent Class: Stitcher$Holder + */ +m.isRotated = "func_94195_e" +/** + * + * + * Parent Class: Stitcher$Holder + */ +m.setNewDimension = "func_94196_a" +/** + * Returns the minimum V coordinate to use when rendering with this icon. + * + * Parent Class: TextureAtlasSprite + */ +m.getMinV = "func_94206_g" +/** + * Gets a V coordinate on the icon. 0 returns vMin and 16 returns vMax. Other arguments return in-between values. + * + * Parent Class: TextureAtlasSprite + */ +m.getInterpolatedV = "func_94207_b" +/** + * Returns the minimum U coordinate to use when rendering with this icon. + * + * Parent Class: TextureAtlasSprite + */ +m.getMinU = "func_94209_e" +/** + * Returns the maximum V coordinate to use when rendering with this icon. + * + * Parent Class: TextureAtlasSprite + */ +m.getMaxV = "func_94210_h" +/** + * "Returns the width of the icon + * + * Parent Class: TextureAtlasSprite + */ +m.getIconWidth = "func_94211_a" +/** + * Returns the maximum U coordinate to use when rendering with this icon. + * + * Parent Class: TextureAtlasSprite + */ +m.getMaxU = "func_94212_f" +/** + * Gets a U coordinate on the icon. 0 returns uMin and 16 returns uMax. Other arguments return in-between values. + * + * Parent Class: TextureAtlasSprite + */ +m.getInterpolatedU = "func_94214_a" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +m.getIconName = "func_94215_i" +/** + * "Returns the height of the icon + * + * Parent Class: TextureAtlasSprite + */ +m.getIconHeight = "func_94216_b" +/** + * "Updates the compass based on the given x + * + * Parent Class: TextureCompass + */ +m.updateCompass = "func_94241_a" +/** + * + * + * Parent Class: TextureMap + */ +m.updateAnimations = "func_94248_c" +/** + * + * + * Parent Class: Stitcher + */ +m.doStitch = "func_94305_f" +/** + * + * + * Parent Class: Stitcher + */ +m.getStichSlots = "func_94309_g" +/** + * Attempts to find space for specified tile + * + * Parent Class: Stitcher + */ +m.allocateSlot = "func_94310_b" +/** + * Expand stitched texture in order to make space for specified tile + * + * Parent Class: Stitcher + */ +m.expandAndAllocateSlot = "func_94311_c" +/** + * Returns true if the passed key is in the translation table. + * + * Parent Class: StringTranslate + */ +m.isKeyTranslated = "func_94520_b" +/** + * Determines whether or not translateToLocal will find a translation for the given key. + * + * Parent Class: StatCollector + */ +m.canTranslate = "func_94522_b" +/** + * "Compute the new stack size + * + * Parent Class: Container + */ +m.computeStackSize = "func_94525_a" +/** + * + * + * Parent Class: Container + */ +m.calcRedstoneFromInventory = "func_94526_b" +/** + * Checks if it's possible to add the given itemstack to the given slot. + * + * Parent Class: Container + */ +m.canAddItemToSlot = "func_94527_a" +/** + * "Extracts the drag mode. Args : eventButton. Return (0 : evenly split + * + * Parent Class: Container + */ +m.extractDragMode = "func_94529_b" +/** + * Called to determine if the current slot is valid for the stack merging (double-click) code. The stack passed in is null for the initial slot that was double-clicked. + * + * Parent Class: ContainerPlayer + */ +m.canMergeSlot = "func_94530_a" +/** + * "Returns true if the player can ""drag-spilt"" items into this slot + * + * Parent Class: Container + */ +m.canDragIntoSlot = "func_94531_b" +/** + * "Args : clickedButton + * + * Parent Class: Container + */ +m.getDragEvent = "func_94532_c" +/** + * Reset the drag fields + * + * Parent Class: Container + */ +m.resetDrag = "func_94533_d" +/** + * + * + * Parent Class: DamageSource + */ +m.setExplosionSource = "func_94539_a" +/** + * + * + * Parent Class: DamageSource + */ +m.setExplosion = "func_94540_d" +/** + * + * + * Parent Class: DamageSource + */ +m.isExplosion = "func_94541_c" +/** + * Adds an entry for the combat tracker + * + * Parent Class: CombatTracker + */ +m.trackDamage = "func_94547_a" +/** + * Returns true if {@link net.minecraft.util.DamageSource#getEntity() damage source} is a living entity + * + * Parent Class: CombatEntry + */ +m.isLivingDamageSrc = "func_94559_f" +/** + * Get the DamageSource of the CombatEntry instance. + * + * Parent Class: CombatEntry + */ +m.getDamageSrc = "func_94560_a" +/** + * "Returns either the entity that placed the explosive block + * + * Parent Class: Explosion + */ +m.getExplosivePlacedBy = "func_94613_c" +/** + * + * + * Parent Class: EntityMinecart + */ +m.getCustomNameTag = "func_95999_t" +/** + * + * + * Parent Class: EntityPlayer + */ +m.isPushedByWater = "func_96092_aw" +/** + * Sets the custom name tag for this entity + * + * Parent Class: EntityMinecart + */ +m.setCustomNameTag = "func_96094_a" +/** + * "Called every tick the minecart is on an activator rail. Args: x + * + * Parent Class: EntityMinecartTNT + */ +m.onActivatorRailPass = "func_96095_a" +/** + * Returns true if the TNT minecart is ignited. + * + * Parent Class: EntityMinecartTNT + */ +m.isIgnited = "func_96096_ay" +/** + * Gets the world X position for this hopper entity. + * + * Parent Class: EntityMinecartHopper + */ +m.getXPos = "func_96107_aA" +/** + * Gets the world Z position for this hopper entity. + * + * Parent Class: EntityMinecartHopper + */ +m.getZPos = "func_96108_aC" +/** + * Gets the world Y position for this hopper entity. + * + * Parent Class: EntityMinecartHopper + */ +m.getYPos = "func_96109_aB" +/** + * Set whether this hopper minecart is being blocked by an activator rail. + * + * Parent Class: EntityMinecartHopper + */ +m.setBlocked = "func_96110_f" +/** + * Get whether this hopper minecart is being blocked by an activator rail. + * + * Parent Class: EntityMinecartHopper + */ +m.getBlocked = "func_96111_ay" +/** + * + * + * Parent Class: EntityLiving + */ +m.setEquipmentDropChance = "func_96120_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.canAttackPlayer = "func_96122_a" +/** + * + * + * Parent Class: EntityPlayer + */ +m.getWorldScoreboard = "func_96123_co" +/** + * "Gets all the valid values. Args: @param par0: Whether or not to include color values. @param par1: Whether or not to include fancy-styling values (anything that isn't a color value or the ""reset"" value)." + * + * Parent Class: EnumChatFormatting + */ +m.getValidValues = "func_96296_a" +/** + * Gets the friendly name of this value. + * + * Parent Class: EnumChatFormatting + */ +m.getFriendlyName = "func_96297_d" +/** + * Gets a value by its friendly name; null if the given name does not map to a defined value. + * + * Parent Class: EnumChatFormatting + */ +m.getValueByName = "func_96300_b" +/** + * False if this is just changing the color or resetting; true otherwise. + * + * Parent Class: EnumChatFormatting + */ +m.isFancyStyling = "func_96301_b" +/** + * Checks if this is a color code. + * + * Parent Class: EnumChatFormatting + */ +m.isColor = "func_96302_c" +/** + * "Creates a linguistic series joining together the elements of the given collection. Examples: 1) {} --> """" + * + * Parent Class: CommandBase + */ +m.joinNiceStringFromCollection = "func_96333_a" +/** + * + * + * Parent Class: WorldClient + */ +m.setWorldScoreboard = "func_96443_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +m.sendScoreboard = "func_96456_a" +/** + * + * + * Parent Class: ScoreboardSaveData + */ +m.readTeams = "func_96498_a" +/** + * + * + * Parent Class: ScoreboardSaveData + */ +m.setScoreboard = "func_96499_a" +/** + * + * + * Parent Class: ScoreboardSaveData + */ +m.readScores = "func_96500_c" +/** + * + * + * Parent Class: ScoreboardSaveData + */ +m.readObjectives = "func_96501_b" +/** + * + * + * Parent Class: ScoreboardSaveData + */ +m.scoresToNbt = "func_96503_e" +/** + * + * + * Parent Class: ScoreboardSaveData + */ +m.readDisplayConfig = "func_96504_c" +/** + * + * + * Parent Class: ScoreboardSaveData + */ +m.objectivesToNbt = "func_96505_b" +/** + * Gets the ScorePlayerTeam object for the given username. + * + * Parent Class: Scoreboard + */ +m.getPlayersTeam = "func_96509_i" +/** + * Returns all the objectives for the given entity + * + * Parent Class: Scoreboard + */ +m.getObjectivesForEntity = "func_96510_d" +/** + * Removes the given username from the given ScorePlayerTeam. If the player is not on the team then an IllegalStateException is thrown. + * + * Parent Class: ServerScoreboard + */ +m.removePlayerFromTeam = "func_96512_b" +/** + * + * + * Parent Class: Scoreboard + */ +m.getScoreObjectives = "func_96514_c" +/** + * "Returns 'list' for 0 + * + * Parent Class: Scoreboard + */ +m.getObjectiveDisplaySlot = "func_96517_b" +/** + * Returns all the objectives for the given criteria + * + * Parent Class: Scoreboard + */ +m.getObjectivesFromCriteria = "func_96520_a" +/** + * Called when a score objective is added + * + * Parent Class: ServerScoreboard + */ +m.onScoreObjectiveAdded = "func_96522_a" +/** + * "This packet will notify the players that this team is created + * + * Parent Class: ServerScoreboard + */ +m.broadcastTeamCreated = "func_96523_a" +/** + * + * + * Parent Class: Scoreboard + */ +m.removePlayerFromTeams = "func_96524_g" +/** + * Retrieve all registered ScorePlayerTeam instances + * + * Parent Class: Scoreboard + */ +m.getTeams = "func_96525_g" +/** + * + * + * Parent Class: Scoreboard + */ +m.getObjectiveNames = "func_96526_d" +/** + * + * + * Parent Class: Scoreboard + */ +m.createTeam = "func_96527_f" +/** + * + * + * Parent Class: Scoreboard + */ +m.getScores = "func_96528_e" +/** + * Returns the value of the given objective for the given entity name + * + * Parent Class: Scoreboard + */ +m.getValueFromObjective = "func_96529_a" +/** + * "0 is tab menu + * + * Parent Class: ServerScoreboard + */ +m.setObjectiveInDisplaySlot = "func_96530_a" +/** + * Retrieve all registered ScorePlayerTeam names + * + * Parent Class: Scoreboard + */ +m.getTeamNames = "func_96531_f" +/** + * + * + * Parent Class: ServerScoreboard + */ +m.onObjectiveDisplayNameChanged = "func_96532_b" +/** + * + * + * Parent Class: ServerScoreboard + */ +m.onScoreObjectiveRemoved = "func_96533_c" +/** + * "Returns an array of Score objects + * + * Parent Class: Scoreboard + */ +m.getSortedScores = "func_96534_i" +/** + * Create and returns the score objective for the given name and ScoreCriteria + * + * Parent Class: Scoreboard + */ +m.addScoreObjective = "func_96535_a" +/** + * "Returns 0 for (case-insensitive) 'list' + * + * Parent Class: Scoreboard + */ +m.getObjectiveDisplaySlotNumber = "func_96537_j" +/** + * This packet will notify the players that this team is updated + * + * Parent Class: ServerScoreboard + */ +m.sendTeamUpdate = "func_96538_b" +/** + * "0 is tab menu + * + * Parent Class: Scoreboard + */ +m.getObjectiveInDisplaySlot = "func_96539_a" +/** + * + * + * Parent Class: ServerScoreboard + */ +m.sendDisplaySlotRemovalPackets = "func_96546_g" +/** + * + * + * Parent Class: ServerScoreboard + */ +m.markSaveDataDirty = "func_96551_b" +/** + * + * + * Parent Class: EnumFacing + */ +m.getFrontOffsetY = "func_96559_d" +/** + * "Attempts to damage the ItemStack with par1 amount of damage + * + * Parent Class: ItemStack + */ +m.attemptDamageItem = "func_96631_a" +/** + * + * + * Parent Class: IScoreObjectiveCriteria + */ +m.isReadOnly = "func_96637_b" +/** + * + * + * Parent Class: Score + */ +m.decreaseScore = "func_96646_b" +/** + * + * + * Parent Class: Score + */ +m.setScorePoints = "func_96647_c" +/** + * + * + * Parent Class: Score + */ +m.increseScore = "func_96649_a" +/** + * + * + * Parent Class: Score + */ +m.getScoreScoreboard = "func_96650_f" +/** + * + * + * Parent Class: Score + */ +m.getScorePoints = "func_96652_c" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +m.setAllowFriendlyFire = "func_96660_a" +/** + * Retrieve the name by which this team is registered in the scoreboard + * + * Parent Class: Team + */ +m.getRegisteredName = "func_96661_b" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +m.setNameSuffix = "func_96662_c" +/** + * Returns the color suffix for the player's team name + * + * Parent Class: ScorePlayerTeam + */ +m.getColorSuffix = "func_96663_f" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +m.setTeamName = "func_96664_a" +/** + * + * + * Parent Class: Team + */ +m.getAllowFriendlyFire = "func_96665_g" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +m.setNamePrefix = "func_96666_b" +/** + * Returns the player name including the color prefixes and suffixes + * + * Parent Class: ScorePlayerTeam + */ +m.formatPlayerName = "func_96667_a" +/** + * Returns the color prefix for the player's team name + * + * Parent Class: ScorePlayerTeam + */ +m.getColorPrefix = "func_96668_e" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +m.getTeamName = "func_96669_c" +/** + * + * + * Parent Class: Team + */ +m.getMembershipCollection = "func_96670_d" +/** + * "Only used by renderer in EntityLivingBase subclasses. + * Determines if an entity is visible or not to a specfic player + * + * Parent Class: EntityPlayer + */ +m.isInvisibleToPlayer = "func_98034_c" +/** + * Like writeToNBTOptional but does not check if the entity is ridden. Used for saving ridden entities with their riders. + * + * Parent Class: Entity + */ +m.writeMountToNBT = "func_98035_c" +/** + * "Sets the transfer ticker + * + * Parent Class: EntityMinecartHopper + */ +m.setTransferTicker = "func_98042_n" +/** + * Returns whether the hopper cart can currently transfer an item. + * + * Parent Class: EntityMinecartHopper + */ +m.canTransfer = "func_98043_aE" +/** + * + * + * Parent Class: EntityLiving + */ +m.canPickUpLoot = "func_98052_bS" +/** + * + * + * Parent Class: EntityLiving + */ +m.setCanPickUpLoot = "func_98053_h" +/** + * """Sets the scale for an ageable entity according to the boolean parameter + * + * Parent Class: EntityHorse + */ +m.setScaleForAge = "func_98054_a" +/** + * + * + * Parent Class: EntityAgeable + */ +m.setScale = "func_98055_j" +/** + * "Sets the delay to minDelay if parameter given is 1 + * + * Parent Class: MobSpawnerBaseLogic + */ +m.setDelayToMin = "func_98268_b" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +m.getRandomEntity = "func_98269_i" +/** + * + * + * Parent Class: EntityMinecartMobSpawner$1 + */ +m.getSpawnerWorld = "func_98271_a" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +m.setEntityName = "func_98272_a" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +m.resetTimer = "func_98273_j" +/** + * Gets the entity name that should be spawned. + * + * Parent Class: MobSpawnerBaseLogic + */ +m.getEntityNameToSpawn = "func_98276_e" +/** + * + * + * Parent Class: TileEntityMobSpawner$1 + */ +m.setRandomEntity = "func_98277_a" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +m.updateSpawner = "func_98278_g" +/** + * Returns true if there's a player close enough to this mob spawner to activate it. + * + * Parent Class: MobSpawnerBaseLogic + */ +m.isActivated = "func_98279_f" +/** + * + * + * Parent Class: Team + */ +m.getSeeFriendlyInvisiblesEnabled = "func_98297_h" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +m.setSeeFriendlyInvisiblesEnabled = "func_98300_b" +/** + * + * + * Parent Class: FontRenderer + */ +m.readGlyphSizes = "func_98306_d" +/** + * + * + * Parent Class: Minecraft + */ +m.run = "func_99999_d" +/** + * + * + * Parent Class: undefined + */ +m.undefined = "" +/** + * "True if potion effect duration is at maximum + * + * Parent Class: PotionEffect + */ +f.isPotionDurationMax = "field_100013_f" +/** + * + * + * Parent Class: EntityEnderman + */ +f.isAggressive = "field_104003_g" +/** + * Link to the Mojang Support about minimum requirements + * + * Parent Class: GuiMainMenu + */ +f.openGLWarningLink = "field_104024_v" +/** + * The Object object utilized as a thread lock when performing non thread-safe operations + * + * Parent Class: GuiMainMenu + */ +f.threadLock = "field_104025_t" +/** + * + * + * Parent Class: MinecraftServer + */ +f.isGamemodeForced = "field_104057_T" +/** + * + * + * Parent Class: EntityFootStepFX + */ +f.FOOTPRINT_TEXTURE = "field_110126_a" +/** + * + * + * Parent Class: EntityLargeExplodeFX + */ +f.EXPLOSION_TEXTURE = "field_110127_a" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.lastAttacker = "field_110150_bn" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.absorptionAmount = "field_110151_bq" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.newPosZ = "field_110152_bk" +/** + * Damage taken in the last hit. Mobs are resistant to damage less than this for a short time after taking damage. + * + * Parent Class: EntityLivingBase + */ +f.lastDamage = "field_110153_bc" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.onGroundSpeedFactor = "field_110154_aX" +f.attributeMap = {} +/** + * + * + * Parent Class: EntityLivingBase + */ +f.attributeMap.EntityLivingBase = "field_110155_d" +/** + * The BaseAttributeMap this attributeInstance can be found in + * + * Parent Class: ModifiableAttributeInstance + */ +f.attributeMap.ModifiableAttributeInstance = "field_111138_a" + +/** + * + * + * Parent Class: EntityLivingBase + */ +f.sprintingSpeedBoostModifierUUID = "field_110156_b" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.sprintingSpeedBoostModifier = "field_110157_c" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.swingProgressInt = "field_110158_av" +/** + * + * + * Parent Class: EntityLiving + */ +f.leashedToEntity = "field_110168_bw" +/** + * + * + * Parent Class: EntityLiving + */ +f.isLeashed = "field_110169_bv" +/** + * + * + * Parent Class: EntityLiving + */ +f.leashNBTTag = "field_110170_bx" +/** + * + * + * Parent Class: EntityCreature + */ +f.aiBase = "field_110178_bs" +/** + * + * + * Parent Class: EntityCreature + */ +f.FLEEING_SPEED_MODIFIER_UUID = "field_110179_h" +/** + * + * + * Parent Class: EntityCreature + */ +f.isMovementAITaskSet = "field_110180_bt" +/** + * + * + * Parent Class: EntityCreature + */ +f.FLEEING_SPEED_MODIFIER = "field_110181_i" +/** + * + * + * Parent Class: EntityWitch + */ +f.MODIFIER_UUID = "field_110184_bp" +/** + * + * + * Parent Class: EntityWitch + */ +f.MODIFIER = "field_110185_bq" +/** + * The attribute which determines the chance that this mob will spawn reinforcements + * + * Parent Class: EntityZombie + */ +f.reinforcementChance = "field_110186_bp" +/** + * + * + * Parent Class: EntityZombie + */ +f.babySpeedBoostUUID = "field_110187_bq" +/** + * + * + * Parent Class: EntityZombie + */ +f.babySpeedBoostModifier = "field_110188_br" +/** + * + * + * Parent Class: EntityPigZombie + */ +f.ATTACK_SPEED_BOOST_MODIFIER_UUID = "field_110189_bq" +/** + * + * + * Parent Class: EntityPigZombie + */ +f.ATTACK_SPEED_BOOST_MODIFIER = "field_110190_br" +/** + * + * + * Parent Class: EntityEnderman + */ +f.attackingSpeedBoostModifierUUID = "field_110192_bp" +/** + * + * + * Parent Class: EntityEnderman + */ +f.attackingSpeedBoostModifier = "field_110193_bq" +/** + * + * + * Parent Class: EntityHorse + */ +f.horseTextures = "field_110268_bz" +/** + * + * + * Parent Class: EntityHorse + */ +f.HORSE_TEXTURES_ABBR = "field_110269_bA" +/** + * + * + * Parent Class: EntityHorse + */ +f.horseArmorTextures = "field_110270_bw" +/** + * + * + * Parent Class: EntityHorse + */ +f.horseJumpStrength = "field_110271_bv" +/** + * + * + * Parent Class: EntityHorse + */ +f.armorValues = "field_110272_by" +/** + * + * + * Parent Class: EntityHorse + */ +f.HORSE_ARMOR_TEXTURES_ABBR = "field_110273_bx" +/** + * """The higher this value + * + * Parent Class: EntityHorse + */ +f.temper = "field_110274_bs" +/** + * + * + * Parent Class: EntityHorse + */ +f.horseJumping = "field_110275_br" +/** + * + * + * Parent Class: EntityHorse + */ +f.horseBreedingSelector = "field_110276_bu" +/** + * + * + * Parent Class: EntityHorse + */ +f.jumpPower = "field_110277_bt" +/** + * + * + * Parent Class: EntityHorse + */ +f.horseTexturesArray = "field_110280_bR" +/** + * + * + * Parent Class: EntityHorse + */ +f.rearingAmount = "field_110281_bL" +/** + * + * + * Parent Class: EntityHorse + */ +f.prevRearingAmount = "field_110282_bM" +/** + * + * + * Parent Class: EntityHorse + */ +f.headLean = "field_110283_bJ" +/** + * + * + * Parent Class: EntityHorse + */ +f.prevHeadLean = "field_110284_bK" +/** + * Used to determine the sound that the horse should make when it steps + * + * Parent Class: EntityHorse + */ +f.gallopTime = "field_110285_bP" +/** + * + * + * Parent Class: EntityHorse + */ +f.texturePrefix = "field_110286_bQ" +/** + * + * + * Parent Class: EntityHorse + */ +f.mouthOpenness = "field_110287_bN" +/** + * + * + * Parent Class: EntityHorse + */ +f.prevMouthOpenness = "field_110288_bO" +/** + * + * + * Parent Class: EntityHorse + */ +f.eatingHaystackCounter = "field_110289_bD" +/** + * + * + * Parent Class: EntityHorse + */ +f.openMouthCounter = "field_110290_bE" +/** + * + * + * Parent Class: EntityHorse + */ +f.horseMarkingTextures = "field_110291_bB" +/** + * + * + * Parent Class: EntityHorse + */ +f.HORSE_MARKING_TEXTURES_ABBR = "field_110292_bC" +/** + * + * + * Parent Class: EntityHorse + */ +f.hasReproduced = "field_110293_bH" +/** + * + * + * Parent Class: EntityHorse + */ +f.jumpRearingCounter = "field_110295_bF" +/** + * + * + * Parent Class: EntityHorse + */ +f.horseChest = "field_110296_bG" +/** + * + * + * Parent Class: EntityPlayerSP + */ +f.horseJumpPowerCounter = "field_110320_a" +/** + * + * + * Parent Class: EntityPlayerSP + */ +f.horseJumpPower = "field_110321_bQ" +/** + * + * + * Parent Class: Gui + */ +f.statIcons = "field_110323_l" +/** + * + * + * Parent Class: Gui + */ +f.icons = "field_110324_m" +/** + * + * + * Parent Class: Gui + */ +f.optionsBackground = "field_110325_k" +/** + * + * + * Parent Class: GuiIngame + */ +f.pumpkinBlurTexPath = "field_110328_d" +/** + * + * + * Parent Class: GuiIngame + */ +f.vignetteTexPath = "field_110329_b" +/** + * + * + * Parent Class: GuiIngame + */ +f.widgetsTexPath = "field_110330_c" +/** + * + * + * Parent Class: GuiMainMenu + */ +f.backgroundTexture = "field_110351_G" +/** + * + * + * Parent Class: GuiMainMenu + */ +f.minecraftTitleTextures = "field_110352_y" +/** + * + * + * Parent Class: GuiMainMenu + */ +f.splashTexts = "field_110353_x" +/** + * + * + * Parent Class: Minecraft + */ +f.locationMojangPng = "field_110444_H" +/** + * + * + * Parent Class: Minecraft + */ +f.macDisplayModes = "field_110445_I" +/** + * + * + * Parent Class: Minecraft + */ +f.fileAssets = "field_110446_Y" +/** + * + * + * Parent Class: Minecraft + */ +f.launchedVersion = "field_110447_Z" +/** + * + * + * Parent Class: Minecraft + */ +f.mcResourcePackRepository = "field_110448_aq" +/** + * + * + * Parent Class: Minecraft + */ +f.defaultResourcePacks = "field_110449_ao" +/** + * + * + * Parent Class: Minecraft + */ +f.mcDefaultResourcePack = "field_110450_ap" +f.mcResourceManager = {} +/** + * + * + * Parent Class: Minecraft + */ +f.mcResourceManager.Minecraft = "field_110451_am" +/** + * + * + * Parent Class: SoundHandler + */ +f.mcResourceManager.SoundHandler = "field_147695_g" + +/** + * + * + * Parent Class: Minecraft + */ +f.metadataSerializer_ = "field_110452_an" +f.proxy = {} +/** + * + * + * Parent Class: Minecraft + */ +f.proxy.Minecraft = "field_110453_aa" +/** + * + * + * Parent Class: GameConfiguration$UserInformation + */ +f.proxy.GameConfiguration$UserInformation = "field_178751_c" + +/** + * + * + * Parent Class: MinecraftServer + */ +f.serverProxy = "field_110456_c" +/** + * + * + * Parent Class: PackMetadataSection + */ +f.packFormat = "field_110463_b" +/** + * + * + * Parent Class: PackMetadataSection + */ +f.packDescription = "field_110464_a" +/** + * + * + * Parent Class: FontMetadataSection + */ +f.charLefts = "field_110465_b" +/** + * + * + * Parent Class: FontMetadataSection + */ +f.charSpacings = "field_110466_c" +/** + * + * + * Parent Class: FontMetadataSection + */ +f.charWidths = "field_110467_a" +f.frameTime = {} +/** + * + * + * Parent Class: AnimationMetadataSection + */ +f.frameTime.AnimationMetadataSection = "field_110475_d" +/** + * + * + * Parent Class: AnimationFrame + */ +f.frameTime.AnimationFrame = "field_110498_b" + +/** + * + * + * Parent Class: AnimationMetadataSection + */ +f.frameWidth = "field_110476_b" +/** + * + * + * Parent Class: AnimationMetadataSection + */ +f.frameHeight = "field_110477_c" +/** + * + * + * Parent Class: AnimationMetadataSection + */ +f.animationFrames = "field_110478_a" +/** + * + * + * Parent Class: TextureMetadataSection + */ +f.textureClamp = "field_110481_b" +/** + * + * + * Parent Class: TextureMetadataSection + */ +f.textureBlur = "field_110482_a" +f.frameIndex = {} +/** + * + * + * Parent Class: AnimationFrame + */ +f.frameIndex.AnimationFrame = "field_110499_a" +/** + * + * + * Parent Class: RenderChunk + */ +f.frameIndex.RenderChunk = "field_178595_m" + +f.clazz = {} +/** + * The class registered + * + * Parent Class: IMetadataSerializer$Registration + */ +f.clazz.IMetadataSerializer$Registration = "field_110500_b" +/** + * + * + * Parent Class: Cartesian$Product + */ +f.clazz.Cartesian$Product = "field_179429_a" + +/** + * The IMetadataSectionSerializer associated with the class registered + * + * Parent Class: IMetadataSerializer$Registration + */ +f.section = "field_110502_a" +/** + * + * + * Parent Class: IMetadataSerializer + */ +f.gsonBuilder = "field_110506_b" +f.gson = {} +/** + * "Cached Gson instance. Set to null when more sections are registered + * + * Parent Class: IMetadataSerializer + */ +f.gson.IMetadataSerializer = "field_110507_c" +/** + * + * + * Parent Class: GameSettings + */ +f.gson.GameSettings = "field_151450_ay" +/** + * + * + * Parent Class: PlayerProfileCache + */ +f.gson.PlayerProfileCache = "field_152660_b" +/** + * + * + * Parent Class: UserList + */ +f.gson.UserList = "field_152694_b" + +/** + * + * + * Parent Class: IMetadataSerializer + */ +f.metadataSectionSerializerRegistry = "field_110508_a" +/** + * + * + * Parent Class: ResourcePackRepository$Entry + */ +f.locationTexturePackIcon = "field_110520_f" +/** + * + * + * Parent Class: ResourcePackRepository$Entry + */ +f.rePackMetadataSection = "field_110521_d" +/** + * + * + * Parent Class: ResourcePackRepository$Entry + */ +f.texturePackIcon = "field_110522_e" +f.resourcePackFile = {} +/** + * + * + * Parent Class: ResourcePackRepository$Entry + */ +f.resourcePackFile.ResourcePackRepository$Entry = "field_110523_b" +/** + * + * + * Parent Class: AbstractResourcePack + */ +f.resourcePackFile.AbstractResourcePack = "field_110597_b" + +/** + * + * + * Parent Class: ResourcePackRepository$Entry + */ +f.reResourcePack = "field_110524_c" +/** + * + * + * Parent Class: SimpleResource + */ +f.mcmetaJsonChecked = "field_110529_f" +/** + * + * + * Parent Class: SimpleResource + */ +f.mcmetaJson = "field_110530_g" +/** + * + * + * Parent Class: SimpleResource + */ +f.mcmetaInputStream = "field_110531_d" +/** + * + * + * Parent Class: SimpleResource + */ +f.srMetadataSerializer = "field_110532_e" +/** + * + * + * Parent Class: SimpleResource + */ +f.srResourceLocation = "field_110533_b" +/** + * + * + * Parent Class: SimpleResource + */ +f.resourceInputStream = "field_110534_c" +/** + * + * + * Parent Class: SimpleResource + */ +f.mapMetadataSections = "field_110535_a" +/** + * + * + * Parent Class: FallbackResourceManager + */ +f.frmMetadataSerializer = "field_110539_b" +f.resourcePacks = {} +/** + * + * + * Parent Class: FallbackResourceManager + */ +f.resourcePacks.FallbackResourceManager = "field_110540_a" +/** + * + * + * Parent Class: GameSettings + */ +f.resourcePacks.GameSettings = "field_151453_l" + +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +f.reloadListeners = "field_110546_b" +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +f.rmMetadataSerializer = "field_110547_c" +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +f.domainResourceManagers = "field_110548_a" +/** + * + * + * Parent Class: AbstractTexture + */ +f.glTextureId = "field_110553_a" +/** + * + * + * Parent Class: ThreadDownloadImageData + */ +f.textureUploaded = "field_110559_g" +/** + * + * + * Parent Class: ThreadDownloadImageData + */ +f.bufferedImage = "field_110560_d" +/** + * + * + * Parent Class: ThreadDownloadImageData + */ +f.imageThread = "field_110561_e" +/** + * + * + * Parent Class: ThreadDownloadImageData + */ +f.imageUrl = "field_110562_b" +/** + * + * + * Parent Class: ThreadDownloadImageData + */ +f.imageBuffer = "field_110563_c" +/** + * + * + * Parent Class: DynamicTexture + */ +f.dynamicTextureData = "field_110566_b" +/** + * + * + * Parent Class: LayeredTexture + */ +f.layeredTextureNames = "field_110567_b" +f.textureLocation = {} +/** + * + * + * Parent Class: SimpleTexture + */ +f.textureLocation.SimpleTexture = "field_110568_b" +/** + * The location of the texture. + * + * Parent Class: LayeredColorMaskTexture + */ +f.textureLocation.LayeredColorMaskTexture = "field_174948_g" + +/** + * + * + * Parent Class: TextureMap + */ +f.mapRegisteredSprites = "field_110574_e" +/** + * + * + * Parent Class: TextureMap + */ +f.locationBlocksTexture = "field_110575_b" +/** + * + * + * Parent Class: TextureManager + */ +f.theResourceManager = "field_110582_d" +/** + * + * + * Parent Class: TextureManager + */ +f.listTickables = "field_110583_b" +/** + * + * + * Parent Class: TextureManager + */ +f.mapTextureCounters = "field_110584_c" +/** + * + * + * Parent Class: TextureManager + */ +f.mapTextureObjects = "field_110585_a" +/** + * + * + * Parent Class: AbstractResourcePack + */ +f.resourceLog = "field_110598_a" +/** + * + * + * Parent Class: FileResourcePack + */ +f.resourcePackZipFile = "field_110600_d" +/** + * + * + * Parent Class: FileResourcePack + */ +f.entryNameSplitter = "field_110601_c" +/** + * + * + * Parent Class: DefaultResourcePack + */ +f.defaultResourceDomains = "field_110608_a" +/** + * + * + * Parent Class: ResourcePackRepository + */ +f.repositoryEntries = "field_110617_f" +/** + * + * + * Parent Class: ResourcePackRepository + */ +f.dirResourcepacks = "field_110618_d" +/** + * + * + * Parent Class: ResourcePackRepository + */ +f.repositoryEntriesAll = "field_110619_e" +/** + * + * + * Parent Class: ResourcePackRepository + */ +f.rprDefaultResourcePack = "field_110620_b" +/** + * + * + * Parent Class: ResourcePackRepository + */ +f.rprMetadataSerializer = "field_110621_c" +/** + * + * + * Parent Class: ResourcePackRepository + */ +f.resourcePackFilter = "field_110622_a" +/** + * + * + * Parent Class: ResourceLocation + */ +f.resourcePath = "field_110625_b" +/** + * + * + * Parent Class: ResourceLocation + */ +f.resourceDomain = "field_110626_a" +/** + * + * + * Parent Class: ModelHorse + */ +f.frontRightLeg = "field_110684_D" +/** + * + * + * Parent Class: ModelHorse + */ +f.frontRightShin = "field_110685_E" +/** + * + * + * Parent Class: ModelHorse + */ +f.frontRightHoof = "field_110686_F" +/** + * The left chest box on the mule model. + * + * Parent Class: ModelHorse + */ +f.muleLeftChest = "field_110687_G" +/** + * + * + * Parent Class: ModelHorse + */ +f.frontLeftLeg = "field_110688_A" +/** + * + * + * Parent Class: ModelHorse + */ +f.frontLeftShin = "field_110689_B" +/** + * + * + * Parent Class: ModelHorse + */ +f.frontLeftHoof = "field_110690_C" +/** + * + * + * Parent Class: ModelHorse + */ +f.horseLeftSaddleRope = "field_110691_L" +/** + * + * + * Parent Class: ModelHorse + */ +f.horseLeftSaddleMetal = "field_110692_M" +/** + * + * + * Parent Class: ModelHorse + */ +f.horseRightSaddleRope = "field_110693_N" +/** + * + * + * Parent Class: ModelHorse + */ +f.horseRightSaddleMetal = "field_110694_O" +/** + * The right chest box on the mule model. + * + * Parent Class: ModelHorse + */ +f.muleRightChest = "field_110695_H" +/** + * + * + * Parent Class: ModelHorse + */ +f.horseSaddleBottom = "field_110696_I" +/** + * + * + * Parent Class: ModelHorse + */ +f.horseSaddleFront = "field_110697_J" +/** + * + * + * Parent Class: ModelHorse + */ +f.horseSaddleBack = "field_110698_K" +/** + * The right metal connected to the horse's face ropes. + * + * Parent Class: ModelHorse + */ +f.horseRightFaceMetal = "field_110699_Q" +/** + * The left metal connected to the horse's face ropes. + * + * Parent Class: ModelHorse + */ +f.horseLeftFaceMetal = "field_110700_P" +/** + * + * + * Parent Class: ModelHorse + */ +f.horseRightRein = "field_110701_S" +/** + * + * + * Parent Class: ModelHorse + */ +f.horseLeftRein = "field_110702_R" +/** + * The left ear box for the mule model. + * + * Parent Class: ModelHorse + */ +f.muleLeftEar = "field_110703_f" +/** + * The right ear box for the mule model. + * + * Parent Class: ModelHorse + */ +f.muleRightEar = "field_110704_g" +/** + * + * + * Parent Class: ModelHorse + */ +f.horseLeftEar = "field_110705_d" +/** + * + * + * Parent Class: ModelHorse + */ +f.horseRightEar = "field_110706_e" +f.head = {} +/** + * + * + * Parent Class: ModelHorse + */ +f.head.ModelHorse = "field_110709_a" +/** + * + * + * Parent Class: ItemCameraTransforms + */ +f.head.ItemCameraTransforms = "field_178353_d" +/** + * + * + * Parent Class: ModelHumanoidHead + */ +f.head.ModelHumanoidHead = "field_178717_b" +/** + * + * + * Parent Class: ModelCreeper + */ +f.head.ModelCreeper = "field_78135_a" +/** + * + * + * Parent Class: ModelChicken + */ +f.head.ModelChicken = "field_78142_a" +/** + * + * + * Parent Class: ModelQuadruped + */ +f.head.ModelQuadruped = "field_78150_a" +/** + * + * + * Parent Class: ModelSnowMan + */ +f.head.ModelSnowMan = "field_78195_c" +/** + * The head Model renderer of the dragon + * + * Parent Class: ModelDragon + */ +f.head.ModelDragon = "field_78221_a" + +/** + * + * + * Parent Class: ModelHorse + */ +f.tailTip = "field_110710_n" +/** + * + * + * Parent Class: ModelHorse + */ +f.backLeftLeg = "field_110711_o" +/** + * + * + * Parent Class: ModelHorse + */ +f.tailBase = "field_110712_l" +/** + * + * + * Parent Class: ModelHorse + */ +f.tailMiddle = "field_110713_m" +/** + * + * + * Parent Class: ModelHorse + */ +f.mane = "field_110714_j" +f.body = {} +/** + * + * + * Parent Class: ModelHorse + */ +f.body.ModelHorse = "field_110715_k" +/** + * + * + * Parent Class: ModelGhast + */ +f.body.ModelGhast = "field_78128_a" +/** + * + * + * Parent Class: ModelCreeper + */ +f.body.ModelCreeper = "field_78134_c" +/** + * + * + * Parent Class: ModelChicken + */ +f.body.ModelChicken = "field_78140_b" +/** + * + * + * Parent Class: ModelQuadruped + */ +f.body.ModelQuadruped = "field_78148_b" +/** + * + * + * Parent Class: ModelSnowMan + */ +f.body.ModelSnowMan = "field_78196_a" +/** + * The body Model renderer of the dragon + * + * Parent Class: ModelDragon + */ +f.body.ModelDragon = "field_78217_d" + +/** + * + * + * Parent Class: ModelHorse + */ +f.neck = "field_110716_h" +/** + * The box for the horse's ropes on its face. + * + * Parent Class: ModelHorse + */ +f.horseFaceRopes = "field_110717_i" +/** + * + * + * Parent Class: ModelHorse + */ +f.backLeftHoof = "field_110718_w" +/** + * + * + * Parent Class: ModelHorse + */ +f.backLeftShin = "field_110719_v" +/** + * + * + * Parent Class: ModelHorse + */ +f.backRightHoof = "field_110720_z" +/** + * + * + * Parent Class: ModelHorse + */ +f.backRightShin = "field_110721_y" +/** + * + * + * Parent Class: ModelHorse + */ +f.backRightLeg = "field_110722_x" +/** + * + * + * Parent Class: EffectRenderer + */ +f.particleTextures = "field_110737_b" +/** + * + * + * Parent Class: Render + */ +f.shadowTextures = "field_110778_a" +/** + * + * + * Parent Class: RenderArrow + */ +f.arrowTextures = "field_110780_a" +/** + * + * + * Parent Class: RenderBoat + */ +f.boatTextures = "field_110782_f" +/** + * + * + * Parent Class: RenderXPOrb + */ +f.experienceOrbTextures = "field_110785_a" +/** + * + * + * Parent Class: RenderEnderCrystal + */ +f.enderCrystalTextures = "field_110787_a" +/** + * + * + * Parent Class: RenderItemFrame + */ +f.mapBackgroundTextures = "field_110789_a" +/** + * + * + * Parent Class: RenderFish + */ +f.FISH_PARTICLES = "field_110792_a" +/** + * + * + * Parent Class: RenderItem + */ +f.RES_ITEM_GLINT = "field_110798_h" +/** + * + * + * Parent Class: RenderLeashKnot + */ +f.leashKnotModel = "field_110801_f" +/** + * + * + * Parent Class: RenderLeashKnot + */ +f.leashKnotTextures = "field_110802_a" +/** + * + * + * Parent Class: RenderMinecart + */ +f.minecartTextures = "field_110804_g" +/** + * + * + * Parent Class: RenderPainting + */ +f.KRISTOFFER_PAINTING_TEXTURE = "field_110807_a" +f.witherTextures = {} +/** + * + * + * Parent Class: RenderWitherSkull + */ +f.witherTextures.RenderWitherSkull = "field_110810_f" +/** + * + * + * Parent Class: RenderWither + */ +f.witherTextures.RenderWither = "field_110912_f" + +f.invulnerableWitherTextures = {} +/** + * + * + * Parent Class: RenderWitherSkull + */ +f.invulnerableWitherTextures.RenderWitherSkull = "field_110811_a" +/** + * + * + * Parent Class: RenderWither + */ +f.invulnerableWitherTextures.RenderWither = "field_110913_a" + +/** + * + * + * Parent Class: RenderCreeper + */ +f.creeperTextures = "field_110830_f" +/** + * + * + * Parent Class: RenderCow + */ +f.cowTextures = "field_110833_a" +/** + * + * + * Parent Class: RenderBat + */ +f.batTextures = "field_110835_a" +/** + * + * + * Parent Class: RenderBlaze + */ +f.blazeTextures = "field_110837_a" +/** + * + * + * Parent Class: RenderEnderman + */ +f.endermanTextures = "field_110839_f" +/** + * + * + * Parent Class: RenderDragon + */ +f.enderDragonExplodingTextures = "field_110842_f" +/** + * + * + * Parent Class: RenderDragon + */ +f.enderDragonCrystalBeamTextures = "field_110843_g" +/** + * + * + * Parent Class: RenderDragon + */ +f.enderDragonTextures = "field_110844_k" +/** + * + * + * Parent Class: RenderHorse + */ +f.whiteHorseTextures = "field_110850_f" +/** + * + * + * Parent Class: RenderHorse + */ +f.muleTextures = "field_110851_g" +/** + * + * + * Parent Class: RenderHorse + */ +f.skeletonHorseTextures = "field_110853_l" +/** + * + * + * Parent Class: RenderHorse + */ +f.zombieHorseTextures = "field_110854_k" +/** + * + * + * Parent Class: RenderHorse + */ +f.donkeyTextures = "field_110855_h" +/** + * + * + * Parent Class: RenderSkeleton + */ +f.witherSkeletonTextures = "field_110861_l" +/** + * + * + * Parent Class: RenderSkeleton + */ +f.skeletonTextures = "field_110862_k" +/** + * + * + * Parent Class: RenderZombie + */ +f.zombieVillagerTextures = "field_110864_q" +f.zombieTextures = {} +/** + * + * + * Parent Class: RenderZombie + */ +f.zombieTextures.RenderZombie = "field_110865_p" +/** + * + * + * Parent Class: RenderGiantZombie + */ +f.zombieTextures.RenderGiantZombie = "field_110871_a" + +/** + * + * + * Parent Class: RenderGhast + */ +f.ghastShootingTextures = "field_110868_f" +/** + * + * + * Parent Class: RenderGhast + */ +f.ghastTextures = "field_110869_a" +/** + * + * + * Parent Class: RenderMagmaCube + */ +f.magmaCubeTextures = "field_110873_a" +/** + * + * + * Parent Class: RenderOcelot + */ +f.ocelotTextures = "field_110875_f" +/** + * + * + * Parent Class: RenderOcelot + */ +f.redOcelotTextures = "field_110876_g" +/** + * + * + * Parent Class: RenderOcelot + */ +f.blackOcelotTextures = "field_110877_a" +/** + * + * + * Parent Class: RenderOcelot + */ +f.siameseOcelotTextures = "field_110878_h" +/** + * + * + * Parent Class: RenderMooshroom + */ +f.mooshroomTextures = "field_110880_a" +/** + * + * + * Parent Class: RenderSilverfish + */ +f.silverfishTextures = "field_110882_a" +/** + * + * + * Parent Class: RenderSheep + */ +f.shearedSheepTextures = "field_110884_f" +/** + * + * + * Parent Class: RenderPig + */ +f.pigTextures = "field_110887_f" +/** + * + * + * Parent Class: RenderSpider + */ +f.spiderTextures = "field_110890_f" +/** + * + * + * Parent Class: RenderCaveSpider + */ +f.caveSpiderTextures = "field_110893_a" +/** + * + * + * Parent Class: RenderSnowMan + */ +f.snowManTextures = "field_110895_a" +/** + * + * + * Parent Class: RenderSlime + */ +f.slimeTextures = "field_110897_a" +/** + * + * + * Parent Class: RenderIronGolem + */ +f.ironGolemTextures = "field_110899_a" +/** + * + * + * Parent Class: RenderSquid + */ +f.squidTextures = "field_110901_a" +/** + * + * + * Parent Class: RenderVillager + */ +f.villagerTextures = "field_110903_f" +/** + * + * + * Parent Class: RenderVillager + */ +f.farmerVillagerTextures = "field_110904_g" +/** + * + * + * Parent Class: RenderVillager + */ +f.smithVillagerTextures = "field_110905_l" +/** + * + * + * Parent Class: RenderVillager + */ +f.butcherVillagerTextures = "field_110906_m" +/** + * + * + * Parent Class: RenderVillager + */ +f.priestVillagerTextures = "field_110907_k" +/** + * + * + * Parent Class: RenderVillager + */ +f.librarianVillagerTextures = "field_110908_h" +/** + * + * + * Parent Class: RenderWitch + */ +f.witchTextures = "field_110910_a" +/** + * + * + * Parent Class: RenderWolf + */ +f.tamedWolfTextures = "field_110915_f" +/** + * + * + * Parent Class: RenderWolf + */ +f.anrgyWolfTextures = "field_110916_g" +/** + * + * + * Parent Class: RenderWolf + */ +f.wolfTextures = "field_110917_a" +/** + * + * + * Parent Class: RenderChicken + */ +f.chickenTextures = "field_110920_a" +/** + * + * + * Parent Class: EntityRenderer + */ +f.locationLightMap = "field_110922_T" +/** + * + * + * Parent Class: EntityRenderer + */ +f.locationSnowPng = "field_110923_r" +/** + * + * + * Parent Class: EntityRenderer + */ +f.locationRainPng = "field_110924_q" +/** + * + * + * Parent Class: RenderGlobal + */ +f.locationCloudsPng = "field_110925_j" +/** + * + * + * Parent Class: RenderGlobal + */ +f.locationEndSkyPng = "field_110926_k" +/** + * + * + * Parent Class: RenderGlobal + */ +f.locationMoonPhasesPng = "field_110927_h" +/** + * + * + * Parent Class: RenderGlobal + */ +f.locationSunPng = "field_110928_i" +/** + * + * + * Parent Class: ItemRenderer + */ +f.RES_UNDERWATER_OVERLAY = "field_110929_d" +/** + * + * + * Parent Class: ItemRenderer + */ +f.RES_MAP_BACKGROUND = "field_110931_c" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.frameCounter = "field_110973_g" +f.originY = {} +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.originY.TextureAtlasSprite = "field_110974_d" +/** + * + * + * Parent Class: Stitcher$Slot + */ +f.originY.Stitcher$Slot = "field_94190_b" + +f.originX = {} +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.originX.TextureAtlasSprite = "field_110975_c" +/** + * + * + * Parent Class: Stitcher$Slot + */ +f.originX.Stitcher$Slot = "field_94192_a" + +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.framesTextureData = "field_110976_a" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.minV = "field_110977_n" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.maxV = "field_110978_o" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.minU = "field_110979_l" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.maxU = "field_110980_m" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.animationMetadata = "field_110982_k" +f.tickCounter = {} +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.tickCounter.TextureAtlasSprite = "field_110983_h" +/** + * + * + * Parent Class: EntityGuardian$AIGuardianAttack + */ +f.tickCounter.EntityGuardian$AIGuardianAttack = "field_179455_b" +/** + * Incremented every tick. + * + * Parent Class: MinecraftServer + */ +f.tickCounter.MinecraftServer = "field_71315_w" +/** + * + * + * Parent Class: VillageCollection + */ +f.tickCounter.VillageCollection = "field_75553_e" +/** + * + * + * Parent Class: Village + */ +f.tickCounter.Village = "field_75581_g" + +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.iconName = "field_110984_i" +/** + * + * + * Parent Class: TextureUtil + */ +f.missingTextureData = "field_110999_b" +/** + * + * + * Parent Class: TextureUtil + */ +f.dataBuffer = "field_111000_c" +/** + * + * + * Parent Class: TextureUtil + */ +f.missingTexture = "field_111001_a" +/** + * "Pattern that matches numeric variable placeholders in a resource string + * + * Parent Class: StringTranslate + */ +f.numericVariablePattern = "field_111053_a" +/** + * + * + * Parent Class: EntitySpider$GroupData + */ +f.potionEffectId = "field_111105_a" +/** + * + * + * Parent Class: EntityHorse$GroupData + */ +f.horseVariant = "field_111106_b" +/** + * + * + * Parent Class: EntityHorse$GroupData + */ +f.horseType = "field_111107_a" +f.defaultValue = {} +/** + * + * + * Parent Class: BaseAttribute + */ +f.defaultValue.BaseAttribute = "field_111113_b" +/** + * "The default value for this registry + * + * Parent Class: RegistryNamespacedDefaultedByKey + */ +f.defaultValue.RegistryNamespacedDefaultedByKey = "field_148761_e" + +/** + * + * + * Parent Class: BaseAttribute + */ +f.shouldWatch = "field_111114_c" +f.unlocalizedName = {} +/** + * + * + * Parent Class: BaseAttribute + */ +f.unlocalizedName.BaseAttribute = "field_111115_a" +/** + * + * + * Parent Class: Block + */ +f.unlocalizedName.Block = "field_149770_b" +/** + * "The value that this fish type uses to replace ""XYZ"" in: ""fish.XYZ.raw"" / ""fish.XYZ.cooked"" for the unlocalized name and ""fish_XYZ_raw"" / ""fish_XYZ_cooked"" for the icon string." + * + * Parent Class: ItemFishFood$FishType + */ +f.unlocalizedName.ItemFishFood$FishType = "field_150981_g" +/** + * + * + * Parent Class: BlockStoneBrick$EnumType + */ +f.unlocalizedName.BlockStoneBrick$EnumType = "field_176622_h" +/** + * + * + * Parent Class: BlockStoneSlab$EnumType + */ +f.unlocalizedName.BlockStoneSlab$EnumType = "field_176635_l" +/** + * + * + * Parent Class: BlockStone$EnumType + */ +f.unlocalizedName.BlockStone$EnumType = "field_176654_k" +/** + * + * + * Parent Class: BlockWall$EnumType + */ +f.unlocalizedName.BlockWall$EnumType = "field_176661_f" +/** + * + * + * Parent Class: BlockSandStone$EnumType + */ +f.unlocalizedName.BlockSandStone$EnumType = "field_176678_g" +/** + * + * + * Parent Class: BlockSand$EnumType + */ +f.unlocalizedName.BlockSand$EnumType = "field_176691_g" +/** + * + * + * Parent Class: EnumDyeColor + */ +f.unlocalizedName.EnumDyeColor = "field_176785_v" +/** + * + * + * Parent Class: BlockQuartz$EnumType + */ +f.unlocalizedName.BlockQuartz$EnumType = "field_176806_i" +/** + * + * + * Parent Class: BlockPrismarine$EnumType + */ +f.unlocalizedName.BlockPrismarine$EnumType = "field_176812_g" +/** + * + * + * Parent Class: BlockRedSandstone$EnumType + */ +f.unlocalizedName.BlockRedSandstone$EnumType = "field_176830_g" +/** + * + * + * Parent Class: BlockPlanks$EnumType + */ +f.unlocalizedName.BlockPlanks$EnumType = "field_176848_j" +/** + * + * + * Parent Class: BlockSilverfish$EnumType + */ +f.unlocalizedName.BlockSilverfish$EnumType = "field_176891_j" +/** + * + * + * Parent Class: BlockDirt$DirtType + */ +f.unlocalizedName.BlockDirt$DirtType = "field_176929_g" +/** + * + * + * Parent Class: BlockDoublePlant$EnumPlantType + */ +f.unlocalizedName.BlockDoublePlant$EnumPlantType = "field_176947_j" +/** + * + * + * Parent Class: BlockFlower$EnumFlowerType + */ +f.unlocalizedName.BlockFlower$EnumFlowerType = "field_176977_o" +/** + * The unlocalized name of this item. + * + * Parent Class: Item + */ +f.unlocalizedName.Item = "field_77774_bZ" + +/** + * + * + * Parent Class: RangedAttribute + */ +f.maximumValue = "field_111118_b" +f.description = {} +/** + * + * + * Parent Class: RangedAttribute + */ +f.description.RangedAttribute = "field_111119_c" +/** + * + * + * Parent Class: Metadata + */ +f.description.Metadata = "field_152813_c" +/** + * + * + * Parent Class: EnumFacing$AxisDirection + */ +f.description.EnumFacing$AxisDirection = "field_179525_d" +/** + * Description of the crash report. + * + * Parent Class: CrashReport + */ +f.description.CrashReport = "field_71513_a" + +/** + * + * + * Parent Class: RangedAttribute + */ +f.minimumValue = "field_111120_a" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +f.baseValue = "field_111132_f" +f.needsUpdate = {} +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +f.needsUpdate.ModifiableAttributeInstance = "field_111133_g" +/** + * + * + * Parent Class: RenderChunk + */ +f.needsUpdate.RenderChunk = "field_178593_n" + +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +f.mapByName = "field_111134_d" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +f.mapByUUID = "field_111135_e" +/** + * The Attribute this is an instance of + * + * Parent Class: ModifiableAttributeInstance + */ +f.genericAttribute = "field_111136_b" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +f.mapByOperation = "field_111137_c" +/** + * + * + * Parent Class: ModifiableAttributeInstance + */ +f.cachedValue = "field_111139_h" +/** + * + * + * Parent Class: BaseAttributeMap + */ +f.attributesByName = "field_111153_b" +f.attributes = {} +/** + * + * + * Parent Class: BaseAttributeMap + */ +f.attributes.BaseAttributeMap = "field_111154_a" +/** + * + * + * Parent Class: ShaderManager + */ +f.attributes.ShaderManager = "field_148014_r" + +/** + * + * + * Parent Class: ServersideAttributeMap + */ +f.attributeInstanceSet = "field_111162_d" +/** + * + * + * Parent Class: ServersideAttributeMap + */ +f.descriptionToAttributeInstanceMap = "field_111163_c" +f.id = {} +/** + * + * + * Parent Class: AttributeModifier + */ +f.id.AttributeModifier = "field_111170_d" +/** + * + * + * Parent Class: GuiButton + */ +f.id.GuiButton = "field_146127_k" +/** + * + * + * Parent Class: S00PacketKeepAlive + */ +f.id.S00PacketKeepAlive = "field_149136_a" +/** + * + * + * Parent Class: EnumConnectionState + */ +f.id.EnumConnectionState = "field_150762_g" +/** + * + * + * Parent Class: GuiTextField + */ +f.id.GuiTextField = "field_175208_g" +/** + * + * + * Parent Class: EnumBorderStatus + */ +f.id.EnumBorderStatus = "field_177767_d" +/** + * + * + * Parent Class: Team$EnumVisible + */ +f.id.Team$EnumVisible = "field_178827_f" +/** + * + * + * Parent Class: C18PacketSpectate + */ +f.id.C18PacketSpectate = "field_179729_a" +/** + * The Id of a Potion object. + * + * Parent Class: Potion + */ +f.id.Potion = "field_76415_H" +/** + * + * + * Parent Class: WorldSettings$GameType + */ +f.id.WorldSettings$GameType = "field_77154_e" + +/** + * "If false + * + * Parent Class: AttributeModifier + */ +f.isSaved = "field_111171_e" +/** + * + * + * Parent Class: AttributeModifier + */ +f.operation = "field_111172_b" +f.name = {} +/** + * + * + * Parent Class: AttributeModifier + */ +f.name.AttributeModifier = "field_111173_c" +/** + * + * + * Parent Class: Language + */ +f.name.Language = "field_135038_c" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +f.name.SoundList$SoundEntry = "field_148569_a" +/** + * + * + * Parent Class: S3EPacketTeams + */ +f.name.S3EPacketTeams = "field_149320_a" +/** + * + * + * Parent Class: S3CPacketUpdateScore + */ +f.name.S3CPacketUpdateScore = "field_149329_a" +/** + * + * + * Parent Class: ServerStatusResponse$MinecraftProtocolVersionIdentifier + */ +f.name.ServerStatusResponse$MinecraftProtocolVersionIdentifier = "field_151306_a" +/** + * + * + * Parent Class: Metadata + */ +f.name.Metadata = "field_152812_b" +/** + * + * + * Parent Class: GuiSlider + */ +f.name.GuiSlider = "field_175226_q" +/** + * The name of this color/formatting + * + * Parent Class: EnumChatFormatting + */ +f.name.EnumChatFormatting = "field_175748_y" +/** + * + * + * Parent Class: BlockStoneBrick$EnumType + */ +f.name.BlockStoneBrick$EnumType = "field_176616_g" +/** + * + * + * Parent Class: BlockStoneSlab$EnumType + */ +f.name.BlockStoneSlab$EnumType = "field_176638_k" +/** + * The EnumType's name. + * + * Parent Class: BlockStone$EnumType + */ +f.name.BlockStone$EnumType = "field_176653_j" +/** + * + * + * Parent Class: BlockWall$EnumType + */ +f.name.BlockWall$EnumType = "field_176664_e" +/** + * + * + * Parent Class: BlockTrapDoor$DoorHalf + */ +f.name.BlockTrapDoor$DoorHalf = "field_176671_c" +/** + * + * + * Parent Class: BlockSandStone$EnumType + */ +f.name.BlockSandStone$EnumType = "field_176677_f" +/** + * + * + * Parent Class: BlockSand$EnumType + */ +f.name.BlockSand$EnumType = "field_176693_e" +/** + * + * + * Parent Class: BlockStairs$EnumShape + */ +f.name.BlockStairs$EnumShape = "field_176699_f" +/** + * + * + * Parent Class: BlockStairs$EnumHalf + */ +f.name.BlockStairs$EnumHalf = "field_176709_c" +/** + * + * + * Parent Class: EnumFacing$Axis + */ +f.name.EnumFacing$Axis = "field_176726_e" +/** + * + * + * Parent Class: EnumFacing + */ +f.name.EnumFacing = "field_176757_j" +/** + * + * + * Parent Class: EnumDyeColor + */ +f.name.EnumDyeColor = "field_176786_u" +/** + * + * + * Parent Class: BlockPrismarine$EnumType + */ +f.name.BlockPrismarine$EnumType = "field_176811_f" +/** + * + * + * Parent Class: BlockRedstoneWire$EnumAttachPosition + */ +f.name.BlockRedstoneWire$EnumAttachPosition = "field_176820_d" +/** + * + * + * Parent Class: BlockRedSandstone$EnumType + */ +f.name.BlockRedSandstone$EnumType = "field_176829_f" +/** + * + * + * Parent Class: BlockPlanks$EnumType + */ +f.name.BlockPlanks$EnumType = "field_176851_i" +/** + * + * + * Parent Class: BlockLever$EnumOrientation + */ +f.name.BlockLever$EnumOrientation = "field_176867_k" +/** + * + * + * Parent Class: BlockLog$EnumAxis + */ +f.name.BlockLog$EnumAxis = "field_176874_e" +/** + * + * + * Parent Class: BlockSilverfish$EnumType + */ +f.name.BlockSilverfish$EnumType = "field_176894_i" +/** + * + * + * Parent Class: BlockHugeMushroom$EnumType + */ +f.name.BlockHugeMushroom$EnumType = "field_176914_p" +/** + * + * + * Parent Class: BlockStoneSlabNew$EnumType + */ +f.name.BlockStoneSlabNew$EnumType = "field_176919_d" +/** + * + * + * Parent Class: BlockDirt$DirtType + */ +f.name.BlockDirt$DirtType = "field_176928_f" +/** + * + * + * Parent Class: BlockDoublePlant$EnumPlantType + */ +f.name.BlockDoublePlant$EnumPlantType = "field_176950_i" +/** + * + * + * Parent Class: BlockFlower$EnumFlowerType + */ +f.name.BlockFlower$EnumFlowerType = "field_176976_n" +/** + * + * + * Parent Class: BlockSlab$EnumBlockHalf + */ +f.name.BlockSlab$EnumBlockHalf = "field_176988_c" +/** + * + * + * Parent Class: BlockFlowerPot$EnumFlowerType + */ +f.name.BlockFlowerPot$EnumFlowerType = "field_177006_w" +/** + * + * + * Parent Class: BlockRailBase$EnumRailDirection + */ +f.name.BlockRailBase$EnumRailDirection = "field_177028_m" +/** + * + * + * Parent Class: BlockBed$EnumPartType + */ +f.name.BlockBed$EnumPartType = "field_177036_c" +/** + * + * + * Parent Class: BlockRedstoneComparator$Mode + */ +f.name.BlockRedstoneComparator$Mode = "field_177041_c" +/** + * + * + * Parent Class: BlockTallGrass$EnumType + */ +f.name.BlockTallGrass$EnumType = "field_177046_f" +/** + * + * + * Parent Class: PropertyHelper + */ +f.name.PropertyHelper = "field_177703_b" +/** + * + * + * Parent Class: StateMap + */ +f.name.StateMap = "field_178142_a" +/** + * + * + * Parent Class: ModelBlock + */ +f.name.ModelBlock = "field_178317_b" +/** + * + * + * Parent Class: ModelBlockDefinition$Variants + */ +f.name.ModelBlockDefinition$Variants = "field_178423_a" +/** + * + * + * Parent Class: StateMap$Builder + */ +f.name.StateMap$Builder = "field_178445_a" +/** + * + * + * Parent Class: ItemArmor$ArmorMaterial + */ +f.name.ItemArmor$ArmorMaterial = "field_179243_f" +/** + * + * + * Parent Class: ChatComponentScore + */ +f.name.ChatComponentScore = "field_179999_b" +/** + * + * + * Parent Class: EntityMinecart$EnumMinecartType + */ +f.name.EntityMinecart$EnumMinecartType = "field_180049_j" +/** + * Name of the chest. + * + * Parent Class: InventoryLargeChest + */ +f.name.InventoryLargeChest = "field_70479_a" +/** + * The name of the Potion. + * + * Parent Class: Potion + */ +f.name.Potion = "field_76416_I" +/** + * + * + * Parent Class: WorldSettings$GameType + */ +f.name.WorldSettings$GameType = "field_77151_f" +/** + * Used in localisation and stats. + * + * Parent Class: Enchantment + */ +f.name.Enchantment = "field_77350_z" +/** + * + * + * Parent Class: CrashReportCategory + */ +f.name.CrashReportCategory = "field_85076_b" +/** + * + * + * Parent Class: ScoreObjective + */ +f.name.ScoreObjective = "field_96684_b" + +/** + * + * + * Parent Class: AttributeModifier + */ +f.amount = "field_111174_a" +f.targetY = {} +/** + * + * + * Parent Class: EntityAIRunAroundLikeCrazy + */ +f.targetY.EntityAIRunAroundLikeCrazy = "field_111176_d" +/** + * + * + * Parent Class: EntityAIAttackOnCollide + */ +f.targetY.EntityAIAttackOnCollide = "field_151495_j" +/** + * 'y' location the eye should float towards. + * + * Parent Class: EntityEnderEye + */ +f.targetY.EntityEnderEye = "field_70225_c" +/** + * + * + * Parent Class: EntityDragon + */ +f.targetY.EntityDragon = "field_70981_c" +/** + * Y position of player tempting this mob + * + * Parent Class: EntityAITempt + */ +f.targetY.EntityAITempt = "field_75280_d" + +f.targetZ = {} +/** + * + * + * Parent Class: EntityAIRunAroundLikeCrazy + */ +f.targetZ.EntityAIRunAroundLikeCrazy = "field_111177_e" +/** + * + * + * Parent Class: EntityAIAttackOnCollide + */ +f.targetZ.EntityAIAttackOnCollide = "field_151496_k" +/** + * 'z' location the eye should float towards. + * + * Parent Class: EntityEnderEye + */ +f.targetZ.EntityEnderEye = "field_70222_d" +/** + * + * + * Parent Class: EntityDragon + */ +f.targetZ.EntityDragon = "field_70978_d" +/** + * Z position of player tempting this mob + * + * Parent Class: EntityAITempt + */ +f.targetZ.EntityAITempt = "field_75281_e" + +f.speed = {} +/** + * + * + * Parent Class: EntityAIRunAroundLikeCrazy + */ +f.speed.EntityAIRunAroundLikeCrazy = "field_111178_b" +/** + * + * + * Parent Class: EntityRabbit$EnumMoveType + */ +f.speed.EntityRabbit$EnumMoveType = "field_180076_f" +/** + * + * + * Parent Class: EntityAIPlay + */ +f.speed.EntityAIPlay = "field_75261_c" +/** + * + * + * Parent Class: EntityAIPanic + */ +f.speed.EntityAIPanic = "field_75265_b" +/** + * + * + * Parent Class: EntityAITempt + */ +f.speed.EntityAITempt = "field_75282_b" +/** + * + * + * Parent Class: EntityAIMoveTowardsTarget + */ +f.speed.EntityAIMoveTowardsTarget = "field_75425_f" +/** + * + * + * Parent Class: EntityAIWander + */ +f.speed.EntityAIWander = "field_75454_e" +/** + * + * + * Parent Class: PathNavigate + */ +f.speed.PathNavigate = "field_75511_d" +/** + * The speed at which the entity should move + * + * Parent Class: EntityMoveHelper + */ +f.speed.EntityMoveHelper = "field_75645_e" + +f.targetX = {} +/** + * + * + * Parent Class: EntityAIRunAroundLikeCrazy + */ +f.targetX.EntityAIRunAroundLikeCrazy = "field_111179_c" +/** + * + * + * Parent Class: EntityAIAttackOnCollide + */ +f.targetX.EntityAIAttackOnCollide = "field_151497_i" +/** + * 'x' location the eye should float towards. + * + * Parent Class: EntityEnderEye + */ +f.targetX.EntityEnderEye = "field_70224_b" +/** + * + * + * Parent Class: EntityDragon + */ +f.targetX.EntityDragon = "field_70980_b" +/** + * X position of player tempting this mob + * + * Parent Class: EntityAITempt + */ +f.targetX.EntityAITempt = "field_75283_c" + +/** + * + * + * Parent Class: EntityAIRunAroundLikeCrazy + */ +f.horseHost = "field_111180_a" +/** + * Contains a Map of the AttributeModifiers registered by potions + * + * Parent Class: Potion + */ +f.attributeModifierMap = "field_111188_I" +/** + * time what is using to check if InhabitedTime should be calculated + * + * Parent Class: PlayerManager + */ +f.previousTotalWorldTime = "field_111192_g" +/** + * This field is using when chunk should be processed (every 8000 ticks) + * + * Parent Class: PlayerManager + */ +f.playerInstanceList = "field_111193_e" +/** + * time what is using when chunk InhabitedTime is being calculated + * + * Parent Class: PlayerManager$PlayerInstance + */ +f.previousWorldTime = "field_111198_g" +/** + * + * + * Parent Class: WorldProvider + */ +f.moonPhaseFactors = "field_111203_a" +/** + * the cumulative number of ticks players have been in this chunk + * + * Parent Class: Chunk + */ +f.inhabitedTime = "field_111204_q" +/** + * + * + * Parent Class: Item + */ +f.itemModifierUUID = "field_111210_e" +/** + * + * + * Parent Class: CreativeTabs + */ +f.enchantmentTypes = "field_111230_s" +/** + * + * + * Parent Class: ContainerHorseInventory + */ +f.theHorse = "field_111242_f" +f.horseInventory = {} +/** + * + * + * Parent Class: ContainerHorseInventory + */ +f.horseInventory.ContainerHorseInventory = "field_111243_a" +/** + * The horse inventory bound to this GUI. + * + * Parent Class: GuiScreenHorseInventory + */ +f.horseInventory.GuiScreenHorseInventory = "field_147029_w" + +f.movementSpeed = {} +/** + * + * + * Parent Class: SharedMonsterAttributes + */ +f.movementSpeed.SharedMonsterAttributes = "field_111263_d" +/** + * + * + * Parent Class: EntityAIMoveToBlock + */ +f.movementSpeed.EntityAIMoveToBlock = "field_179492_d" +/** + * + * + * Parent Class: EntityAIFleeSun + */ +f.movementSpeed.EntityAIFleeSun = "field_75369_e" +/** + * + * + * Parent Class: EntityAIMoveThroughVillage + */ +f.movementSpeed.EntityAIMoveThroughVillage = "field_75418_b" +/** + * + * + * Parent Class: EntityAIMoveTowardsRestriction + */ +f.movementSpeed.EntityAIMoveTowardsRestriction = "field_75433_e" + +f.attackDamage = {} +/** + * + * + * Parent Class: SharedMonsterAttributes + */ +f.attackDamage.SharedMonsterAttributes = "field_111264_e" +/** + * + * + * Parent Class: ItemSword + */ +f.attackDamage.ItemSword = "field_150934_a" + +/** + * + * + * Parent Class: SharedMonsterAttributes + */ +f.followRange = "field_111265_b" +/** + * + * + * Parent Class: SharedMonsterAttributes + */ +f.knockbackResistance = "field_111266_c" +/** + * + * + * Parent Class: SharedMonsterAttributes + */ +f.maxHealth = "field_111267_a" +/** + * + * + * Parent Class: FontRenderer + */ +f.locationFontTexture = "field_111273_g" +/** + * + * + * Parent Class: FontRenderer + */ +f.unicodePageLocations = "field_111274_c" +/** + * + * + * Parent Class: ItemStack + */ +f.DECIMALFORMAT = "field_111284_a" +/** + * + * + * Parent Class: PlayerListComponent + */ +f.ticks = "field_120014_b" +f.server = {} +/** + * + * + * Parent Class: PlayerListComponent + */ +f.server.PlayerListComponent = "field_120015_a" +/** + * + * + * Parent Class: MinecraftServerGui + */ +f.server.MinecraftServerGui = "field_120021_b" +/** + * + * + * Parent Class: StatsComponent + */ +f.server.StatsComponent = "field_120037_e" +/** + * + * + * Parent Class: NetHandlerStatusServer + */ +f.server.NetHandlerStatusServer = "field_147314_a" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +f.server.NetHandlerLoginServer = "field_147327_f" +/** + * + * + * Parent Class: NetHandlerHandshakeTCP + */ +f.server.NetHandlerHandshakeTCP = "field_147387_a" +/** + * + * + * Parent Class: ServerListEntryNormal + */ +f.server.ServerListEntryNormal = "field_148301_e" +/** + * + * + * Parent Class: ServerHangWatchdog + */ +f.server.ServerHangWatchdog = "field_180249_b" +/** + * Reference to the IServer object. + * + * Parent Class: RConThreadBase + */ +f.server.RConThreadBase = "field_72617_b" + +/** + * "the total health of the player + * + * Parent Class: EntityPlayerMP + */ +f.combinedHealth = "field_130068_bO" +/** + * + * + * Parent Class: Minecraft + */ +f.fileResourcepacks = "field_130070_K" +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +f.joinerResourcePacks = "field_130074_a" +/** + * + * + * Parent Class: GrassColorReloadListener + */ +f.LOC_GRASS_PNG = "field_130078_a" +/** + * + * + * Parent Class: FoliageColorReloadListener + */ +f.LOC_FOLIAGE_PNG = "field_130079_a" +f.rotated = {} +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.rotated.TextureAtlasSprite = "field_130222_e" +/** + * + * + * Parent Class: Stitcher$Holder + */ +f.rotated.Stitcher$Holder = "field_94202_e" + +f.width = {} +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.width.TextureAtlasSprite = "field_130223_c" +/** + * Button width in pixels + * + * Parent Class: GuiButton + */ +f.width.GuiButton = "field_146120_f" +/** + * The width of this text field. + * + * Parent Class: GuiTextField + */ +f.width.GuiTextField = "field_146218_h" +/** + * + * + * Parent Class: GuiAchievement + */ +f.width.GuiAchievement = "field_146260_g" +/** + * The width of the screen object. + * + * Parent Class: GuiScreen + */ +f.width.GuiScreen = "field_146294_l" +/** + * + * + * Parent Class: GuiSlot + */ +f.width.GuiSlot = "field_148155_a" +/** + * + * + * Parent Class: GameConfiguration$DisplayInformation + */ +f.width.GameConfiguration$DisplayInformation = "field_178764_a" +/** + * How wide this entity is considered to be + * + * Parent Class: Entity + */ +f.width.Entity = "field_70130_N" +/** + * + * + * Parent Class: Stitcher$Slot + */ +f.width.Stitcher$Slot = "field_94191_c" +/** + * + * + * Parent Class: Stitcher$Holder + */ +f.width.Stitcher$Holder = "field_94204_c" +/** + * width of this icon in pixels + * + * Parent Class: DynamicTexture + */ +f.width.DynamicTexture = "field_94233_j" + +f.height = {} +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.height.TextureAtlasSprite = "field_130224_d" +/** + * Button height in pixels + * + * Parent Class: GuiButton + */ +f.height.GuiButton = "field_146121_g" +/** + * + * + * Parent Class: GuiTextField + */ +f.height.GuiTextField = "field_146219_i" +/** + * + * + * Parent Class: GuiAchievement + */ +f.height.GuiAchievement = "field_146267_h" +/** + * The height of the screen object. + * + * Parent Class: GuiScreen + */ +f.height.GuiScreen = "field_146295_m" +/** + * + * + * Parent Class: GuiSlot + */ +f.height.GuiSlot = "field_148158_l" +/** + * + * + * Parent Class: TileEntityBeacon$BeamSegment + */ +f.height.TileEntityBeacon$BeamSegment = "field_177265_b" +/** + * + * + * Parent Class: GameConfiguration$DisplayInformation + */ +f.height.GameConfiguration$DisplayInformation = "field_178762_b" +/** + * How high this entity is considered to be + * + * Parent Class: Entity + */ +f.height.Entity = "field_70131_O" +/** + * + * + * Parent Class: WorldGenBigTree + */ +f.height.WorldGenBigTree = "field_76501_f" +/** + * + * + * Parent Class: Stitcher$Slot + */ +f.height.Stitcher$Slot = "field_94188_d" +/** + * + * + * Parent Class: Stitcher$Holder + */ +f.height.Stitcher$Holder = "field_94201_d" +/** + * height of this icon in pixels + * + * Parent Class: DynamicTexture + */ +f.height.DynamicTexture = "field_94234_k" + +/** + * + * + * Parent Class: Minecraft + */ +f.mcLanguageManager = "field_135017_as" +/** + * + * + * Parent Class: LanguageMetadataSection + */ +f.languages = "field_135019_a" +/** + * + * + * Parent Class: Locale + */ +f.unicode = "field_135029_d" +/** + * "Splits on ""=""" + * + * Parent Class: Locale + */ +f.splitter = "field_135030_b" +/** + * + * + * Parent Class: Locale + */ +f.pattern = "field_135031_c" +f.properties = {} +/** + * + * + * Parent Class: Locale + */ +f.properties.Locale = "field_135032_a" +/** + * Maps properties to their respective current value + * + * Parent Class: BlockState$StateImplementation + */ +f.properties.BlockState$StateImplementation = "field_177237_b" +/** + * + * + * Parent Class: BlockState + */ +f.properties.BlockState = "field_177624_d" + +/** + * + * + * Parent Class: Language + */ +f.bidirectional = "field_135036_d" +/** + * + * + * Parent Class: Language + */ +f.region = "field_135037_b" +/** + * + * + * Parent Class: Language + */ +f.languageCode = "field_135039_a" +f.languageMap = {} +/** + * + * + * Parent Class: LanguageManager + */ +f.languageMap.LanguageManager = "field_135046_d" +/** + * The map containing the Locale-Language pairs. + * + * Parent Class: GuiLanguage$List + */ +f.languageMap.GuiLanguage$List = "field_148177_m" + +/** + * + * + * Parent Class: LanguageManager + */ +f.theMetadataSerializer = "field_135047_b" +/** + * + * + * Parent Class: LanguageManager + */ +f.currentLanguage = "field_135048_c" +/** + * + * + * Parent Class: LanguageManager + */ +f.currentLocale = "field_135049_a" +/** + * + * + * Parent Class: I18n + */ +f.i18nLocale = "field_135054_a" +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +f.setResourceDomains = "field_135057_d" +/** + * "A Splitter that splits a string on the first ""="". For example + * + * Parent Class: StringTranslate + */ +f.equalSignSplitter = "field_135065_b" +/** + * Holds the value of ticksExisted when setLastAttacker was last called. + * + * Parent Class: EntityLivingBase + */ +f.lastAttackerTime = "field_142016_bo" +/** + * + * + * Parent Class: EntityPlayerSP + */ +f.clientBrand = "field_142022_ce" +/** + * + * + * Parent Class: Minecraft + */ +f.isRunningOnMac = "field_142025_a" +/** + * + * + * Parent Class: EntityZombie$GroupData + */ +f.isVillager = "field_142046_b" +f.isChild = {} +/** + * + * + * Parent Class: EntityZombie$GroupData + */ +f.isChild.EntityZombie$GroupData = "field_142048_a" +/** + * + * + * Parent Class: ModelBase + */ +f.isChild.ModelBase = "field_78091_s" + +/** + * Store the previous revengeTimer value + * + * Parent Class: EntityAIHurtByTarget + */ +f.revengeTimerOld = "field_142052_b" +/** + * + * + * Parent Class: EntityPlayerMP + */ +f.playerLastActiveTime = "field_143005_bX" +/** + * + * + * Parent Class: MinecraftServer + */ +f.maxPlayerIdleMinutes = "field_143008_E" +/** + * + * + * Parent Class: StructureVillagePieces$Village + */ +f.isDesertVillage = "field_143014_b" +/** + * + * + * Parent Class: StructureStart + */ +f.chunkPosZ = "field_143023_d" +/** + * + * + * Parent Class: StructureStart + */ +f.chunkPosX = "field_143024_c" +/** + * + * + * Parent Class: MapGenStructure + */ +f.structureData = "field_143029_e" +/** + * + * + * Parent Class: MapGenStructureIO + */ +f.componentClassToNameMap = "field_143037_d" +/** + * + * + * Parent Class: MapGenStructureIO + */ +f.startClassToNameMap = "field_143038_b" +/** + * + * + * Parent Class: MapGenStructureIO + */ +f.componentNameToClassMap = "field_143039_c" +/** + * + * + * Parent Class: MapGenStructureIO + */ +f.startNameToClassMap = "field_143040_a" +f.tagCompound = {} +/** + * + * + * Parent Class: MapGenStructureData + */ +f.tagCompound.MapGenStructureData = "field_143044_a" +/** + * + * + * Parent Class: S49PacketUpdateEntityNBT + */ +f.tagCompound.S49PacketUpdateEntityNBT = "field_179765_b" + +f.customName = {} +/** + * "The custom name of the command block. (defaults to ""@"")" + * + * Parent Class: CommandBlockLogic + */ +f.customName.CommandBlockLogic = "field_145761_f" +/** + * + * + * Parent Class: TileEntityHopper + */ +f.customName.TileEntityHopper = "field_145902_i" +/** + * + * + * Parent Class: TileEntityEnchantmentTable + */ +f.customName.TileEntityEnchantmentTable = "field_145922_s" +/** + * + * + * Parent Class: TileEntityBrewingStand + */ +f.customName.TileEntityBrewingStand = "field_145942_n" +/** + * + * + * Parent Class: TileEntityChest + */ +f.customName.TileEntityChest = "field_145981_s" +/** + * + * + * Parent Class: TileEntityBeacon + */ +f.customName.TileEntityBeacon = "field_146008_p" +/** + * + * + * Parent Class: TileEntityDispenser + */ +f.customName.TileEntityDispenser = "field_146020_a" + +/** + * The previously run command. + * + * Parent Class: CommandBlockLogic + */ +f.lastOutput = "field_145762_d" +/** + * The command stored in the command block. + * + * Parent Class: CommandBlockLogic + */ +f.commandStored = "field_145763_e" +/** + * The number of successful commands run. (used for redstone output) + * + * Parent Class: CommandBlockLogic + */ +f.successCount = "field_145764_b" +/** + * + * + * Parent Class: CommandBlockLogic + */ +f.trackOutput = "field_145765_c" +/** + * The formatting for the timestamp on commands run. + * + * Parent Class: CommandBlockLogic + */ +f.timestampFormat = "field_145766_a" +f.entityId = {} +/** + * + * + * Parent Class: Entity + */ +f.entityId.Entity = "field_145783_c" +/** + * + * + * Parent Class: S2DPacketOpenWindow + */ +f.entityId.S2DPacketOpenWindow = "field_148904_f" +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +f.entityId.S0CPacketSpawnPlayer = "field_148957_a" +/** + * + * + * Parent Class: S0BPacketAnimation + */ +f.entityId.S0BPacketAnimation = "field_148981_a" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +f.entityId.S0EPacketSpawnObject = "field_149018_a" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +f.entityId.S0FPacketSpawnMob = "field_149042_a" +/** + * + * + * Parent Class: S2CPacketSpawnGlobalEntity + */ +f.entityId.S2CPacketSpawnGlobalEntity = "field_149059_a" +/** + * + * + * Parent Class: S14PacketEntity + */ +f.entityId.S14PacketEntity = "field_149074_a" +/** + * + * + * Parent Class: S1EPacketRemoveEntityEffect + */ +f.entityId.S1EPacketRemoveEntityEffect = "field_149079_a" +/** + * + * + * Parent Class: S19PacketEntityStatus + */ +f.entityId.S19PacketEntityStatus = "field_149164_a" +/** + * + * + * Parent Class: S01PacketJoinGame + */ +f.entityId.S01PacketJoinGame = "field_149206_a" +/** + * + * + * Parent Class: S0DPacketCollectItem + */ +f.entityId.S0DPacketCollectItem = "field_149356_b" +/** + * + * + * Parent Class: S1CPacketEntityMetadata + */ +f.entityId.S1CPacketEntityMetadata = "field_149379_a" +/** + * + * + * Parent Class: S19PacketEntityHeadLook + */ +f.entityId.S19PacketEntityHeadLook = "field_149384_a" +/** + * + * + * Parent Class: S1BPacketEntityAttach + */ +f.entityId.S1BPacketEntityAttach = "field_149406_b" +/** + * + * + * Parent Class: S1DPacketEntityEffect + */ +f.entityId.S1DPacketEntityEffect = "field_149434_a" +/** + * + * + * Parent Class: S20PacketEntityProperties + */ +f.entityId.S20PacketEntityProperties = "field_149445_a" +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +f.entityId.S18PacketEntityTeleport = "field_149458_a" +/** + * + * + * Parent Class: C02PacketUseEntity + */ +f.entityId.C02PacketUseEntity = "field_149567_a" +/** + * + * + * Parent Class: S49PacketUpdateEntityNBT + */ +f.entityId.S49PacketUpdateEntityNBT = "field_179766_a" +/** + * + * + * Parent Class: S43PacketCamera + */ +f.entityId.S43PacketCamera = "field_179781_a" + +f.yTile = {} +/** + * + * + * Parent Class: EntityThrowable + */ +f.yTile.EntityThrowable = "field_145786_d" +/** + * + * + * Parent Class: EntityArrow + */ +f.yTile.EntityArrow = "field_145792_e" +/** + * + * + * Parent Class: EntityFireball + */ +f.yTile.EntityFireball = "field_145793_f" +/** + * + * + * Parent Class: EntityFishHook + */ +f.yTile.EntityFishHook = "field_146048_h" + +f.zTile = {} +/** + * + * + * Parent Class: EntityThrowable + */ +f.zTile.EntityThrowable = "field_145787_e" +/** + * + * + * Parent Class: EntityArrow + */ +f.zTile.EntityArrow = "field_145789_f" +/** + * + * + * Parent Class: EntityFireball + */ +f.zTile.EntityFireball = "field_145794_g" +/** + * + * + * Parent Class: EntityFishHook + */ +f.zTile.EntityFishHook = "field_146050_i" + +f.xTile = {} +/** + * + * + * Parent Class: EntityThrowable + */ +f.xTile.EntityThrowable = "field_145788_c" +/** + * + * + * Parent Class: EntityArrow + */ +f.xTile.EntityArrow = "field_145791_d" +/** + * + * + * Parent Class: EntityFireball + */ +f.xTile.EntityFireball = "field_145795_e" +/** + * + * + * Parent Class: EntityFishHook + */ +f.xTile.EntityFishHook = "field_146037_g" + +f.inTile = {} +/** + * + * + * Parent Class: EntityArrow + */ +f.inTile.EntityArrow = "field_145790_g" +/** + * + * + * Parent Class: EntityFireball + */ +f.inTile.EntityFireball = "field_145796_h" +/** + * + * + * Parent Class: EntityFishHook + */ +f.inTile.EntityFishHook = "field_146046_j" +/** + * + * + * Parent Class: EntityThrowable + */ +f.inTile.EntityThrowable = "field_174853_f" + +f.thrower = {} +/** + * + * + * Parent Class: EntityItem + */ +f.thrower.EntityItem = "field_145801_f" +/** + * The entity that threw this throwable item. + * + * Parent Class: EntityThrowable + */ +f.thrower.EntityThrowable = "field_70192_c" + +f.owner = {} +/** + * + * + * Parent Class: EntityItem + */ +f.owner.EntityItem = "field_145802_g" +/** + * + * + * Parent Class: ServerSelectionList + */ +f.owner.ServerSelectionList = "field_148200_k" +/** + * + * + * Parent Class: ServerListEntryNormal + */ +f.owner.ServerListEntryNormal = "field_148303_c" +/** + * + * + * Parent Class: DataWatcher + */ +f.owner.DataWatcher = "field_151511_a" + +f.logger = {} +/** + * + * + * Parent Class: EntityItem + */ +f.logger.EntityItem = "field_145803_d" +/** + * + * + * Parent Class: TileEntity + */ +f.logger.TileEntity = "field_145852_a" +/** + * + * + * Parent Class: GuiNewChat + */ +f.logger.GuiNewChat = "field_146249_a" +/** + * + * + * Parent Class: GuiScreenDemo + */ +f.logger.GuiScreenDemo = "field_146349_a" +/** + * + * + * Parent Class: GuiConnecting + */ +f.logger.GuiConnecting = "field_146370_f" +/** + * + * + * Parent Class: GuiChat + */ +f.logger.GuiChat = "field_146408_f" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.logger.GuiScreenBook = "field_146473_a" +/** + * + * + * Parent Class: GuiWinGame + */ +f.logger.GuiWinGame = "field_146580_a" +/** + * + * + * Parent Class: GuiSelectWorld + */ +f.logger.GuiSelectWorld = "field_146629_g" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.logger.GuiMultiplayer = "field_146802_a" +/** + * + * + * Parent Class: GuiScreenResourcePacks + */ +f.logger.GuiScreenResourcePacks = "field_146968_a" +/** + * + * + * Parent Class: GuiMainMenu + */ +f.logger.GuiMainMenu = "field_146974_g" +/** + * + * + * Parent Class: GuiBeacon + */ +f.logger.GuiBeacon = "field_147026_u" +/** + * + * + * Parent Class: GuiMerchant + */ +f.logger.GuiMerchant = "field_147039_u" +/** + * + * + * Parent Class: EntityPlayerMP + */ +f.logger.EntityPlayerMP = "field_147102_bM" +/** + * + * + * Parent Class: Minecraft + */ +f.logger.Minecraft = "field_147123_G" +/** + * + * + * Parent Class: MinecraftServer + */ +f.logger.MinecraftServer = "field_147145_h" +/** + * + * + * Parent Class: IntegratedServer + */ +f.logger.IntegratedServer = "field_147148_h" +/** + * + * + * Parent Class: CrashReport + */ +f.logger.CrashReport = "field_147150_a" +/** + * + * + * Parent Class: CommandHandler + */ +f.logger.CommandHandler = "field_147175_a" +/** + * + * + * Parent Class: CommandDebug + */ +f.logger.CommandDebug = "field_147208_a" +/** + * + * + * Parent Class: OldServerPinger + */ +f.logger.OldServerPinger = "field_147228_b" +/** + * + * + * Parent Class: NetHandlerPlayClient + */ +f.logger.NetHandlerPlayClient = "field_147301_d" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +f.logger.NetHandlerLoginServer = "field_147332_c" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +f.logger.NetHandlerPlayServer = "field_147370_c" +/** + * + * + * Parent Class: NetHandlerLoginClient + */ +f.logger.NetHandlerLoginClient = "field_147396_a" +/** + * + * + * Parent Class: ServerList + */ +f.logger.ServerList = "field_147415_a" +/** + * + * + * Parent Class: ChunkProviderServer + */ +f.logger.ChunkProviderServer = "field_147417_b" +/** + * + * + * Parent Class: ChunkProviderClient + */ +f.logger.ChunkProviderClient = "field_147436_a" +/** + * + * + * Parent Class: WorldServer + */ +f.logger.WorldServer = "field_147491_a" +/** + * + * + * Parent Class: RenderGlobal + */ +f.logger.RenderGlobal = "field_147599_m" +/** + * + * + * Parent Class: TextureMap + */ +f.logger.TextureMap = "field_147635_d" +/** + * + * + * Parent Class: LayeredTexture + */ +f.logger.LayeredTexture = "field_147638_c" +/** + * + * + * Parent Class: SimpleTexture + */ +f.logger.SimpleTexture = "field_147639_c" +/** + * + * + * Parent Class: ThreadDownloadImageData + */ +f.logger.ThreadDownloadImageData = "field_147644_c" +/** + * + * + * Parent Class: TextureManager + */ +f.logger.TextureManager = "field_147646_a" +/** + * + * + * Parent Class: LanguageManager + */ +f.logger.LanguageManager = "field_147648_b" +/** + * + * + * Parent Class: SoundHandler + */ +f.logger.SoundHandler = "field_147698_b" +/** + * + * + * Parent Class: EntityRenderer + */ +f.logger.EntityRenderer = "field_147710_q" +/** + * + * + * Parent Class: RendererLivingEntity + */ +f.logger.RendererLivingEntity = "field_147923_a" +/** + * + * + * Parent Class: TextureUtil + */ +f.logger.TextureUtil = "field_147959_c" +/** + * + * + * Parent Class: SimpleReloadableResourceManager + */ +f.logger.SimpleReloadableResourceManager = "field_147967_a" +/** + * + * + * Parent Class: ShaderManager + */ +f.logger.ShaderManager = "field_148003_a" +/** + * + * + * Parent Class: ShaderLinkHelper + */ +f.logger.ShaderLinkHelper = "field_148080_a" +/** + * + * + * Parent Class: ShaderUniform + */ +f.logger.ShaderUniform = "field_148104_a" +/** + * + * + * Parent Class: ScreenShotHelper + */ +f.logger.ScreenShotHelper = "field_148261_a" +/** + * + * + * Parent Class: ServerListEntryNormal + */ +f.logger.ServerListEntryNormal = "field_148304_a" +/** + * + * + * Parent Class: ResourcePackListEntryDefault + */ +f.logger.ResourcePackListEntryDefault = "field_148322_c" +/** + * + * + * Parent Class: ContainerRepair + */ +f.logger.ContainerRepair = "field_148326_f" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +f.logger.ServerConfigurationManager = "field_148546_d" +/** + * + * + * Parent Class: LanServerDetector + */ +f.logger.LanServerDetector = "field_148550_b" +/** + * + * + * Parent Class: SoundManager + */ +f.logger.SoundManager = "field_148621_b" +/** + * + * + * Parent Class: ThreadLanServerPing + */ +f.logger.ThreadLanServerPing = "field_148657_b" +/** + * + * + * Parent Class: RegistrySimple + */ +f.logger.RegistrySimple = "field_148743_a" +/** + * + * + * Parent Class: JsonToNBT + */ +f.logger.JsonToNBT = "field_150317_a" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.logger.BiomeGenBase = "field_150586_aC" +/** + * + * + * Parent Class: NetworkManager + */ +f.logger.NetworkManager = "field_150735_g" +/** + * + * + * Parent Class: MessageSerializer + */ +f.logger.MessageSerializer = "field_150798_a" +/** + * + * + * Parent Class: MessageDeserializer + */ +f.logger.MessageDeserializer = "field_150800_a" +/** + * + * + * Parent Class: Chunk + */ +f.logger.Chunk = "field_150817_t" +/** + * + * + * Parent Class: StatisticsFile + */ +f.logger.StatisticsFile = "field_150889_b" +/** + * + * + * Parent Class: HttpUtil + */ +f.logger.HttpUtil = "field_151227_b" +/** + * + * + * Parent Class: Profiler + */ +f.logger.Profiler = "field_151234_b" +/** + * + * + * Parent Class: EntityTracker + */ +f.logger.EntityTracker = "field_151249_a" +/** + * + * + * Parent Class: PingResponseHandler + */ +f.logger.PingResponseHandler = "field_151258_a" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.logger.EntityTrackerEntry = "field_151262_p" +/** + * + * + * Parent Class: NetworkSystem + */ +f.logger.NetworkSystem = "field_151275_b" +/** + * + * + * Parent Class: GameSettings + */ +f.logger.GameSettings = "field_151454_ax" +/** + * + * + * Parent Class: SharedMonsterAttributes + */ +f.logger.SharedMonsterAttributes = "field_151476_f" +/** + * + * + * Parent Class: SaveHandler + */ +f.logger.SaveHandler = "field_151478_a" +/** + * + * + * Parent Class: SaveFormatOld + */ +f.logger.SaveFormatOld = "field_151479_b" +/** + * + * + * Parent Class: AnvilSaveConverter + */ +f.logger.AnvilSaveConverter = "field_151480_b" +/** + * + * + * Parent Class: ScoreboardSaveData + */ +f.logger.ScoreboardSaveData = "field_151481_a" +/** + * + * + * Parent Class: AnvilChunkLoader + */ +f.logger.AnvilChunkLoader = "field_151505_a" +/** + * + * + * Parent Class: EntityAITasks + */ +f.logger.EntityAITasks = "field_151506_a" +/** + * + * + * Parent Class: EntityList + */ +f.logger.EntityList = "field_151516_b" +/** + * + * + * Parent Class: GenLayerHills + */ +f.logger.GenLayerHills = "field_151629_c" +/** + * + * + * Parent Class: MapGenStructureIO + */ +f.logger.MapGenStructureIO = "field_151687_a" +/** + * + * + * Parent Class: UserList + */ +f.logger.UserList = "field_152693_a" +/** + * + * + * Parent Class: ResourceIndex + */ +f.logger.ResourceIndex = "field_152783_a" +/** + * + * + * Parent Class: BroadcastController + */ +f.logger.BroadcastController = "field_152861_B" +/** + * + * + * Parent Class: DedicatedServer + */ +f.logger.DedicatedServer = "field_155771_h" +/** + * + * + * Parent Class: FallbackResourceManager + */ +f.logger.FallbackResourceManager = "field_177246_b" +/** + * + * + * Parent Class: ResourcePackRepository + */ +f.logger.ResourcePackRepository = "field_177320_c" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +f.logger.ChunkRenderDispatcher = "field_178523_a" + +f.delayBeforeCanPickup = {} +/** + * + * + * Parent Class: EntityItem + */ +f.delayBeforeCanPickup.EntityItem = "field_145804_b" +/** + * + * + * Parent Class: EntityXPOrb + */ +f.delayBeforeCanPickup.EntityXPOrb = "field_70532_c" + +/** + * + * + * Parent Class: EntityFallingBlock + */ +f.canSetAsBlock = "field_145808_f" +/** + * + * + * Parent Class: EntityFallingBlock + */ +f.hurtEntities = "field_145809_g" +/** + * + * + * Parent Class: EntityFallingBlock + */ +f.tileEntityData = "field_145810_d" +/** + * + * + * Parent Class: EntityFallingBlock + */ +f.fallTime = "field_145812_b" +/** + * + * + * Parent Class: EntityFallingBlock + */ +f.shouldDropItem = "field_145813_c" +/** + * + * + * Parent Class: EntityFallingBlock + */ +f.fallHurtMax = "field_145815_h" +/** + * + * + * Parent Class: EntityFallingBlock + */ +f.fallHurtAmount = "field_145816_i" +/** + * Cooldown before command block logic runs again in ticks + * + * Parent Class: EntityMinecartCommandBlock + */ +f.activatorRailCooldown = "field_145823_b" +f.commandBlockLogic = {} +/** + * + * + * Parent Class: EntityMinecartCommandBlock + */ +f.commandBlockLogic.EntityMinecartCommandBlock = "field_145824_a" +/** + * + * + * Parent Class: TileEntityCommandBlock + */ +f.commandBlockLogic.TileEntityCommandBlock = "field_145994_a" + +/** + * + * + * Parent Class: TileEntity + */ +f.tileEntityInvalid = "field_145846_f" +/** + * + * + * Parent Class: TileEntity + */ +f.blockMetadata = "field_145847_g" +f.worldObj = {} +/** + * the instance of the world the tile entity is in. + * + * Parent Class: TileEntity + */ +f.worldObj.TileEntity = "field_145850_b" +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +f.worldObj.TileEntityRendererDispatcher = "field_147550_f" +/** + * Reference to the World object. + * + * Parent Class: Entity + */ +f.worldObj.Entity = "field_70170_p" +/** + * Reference to the World object. + * + * Parent Class: ChunkCache + */ +f.worldObj.ChunkCache = "field_72815_e" +/** + * + * + * Parent Class: ChunkProviderFlat + */ +f.worldObj.ChunkProviderFlat = "field_73163_a" +/** + * Is the world that the nether is getting generated. + * + * Parent Class: ChunkProviderHell + */ +f.worldObj.ChunkProviderHell = "field_73175_o" +/** + * Reference to the World object. + * + * Parent Class: ChunkProviderGenerate + */ +f.worldObj.ChunkProviderGenerate = "field_73230_p" +/** + * Reference to the World object. + * + * Parent Class: ChunkProviderClient + */ +f.worldObj.ChunkProviderClient = "field_73235_d" +/** + * + * + * Parent Class: ChunkProviderServer + */ +f.worldObj.ChunkProviderServer = "field_73251_h" +/** + * This world object. + * + * Parent Class: MapGenBase + */ +f.worldObj.MapGenBase = "field_75039_c" +/** + * + * + * Parent Class: ContainerWorkbench + */ +f.worldObj.ContainerWorkbench = "field_75161_g" +/** + * + * + * Parent Class: EntityAIAttackOnCollide + */ +f.worldObj.EntityAIAttackOnCollide = "field_75443_a" +/** + * + * + * Parent Class: EntityAIVillagerMate + */ +f.worldObj.EntityAIVillagerMate = "field_75448_d" +/** + * + * + * Parent Class: PathNavigate + */ +f.worldObj.PathNavigate = "field_75513_b" +/** + * + * + * Parent Class: VillageSiege + */ +f.worldObj.VillageSiege = "field_75537_a" +/** + * + * + * Parent Class: VillageCollection + */ +f.worldObj.VillageCollection = "field_75556_a" +/** + * + * + * Parent Class: Village + */ +f.worldObj.Village = "field_75586_a" +/** + * world object being used + * + * Parent Class: WorldProvider + */ +f.worldObj.WorldProvider = "field_76579_a" +/** + * Reference to the World object. + * + * Parent Class: Chunk + */ +f.worldObj.Chunk = "field_76637_e" +/** + * + * + * Parent Class: Explosion + */ +f.worldObj.Explosion = "field_77287_j" +/** + * Reference to the World object. + * + * Parent Class: RenderManager + */ +f.worldObj.RenderManager = "field_78722_g" +/** + * Reference to the World object. + * + * Parent Class: EffectRenderer + */ +f.worldObj.EffectRenderer = "field_78878_a" +/** + * + * + * Parent Class: BlockSourceImpl + */ +f.worldObj.BlockSourceImpl = "field_82627_a" + +/** + * A HashMap storing the classes and mapping to the string names (reverse of nameToClassMap). + * + * Parent Class: TileEntity + */ +f.classToNameMap = "field_145853_j" +f.blockType = {} +/** + * the Block type that this TileEntity is contained within + * + * Parent Class: TileEntity + */ +f.blockType.TileEntity = "field_145854_h" +/** + * + * + * Parent Class: BlockEventData + */ +f.blockType.BlockEventData = "field_151344_d" +/** + * + * + * Parent Class: BlockFlower$EnumFlowerType + */ +f.blockType.BlockFlower$EnumFlowerType = "field_176978_l" + +/** + * A HashMap storing string names of classes mapping to the actual java.lang.Class type. + * + * Parent Class: TileEntity + */ +f.nameToClassMap = "field_145855_i" +/** + * + * + * Parent Class: BlockJukebox$TileEntityJukebox + */ +f.record = "field_145858_a" +/** + * the progress in (de)extending + * + * Parent Class: TileEntityPiston + */ +f.lastProgress = "field_145870_n" +/** + * + * + * Parent Class: TileEntityPiston + */ +f.shouldHeadBeRendered = "field_145872_l" +f.progress = {} +/** + * + * + * Parent Class: TileEntityPiston + */ +f.progress.TileEntityPiston = "field_145873_m" +/** + * + * + * Parent Class: GuiScreenWorking + */ +f.progress.GuiScreenWorking = "field_146590_g" +/** + * + * + * Parent Class: GuiDownloadTerrain + */ +f.progress.GuiDownloadTerrain = "field_146593_f" +/** + * + * + * Parent Class: S25PacketBlockBreakAnim + */ +f.progress.S25PacketBlockBreakAnim = "field_148849_e" + +/** + * if this piston is extending or not + * + * Parent Class: TileEntityPiston + */ +f.extending = "field_145875_k" +/** + * Note to play + * + * Parent Class: TileEntityNote + */ +f.note = "field_145879_a" +/** + * stores the latest redstone state + * + * Parent Class: TileEntityNote + */ +f.previousRedstoneState = "field_145880_i" +/** + * + * + * Parent Class: TileEntityMobSpawner + */ +f.spawnerLogic = "field_145882_a" +f.inventory = {} +/** + * + * + * Parent Class: TileEntityHopper + */ +f.inventory.TileEntityHopper = "field_145900_a" +/** + * Inventory of the player + * + * Parent Class: EntityPlayer + */ +f.inventory.EntityPlayer = "field_71071_by" +/** + * The inventory we want to extract a slot from. + * + * Parent Class: Slot + */ +f.inventory.Slot = "field_75224_c" + +/** + * + * + * Parent Class: TileEntityHopper + */ +f.transferCooldown = "field_145901_j" +/** + * + * + * Parent Class: TileEntitySkull + */ +f.skullType = "field_145908_a" +/** + * + * + * Parent Class: TileEntitySkull + */ +f.skullRotation = "field_145910_i" +/** + * + * + * Parent Class: TileEntitySign + */ +f.signText = "field_145915_a" +/** + * + * + * Parent Class: TileEntitySign + */ +f.isEditable = "field_145916_j" +f.player = {} +/** + * + * + * Parent Class: TileEntitySign + */ +f.player.TileEntitySign = "field_145917_k" +/** + * + * + * Parent Class: MovingSoundMinecartRiding + */ +f.player.MovingSoundMinecartRiding = "field_147672_k" +/** + * The player + * + * Parent Class: EntityEnderman$AIFindPlayer + */ +f.player.EntityEnderman$AIFindPlayer = "field_179448_g" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +f.player.NetHandlerLoginServer = "field_181025_l" +/** + * The player whose inventory this is. + * + * Parent Class: InventoryPlayer + */ +f.player.InventoryPlayer = "field_70458_d" +/** + * The player that has this container open. + * + * Parent Class: ContainerBrewingStand$Potion + */ +f.player.ContainerBrewingStand$Potion = "field_75244_a" + +/** + * "The index of the line currently being edited. Only used on client side + * + * Parent Class: TileEntitySign + */ +f.lineBeingEdited = "field_145918_i" +f.rand = {} +/** + * + * + * Parent Class: TileEntityEnchantmentTable + */ +f.rand.TileEntityEnchantmentTable = "field_145923_r" +/** + * + * + * Parent Class: MusicTicker + */ +f.rand.MusicTicker = "field_147679_a" +/** + * + * + * Parent Class: EnchantmentNameParts + */ +f.rand.EnchantmentNameParts = "field_148336_b" +/** + * + * + * Parent Class: BlockDispenser + */ +f.rand.BlockDispenser = "field_149942_b" +/** + * + * + * Parent Class: WorldGenBigTree + */ +f.rand.WorldGenBigTree = "field_175949_k" +/** + * + * + * Parent Class: Entity + */ +f.rand.Entity = "field_70146_Z" +/** + * RNG for World. + * + * Parent Class: World + */ +f.rand.World = "field_73012_v" +/** + * RNG. + * + * Parent Class: ChunkProviderGenerate + */ +f.rand.ChunkProviderGenerate = "field_73220_k" +/** + * + * + * Parent Class: GuiIngame + */ +f.rand.GuiIngame = "field_73842_c" +/** + * The RNG used by the MapGen classes. + * + * Parent Class: MapGenBase + */ +f.rand.MapGenBase = "field_75038_b" +/** + * + * + * Parent Class: ContainerEnchantment + */ +f.rand.ContainerEnchantment = "field_75169_l" +/** + * RNG. + * + * Parent Class: EffectRenderer + */ +f.rand.EffectRenderer = "field_78875_d" + +/** + * + * + * Parent Class: TileEntityEnchantmentTable + */ +f.bookRotationPrev = "field_145925_p" +f.tickCount = {} +/** + * + * + * Parent Class: TileEntityEnchantmentTable + */ +f.tickCount.TileEntityEnchantmentTable = "field_145926_a" +/** + * + * + * Parent Class: EntityAITasks + */ +f.tickCount.EntityAITasks = "field_75778_d" + +/** + * + * + * Parent Class: TileEntityEnchantmentTable + */ +f.bookSpreadPrev = "field_145927_n" +/** + * + * + * Parent Class: TileEntityEnchantmentTable + */ +f.bookRotation = "field_145928_o" +/** + * + * + * Parent Class: TileEntityEnchantmentTable + */ +f.bookSpread = "field_145930_m" +/** + * + * + * Parent Class: TileEntityEnchantmentTable + */ +f.pageFlipPrev = "field_145931_j" +/** + * + * + * Parent Class: TileEntityEnchantmentTable + */ +f.pageFlip = "field_145933_i" +f.inputSlots = {} +/** + * an array of the input slot indices + * + * Parent Class: TileEntityBrewingStand + */ +f.inputSlots.TileEntityBrewingStand = "field_145941_a" +/** + * The 2slots where you put your items in that you want to merge and/or rename. + * + * Parent Class: ContainerRepair + */ +f.inputSlots.ContainerRepair = "field_82853_g" + +/** + * an integer with each bit specifying whether that slot of the stand contains a potion + * + * Parent Class: TileEntityBrewingStand + */ +f.filledSlots = "field_145943_l" +/** + * used to check if the current ingredient has been removed from the brewing stand during brewing + * + * Parent Class: TileEntityBrewingStand + */ +f.ingredientID = "field_145944_m" +/** + * The ItemStacks currently placed in the slots of the brewing stand + * + * Parent Class: TileEntityBrewingStand + */ +f.brewingItemStacks = "field_145945_j" +f.brewTime = {} +/** + * + * + * Parent Class: TileEntityBrewingStand + */ +f.brewTime.TileEntityBrewingStand = "field_145946_k" +/** + * + * + * Parent Class: ContainerBrewingStand + */ +f.brewTime.ContainerBrewingStand = "field_75187_g" + +/** + * an array of the output slot indices + * + * Parent Class: TileEntityBrewingStand + */ +f.outputSlots = "field_145947_i" +f.furnaceBurnTime = {} +/** + * The number of ticks that the furnace will keep burning + * + * Parent Class: TileEntityFurnace + */ +f.furnaceBurnTime.TileEntityFurnace = "field_145956_a" +/** + * + * + * Parent Class: ContainerFurnace + */ +f.furnaceBurnTime.ContainerFurnace = "field_178154_h" + +/** + * The ItemStacks that hold the items currently being used in the furnace + * + * Parent Class: TileEntityFurnace + */ +f.furnaceItemStacks = "field_145957_n" +/** + * + * + * Parent Class: TileEntityFurnace + */ +f.furnaceCustomName = "field_145958_o" +/** + * + * + * Parent Class: TileEntityFurnace + */ +f.slotsBottom = "field_145959_l" +/** + * + * + * Parent Class: TileEntityFurnace + */ +f.slotsSides = "field_145960_m" +/** + * + * + * Parent Class: TileEntityFurnace + */ +f.slotsTop = "field_145962_k" +f.currentItemBurnTime = {} +/** + * The number of ticks that a fresh copy of the currently-burning item would keep the furnace burning for + * + * Parent Class: TileEntityFurnace + */ +f.currentItemBurnTime.TileEntityFurnace = "field_145963_i" +/** + * + * + * Parent Class: ContainerFurnace + */ +f.currentItemBurnTime.ContainerFurnace = "field_178155_i" + +/** + * + * + * Parent Class: TileEntityFlowerPot + */ +f.flowerPotItem = "field_145967_a" +/** + * + * + * Parent Class: TileEntityFlowerPot + */ +f.flowerPotData = "field_145968_i" +f.lidAngle = {} +/** + * + * + * Parent Class: TileEntityEnderChest + */ +f.lidAngle.TileEntityEnderChest = "field_145972_a" +/** + * The current angle of the lid (between 0 and 1) + * + * Parent Class: TileEntityChest + */ +f.lidAngle.TileEntityChest = "field_145989_m" + +f.numPlayersUsing = {} +/** + * + * + * Parent Class: TileEntityEnderChest + */ +f.numPlayersUsing.TileEntityEnderChest = "field_145973_j" +/** + * The number of players currently using this chest + * + * Parent Class: TileEntityChest + */ +f.numPlayersUsing.TileEntityChest = "field_145987_o" + +f.ticksSinceSync = {} +/** + * + * + * Parent Class: TileEntityEnderChest + */ +f.ticksSinceSync.TileEntityEnderChest = "field_145974_k" +/** + * Server sync counter (once per 20 ticks) + * + * Parent Class: TileEntityChest + */ +f.ticksSinceSync.TileEntityChest = "field_145983_q" + +f.prevLidAngle = {} +/** + * The angle of the ender chest lid last tick + * + * Parent Class: TileEntityEnderChest + */ +f.prevLidAngle.TileEntityEnderChest = "field_145975_i" +/** + * The angle of the lid last tick + * + * Parent Class: TileEntityChest + */ +f.prevLidAngle.TileEntityChest = "field_145986_n" + +/** + * + * + * Parent Class: TileEntityChest + */ +f.cachedChestType = "field_145982_r" +/** + * Determines if the check for adjacent chests has taken place. + * + * Parent Class: TileEntityChest + */ +f.adjacentChestChecked = "field_145984_a" +/** + * + * + * Parent Class: TileEntityChest + */ +f.chestContents = "field_145985_p" +/** + * Contains the chest tile located adjacent to this one (if any) + * + * Parent Class: TileEntityChest + */ +f.adjacentChestZPos = "field_145988_l" +/** + * Contains the chest tile located adjacent to this one (if any) + * + * Parent Class: TileEntityChest + */ +f.adjacentChestXPos = "field_145990_j" +/** + * Contains the chest tile located adjacent to this one (if any) + * + * Parent Class: TileEntityChest + */ +f.adjacentChestXNeg = "field_145991_k" +/** + * Contains the chest tile located adjacent to this one (if any) + * + * Parent Class: TileEntityChest + */ +f.adjacentChestZNeg = "field_145992_i" +/** + * + * + * Parent Class: TileEntityComparator + */ +f.outputSignal = "field_145997_a" +/** + * List of effects that Beacon can apply + * + * Parent Class: TileEntityBeacon + */ +f.effectsList = "field_146009_a" +/** + * Secondary potion effect given by this beacon. + * + * Parent Class: TileEntityBeacon + */ +f.secondaryEffect = "field_146010_n" +/** + * Item given to this beacon as payment. + * + * Parent Class: TileEntityBeacon + */ +f.payment = "field_146011_o" +/** + * Level of this beacon's pyramid. + * + * Parent Class: TileEntityBeacon + */ +f.levels = "field_146012_l" +/** + * Primary potion effect given by this beacon. + * + * Parent Class: TileEntityBeacon + */ +f.primaryEffect = "field_146013_m" +/** + * + * + * Parent Class: TileEntityBeacon + */ +f.isComplete = "field_146015_k" +/** + * + * + * Parent Class: TileEntityBeacon + */ +f.beamRenderCounter = "field_146016_i" +/** + * + * + * Parent Class: TileEntityDispenser + */ +f.stacks = "field_146022_i" +f.partName = {} +/** + * + * + * Parent Class: EntityDragonPart + */ +f.partName.EntityDragonPart = "field_146032_b" +/** + * + * + * Parent Class: EnumPlayerModelParts + */ +f.partName.EnumPlayerModelParts = "field_179338_j" + +/** + * + * + * Parent Class: EntityFishHook + */ +f.FISH = "field_146036_f" +/** + * + * + * Parent Class: EntityFishHook + */ +f.ticksCatchableDelay = "field_146038_az" +/** + * + * + * Parent Class: EntityFishHook + */ +f.JUNK = "field_146039_d" +/** + * + * + * Parent Class: EntityFishHook + */ +f.ticksCaughtDelay = "field_146040_ay" +/** + * + * + * Parent Class: EntityFishHook + */ +f.TREASURE = "field_146041_e" +/** + * + * + * Parent Class: EntityFishHook + */ +f.angler = "field_146042_b" +/** + * + * + * Parent Class: EntityFishHook + */ +f.caughtEntity = "field_146043_c" +/** + * + * + * Parent Class: EntityFishHook + */ +f.shake = "field_146044_a" +/** + * + * + * Parent Class: EntityFishHook + */ +f.ticksCatchable = "field_146045_ax" +f.ticksInAir = {} +/** + * + * + * Parent Class: EntityFishHook + */ +f.ticksInAir.EntityFishHook = "field_146047_aw" +/** + * + * + * Parent Class: EntityThrowable + */ +f.ticksInAir.EntityThrowable = "field_70195_i" +/** + * + * + * Parent Class: EntityFireball + */ +f.ticksInAir.EntityFireball = "field_70234_an" +/** + * + * + * Parent Class: EntityArrow + */ +f.ticksInAir.EntityArrow = "field_70257_an" + +f.ticksInGround = {} +/** + * + * + * Parent Class: EntityFishHook + */ +f.ticksInGround.EntityFishHook = "field_146049_av" +/** + * + * + * Parent Class: EntityThrowable + */ +f.ticksInGround.EntityThrowable = "field_70194_h" +/** + * + * + * Parent Class: EntityArrow + */ +f.ticksInGround.EntityArrow = "field_70252_j" + +f.inGround = {} +/** + * + * + * Parent Class: EntityFishHook + */ +f.inGround.EntityFishHook = "field_146051_au" +/** + * + * + * Parent Class: EntityThrowable + */ +f.inGround.EntityThrowable = "field_174854_a" +/** + * + * + * Parent Class: EntityFireball + */ +f.inGround.EntityFireball = "field_70238_i" +/** + * + * + * Parent Class: EntityArrow + */ +f.inGround.EntityArrow = "field_70254_i" + +/** + * + * + * Parent Class: EntityFishHook + */ +f.clientMotionY = "field_146052_aI" +/** + * + * + * Parent Class: EntityFishHook + */ +f.clientMotionZ = "field_146053_aJ" +/** + * + * + * Parent Class: EntityFishHook + */ +f.fishApproachAngle = "field_146054_aA" +/** + * + * + * Parent Class: EntityFishHook + */ +f.fishPosRotationIncrements = "field_146055_aB" +/** + * + * + * Parent Class: EntityFishHook + */ +f.fishX = "field_146056_aC" +/** + * + * + * Parent Class: EntityFishHook + */ +f.fishY = "field_146057_aD" +/** + * + * + * Parent Class: EntityFishHook + */ +f.fishZ = "field_146058_aE" +/** + * + * + * Parent Class: EntityFishHook + */ +f.fishYaw = "field_146059_aF" +/** + * + * + * Parent Class: EntityFishHook + */ +f.fishPitch = "field_146060_aG" +/** + * + * + * Parent Class: EntityFishHook + */ +f.clientMotionX = "field_146061_aH" +/** + * The height of the the entity. + * + * Parent Class: EntityZombie + */ +f.zombieHeight = "field_146073_bw" +/** + * The width of the entity + * + * Parent Class: EntityZombie + */ +f.zombieWidth = "field_146074_bv" +/** + * + * + * Parent Class: EntityZombie + */ +f.breakDoor = "field_146075_bs" +/** + * + * + * Parent Class: EntityZombie + */ +f.isBreakDoorsTaskSet = "field_146076_bu" +/** + * + * + * Parent Class: EntityAnimal + */ +f.playerInLove = "field_146084_br" +/** + * + * + * Parent Class: EntitySheep + */ +f.entityAIEatGrass = "field_146087_bs" +f.gameProfile = {} +/** + * The player's unique game profile + * + * Parent Class: EntityPlayer + */ +f.gameProfile.EntityPlayer = "field_146106_i" +/** + * The player's GameProfile + * + * Parent Class: PlayerProfileCache$ProfileEntry + */ +f.gameProfile.PlayerProfileCache$ProfileEntry = "field_152672_b" +/** + * + * + * Parent Class: NetHandlerLoginClient + */ +f.gameProfile.NetHandlerLoginClient = "field_175091_e" +/** + * The GameProfile for the player represented by this NetworkPlayerInfo instance + * + * Parent Class: NetworkPlayerInfo + */ +f.gameProfile.NetworkPlayerInfo = "field_178867_a" + +/** + * + * + * Parent Class: EntityPlayerSP + */ +f.statWriter = "field_146108_bO" +f.mc = {} +/** + * + * + * Parent Class: CreativeCrafting + */ +f.mc.CreativeCrafting = "field_146109_a" +/** + * + * + * Parent Class: GuiNewChat + */ +f.mc.GuiNewChat = "field_146247_f" +/** + * + * + * Parent Class: GuiAchievement + */ +f.mc.GuiAchievement = "field_146259_f" +/** + * Reference to the Minecraft object. + * + * Parent Class: GuiScreen + */ +f.mc.GuiScreen = "field_146297_k" +/** + * + * + * Parent Class: NetHandlerLoginClient + */ +f.mc.NetHandlerLoginClient = "field_147394_b" +/** + * + * + * Parent Class: MusicTicker + */ +f.mc.MusicTicker = "field_147677_b" +/** + * + * + * Parent Class: RenderItemFrame + */ +f.mc.RenderItemFrame = "field_147917_g" +/** + * + * + * Parent Class: GuiSlot + */ +f.mc.GuiSlot = "field_148161_k" +/** + * + * + * Parent Class: GuiKeyBindingList + */ +f.mc.GuiKeyBindingList = "field_148189_l" +/** + * + * + * Parent Class: GuiResourcePackList + */ +f.mc.GuiResourcePackList = "field_148205_k" +/** + * + * + * Parent Class: ServerListEntryLanScan + */ +f.mc.ServerListEntryLanScan = "field_148288_a" +/** + * + * + * Parent Class: ServerListEntryLanDetected + */ +f.mc.ServerListEntryLanDetected = "field_148293_a" +/** + * + * + * Parent Class: ServerListEntryNormal + */ +f.mc.ServerListEntryNormal = "field_148300_d" +/** + * + * + * Parent Class: ResourcePackListEntry + */ +f.mc.ResourcePackListEntry = "field_148317_a" +/** + * + * + * Parent Class: GuiStreamIndicator + */ +f.mc.GuiStreamIndicator = "field_152442_b" +/** + * the minecraft instance + * + * Parent Class: TwitchStream + */ +f.mc.TwitchStream = "field_152953_e" +/** + * + * + * Parent Class: GuiOverlayDebug + */ +f.mc.GuiOverlayDebug = "field_175242_a" +/** + * + * + * Parent Class: GuiPlayerTabOverlay + */ +f.mc.GuiPlayerTabOverlay = "field_175250_f" +/** + * + * + * Parent Class: EntityPlayerSP + */ +f.mc.EntityPlayerSP = "field_71159_c" +/** + * The Minecraft instance. + * + * Parent Class: IntegratedServer + */ +f.mc.IntegratedServer = "field_71349_l" +/** + * A reference to the Minecraft object. + * + * Parent Class: RenderGlobal + */ +f.mc.RenderGlobal = "field_72777_q" +/** + * + * + * Parent Class: WorldClient + */ +f.mc.WorldClient = "field_73037_M" +/** + * A reference to the Minecraft object. + * + * Parent Class: LoadingScreenRenderer + */ +f.mc.LoadingScreenRenderer = "field_73725_b" +/** + * + * + * Parent Class: GuiIngame + */ +f.mc.GuiIngame = "field_73839_d" +/** + * + * + * Parent Class: GameSettings + */ +f.mc.GameSettings = "field_74317_L" +/** + * A reference to the Minecraft object. + * + * Parent Class: ItemRenderer + */ +f.mc.ItemRenderer = "field_78455_a" +/** + * A reference to the Minecraft object. + * + * Parent Class: EntityRenderer + */ +f.mc.EntityRenderer = "field_78531_r" +/** + * The Minecraft instance. + * + * Parent Class: PlayerControllerMP + */ +f.mc.PlayerControllerMP = "field_78776_a" +/** + * The Minecraft instance. + * + * Parent Class: ServerList + */ +f.mc.ServerList = "field_78859_a" + +/** + * + * + * Parent Class: GuiButton + */ +f.buttonTextures = "field_146122_a" +/** + * + * + * Parent Class: GuiButton + */ +f.hovered = "field_146123_n" +f.enabled = {} +/** + * "True if this control is enabled + * + * Parent Class: GuiButton + */ +f.enabled.GuiButton = "field_146124_l" +/** + * + * + * Parent Class: GuiSlot + */ +f.enabled.GuiSlot = "field_148164_v" + +f.visible = {} +/** + * Hides the button completely if false. + * + * Parent Class: GuiButton + */ +f.visible.GuiButton = "field_146125_m" +/** + * + * + * Parent Class: GuiLabel + */ +f.visible.GuiLabel = "field_146172_j" +/** + * True if this textbox is visible + * + * Parent Class: GuiTextField + */ +f.visible.GuiTextField = "field_146220_v" + +/** + * The string displayed on this control. + * + * Parent Class: GuiButton + */ +f.displayString = "field_146126_j" +f.xPosition = {} +/** + * The x position of this control. + * + * Parent Class: GuiButton + */ +f.xPosition.GuiButton = "field_146128_h" +/** + * + * + * Parent Class: GuiTextField + */ +f.xPosition.GuiTextField = "field_146209_f" +/** + * + * + * Parent Class: EntityAIWander + */ +f.xPosition.EntityAIWander = "field_75455_b" +/** + * The x coordinate of the chunk. + * + * Parent Class: Chunk + */ +f.xPosition.Chunk = "field_76635_g" +/** + * The x coordinate of the BiomeCacheBlock. + * + * Parent Class: BiomeCache$Block + */ +f.xPosition.BiomeCache$Block = "field_76888_d" +/** + * + * + * Parent Class: Frustum + */ +f.xPosition.Frustum = "field_78550_b" + +f.yPosition = {} +/** + * The y position of this control. + * + * Parent Class: GuiButton + */ +f.yPosition.GuiButton = "field_146129_i" +/** + * + * + * Parent Class: GuiTextField + */ +f.yPosition.GuiTextField = "field_146210_g" +/** + * + * + * Parent Class: EntityAIWander + */ +f.yPosition.EntityAIWander = "field_75456_c" +/** + * + * + * Parent Class: Frustum + */ +f.yPosition.Frustum = "field_78551_c" + +f.options = {} +/** + * + * + * Parent Class: GuiOptionSlider + */ +f.options.GuiOptionSlider = "field_146133_q" +/** + * Reference to the GameSettings object. + * + * Parent Class: GuiControls + */ +f.options.GuiControls = "field_146497_i" +/** + * Reference to the GameSettings object. + * + * Parent Class: SoundManager + */ +f.options.SoundManager = "field_148619_d" +/** + * Reference to the GameSettings object. + * + * Parent Class: RenderManager + */ +f.options.RenderManager = "field_78733_k" + +/** + * + * + * Parent Class: GuiOptionSlider + */ +f.sliderValue = "field_146134_p" +/** + * + * + * Parent Class: GuiOptionSlider + */ +f.dragging = "field_146135_o" +/** + * + * + * Parent Class: GuiOptionButton + */ +f.enumOptions = "field_146137_o" +f.fontRenderer = {} +/** + * + * + * Parent Class: GuiLabel + */ +f.fontRenderer.GuiLabel = "field_146164_r" +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +f.fontRenderer.TileEntityRendererDispatcher = "field_147557_n" +/** + * + * + * Parent Class: GuiOverlayDebug + */ +f.fontRenderer.GuiOverlayDebug = "field_175241_f" + +/** + * + * + * Parent Class: GuiLabel + */ +f.centered = "field_146170_l" +/** + * + * + * Parent Class: GuiLabel + */ +f.labelBgEnabled = "field_146171_m" +/** + * + * + * Parent Class: GuiTextField + */ +f.fontRendererInstance = "field_146211_a" +/** + * if true the textbox can lose focus by clicking elsewhere on the screen + * + * Parent Class: GuiTextField + */ +f.canLoseFocus = "field_146212_n" +/** + * "If this value is true along with isEnabled + * + * Parent Class: GuiTextField + */ +f.isFocused = "field_146213_o" +/** + * + * + * Parent Class: GuiTextField + */ +f.cursorCounter = "field_146214_l" +/** + * + * + * Parent Class: GuiTextField + */ +f.enableBackgroundDrawing = "field_146215_m" +f.text = {} +/** + * Has the current text being edited on the textbox. + * + * Parent Class: GuiTextField + */ +f.text.GuiTextField = "field_146216_j" +/** + * + * + * Parent Class: ChatComponentText + */ +f.text.ChatComponentText = "field_150267_b" + +/** + * + * + * Parent Class: GuiTextField + */ +f.maxStringLength = "field_146217_k" +/** + * + * + * Parent Class: GuiTextField + */ +f.disabledColor = "field_146221_u" +/** + * + * + * Parent Class: GuiTextField + */ +f.enabledColor = "field_146222_t" +/** + * "other selection position + * + * Parent Class: GuiTextField + */ +f.selectionEnd = "field_146223_s" +/** + * + * + * Parent Class: GuiTextField + */ +f.cursorPosition = "field_146224_r" +/** + * The current character index that should be used as start of the rendered text. + * + * Parent Class: GuiTextField + */ +f.lineScrollOffset = "field_146225_q" +/** + * "If this value is true along with isFocused + * + * Parent Class: GuiTextField + */ +f.isEnabled = "field_146226_p" +/** + * A list of messages previously sent through the chat GUI + * + * Parent Class: GuiNewChat + */ +f.sentMessages = "field_146248_g" +/** + * + * + * Parent Class: GuiNewChat + */ +f.scrollPos = "field_146250_j" +/** + * + * + * Parent Class: GuiNewChat + */ +f.isScrolled = "field_146251_k" +/** + * Chat lines to be displayed in the chat box + * + * Parent Class: GuiNewChat + */ +f.chatLines = "field_146252_h" +/** + * List of the ChatLines currently drawn + * + * Parent Class: GuiNewChat + */ +f.drawnChatLines = "field_146253_i" +/** + * + * + * Parent Class: GuiAchievement + */ +f.achievementBg = "field_146261_a" +/** + * + * + * Parent Class: GuiAchievement + */ +f.permanentNotification = "field_146262_n" +/** + * + * + * Parent Class: GuiAchievement + */ +f.notificationTime = "field_146263_l" +f.renderItem = {} +/** + * + * + * Parent Class: GuiAchievement + */ +f.renderItem.GuiAchievement = "field_146264_m" +/** + * + * + * Parent Class: Minecraft + */ +f.renderItem.Minecraft = "field_175621_X" + +f.achievementDescription = {} +/** + * + * + * Parent Class: GuiAchievement + */ +f.achievementDescription.GuiAchievement = "field_146265_j" +/** + * "Holds the description of the achievement + * + * Parent Class: Achievement + */ +f.achievementDescription.Achievement = "field_75996_k" + +/** + * + * + * Parent Class: GuiAchievement + */ +f.theAchievement = "field_146266_k" +/** + * + * + * Parent Class: GuiAchievement + */ +f.achievementTitle = "field_146268_i" +/** + * + * + * Parent Class: GuiScreen + */ +f.eventButton = "field_146287_f" +/** + * + * + * Parent Class: GuiScreen + */ +f.lastMouseEvent = "field_146288_g" +f.fontRendererObj = {} +/** + * The FontRenderer used by GuiScreen + * + * Parent Class: GuiScreen + */ +f.fontRendererObj.GuiScreen = "field_146289_q" +/** + * The font renderer used for displaying and measuring text + * + * Parent Class: Minecraft + */ +f.fontRendererObj.Minecraft = "field_71466_p" + +/** + * The button that was just pressed. + * + * Parent Class: GuiScreen + */ +f.selectedButton = "field_146290_a" +/** + * + * + * Parent Class: GuiScreen + */ +f.allowUserInput = "field_146291_p" +/** + * A list of all the buttons in this container. + * + * Parent Class: GuiScreen + */ +f.buttonList = "field_146292_n" +/** + * A list of all the labels in this container. + * + * Parent Class: GuiScreen + */ +f.labelList = "field_146293_o" +/** + * "Holds a instance of RenderItem + * + * Parent Class: GuiScreen + */ +f.itemRender = "field_146296_j" +/** + * Tracks the number of fingers currently on the screen. Prevents subsequent fingers registering as clicks. + * + * Parent Class: GuiScreen + */ +f.touchValue = "field_146298_h" +f.message = {} +/** + * + * + * Parent Class: GuiDisconnected + */ +f.message.GuiDisconnected = "field_146304_f" +/** + * + * + * Parent Class: C14PacketTabComplete + */ +f.message.C14PacketTabComplete = "field_149420_a" +/** + * + * + * Parent Class: C01PacketChatMessage + */ +f.message.C01PacketChatMessage = "field_149440_a" +/** + * + * + * Parent Class: FallbackResourceManager$InputStreamLeakedResourceLogger + */ +f.message.FallbackResourceManager$InputStreamLeakedResourceLogger = "field_177328_b" +/** + * + * + * Parent Class: S45PacketTitle + */ +f.message.S45PacketTitle = "field_179810_b" +/** + * + * + * Parent Class: LoadingScreenRenderer + */ +f.message.LoadingScreenRenderer = "field_73727_a" + +/** + * + * + * Parent Class: GuiDisconnected + */ +f.multilineMessage = "field_146305_g" +f.reason = {} +/** + * + * + * Parent Class: GuiDisconnected + */ +f.reason.GuiDisconnected = "field_146306_a" +/** + * + * + * Parent Class: S40PacketDisconnect + */ +f.reason.S40PacketDisconnect = "field_149167_a" +/** + * + * + * Parent Class: S00PacketDisconnect + */ +f.reason.S00PacketDisconnect = "field_149605_a" +/** + * + * + * Parent Class: BanEntry + */ +f.reason.BanEntry = "field_73693_g" + +f.parentScreen = {} +/** + * + * + * Parent Class: GuiDisconnected + */ +f.parentScreen.GuiDisconnected = "field_146307_h" +/** + * + * + * Parent Class: GuiScreenAddServer + */ +f.parentScreen.GuiScreenAddServer = "field_146310_a" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.parentScreen.GuiCreateWorld = "field_146332_f" +/** + * A reference to the screen object that created this. Used for navigating between screens. + * + * Parent Class: GuiYesNo + */ +f.parentScreen.GuiYesNo = "field_146355_a" +/** + * + * + * Parent Class: ScreenChatOptions + */ +f.parentScreen.ScreenChatOptions = "field_146396_g" +/** + * The parent GUI + * + * Parent Class: GuiFlatPresets + */ +f.parentScreen.GuiFlatPresets = "field_146432_g" +/** + * The parent Gui screen + * + * Parent Class: GuiLanguage + */ +f.parentScreen.GuiLanguage = "field_146453_a" +/** + * A reference to the screen object that created this. Used for navigating between screens. + * + * Parent Class: GuiControls + */ +f.parentScreen.GuiControls = "field_146496_h" +/** + * + * + * Parent Class: GuiStats + */ +f.parentScreen.GuiStats = "field_146549_a" +/** + * + * + * Parent Class: GuiAchievements + */ +f.parentScreen.GuiAchievements = "field_146562_a" +/** + * + * + * Parent Class: GuiRenameWorld + */ +f.parentScreen.GuiRenameWorld = "field_146585_a" +/** + * + * + * Parent Class: GuiSelectWorld + */ +f.parentScreen.GuiSelectWorld = "field_146632_a" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.parentScreen.GuiMultiplayer = "field_146798_g" +/** + * + * + * Parent Class: GuiScreenResourcePacks + */ +f.parentScreen.GuiScreenResourcePacks = "field_146965_f" +/** + * + * + * Parent Class: GuiStreamOptions + */ +f.parentScreen.GuiStreamOptions = "field_152317_g" +/** + * + * + * Parent Class: GuiStreamUnavailable + */ +f.parentScreen.GuiStreamUnavailable = "field_152325_g" +/** + * The parent GUI for this GUI + * + * Parent Class: GuiCustomizeSkin + */ +f.parentScreen.GuiCustomizeSkin = "field_175361_a" + +/** + * + * + * Parent Class: GuiScreenAddServer + */ +f.serverIPField = "field_146308_f" +/** + * + * + * Parent Class: GuiScreenAddServer + */ +f.serverNameField = "field_146309_g" +/** + * + * + * Parent Class: GuiScreenAddServer + */ +f.serverData = "field_146311_h" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.btnMapType = "field_146320_D" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.btnAllowCommands = "field_146321_E" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.btnCustomizeType = "field_146322_F" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.gameModeDesc1 = "field_146323_G" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.btnMoreOptions = "field_146324_A" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.btnMapFeatures = "field_146325_B" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.btnBonusItems = "field_146326_C" +/** + * These filenames are known to be restricted on one or more OS's. + * + * Parent Class: GuiCreateWorld + */ +f.disallowedFilenames = "field_146327_L" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.gameModeDesc2 = "field_146328_H" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.worldSeed = "field_146329_I" +f.worldName = {} +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.worldName.GuiCreateWorld = "field_146330_J" +/** + * + * + * Parent Class: MinecraftServer + */ +f.worldName.MinecraftServer = "field_71287_L" +/** + * The name of the currently loaded world + * + * Parent Class: RConThreadQuery + */ +f.worldName.RConThreadQuery = "field_72632_l" +/** + * + * + * Parent Class: WorldSettings + */ +f.worldName.WorldSettings = "field_82751_h" + +f.selectedIndex = {} +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.selectedIndex.GuiCreateWorld = "field_146331_K" +/** + * The list index of the currently-selected world + * + * Parent Class: GuiSelectWorld + */ +f.selectedIndex.GuiSelectWorld = "field_146640_r" + +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.worldNameField = "field_146333_g" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.chunkProviderSettingsJson = "field_146334_a" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.worldSeedField = "field_146335_h" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.saveDirName = "field_146336_i" +/** + * "Set to true when ""hardcore"" is the currently-selected gamemode" + * + * Parent Class: GuiCreateWorld + */ +f.hardCoreMode = "field_146337_w" +f.bonusChestEnabled = {} +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.bonusChestEnabled.GuiCreateWorld = "field_146338_v" +/** + * True if the Bonus Chest is enabled. + * + * Parent Class: WorldSettings + */ +f.bonusChestEnabled.WorldSettings = "field_77169_g" + +/** + * "User explicitly clicked ""Allow Cheats"" at some point + * Prevents value changes due to changing game mode" + * + * Parent Class: GuiCreateWorld + */ +f.allowCheatsWasSetByUser = "field_146339_u" +/** + * If cheats are allowed + * + * Parent Class: GuiCreateWorld + */ +f.allowCheats = "field_146340_t" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.generateStructuresEnabled = "field_146341_s" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.gameMode = "field_146342_r" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.btnGameMode = "field_146343_z" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.inMoreWorldOptionsDisplay = "field_146344_y" +/** + * + * + * Parent Class: GuiCreateWorld + */ +f.alreadyGenerated = "field_146345_x" +/** + * The integer value containing the number of ticks that have passed since the player's death + * + * Parent Class: GuiGameOver + */ +f.enableButtonsTimer = "field_146347_a" +/** + * + * + * Parent Class: GuiYesNo + */ +f.messageLine1 = "field_146351_f" +/** + * The text shown for the first button in GuiYesNo + * + * Parent Class: GuiYesNo + */ +f.confirmButtonText = "field_146352_g" +/** + * + * + * Parent Class: GuiYesNo + */ +f.ticksUntilEnable = "field_146353_s" +/** + * + * + * Parent Class: GuiYesNo + */ +f.messageLine2 = "field_146354_r" +/** + * The text shown for the second button in GuiYesNo + * + * Parent Class: GuiYesNo + */ +f.cancelButtonText = "field_146356_h" +/** + * + * + * Parent Class: GuiYesNo + */ +f.parentButtonClickedId = "field_146357_i" +/** + * + * + * Parent Class: GuiConfirmOpenLink + */ +f.showSecurityWarning = "field_146360_u" +/** + * + * + * Parent Class: GuiConfirmOpenLink + */ +f.linkText = "field_146361_t" +/** + * Label for the Copy to Clipboard button. + * + * Parent Class: GuiConfirmOpenLink + */ +f.copyLinkButtonText = "field_146362_s" +/** + * Text to warn players from opening unsafe links. + * + * Parent Class: GuiConfirmOpenLink + */ +f.openLinkWarning = "field_146363_r" +f.networkManager = {} +/** + * + * + * Parent Class: GuiConnecting + */ +f.networkManager.GuiConnecting = "field_146371_g" +/** + * + * + * Parent Class: NetHandlerStatusServer + */ +f.networkManager.NetHandlerStatusServer = "field_147313_b" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +f.networkManager.NetHandlerLoginServer = "field_147333_a" +/** + * + * + * Parent Class: NetHandlerHandshakeMemory + */ +f.networkManager.NetHandlerHandshakeMemory = "field_147384_b" +/** + * + * + * Parent Class: NetHandlerHandshakeTCP + */ +f.networkManager.NetHandlerHandshakeTCP = "field_147386_b" +/** + * + * + * Parent Class: NetHandlerLoginClient + */ +f.networkManager.NetHandlerLoginClient = "field_147393_d" + +/** + * + * + * Parent Class: GuiConnecting + */ +f.CONNECTION_ID = "field_146372_a" +/** + * + * + * Parent Class: GuiConnecting + */ +f.cancel = "field_146373_h" +f.previousGuiScreen = {} +/** + * + * + * Parent Class: GuiConnecting + */ +f.previousGuiScreen.GuiConnecting = "field_146374_i" +/** + * + * + * Parent Class: NetHandlerLoginClient + */ +f.previousGuiScreen.NetHandlerLoginClient = "field_147395_c" + +/** + * + * + * Parent Class: GuiCreateFlatWorld + */ +f.createWorldGui = "field_146385_f" +/** + * + * + * Parent Class: GuiCreateFlatWorld + */ +f.theFlatGeneratorInfo = "field_146387_g" +/** + * + * + * Parent Class: GuiCreateFlatWorld + */ +f.createFlatWorldListSlotGui = "field_146390_s" +/** + * The title given to the flat world currently in creation + * + * Parent Class: GuiCreateFlatWorld + */ +f.flatWorldTitle = "field_146393_h" +/** + * + * + * Parent Class: ScreenChatOptions + */ +f.game_settings = "field_146400_h" +/** + * is the text that appears when you press the chat key and the input box appears pre-filled + * + * Parent Class: GuiChat + */ +f.defaultInputFieldText = "field_146409_v" +/** + * + * + * Parent Class: GuiChat + */ +f.historyBuffer = "field_146410_g" +/** + * + * + * Parent Class: GuiChat + */ +f.foundPlayerNames = "field_146412_t" +/** + * + * + * Parent Class: GuiChat + */ +f.autocompleteIndex = "field_146413_s" +/** + * + * + * Parent Class: GuiChat + */ +f.waitingOnAutocomplete = "field_146414_r" +/** + * Chat entry field + * + * Parent Class: GuiChat + */ +f.inputField = "field_146415_a" +/** + * "keeps position of which chat message you will select when you press up + * + * Parent Class: GuiChat + */ +f.sentHistoryCursor = "field_146416_h" +/** + * + * + * Parent Class: GuiChat + */ +f.playerNamesFound = "field_146417_i" +/** + * + * + * Parent Class: GuiFlatPresets + */ +f.FLAT_WORLD_PRESETS = "field_146431_f" +/** + * + * + * Parent Class: GuiFlatPresets + */ +f.presetsTitle = "field_146438_h" +/** + * + * + * Parent Class: GuiFlatPresets + */ +f.presetsShare = "field_146439_i" +/** + * Reference to the GameSettings object. + * + * Parent Class: GuiOptions + */ +f.game_settings_1 = "field_146443_h" +/** + * The List GuiSlot object reference. + * + * Parent Class: GuiLanguage + */ +f.list = "field_146450_f" +/** + * Reference to the GameSettings object. + * + * Parent Class: GuiLanguage + */ +f.game_settings_3 = "field_146451_g" +/** + * The button to confirm the current settings. + * + * Parent Class: GuiLanguage + */ +f.confirmSettingsBtn = "field_146452_r" +/** + * Reference to the LanguageManager object. + * + * Parent Class: GuiLanguage + */ +f.languageManager = "field_146454_h" +/** + * A button which allows the user to determine if the Unicode font should be forced. + * + * Parent Class: GuiLanguage + */ +f.forceUnicodeFontBtn = "field_146455_i" +/** + * The GuiButton to sign this book. + * + * Parent Class: GuiScreenBook + */ +f.buttonSign = "field_146465_D" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.bookGuiTextures = "field_146466_f" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.buttonFinalize = "field_146467_E" +/** + * The player editing the book + * + * Parent Class: GuiScreenBook + */ +f.editingPlayer = "field_146468_g" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.buttonCancel = "field_146469_F" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.buttonNextPage = "field_146470_A" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.buttonPreviousPage = "field_146471_B" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.buttonDone = "field_146472_C" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.bookObj = "field_146474_h" +/** + * Whether the book is signed or can still be edited + * + * Parent Class: GuiScreenBook + */ +f.bookIsUnsigned = "field_146475_i" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.bookTotalPages = "field_146476_w" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.bookImageHeight = "field_146477_v" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.bookImageWidth = "field_146478_u" +/** + * Update ticks since the gui was opened + * + * Parent Class: GuiScreenBook + */ +f.updateCount = "field_146479_t" +/** + * Determines if the signing screen is open + * + * Parent Class: GuiScreenBook + */ +f.bookGettingSigned = "field_146480_s" +/** + * Whether the book's title or contents has been modified since being opened + * + * Parent Class: GuiScreenBook + */ +f.bookIsModified = "field_146481_r" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.bookTitle = "field_146482_z" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.bookPages = "field_146483_y" +/** + * + * + * Parent Class: GuiScreenBook + */ +f.currPage = "field_146484_x" +/** + * Text field containing the command block's command. + * + * Parent Class: GuiCommandBlock + */ +f.commandTextField = "field_146485_f" +/** + * + * + * Parent Class: GuiCommandBlock + */ +f.previousOutputTextField = "field_146486_g" +/** + * + * + * Parent Class: GuiCommandBlock + */ +f.cancelBtn = "field_146487_r" +/** + * Command block being edited. + * + * Parent Class: GuiCommandBlock + */ +f.localCommandBlock = "field_146489_h" +f.doneBtn = {} +/** + * """Done"" button for the GUI." + * + * Parent Class: GuiCommandBlock + */ +f.doneBtn.GuiCommandBlock = "field_146490_i" +/** + * """Done"" button for the GUI." + * + * Parent Class: GuiEditSign + */ +f.doneBtn.GuiEditSign = "field_146852_i" + +/** + * The ID of the button that has been pressed. + * + * Parent Class: GuiControls + */ +f.buttonId = "field_146491_f" +/** + * + * + * Parent Class: GuiControls + */ +f.optionsArr = "field_146492_g" +/** + * + * + * Parent Class: GuiControls + */ +f.buttonReset = "field_146493_s" +/** + * + * + * Parent Class: GuiControls + */ +f.keyBindingList = "field_146494_r" +f.screenTitle = {} +/** + * + * + * Parent Class: GuiControls + */ +f.screenTitle.GuiControls = "field_146495_a" +/** + * + * + * Parent Class: GuiVideoSettings + */ +f.screenTitle.GuiVideoSettings = "field_146500_a" +/** + * + * + * Parent Class: GuiStats + */ +f.screenTitle.GuiStats = "field_146542_f" +/** + * + * + * Parent Class: GuiSelectWorld + */ +f.screenTitle.GuiSelectWorld = "field_146628_f" + +/** + * + * + * Parent Class: GuiVideoSettings + */ +f.parentGuiScreen = "field_146498_f" +/** + * + * + * Parent Class: GuiVideoSettings + */ +f.guiGameSettings = "field_146499_g" +/** + * + * + * Parent Class: GuiVideoSettings + */ +f.optionsRowList = "field_146501_h" +/** + * An array of all of GameSettings.Options's video options. + * + * Parent Class: GuiVideoSettings + */ +f.videoOptions = "field_146502_i" +/** + * Reference to the GameSettings object. + * + * Parent Class: GuiScreenOptionsSounds + */ +f.game_settings_4 = "field_146506_g" +/** + * + * + * Parent Class: IProgressMeter + */ +f.lanSearchStates = "field_146510_b_" +/** + * "When true + * + * Parent Class: GuiStats + */ +f.doesGuiPauseGame = "field_146543_v" +/** + * + * + * Parent Class: GuiStats + */ +f.displaySlot = "field_146545_u" +/** + * + * + * Parent Class: GuiStats + */ +f.mobStats = "field_146547_s" +/** + * + * + * Parent Class: GuiStats + */ +f.blockStats = "field_146548_r" +f.generalStats = {} +/** + * + * + * Parent Class: GuiStats + */ +f.generalStats.GuiStats = "field_146550_h" +/** + * + * + * Parent Class: StatList + */ +f.generalStats.StatList = "field_75941_c" + +f.itemStats = {} +/** + * + * + * Parent Class: GuiStats + */ +f.itemStats.GuiStats = "field_146551_i" +/** + * + * + * Parent Class: StatList + */ +f.itemStats.StatList = "field_75938_d" + +/** + * + * + * Parent Class: GuiAchievements + */ +f.statFileWriter = "field_146556_E" +/** + * + * + * Parent Class: GuiAchievements + */ +f.loadingAchievements = "field_146558_F" +/** + * + * + * Parent Class: GuiAchievements + */ +f.ACHIEVEMENT_BACKGROUND = "field_146561_C" +/** + * + * + * Parent Class: GuiWinGame + */ +f.MINECRAFT_LOGO = "field_146576_f" +/** + * + * + * Parent Class: GuiWinGame + */ +f.VIGNETTE_TEXTURE = "field_146577_g" +/** + * + * + * Parent Class: GuiRenameWorld + */ +f.saveName = "field_146584_g" +/** + * + * + * Parent Class: LoadingScreenRenderer + */ +f.scaledResolution = "field_146587_f" +f.framebuffer = {} +/** + * + * + * Parent Class: LoadingScreenRenderer + */ +f.framebuffer.LoadingScreenRenderer = "field_146588_g" +/** + * + * + * Parent Class: TwitchStream + */ +f.framebuffer.TwitchStream = "field_152956_h" + +/** + * + * + * Parent Class: GuiScreenWorking + */ +f.doneWorking = "field_146592_h" +/** + * + * + * Parent Class: GuiDownloadTerrain + */ +f.netHandlerPlayClient = "field_146594_a" +/** + * Reference to the GameSettings object. + * + * Parent Class: GuiSnooper + */ +f.game_settings_2 = "field_146603_f" +/** + * + * + * Parent Class: GuiSelectWorld + */ +f.renameButton = "field_146630_A" +/** + * + * + * Parent Class: GuiSelectWorld + */ +f.recreateButton = "field_146631_B" +/** + * + * + * Parent Class: GuiSelectWorld + */ +f.availableWorlds = "field_146638_t" +/** + * + * + * Parent Class: GuiSelectWorld + */ +f.selectButton = "field_146641_z" +/** + * + * + * Parent Class: GuiSelectWorld + */ +f.deleteButton = "field_146642_y" +/** + * + * + * Parent Class: GuiSelectWorld + */ +f.confirmingDelete = "field_146643_x" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.oldServerPinger = "field_146797_f" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.lanServerList = "field_146799_A" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.lanServerDetector = "field_146800_B" +f.initialized = {} +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.initialized.GuiMultiplayer = "field_146801_C" +/** + * + * + * Parent Class: ChunkRenderContainer + */ +f.initialized.ChunkRenderContainer = "field_178007_b" +/** + * + * + * Parent Class: WorldInfo + */ +f.initialized.WorldInfo = "field_76109_u" + +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.serverListSelector = "field_146803_h" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.savedServerList = "field_146804_i" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.editingServer = "field_146805_w" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.addingServer = "field_146806_v" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.deletingServer = "field_146807_u" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.btnDeleteServer = "field_146808_t" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.btnSelectServer = "field_146809_s" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.btnEditServer = "field_146810_r" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.selectedServer = "field_146811_z" +/** + * The text to be displayed when the player's cursor hovers over a server listing. + * + * Parent Class: GuiMultiplayer + */ +f.hoveringText = "field_146812_y" +/** + * + * + * Parent Class: GuiMultiplayer + */ +f.directConnect = "field_146813_x" +/** + * Reference to the sign object. + * + * Parent Class: GuiEditSign + */ +f.tileSign = "field_146848_f" +f.updateCounter = {} +/** + * Counts the number of screen updates. + * + * Parent Class: GuiEditSign + */ +f.updateCounter.GuiEditSign = "field_146849_g" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.updateCounter.EntityTrackerEntry = "field_73136_m" +/** + * + * + * Parent Class: GuiIngame + */ +f.updateCounter.GuiIngame = "field_73837_f" +/** + * Counts the number of screen updates. + * + * Parent Class: GuiMainMenu + */ +f.updateCounter.GuiMainMenu = "field_73974_b" + +/** + * The index of the line that is being edited. + * + * Parent Class: GuiEditSign + */ +f.editLine = "field_146851_h" +/** + * List of available resource packs + * + * Parent Class: GuiScreenResourcePacks + */ +f.availableResourcePacks = "field_146966_g" +/** + * List component that contains the selected resource packs + * + * Parent Class: GuiScreenResourcePacks + */ +f.selectedResourcePacksList = "field_146967_r" +/** + * List of selected resource packs + * + * Parent Class: GuiScreenResourcePacks + */ +f.selectedResourcePacks = "field_146969_h" +/** + * List component that contains the available resource packs + * + * Parent Class: GuiScreenResourcePacks + */ +f.availableResourcePacksList = "field_146970_i" +/** + * OpenGL graphics card warning. + * + * Parent Class: GuiMainMenu + */ +f.openGLWarning2 = "field_146972_A" +/** + * + * + * Parent Class: GuiContainer + */ +f.currentDragTargetSlot = "field_146985_D" +/** + * + * + * Parent Class: GuiContainer + */ +f.dragItemDropDelay = "field_146986_E" +/** + * + * + * Parent Class: GuiContainer + */ +f.dragSplittingLimit = "field_146987_F" +/** + * + * + * Parent Class: GuiContainer + */ +f.dragSplittingButton = "field_146988_G" +/** + * + * + * Parent Class: GuiContainer + */ +f.returningStackDestSlot = "field_146989_A" +/** + * + * + * Parent Class: GuiContainer + */ +f.returningStackTime = "field_146990_B" +/** + * Used when touchscreen is enabled + * + * Parent Class: GuiContainer + */ +f.returningStack = "field_146991_C" +/** + * + * + * Parent Class: GuiContainer + */ +f.lastClickButton = "field_146992_L" +/** + * + * + * Parent Class: GuiContainer + */ +f.doubleClick = "field_146993_M" +/** + * + * + * Parent Class: GuiContainer + */ +f.shiftClickedSlot = "field_146994_N" +/** + * + * + * Parent Class: GuiContainer + */ +f.ignoreMouseUp = "field_146995_H" +/** + * + * + * Parent Class: GuiContainer + */ +f.dragSplittingRemnant = "field_146996_I" +/** + * + * + * Parent Class: GuiContainer + */ +f.lastClickTime = "field_146997_J" +/** + * + * + * Parent Class: GuiContainer + */ +f.lastClickSlot = "field_146998_K" +/** + * The X size of the inventory window in pixels. + * + * Parent Class: GuiContainer + */ +f.xSize = "field_146999_f" +/** + * The Y size of the inventory window in pixels. + * + * Parent Class: GuiContainer + */ +f.ySize = "field_147000_g" +/** + * The location of the inventory background texture + * + * Parent Class: GuiContainer + */ +f.inventoryBackground = "field_147001_a" +f.inventorySlots = {} +/** + * A list of the players inventory slots + * + * Parent Class: GuiContainer + */ +f.inventorySlots.GuiContainer = "field_147002_h" +/** + * the list of all slots in the inventory + * + * Parent Class: Container + */ +f.inventorySlots.Container = "field_75151_b" + +/** + * Starting X position for the Gui. Inconsistent use for Gui backgrounds. + * + * Parent Class: GuiContainer + */ +f.guiLeft = "field_147003_i" +/** + * Used when touchscreen is enabled. + * + * Parent Class: GuiContainer + */ +f.isRightMouseClick = "field_147004_w" +/** + * Used when touchscreen is enabled. + * + * Parent Class: GuiContainer + */ +f.clickedSlot = "field_147005_v" +f.theSlot = {} +/** + * holds the slot currently hovered + * + * Parent Class: GuiContainer + */ +f.theSlot.GuiContainer = "field_147006_u" +/** + * Instance of Slot. + * + * Parent Class: ContainerBrewingStand + */ +f.theSlot.ContainerBrewingStand = "field_75186_f" + +/** + * + * + * Parent Class: GuiContainer + */ +f.dragSplitting = "field_147007_t" +/** + * + * + * Parent Class: GuiContainer + */ +f.dragSplittingSlots = "field_147008_s" +/** + * Starting Y position for the Gui. Inconsistent use for Gui backgrounds. + * + * Parent Class: GuiContainer + */ +f.guiTop = "field_147009_r" +/** + * + * + * Parent Class: GuiContainer + */ +f.touchUpY = "field_147010_z" +/** + * + * + * Parent Class: GuiContainer + */ +f.touchUpX = "field_147011_y" +/** + * Used when touchscreen is enabled + * + * Parent Class: GuiContainer + */ +f.draggedStack = "field_147012_x" +f.tileBrewingStand = {} +/** + * + * + * Parent Class: GuiBrewingStand + */ +f.tileBrewingStand.GuiBrewingStand = "field_147013_v" +/** + * + * + * Parent Class: ContainerBrewingStand + */ +f.tileBrewingStand.ContainerBrewingStand = "field_75188_e" + +/** + * + * + * Parent Class: GuiBrewingStand + */ +f.brewingStandGuiTextures = "field_147014_u" +f.lowerChestInventory = {} +/** + * + * + * Parent Class: GuiChest + */ +f.lowerChestInventory.GuiChest = "field_147015_w" +/** + * + * + * Parent Class: ContainerChest + */ +f.lowerChestInventory.ContainerChest = "field_75155_e" + +/** + * + * + * Parent Class: GuiChest + */ +f.upperChestInventory = "field_147016_v" +/** + * The ResourceLocation containing the chest GUI texture. + * + * Parent Class: GuiChest + */ +f.CHEST_GUI_TEXTURE = "field_147017_u" +/** + * "window height is calculated with these values; the more rows + * + * Parent Class: GuiChest + */ +f.inventoryRows = "field_147018_x" +/** + * + * + * Parent Class: GuiCrafting + */ +f.craftingTableGuiTextures = "field_147019_u" +f.tileBeacon = {} +/** + * + * + * Parent Class: GuiBeacon + */ +f.tileBeacon.GuiBeacon = "field_147024_w" +/** + * + * + * Parent Class: ContainerBeacon + */ +f.tileBeacon.ContainerBeacon = "field_82866_e" + +/** + * + * + * Parent Class: GuiBeacon + */ +f.beaconGuiTextures = "field_147025_v" +/** + * + * + * Parent Class: GuiBeacon + */ +f.buttonsNotDrawn = "field_147027_y" +/** + * + * + * Parent Class: GuiBeacon + */ +f.beaconConfirmButton = "field_147028_x" +f.playerInventory = {} +/** + * The player inventory bound to this GUI. + * + * Parent Class: GuiScreenHorseInventory + */ +f.playerInventory.GuiScreenHorseInventory = "field_147030_v" +/** + * The player inventory currently bound to this GUI instance + * + * Parent Class: GuiHopper + */ +f.playerInventory.GuiHopper = "field_147084_v" +/** + * + * + * Parent Class: GuiRepair + */ +f.playerInventory.GuiRepair = "field_147094_x" +/** + * The player inventory bound to this GUI. + * + * Parent Class: GuiDispenser + */ +f.playerInventory.GuiDispenser = "field_175376_w" +/** + * The player inventory currently bound to this GuiEnchantment instance. + * + * Parent Class: GuiEnchantment + */ +f.playerInventory.GuiEnchantment = "field_175379_F" +/** + * The player inventory bound to this GUI. + * + * Parent Class: GuiFurnace + */ +f.playerInventory.GuiFurnace = "field_175383_v" +/** + * The player inventory bound to this GUI. + * + * Parent Class: GuiBrewingStand + */ +f.playerInventory.GuiBrewingStand = "field_175384_v" + +/** + * + * + * Parent Class: GuiScreenHorseInventory + */ +f.horseGuiTextures = "field_147031_u" +/** + * The mouse y-position recorded during the last renderered frame. + * + * Parent Class: GuiScreenHorseInventory + */ +f.mousePosY = "field_147032_z" +/** + * The mouse x-position recorded during the last rendered frame. + * + * Parent Class: GuiScreenHorseInventory + */ +f.mousePosx = "field_147033_y" +/** + * The EntityHorse whose inventory is currently being accessed. + * + * Parent Class: GuiScreenHorseInventory + */ +f.horseEntity = "field_147034_x" +/** + * The current IMerchant instance in use for this specific merchant. + * + * Parent Class: GuiMerchant + */ +f.merchant = "field_147037_w" +/** + * The GUI texture for the villager merchant GUI. + * + * Parent Class: GuiMerchant + */ +f.MERCHANT_GUI_TEXTURE = "field_147038_v" +f.chatComponent = {} +/** + * The chat component utilized by this GuiMerchant instance. + * + * Parent Class: GuiMerchant + */ +f.chatComponent.GuiMerchant = "field_147040_A" +/** + * + * + * Parent Class: S02PacketChat + */ +f.chatComponent.S02PacketChat = "field_148919_a" + +/** + * The integer value corresponding to the currently selected merchant recipe. + * + * Parent Class: GuiMerchant + */ +f.selectedMerchantRecipe = "field_147041_z" +/** + * Returns to the previous Merchant recipe if one is applicable. + * + * Parent Class: GuiMerchant + */ +f.previousButton = "field_147042_y" +/** + * The button which proceeds to the next available merchant recipe. + * + * Parent Class: GuiMerchant + */ +f.nextButton = "field_147043_x" +/** + * True if there is some potion effect to display + * + * Parent Class: InventoryEffectRenderer + */ +f.hasActivePotionEffects = "field_147045_u" +/** + * The old y position of the mouse pointer + * + * Parent Class: GuiInventory + */ +f.oldMouseY = "field_147047_v" +/** + * The old x position of the mouse pointer + * + * Parent Class: GuiInventory + */ +f.oldMouseX = "field_147048_u" +/** + * Currently selected creative inventory tab index. + * + * Parent Class: GuiContainerCreative + */ +f.selectedTabIndex = "field_147058_w" +/** + * The location of the creative inventory tabs texture + * + * Parent Class: GuiContainerCreative + */ +f.creativeInventoryTabs = "field_147061_u" +/** + * + * + * Parent Class: GuiContainerCreative + */ +f.searchField = "field_147062_A" +/** + * True if the left mouse button was held down last time drawScreen was called. + * + * Parent Class: GuiContainerCreative + */ +f.wasClicking = "field_147065_z" +/** + * True if the scrollbar is being dragged + * + * Parent Class: GuiContainerCreative + */ +f.isScrolling = "field_147066_y" +/** + * "Amount scrolled in Creative mode inventory (0 = top + * + * Parent Class: GuiContainerCreative + */ +f.currentScroll = "field_147067_x" +/** + * The ResourceLocation containing the texture for the Book rendered above the enchantment table + * + * Parent Class: GuiEnchantment + */ +f.ENCHANTMENT_TABLE_BOOK_TEXTURE = "field_147070_D" +/** + * The ModelBook instance used for rendering the book on the Enchantment table + * + * Parent Class: GuiEnchantment + */ +f.MODEL_BOOK = "field_147072_E" +f.random = {} +/** + * A Random instance for use with the enchantment gui + * + * Parent Class: GuiEnchantment + */ +f.random.GuiEnchantment = "field_147074_F" +/** + * + * + * Parent Class: MinecraftServer + */ +f.random.MinecraftServer = "field_147146_q" +/** + * A Random instance for this world customization + * + * Parent Class: GuiCustomizeWorldScreen + */ +f.random.GuiCustomizeWorldScreen = "field_175337_G" +/** + * + * + * Parent Class: ChunkProviderFlat + */ +f.random.ChunkProviderFlat = "field_73161_b" +/** + * A private Random() function in Teleporter + * + * Parent Class: Teleporter + */ +f.random.Teleporter = "field_77187_a" +/** + * + * + * Parent Class: EntityRenderer + */ +f.random.EntityRenderer = "field_78537_ab" + +/** + * + * + * Parent Class: GuiEnchantment + */ +f.container = "field_147075_G" +/** + * The ResourceLocation containing the Enchantment GUI texture location + * + * Parent Class: GuiEnchantment + */ +f.ENCHANTMENT_TABLE_GUI_TEXTURE = "field_147078_C" +f.hopperInventory = {} +/** + * The hopper inventory bound to this GUI instance + * + * Parent Class: GuiHopper + */ +f.hopperInventory.GuiHopper = "field_147083_w" +/** + * + * + * Parent Class: ContainerHopper + */ +f.hopperInventory.ContainerHopper = "field_94538_a" + +/** + * The ResourceLocation containing the gui texture for the hopper + * + * Parent Class: GuiHopper + */ +f.HOPPER_GUI_TEXTURE = "field_147085_u" +f.tileFurnace = {} +/** + * + * + * Parent Class: GuiFurnace + */ +f.tileFurnace.GuiFurnace = "field_147086_v" +/** + * + * + * Parent Class: ContainerFurnace + */ +f.tileFurnace.ContainerFurnace = "field_75158_e" + +/** + * + * + * Parent Class: GuiFurnace + */ +f.furnaceGuiTextures = "field_147087_u" +/** + * + * + * Parent Class: GuiDispenser + */ +f.dispenserGuiTextures = "field_147088_v" +/** + * + * + * Parent Class: GuiRepair + */ +f.nameField = "field_147091_w" +f.anvil = {} +/** + * + * + * Parent Class: GuiRepair + */ +f.anvil.GuiRepair = "field_147092_v" +/** + * + * + * Parent Class: Blocks + */ +f.anvil.Blocks = "field_150467_bQ" +/** + * + * + * Parent Class: Material + */ +f.anvil.Material = "field_151574_g" +/** + * + * + * Parent Class: DamageSource + */ +f.anvil.DamageSource = "field_82728_o" + +/** + * + * + * Parent Class: GuiRepair + */ +f.anvilResource = "field_147093_u" +/** + * + * + * Parent Class: EntityPlayerMP + */ +f.respawnInvulnerabilityTicks = "field_147101_bU" +f.statsFile = {} +/** + * + * + * Parent Class: EntityPlayerMP + */ +f.statsFile.EntityPlayerMP = "field_147103_bO" +/** + * + * + * Parent Class: StatisticsFile + */ +f.statsFile.StatisticsFile = "field_150887_d" + +/** + * + * + * Parent Class: Minecraft + */ +f.framebufferMc = "field_147124_at" +f.pointedEntity = {} +/** + * + * + * Parent Class: Minecraft + */ +f.pointedEntity.Minecraft = "field_147125_j" +/** + * + * + * Parent Class: RenderManager + */ +f.pointedEntity.RenderManager = "field_147941_i" +/** + * Pointed entity + * + * Parent Class: EntityRenderer + */ +f.pointedEntity.EntityRenderer = "field_78528_u" + +/** + * + * + * Parent Class: Minecraft + */ +f.mcMusicTicker = "field_147126_aw" +/** + * + * + * Parent Class: Minecraft + */ +f.mcSoundHandler = "field_147127_av" +/** + * + * + * Parent Class: Minecraft + */ +f.textureMapBlocks = "field_147128_au" +/** + * + * + * Parent Class: Minecraft + */ +f.jvm64bit = "field_147129_ai" +/** + * The texture pack for the server + * + * Parent Class: MinecraftServer + */ +f.resourcePackUrl = "field_147141_M" +/** + * + * + * Parent Class: MinecraftServer + */ +f.nanoTimeSinceStatusRefresh = "field_147142_T" +f.sessionService = {} +/** + * + * + * Parent Class: MinecraftServer + */ +f.sessionService.MinecraftServer = "field_147143_S" +/** + * + * + * Parent Class: Minecraft + */ +f.sessionService.Minecraft = "field_152355_az" +/** + * + * + * Parent Class: SkinManager + */ +f.sessionService.SkinManager = "field_152797_e" + +f.networkSystem = {} +/** + * + * + * Parent Class: MinecraftServer + */ +f.networkSystem.MinecraftServer = "field_147144_o" +/** + * + * + * Parent Class: PingResponseHandler + */ +f.networkSystem.PingResponseHandler = "field_151257_b" + +/** + * + * + * Parent Class: MinecraftServer + */ +f.statusResponse = "field_147147_p" +/** + * + * + * Parent Class: SoundCategory + */ +f.categoryName = "field_147166_l" +/** + * + * + * Parent Class: SoundCategory + */ +f.categoryId = "field_147167_m" +/** + * + * + * Parent Class: SoundCategory + */ +f.NAME_CATEGORY_MAP = "field_147168_j" +/** + * + * + * Parent Class: SoundCategory + */ +f.ID_CATEGORY_MAP = "field_147169_k" +/** + * The time (in milliseconds) that profiling was started + * + * Parent Class: CommandDebug + */ +f.profileStartTime = "field_147206_b" +/** + * The tick number that profiling was started on + * + * Parent Class: CommandDebug + */ +f.profileStartTick = "field_147207_c" +/** + * A list of NetworkManagers that have pending pings + * + * Parent Class: OldServerPinger + */ +f.pingDestinations = "field_147229_c" +/** + * + * + * Parent Class: OldServerPinger + */ +f.PING_RESPONSE_SPLITTER = "field_147230_a" +/** + * "Reference to the Minecraft instance + * + * Parent Class: NetHandlerPlayClient + */ +f.gameController = "field_147299_f" +/** + * "Reference to the current ClientWorld instance + * + * Parent Class: NetHandlerPlayClient + */ +f.clientWorldController = "field_147300_g" +f.netManager = {} +/** + * The NetworkManager instance used to communicate with the server (used only by handlePlayerPosLook to update positioning and handleJoinGame to inform the server of the client distribution/mods) + * + * Parent Class: NetHandlerPlayClient + */ +f.netManager.NetHandlerPlayClient = "field_147302_e" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +f.netManager.NetHandlerPlayServer = "field_147371_a" + +/** + * + * + * Parent Class: NetHandlerPlayClient + */ +f.currentServerMaxPlayers = "field_147304_c" +/** + * "Just an ordinary random number generator + * + * Parent Class: NetHandlerPlayClient + */ +f.avRandomizer = "field_147306_l" +/** + * Seems to be either null (integrated server) or an instance of either GuiMultiplayer (when connecting to a server) or GuiScreenReamlsTOS (when connecting to MCO server) + * + * Parent Class: NetHandlerPlayClient + */ +f.guiScreenServer = "field_147307_j" +/** + * "True if the client has finished downloading terrain and may spawn. Set upon receipt of S08PacketPlayerPosLook + * + * Parent Class: NetHandlerPlayClient + */ +f.doneLoadingTerrain = "field_147309_h" +/** + * A mapping from player names to their respective GuiPlayerInfo (specifies the clients response time to the server) + * + * Parent Class: NetHandlerPlayClient + */ +f.playerInfoMap = "field_147310_i" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +f.currentLoginState = "field_147328_g" +f.RANDOM = {} +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +f.RANDOM.NetHandlerLoginServer = "field_147329_d" +/** + * + * + * Parent Class: EntitySpellParticleFX + */ +f.RANDOM.EntitySpellParticleFX = "field_174848_a" +/** + * + * + * Parent Class: GuiMainMenu + */ +f.RANDOM.GuiMainMenu = "field_175374_h" +/** + * + * + * Parent Class: InventoryHelper + */ +f.RANDOM.InventoryHelper = "field_180177_a" + +f.verifyToken = {} +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +f.verifyToken.NetHandlerLoginServer = "field_147330_e" +/** + * + * + * Parent Class: S01PacketEncryptionRequest + */ +f.verifyToken.S01PacketEncryptionRequest = "field_149611_c" + +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +f.AUTHENTICATOR_THREAD_ID = "field_147331_b" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +f.serverId = "field_147334_j" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +f.secretKey = "field_147335_k" +/** + * How long has player been trying to login into the server. + * + * Parent Class: NetHandlerLoginServer + */ +f.connectionTimer = "field_147336_h" +/** + * + * + * Parent Class: NetHandlerLoginServer + */ +f.loginGameProfile = "field_147337_i" +/** + * Used to keep track of how the player is floating while gamerules should prevent that. Surpassing 80 ticks means kick + * + * Parent Class: NetHandlerPlayServer + */ +f.floatingTickCount = "field_147365_f" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +f.serverController = "field_147367_d" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +f.networkTickCount = "field_147368_e" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +f.playerEntity = "field_147369_b" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +f.lastPosX = "field_147373_o" +/** + * "Incremented by 20 each time a user sends a chat message + * + * Parent Class: NetHandlerPlayServer + */ +f.chatSpamThresholdCount = "field_147374_l" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +f.itemDropThreshold = "field_147375_m" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +f.lastSentPingPacket = "field_147377_k" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +f.lastPingTime = "field_147379_i" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +f.hasMoved = "field_147380_r" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +f.lastPosZ = "field_147381_q" +/** + * + * + * Parent Class: NetHandlerPlayServer + */ +f.lastPosY = "field_147382_p" +f.mcServer = {} +/** + * + * + * Parent Class: NetHandlerHandshakeMemory + */ +f.mcServer.NetHandlerHandshakeMemory = "field_147385_a" +/** + * + * + * Parent Class: StatisticsFile + */ +f.mcServer.StatisticsFile = "field_150890_c" +/** + * Reference to the MinecraftServer object. + * + * Parent Class: NetworkSystem + */ +f.mcServer.NetworkSystem = "field_151273_d" +/** + * + * + * Parent Class: PlayerProfileCache + */ +f.mcServer.PlayerProfileCache = "field_152664_f" +/** + * Reference to the MinecraftServer object. + * + * Parent Class: EntityPlayerMP + */ +f.mcServer.EntityPlayerMP = "field_71133_b" +/** + * Instance of Minecraft Server. + * + * Parent Class: MinecraftServer + */ +f.mcServer.MinecraftServer = "field_71309_l" +/** + * Reference to the MinecraftServer object. + * + * Parent Class: ServerConfigurationManager + */ +f.mcServer.ServerConfigurationManager = "field_72400_f" +/** + * Reference to the MinecraftServer object. + * + * Parent Class: WorldManager + */ +f.mcServer.WorldManager = "field_72783_a" +/** + * + * + * Parent Class: WorldServer + */ +f.mcServer.WorldServer = "field_73061_a" + +f.serverIcon = {} +/** + * + * + * Parent Class: ServerData + */ +f.serverIcon.ServerData = "field_147411_m" +/** + * + * + * Parent Class: ServerListEntryNormal + */ +f.serverIcon.ServerListEntryNormal = "field_148306_i" + +f.playerList = {} +/** + * + * + * Parent Class: ServerData + */ +f.playerList.ServerData = "field_147412_i" +/** + * + * + * Parent Class: Container + */ +f.playerList.Container = "field_75148_f" + +/** + * + * + * Parent Class: ChunkProviderGenerate + */ +f.upperLimitNoiseArray = "field_147425_f" +/** + * + * + * Parent Class: ChunkProviderGenerate + */ +f.depthNoiseArray = "field_147426_g" +/** + * + * + * Parent Class: ChunkProviderGenerate + */ +f.mainNoiseArray = "field_147427_d" +/** + * + * + * Parent Class: ChunkProviderGenerate + */ +f.lowerLimitNoiseArray = "field_147428_e" +/** + * + * + * Parent Class: ChunkProviderGenerate + */ +f.parabolicField = "field_147433_r" +/** + * + * + * Parent Class: World + */ +f.processingLoadedTiles = "field_147481_N" +/** + * A list of the loaded tile entities in the world + * + * Parent Class: World + */ +f.loadedTileEntityList = "field_147482_g" +/** + * + * + * Parent Class: World + */ +f.tileEntitiesToBeRemoved = "field_147483_b" +/** + * + * + * Parent Class: World + */ +f.addedTileEntityList = "field_147484_a" +/** + * + * + * Parent Class: WorldServer + */ +f.blockEventCacheIndex = "field_147489_T" +/** + * + * + * Parent Class: WorldServer + */ +f.blockEventQueue = "field_147490_S" +/** + * + * + * Parent Class: TileEntitySpecialRenderer + */ +f.rendererDispatcher = "field_147501_a" +/** + * + * + * Parent Class: TileEntityChestRenderer + */ +f.textureChristmas = "field_147503_f" +/** + * + * + * Parent Class: TileEntityChestRenderer + */ +f.textureNormal = "field_147504_g" +/** + * + * + * Parent Class: TileEntityChestRenderer + */ +f.textureNormalDouble = "field_147505_d" +/** + * + * + * Parent Class: TileEntityChestRenderer + */ +f.textureTrapped = "field_147506_e" +/** + * + * + * Parent Class: TileEntityChestRenderer + */ +f.textureTrappedDouble = "field_147507_b" +/** + * + * + * Parent Class: TileEntityChestRenderer + */ +f.textureChristmasDouble = "field_147508_c" +/** + * + * + * Parent Class: TileEntityChestRenderer + */ +f.isChristmas = "field_147509_j" +/** + * + * + * Parent Class: TileEntityChestRenderer + */ +f.simpleChest = "field_147510_h" +/** + * + * + * Parent Class: TileEntityChestRenderer + */ +f.largeChest = "field_147511_i" +/** + * + * + * Parent Class: TileEntitySignRenderer + */ +f.SIGN_TEXTURE = "field_147513_b" +f.model = {} +/** + * The ModelSign instance for use in this renderer + * + * Parent Class: TileEntitySignRenderer + */ +f.model.TileEntitySignRenderer = "field_147514_c" +/** + * + * + * Parent Class: WeightedBakedModel$MyWeighedRandomItem + */ +f.model.WeightedBakedModel$MyWeighedRandomItem = "field_177636_b" +/** + * + * + * Parent Class: ModelBlock$Bookkeep + */ +f.model.ModelBlock$Bookkeep = "field_178324_a" + +/** + * + * + * Parent Class: TileEntityEnderChestRenderer + */ +f.ENDER_CHEST_TEXTURE = "field_147520_b" +/** + * + * + * Parent Class: TileEntityBeaconRenderer + */ +f.beaconBeam = "field_147523_b" +/** + * + * + * Parent Class: TileEntityEndPortalRenderer + */ +f.END_PORTAL_TEXTURE = "field_147526_d" +/** + * + * + * Parent Class: TileEntityEndPortalRenderer + */ +f.END_SKY_TEXTURE = "field_147529_c" +/** + * + * + * Parent Class: TileEntitySkullRenderer + */ +f.CREEPER_TEXTURES = "field_147532_f" +/** + * + * + * Parent Class: TileEntitySkullRenderer + */ +f.WITHER_SKELETON_TEXTURES = "field_147534_d" +/** + * + * + * Parent Class: TileEntitySkullRenderer + */ +f.ZOMBIE_TEXTURES = "field_147535_e" +f.instance = {} +/** + * + * + * Parent Class: TileEntitySkullRenderer + */ +f.instance.TileEntitySkullRenderer = "field_147536_b" +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +f.instance.TileEntityRendererDispatcher = "field_147556_a" +/** + * + * + * Parent Class: TileEntityItemStackRenderer + */ +f.instance.TileEntityItemStackRenderer = "field_147719_a" +/** + * + * + * Parent Class: EnchantmentNameParts + */ +f.instance.EnchantmentNameParts = "field_148338_a" +/** + * Single instance of RConConsoleSource + * + * Parent Class: RConConsoleSource + */ +f.instance.RConConsoleSource = "field_70010_a" +/** + * Is the private singleton instance of StringTranslate. + * + * Parent Class: StringTranslate + */ +f.instance.StringTranslate = "field_74817_a" +/** + * The static instance of this class + * + * Parent Class: CraftingManager + */ +f.instance.CraftingManager = "field_77598_a" +/** + * The static instance of the Tessellator. + * + * Parent Class: Tessellator + */ +f.instance.Tessellator = "field_78398_a" +/** + * + * + * Parent Class: ClippingHelperImpl + */ +f.instance.ClippingHelperImpl = "field_78563_e" + +/** + * + * + * Parent Class: TileEntitySkullRenderer + */ +f.SKELETON_TEXTURES = "field_147537_c" +/** + * The texture for the book above the enchantment table. + * + * Parent Class: TileEntityEnchantmentTableRenderer + */ +f.TEXTURE_BOOK = "field_147540_b" +f.entity = {} +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +f.entity.TileEntityRendererDispatcher = "field_147551_g" +/** + * + * + * Parent Class: MobAppearance + */ +f.entity.MobAppearance = "field_174844_a" +/** + * + * + * Parent Class: EntityAIWander + */ +f.entity.EntityAIWander = "field_75457_a" +/** + * The EntityLiving that is being moved + * + * Parent Class: EntityMoveHelper + */ +f.entity.EntityMoveHelper = "field_75648_a" +/** + * + * + * Parent Class: EntityLookHelper + */ +f.entity.EntityLookHelper = "field_75659_a" +/** + * + * + * Parent Class: EntityJumpHelper + */ +f.entity.EntityJumpHelper = "field_75663_a" + +/** + * The player's current Z position (same as playerZ) + * + * Parent Class: TileEntityRendererDispatcher + */ +f.staticPlayerZ = "field_147552_d" +f.renderEngine = {} +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +f.renderEngine.TileEntityRendererDispatcher = "field_147553_e" +/** + * The RenderEngine instance used by Minecraft + * + * Parent Class: Minecraft + */ +f.renderEngine.Minecraft = "field_71446_o" +/** + * The RenderEngine instance used by RenderGlobal + * + * Parent Class: RenderGlobal + */ +f.renderEngine.RenderGlobal = "field_72770_i" +/** + * The RenderEngine used to load and setup glyph textures. + * + * Parent Class: FontRenderer + */ +f.renderEngine.FontRenderer = "field_78298_i" +/** + * + * + * Parent Class: RenderManager + */ +f.renderEngine.RenderManager = "field_78724_e" + +/** + * The player's current X position (same as playerX) + * + * Parent Class: TileEntityRendererDispatcher + */ +f.staticPlayerX = "field_147554_b" +/** + * The player's current Y position (same as playerY) + * + * Parent Class: TileEntityRendererDispatcher + */ +f.staticPlayerY = "field_147555_c" +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +f.entityZ = "field_147558_l" +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +f.mapSpecialRenderers = "field_147559_m" +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +f.entityX = "field_147560_j" +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +f.entityY = "field_147561_k" +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +f.entityYaw = "field_147562_h" +/** + * + * + * Parent Class: TileEntityRendererDispatcher + */ +f.entityPitch = "field_147563_i" +/** + * "Currently playing sounds. Type: HashMap<ChunkCoordinates + * + * Parent Class: RenderGlobal + */ +f.mapSoundPositions = "field_147593_P" +/** + * + * + * Parent Class: RenderGlobal + */ +f.displayListEntitiesDirty = "field_147595_R" +/** + * + * + * Parent Class: RenderGlobal + */ +f.prevRenderSortX = "field_147596_f" +/** + * + * + * Parent Class: RenderGlobal + */ +f.prevRenderSortY = "field_147597_g" +/** + * + * + * Parent Class: RenderGlobal + */ +f.prevRenderSortZ = "field_147602_h" +/** + * + * + * Parent Class: Framebuffer + */ +f.framebufferObject = "field_147616_f" +/** + * + * + * Parent Class: Framebuffer + */ +f.framebufferTexture = "field_147617_g" +/** + * + * + * Parent Class: Framebuffer + */ +f.framebufferHeight = "field_147618_d" +/** + * + * + * Parent Class: Framebuffer + */ +f.useDepth = "field_147619_e" +/** + * + * + * Parent Class: Framebuffer + */ +f.framebufferTextureHeight = "field_147620_b" +/** + * + * + * Parent Class: Framebuffer + */ +f.framebufferWidth = "field_147621_c" +/** + * + * + * Parent Class: Framebuffer + */ +f.framebufferTextureWidth = "field_147622_a" +/** + * + * + * Parent Class: Framebuffer + */ +f.framebufferFilter = "field_147623_j" +/** + * + * + * Parent Class: Framebuffer + */ +f.depthBuffer = "field_147624_h" +/** + * + * + * Parent Class: Framebuffer + */ +f.framebufferColor = "field_147625_i" +f.mipmapLevels = {} +/** + * + * + * Parent Class: TextureMap + */ +f.mipmapLevels.TextureMap = "field_147636_j" +/** + * + * + * Parent Class: GameSettings + */ +f.mipmapLevels.GameSettings = "field_151442_I" + +/** + * + * + * Parent Class: ThreadDownloadImageData + */ +f.threadDownloadCounter = "field_147643_d" +/** + * + * + * Parent Class: PositionedSound + */ +f.zPosF = "field_147658_f" +/** + * + * + * Parent Class: PositionedSound + */ +f.repeat = "field_147659_g" +/** + * + * + * Parent Class: PositionedSound + */ +f.xPosF = "field_147660_d" +/** + * + * + * Parent Class: PositionedSound + */ +f.yPosF = "field_147661_e" +f.volume = {} +/** + * + * + * Parent Class: PositionedSound + */ +f.volume.PositionedSound = "field_147662_b" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +f.volume.SoundList$SoundEntry = "field_148567_b" +/** + * + * + * Parent Class: SoundPoolEntry + */ +f.volume.SoundPoolEntry = "field_148653_d" +/** + * + * + * Parent Class: Block$SoundType + */ +f.volume.Block$SoundType = "field_150499_b" + +f.pitch = {} +/** + * + * + * Parent Class: PositionedSound + */ +f.pitch.PositionedSound = "field_147663_c" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +f.pitch.SoundList$SoundEntry = "field_148568_c" +/** + * + * + * Parent Class: SoundPoolEntry + */ +f.pitch.SoundPoolEntry = "field_148655_c" +/** + * + * + * Parent Class: S24PacketBlockAction + */ +f.pitch.S24PacketBlockAction = "field_148873_e" +/** + * + * + * Parent Class: S08PacketPlayerPosLook + */ +f.pitch.S08PacketPlayerPosLook = "field_148937_e" +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +f.pitch.S0CPacketSpawnPlayer = "field_148952_g" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +f.pitch.S0EPacketSpawnObject = "field_149021_h" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +f.pitch.S0FPacketSpawnMob = "field_149045_j" +/** + * + * + * Parent Class: S14PacketEntity + */ +f.pitch.S14PacketEntity = "field_149068_f" +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +f.pitch.S18PacketEntityTeleport = "field_149453_f" +/** + * + * + * Parent Class: C03PacketPlayer + */ +f.pitch.C03PacketPlayer = "field_149473_f" +/** + * Tempting player's pitch + * + * Parent Class: EntityAITempt + */ +f.pitch.EntityAITempt = "field_75278_f" + +/** + * + * + * Parent Class: PositionedSound + */ +f.positionedSoundLocation = "field_147664_a" +/** + * The number of ticks between repeating the sound + * + * Parent Class: PositionedSound + */ +f.repeatDelay = "field_147665_h" +/** + * + * + * Parent Class: PositionedSound + */ +f.attenuationType = "field_147666_i" +/** + * + * + * Parent Class: MovingSound + */ +f.donePlaying = "field_147668_j" +/** + * + * + * Parent Class: MovingSoundMinecart + */ +f.distance = "field_147669_l" +f.minecart = {} +/** + * + * + * Parent Class: MovingSoundMinecart + */ +f.minecart.MovingSoundMinecart = "field_147670_k" +/** + * + * + * Parent Class: MovingSoundMinecartRiding + */ +f.minecart.MovingSoundMinecartRiding = "field_147671_l" +/** + * + * + * Parent Class: Items + */ +f.minecart.Items = "field_151143_au" + +/** + * + * + * Parent Class: MusicTicker + */ +f.timeUntilNextMusic = "field_147676_d" +/** + * + * + * Parent Class: MusicTicker + */ +f.currentMusic = "field_147678_c" +/** + * + * + * Parent Class: SoundHandler + */ +f.sndManager = "field_147694_f" +f.TYPE = {} +/** + * + * + * Parent Class: SoundHandler + */ +f.TYPE.SoundHandler = "field_147696_d" +/** + * + * + * Parent Class: PlayerProfileCache + */ +f.TYPE.PlayerProfileCache = "field_152666_h" +/** + * + * + * Parent Class: BlockSandStone + */ +f.TYPE.BlockSandStone = "field_176297_a" +/** + * + * + * Parent Class: BlockPistonExtension + */ +f.TYPE.BlockPistonExtension = "field_176325_b" +/** + * + * + * Parent Class: BlockRedSandstone + */ +f.TYPE.BlockRedSandstone = "field_176336_a" +/** + * + * + * Parent Class: BlockPistonMoving + */ +f.TYPE.BlockPistonMoving = "field_176425_b" +/** + * + * + * Parent Class: BlockSapling + */ +f.TYPE.BlockSapling = "field_176480_a" +/** + * + * + * Parent Class: BlockTallGrass + */ +f.TYPE.BlockTallGrass = "field_176497_a" + +/** + * + * + * Parent Class: SoundHandler + */ +f.sndRegistry = "field_147697_e" +f.GSON = {} +/** + * + * + * Parent Class: SoundHandler + */ +f.GSON.SoundHandler = "field_147699_c" +/** + * + * + * Parent Class: S00PacketServerInfo + */ +f.GSON.S00PacketServerInfo = "field_149297_a" +/** + * + * + * Parent Class: IChatComponent$Serializer + */ +f.GSON.IChatComponent$Serializer = "field_150700_a" +/** + * + * + * Parent Class: ModelBlockDefinition + */ +f.GSON.ModelBlockDefinition = "field_178333_a" + +/** + * + * + * Parent Class: SoundHandler + */ +f.missing_sound = "field_147700_a" +/** + * + * + * Parent Class: EntityRenderer + */ +f.theShaderGroup = "field_147707_d" +/** + * + * + * Parent Class: EntityRenderer + */ +f.shaderCount = "field_147708_e" +/** + * + * + * Parent Class: EntityRenderer + */ +f.theMapItemRenderer = "field_147709_v" +f.resourceManager = {} +/** + * + * + * Parent Class: EntityRenderer + */ +f.resourceManager.EntityRenderer = "field_147711_ac" +/** + * + * + * Parent Class: ShaderGroup + */ +f.resourceManager.ShaderGroup = "field_148033_b" +/** + * + * + * Parent Class: ModelBakery + */ +f.resourceManager.ModelBakery = "field_177598_f" + +/** + * + * + * Parent Class: EntityRenderer + */ +f.shaderResourceLocations = "field_147712_ad" +/** + * + * + * Parent Class: EntityRenderer + */ +f.shaderIndex = "field_147713_ae" +/** + * + * + * Parent Class: TileEntityItemStackRenderer + */ +f.enderChest = "field_147716_d" +/** + * + * + * Parent Class: TextureUtil + */ +f.mipmapBuffer = "field_147957_g" +/** + * + * + * Parent Class: Stitcher$Holder + */ +f.mipmapLevelHolder = "field_147968_d" +/** + * + * + * Parent Class: Stitcher + */ +f.mipmapLevelStitcher = "field_147971_a" +/** + * maps sampler names to their texture + * + * Parent Class: ShaderManager + */ +f.shaderSamplers = "field_147997_f" +/** + * + * + * Parent Class: ShaderManager + */ +f.samplerNames = "field_147998_g" +/** + * + * + * Parent Class: ShaderManager + */ +f.currentProgram = "field_147999_d" +/** + * + * + * Parent Class: ShaderManager + */ +f.defaultShaderUniform = "field_148001_b" +/** + * + * + * Parent Class: ShaderManager + */ +f.staticShaderManager = "field_148002_c" +/** + * + * + * Parent Class: ShaderManager + */ +f.useFaceCulling = "field_148004_n" +/** + * + * + * Parent Class: ShaderManager + */ +f.isDirty = "field_148005_o" +/** + * + * + * Parent Class: ShaderManager + */ +f.program = "field_148006_l" +/** + * + * + * Parent Class: ShaderManager + */ +f.programFilename = "field_148007_m" +/** + * + * + * Parent Class: ShaderManager + */ +f.shaderUniformLocations = "field_148008_j" +/** + * + * + * Parent Class: ShaderManager + */ +f.mappedShaderUniforms = "field_148009_k" +/** + * + * + * Parent Class: ShaderManager + */ +f.shaderSamplerLocations = "field_148010_h" +/** + * + * + * Parent Class: ShaderManager + */ +f.shaderUniforms = "field_148011_i" +/** + * + * + * Parent Class: ShaderManager + */ +f.fragmentShaderLoader = "field_148012_t" +/** + * + * + * Parent Class: ShaderManager + */ +f.vertexShaderLoader = "field_148013_s" +/** + * + * + * Parent Class: ShaderManager + */ +f.attribLocations = "field_148015_q" +/** + * + * + * Parent Class: ShaderGroup + */ +f.listFramebuffers = "field_148029_f" +f.projectionMatrix = {} +/** + * + * + * Parent Class: ShaderGroup + */ +f.projectionMatrix.ShaderGroup = "field_148030_g" +/** + * + * + * Parent Class: Shader + */ +f.projectionMatrix.Shader = "field_148053_h" +/** + * + * + * Parent Class: ClippingHelper + */ +f.projectionMatrix.ClippingHelper = "field_178625_b" + +/** + * + * + * Parent Class: ShaderGroup + */ +f.listShaders = "field_148031_d" +/** + * + * + * Parent Class: ShaderGroup + */ +f.mapFramebuffers = "field_148032_e" +/** + * + * + * Parent Class: ShaderGroup + */ +f.shaderGroupName = "field_148034_c" +/** + * + * + * Parent Class: ShaderGroup + */ +f.mainFramebuffer = "field_148035_a" +/** + * + * + * Parent Class: ShaderGroup + */ +f.mainFramebufferWidth = "field_148038_h" +/** + * + * + * Parent Class: ShaderGroup + */ +f.mainFramebufferHeight = "field_148039_i" +/** + * + * + * Parent Class: Shader + */ +f.listAuxWidths = "field_148046_f" +/** + * + * + * Parent Class: Shader + */ +f.listAuxHeights = "field_148047_g" +/** + * + * + * Parent Class: Shader + */ +f.listAuxFramebuffers = "field_148048_d" +/** + * + * + * Parent Class: Shader + */ +f.listAuxNames = "field_148049_e" +/** + * + * + * Parent Class: Shader + */ +f.framebufferOut = "field_148050_b" +/** + * + * + * Parent Class: Shader + */ +f.manager = "field_148051_c" +/** + * + * + * Parent Class: Shader + */ +f.framebufferIn = "field_148052_a" +/** + * + * + * Parent Class: ShaderLoader + */ +f.shaderAttachCount = "field_148058_d" +/** + * + * + * Parent Class: ShaderLoader + */ +f.shaderFilename = "field_148059_b" +/** + * + * + * Parent Class: ShaderLoader + */ +f.shader = "field_148060_c" +/** + * + * + * Parent Class: ShaderLoader + */ +f.shaderType = "field_148061_a" +/** + * + * + * Parent Class: ShaderLoader$ShaderType + */ +f.loadedShaders = "field_148067_f" +/** + * + * + * Parent Class: ShaderLoader$ShaderType + */ +f.shaderExtension = "field_148069_d" +/** + * + * + * Parent Class: ShaderLoader$ShaderType + */ +f.shaderMode = "field_148070_e" +f.shaderName = {} +/** + * + * + * Parent Class: ShaderLoader$ShaderType + */ +f.shaderName.ShaderLoader$ShaderType = "field_148072_c" +/** + * + * + * Parent Class: ShaderUniform + */ +f.shaderName.ShaderUniform = "field_148099_g" + +/** + * + * + * Parent Class: ShaderLinkHelper + */ +f.staticShaderLinkHelper = "field_148079_b" +/** + * + * + * Parent Class: ShaderUniform + */ +f.uniformFloatBuffer = "field_148098_f" +/** + * + * + * Parent Class: ShaderUniform + */ +f.uniformType = "field_148100_d" +/** + * + * + * Parent Class: ShaderUniform + */ +f.uniformIntBuffer = "field_148101_e" +/** + * + * + * Parent Class: ShaderUniform + */ +f.uniformLocation = "field_148102_b" +/** + * + * + * Parent Class: ShaderUniform + */ +f.uniformCount = "field_148103_c" +f.dirty = {} +/** + * + * + * Parent Class: ShaderUniform + */ +f.dirty.ShaderUniform = "field_148105_h" +/** + * Whether this MapDataBase needs saving to disk. + * + * Parent Class: WorldSavedData + */ +f.dirty.WorldSavedData = "field_76189_a" + +/** + * + * + * Parent Class: ShaderUniform + */ +f.shaderManager = "field_148106_i" +/** + * The height of a slot. + * + * Parent Class: GuiSlot + */ +f.slotHeight = "field_148149_f" +/** + * + * + * Parent Class: GuiSlot + */ +f.mouseX = "field_148150_g" +/** + * + * + * Parent Class: GuiSlot + */ +f.right = "field_148151_d" +/** + * + * + * Parent Class: GuiSlot + */ +f.left = "field_148152_e" +/** + * The top of the slot container. Affects the overlays and scrolling. + * + * Parent Class: GuiSlot + */ +f.top = "field_148153_b" +/** + * The bottom of the slot container. Affects the overlays and scrolling. + * + * Parent Class: GuiSlot + */ +f.bottom = "field_148154_c" +/** + * The buttonID of the button used to scroll down + * + * Parent Class: GuiSlot + */ +f.scrollDownButtonID = "field_148156_n" +/** + * Where the mouse was in the window when you first clicked to scroll + * + * Parent Class: GuiSlot + */ +f.initialClickY = "field_148157_o" +/** + * The buttonID of the button used to scroll up + * + * Parent Class: GuiSlot + */ +f.scrollUpButtonID = "field_148159_m" +/** + * + * + * Parent Class: GuiSlot + */ +f.headerPadding = "field_148160_j" +/** + * + * + * Parent Class: GuiSlot + */ +f.mouseY = "field_148162_h" +/** + * + * + * Parent Class: GuiSlot + */ +f.hasListHeader = "field_148165_u" +/** + * Set to true if a selected element in this gui will show an outline box + * + * Parent Class: GuiSlot + */ +f.showSelectionBox = "field_148166_t" +/** + * The time when this button was last clicked. + * + * Parent Class: GuiSlot + */ +f.lastClicked = "field_148167_s" +/** + * The element in the list that was selected + * + * Parent Class: GuiSlot + */ +f.selectedElement = "field_148168_r" +/** + * How far down this slot has been scrolled + * + * Parent Class: GuiSlot + */ +f.amountScrolled = "field_148169_q" +/** + * What to multiply the amount you moved your mouse by (used for slowing down scrolling when over the items and not on the scroll bar) + * + * Parent Class: GuiSlot + */ +f.scrollMultiplier = "field_148170_p" +/** + * A list containing the many different locale language codes. + * + * Parent Class: GuiLanguage$List + */ +f.langCodeList = "field_148176_l" +/** + * + * + * Parent Class: GuiKeyBindingList + */ +f.maxListLabelWidth = "field_148188_n" +/** + * + * + * Parent Class: GuiKeyBindingList + */ +f.listEntries = "field_148190_m" +/** + * + * + * Parent Class: ServerSelectionList + */ +f.lanScanEntry = "field_148196_n" +/** + * + * + * Parent Class: ServerSelectionList + */ +f.selectedSlotIndex = "field_148197_o" +/** + * + * + * Parent Class: ServerSelectionList + */ +f.serverListInternet = "field_148198_l" +/** + * + * + * Parent Class: ServerSelectionList + */ +f.serverListLan = "field_148199_m" +/** + * + * + * Parent Class: GuiStats$Stats + */ +f.statSorter = "field_148216_n" +/** + * + * + * Parent Class: GuiStats$Stats + */ +f.statsHolder = "field_148219_m" +f.location = {} +/** + * + * + * Parent Class: MapItemRenderer$Instance + */ +f.location.MapItemRenderer$Instance = "field_148240_d" +/** + * + * + * Parent Class: SoundPoolEntry + */ +f.location.SoundPoolEntry = "field_148656_a" + +/** + * + * + * Parent Class: MapItemRenderer$Instance + */ +f.mapTextureData = "field_148241_e" +/** + * + * + * Parent Class: MapItemRenderer$Instance + */ +f.mapData = "field_148242_b" +/** + * + * + * Parent Class: MapItemRenderer$Instance + */ +f.mapTexture = "field_148243_c" +f.textureManager = {} +/** + * + * + * Parent Class: MapItemRenderer + */ +f.textureManager.MapItemRenderer = "field_148251_b" +/** + * + * + * Parent Class: SkinManager + */ +f.textureManager.SkinManager = "field_152795_c" +/** + * + * + * Parent Class: RenderItem + */ +f.textureManager.RenderItem = "field_175057_n" + +/** + * + * + * Parent Class: MapItemRenderer + */ +f.loadedMaps = "field_148252_c" +/** + * + * + * Parent Class: MapItemRenderer + */ +f.mapIcons = "field_148253_a" +f.playerID = {} +/** + * + * + * Parent Class: Session + */ +f.playerID.Session = "field_148257_b" +/** + * + * + * Parent Class: S0APacketUseBed + */ +f.playerID.S0APacketUseBed = "field_149097_a" + +/** + * + * + * Parent Class: Session + */ +f.token = "field_148258_c" +/** + * + * + * Parent Class: GameSettings$Options + */ +f.valueStep = "field_148270_M" +/** + * + * + * Parent Class: GameSettings$Options + */ +f.valueMin = "field_148271_N" +/** + * + * + * Parent Class: GameSettings$Options + */ +f.valueMax = "field_148272_O" +/** + * + * + * Parent Class: GuiKeyBindingList$KeyEntry + */ +f.btnChangeKeyBinding = "field_148280_d" +/** + * + * + * Parent Class: GuiKeyBindingList$KeyEntry + */ +f.btnReset = "field_148281_e" +/** + * The keybinding specified for this KeyEntry + * + * Parent Class: GuiKeyBindingList$KeyEntry + */ +f.keybinding = "field_148282_b" +/** + * The localized key description for this KeyEntry + * + * Parent Class: GuiKeyBindingList$KeyEntry + */ +f.keyDesc = "field_148283_c" +/** + * + * + * Parent Class: GuiKeyBindingList$CategoryEntry + */ +f.labelText = "field_148285_b" +/** + * + * + * Parent Class: GuiKeyBindingList$CategoryEntry + */ +f.labelWidth = "field_148286_c" +/** + * + * + * Parent Class: ResourcePackListEntry + */ +f.resourcePacksGUI = "field_148315_b" +/** + * + * + * Parent Class: ResourcePackListEntry + */ +f.RESOURCE_PACKS_TEXTURE = "field_148316_c" +/** + * + * + * Parent Class: ResourcePackListEntryDefault + */ +f.resourcePackIcon = "field_148321_e" +/** + * the list of items in this container + * + * Parent Class: GuiContainerCreative$ContainerCreative + */ +f.itemList = "field_148330_a" +f.slot = {} +/** + * + * + * Parent Class: GuiContainerCreative$CreativeSlot + */ +f.slot.GuiContainerCreative$CreativeSlot = "field_148332_b" +/** + * + * + * Parent Class: S2FPacketSetSlot + */ +f.slot.S2FPacketSetSlot = "field_149177_b" + +/** + * + * + * Parent Class: EnchantmentNameParts + */ +f.namePartsArray = "field_148337_c" +/** + * + * + * Parent Class: ResourcePackRepository + */ +f.resourcePackInstance = "field_148532_f" +/** + * + * + * Parent Class: ResourcePackRepository + */ +f.dirServerResourcepacks = "field_148534_e" +/** + * + * + * Parent Class: TextureMetadataSection + */ +f.listMipmaps = "field_148536_c" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +f.playerStatFiles = "field_148547_k" +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +f.streaming = "field_148564_f" +f.weight = {} +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +f.weight.SoundList$SoundEntry = "field_148565_d" +/** + * + * + * Parent Class: SoundEventAccessor + */ +f.weight.SoundEventAccessor = "field_148738_b" +/** + * + * + * Parent Class: ModelBlockDefinition$Variant + */ +f.weight.ModelBlockDefinition$Variant = "field_178434_d" +/** + * + * + * Parent Class: Enchantment + */ +f.weight.Enchantment = "field_77333_a" + +f.type = {} +/** + * + * + * Parent Class: SoundList$SoundEntry + */ +f.type.SoundList$SoundEntry = "field_148566_e" +/** + * + * + * Parent Class: ISound$AttenuationType + */ +f.type.ISound$AttenuationType = "field_148589_c" +/** + * + * + * Parent Class: S0BPacketAnimation + */ +f.type.S0BPacketAnimation = "field_148980_b" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +f.type.S0EPacketSpawnObject = "field_149019_j" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +f.type.S0FPacketSpawnMob = "field_149040_b" +/** + * + * + * Parent Class: S2CPacketSpawnGlobalEntity + */ +f.type.S2CPacketSpawnGlobalEntity = "field_149056_e" +/** + * + * + * Parent Class: BlockFlower + */ +f.type.BlockFlower = "field_176496_a" +/** + * + * + * Parent Class: VertexFormatElement + */ +f.type.VertexFormatElement = "field_177379_b" +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +f.type.ChunkCompileTaskGenerator = "field_178549_d" +/** + * + * + * Parent Class: S45PacketTitle + */ +f.type.S45PacketTitle = "field_179812_a" +/** + * + * + * Parent Class: S3BPacketScoreboardObjective + */ +f.type.S3BPacketScoreboardObjective = "field_179818_c" +/** + * + * + * Parent Class: S02PacketChat + */ +f.type.S02PacketChat = "field_179842_b" +/** + * + * + * Parent Class: GameRules$Value + */ +f.type.GameRules$Value = "field_180256_e" +/** + * + * + * Parent Class: StatBase + */ +f.type.StatBase = "field_75976_b" +/** + * The EnumEnchantmentType given to this Enchantment. + * + * Parent Class: Enchantment + */ +f.type.Enchantment = "field_77351_y" + +/** + * if true it will override all the sounds from the resourcepacks loaded before + * + * Parent Class: SoundList + */ +f.replaceExisting = "field_148575_b" +f.category = {} +/** + * + * + * Parent Class: SoundList + */ +f.category.SoundList = "field_148576_c" +/** + * + * + * Parent Class: SoundEventAccessorComposite + */ +f.category.SoundEventAccessorComposite = "field_148732_d" + +/** + * + * + * Parent Class: SoundList + */ +f.soundList = "field_148577_a" +/** + * Set to true when the SoundManager has been initialised. + * + * Parent Class: SoundManager + */ +f.loaded = "field_148617_f" +f.playTime = {} +/** + * A counter for how long the sound manager has been running + * + * Parent Class: SoundManager + */ +f.playTime.SoundManager = "field_148618_g" +/** + * + * + * Parent Class: EntityAIPlay + */ +f.playTime.EntityAIPlay = "field_75259_d" + +/** + * A reference to the sound system. + * + * Parent Class: SoundManager + */ +f.sndSystem = "field_148620_e" +/** + * A reference to the sound handler. + * + * Parent Class: SoundManager + */ +f.sndHandler = "field_148622_c" +/** + * The marker used for logging + * + * Parent Class: SoundManager + */ +f.LOG_MARKER = "field_148623_a" +/** + * "The future time in which to stop this sound. Type: HashMap<String + * + * Parent Class: SoundManager + */ +f.playingSoundsStopTime = "field_148624_n" +/** + * "A subset of playingSounds + * + * Parent Class: SoundManager + */ +f.tickableSounds = "field_148625_l" +/** + * "Contains sounds to play in n ticks. Type: HashMap<ISound + * + * Parent Class: SoundManager + */ +f.delayedSounds = "field_148626_m" +/** + * "A HashMap<String + * + * Parent Class: SoundManager + */ +f.playingSoundPoolEntries = "field_148627_j" +/** + * "Contains sounds mapped by category. Type: Multimap<SoundCategory + * + * Parent Class: SoundManager + */ +f.categorySounds = "field_148628_k" +/** + * "Identifiers of all currently playing sounds. Type: HashBiMap<String + * + * Parent Class: SoundManager + */ +f.playingSounds = "field_148629_h" +/** + * "Inverse map of currently playing sounds + * + * Parent Class: SoundManager + */ +f.invPlayingSounds = "field_148630_i" +/** + * + * + * Parent Class: MusicTicker$MusicType + */ +f.maxDelay = "field_148643_j" +/** + * + * + * Parent Class: MusicTicker$MusicType + */ +f.musicLocation = "field_148645_h" +/** + * + * + * Parent Class: MusicTicker$MusicType + */ +f.minDelay = "field_148646_i" +/** + * + * + * Parent Class: SoundPoolEntry + */ +f.streamingSound = "field_148654_b" +/** + * + * + * Parent Class: SoundEventAccessorComposite + */ +f.eventVolume = "field_148731_f" +/** + * + * + * Parent Class: SoundEventAccessorComposite + */ +f.eventPitch = "field_148733_e" +f.rnd = {} +/** + * + * + * Parent Class: SoundEventAccessorComposite + */ +f.rnd.SoundEventAccessorComposite = "field_148734_b" +/** + * + * + * Parent Class: RenderEnderman + */ +f.rnd.RenderEnderman = "field_77077_b" + +/** + * + * + * Parent Class: SoundEventAccessorComposite + */ +f.soundLocation = "field_148735_c" +/** + * A composite (List) of ISoundEventAccessors + * + * Parent Class: SoundEventAccessorComposite + */ +f.soundPool = "field_148736_a" +/** + * + * + * Parent Class: SoundEventAccessor + */ +f.entry = "field_148739_a" +/** + * + * + * Parent Class: ObjectIntIdentityMap + */ +f.objectList = "field_148748_b" +/** + * + * + * Parent Class: ObjectIntIdentityMap + */ +f.identityMap = "field_148749_a" +/** + * A BiMap of objects (key) to their names (value). + * + * Parent Class: RegistryNamespaced + */ +f.inverseObjectRegistry = "field_148758_b" +/** + * The backing store that maps Integers to objects. + * + * Parent Class: RegistryNamespaced + */ +f.underlyingIntegerMap = "field_148759_a" +/** + * The key of the default value. + * + * Parent Class: RegistryNamespacedDefaultedByKey + */ +f.defaultValueKey = "field_148760_d" +/** + * Contains all registered sound + * + * Parent Class: SoundRegistry + */ +f.soundRegistry = "field_148764_a" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.framebufferSupported = "field_148823_f" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.shadersSupported = "field_148824_g" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_STATIC_DRAW = "field_148826_e" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.openGL21 = "field_148827_a" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.openGL14 = "field_148828_i" +/** + * + * + * Parent Class: S25PacketBlockBreakAnim + */ +f.breakerId = "field_148852_a" +f.metadata = {} +/** + * Used only for vanilla tile entities + * + * Parent Class: S35PacketUpdateTileEntity + */ +f.metadata.S35PacketUpdateTileEntity = "field_148859_d" +/** + * + * + * Parent Class: BlockSandStone$EnumType + */ +f.metadata.BlockSandStone$EnumType = "field_176680_e" +/** + * + * + * Parent Class: BlockDirt$DirtType + */ +f.metadata.BlockDirt$DirtType = "field_176931_e" + +/** + * + * + * Parent Class: S35PacketUpdateTileEntity + */ +f.nbt = "field_148860_e" +f.block = {} +/** + * + * + * Parent Class: S24PacketBlockAction + */ +f.block.S24PacketBlockAction = "field_148871_f" +/** + * + * + * Parent Class: WorldGenSand + */ +f.block.WorldGenSand = "field_150517_a" +/** + * + * + * Parent Class: WorldGenLiquids + */ +f.block.WorldGenLiquids = "field_150521_a" +/** + * + * + * Parent Class: WorldGenIcePath + */ +f.block.WorldGenIcePath = "field_150555_a" +/** + * + * + * Parent Class: WorldGenLakes + */ +f.block.WorldGenLakes = "field_150556_a" +/** + * + * + * Parent Class: ItemReed + */ +f.block.ItemReed = "field_150935_a" +/** + * + * + * Parent Class: ItemBlock + */ +f.block.ItemBlock = "field_150939_a" +/** + * + * + * Parent Class: NextTickListEntry + */ +f.block.NextTickListEntry = "field_151352_g" +/** + * + * + * Parent Class: BlockState$StateImplementation + */ +f.block.BlockState$StateImplementation = "field_177239_a" +/** + * + * + * Parent Class: BlockState + */ +f.block.BlockState = "field_177627_c" +/** + * + * + * Parent Class: BlockHelper + */ +f.block.BlockHelper = "field_177644_a" +/** + * + * + * Parent Class: ItemDoor + */ +f.block.ItemDoor = "field_179236_a" +/** + * + * + * Parent Class: BlockRailBase$Rail + */ +f.block.BlockRailBase$Rail = "field_180365_d" + +/** + * + * + * Parent Class: S24PacketBlockAction + */ +f.instrument = "field_148872_d" +f.blockState = {} +/** + * + * + * Parent Class: S23PacketBlockChange + */ +f.blockState.S23PacketBlockChange = "field_148883_d" +/** + * + * + * Parent Class: Block + */ +f.blockState.Block = "field_176227_L" +/** + * + * + * Parent Class: CommandClone$StaticCloneData + */ +f.blockState.CommandClone$StaticCloneData = "field_179535_b" +/** + * + * + * Parent Class: S22PacketMultiBlockChange$BlockUpdateData + */ +f.blockState.S22PacketMultiBlockChange$BlockUpdateData = "field_180092_c" + +f.actionNumber = {} +/** + * + * + * Parent Class: S32PacketConfirmTransaction + */ +f.actionNumber.S32PacketConfirmTransaction = "field_148892_b" +/** + * "A unique number for the action + * + * Parent Class: C0EPacketClickWindow + */ +f.actionNumber.C0EPacketClickWindow = "field_149550_d" + +f.windowId = {} +/** + * + * + * Parent Class: S32PacketConfirmTransaction + */ +f.windowId.S32PacketConfirmTransaction = "field_148894_a" +/** + * + * + * Parent Class: S2EPacketCloseWindow + */ +f.windowId.S2EPacketCloseWindow = "field_148896_a" +/** + * + * + * Parent Class: S2DPacketOpenWindow + */ +f.windowId.S2DPacketOpenWindow = "field_148909_a" +/** + * + * + * Parent Class: S30PacketWindowItems + */ +f.windowId.S30PacketWindowItems = "field_148914_a" +/** + * + * + * Parent Class: S2FPacketSetSlot + */ +f.windowId.S2FPacketSetSlot = "field_149179_a" +/** + * + * + * Parent Class: S31PacketWindowProperty + */ +f.windowId.S31PacketWindowProperty = "field_149186_a" +/** + * + * + * Parent Class: C0FPacketConfirmTransaction + */ +f.windowId.C0FPacketConfirmTransaction = "field_149536_a" +/** + * + * + * Parent Class: C11PacketEnchantItem + */ +f.windowId.C11PacketEnchantItem = "field_149541_a" +/** + * The id of the window which was clicked. 0 for player inventory. + * + * Parent Class: C0EPacketClickWindow + */ +f.windowId.C0EPacketClickWindow = "field_149554_a" +/** + * + * + * Parent Class: C0DPacketCloseWindow + */ +f.windowId.C0DPacketCloseWindow = "field_149556_a" +/** + * + * + * Parent Class: Container + */ +f.windowId.Container = "field_75152_c" + +/** + * + * + * Parent Class: S2DPacketOpenWindow + */ +f.slotCount = "field_148905_d" +/** + * + * + * Parent Class: S2DPacketOpenWindow + */ +f.inventoryType = "field_148907_b" +/** + * + * + * Parent Class: S2DPacketOpenWindow + */ +f.windowTitle = "field_148908_c" +/** + * + * + * Parent Class: S30PacketWindowItems + */ +f.itemStacks = "field_148913_b" +/** + * + * + * Parent Class: S22PacketMultiBlockChange + */ +f.chunkPosCoord = "field_148925_b" +f.yaw = {} +/** + * + * + * Parent Class: S08PacketPlayerPosLook + */ +f.yaw.S08PacketPlayerPosLook = "field_148936_d" +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +f.yaw.S0CPacketSpawnPlayer = "field_148951_f" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +f.yaw.S0EPacketSpawnObject = "field_149022_i" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +f.yaw.S0FPacketSpawnMob = "field_149048_i" +/** + * + * + * Parent Class: S14PacketEntity + */ +f.yaw.S14PacketEntity = "field_149071_e" +/** + * + * + * Parent Class: S19PacketEntityHeadLook + */ +f.yaw.S19PacketEntityHeadLook = "field_149383_b" +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +f.yaw.S18PacketEntityTeleport = "field_149455_e" +/** + * + * + * Parent Class: C03PacketPlayer + */ +f.yaw.C03PacketPlayer = "field_149476_e" +/** + * Tempting player's yaw + * + * Parent Class: EntityAITempt + */ +f.yaw.EntityAITempt = "field_75279_g" + +f.y = {} +/** + * + * + * Parent Class: S08PacketPlayerPosLook + */ +f.y.S08PacketPlayerPosLook = "field_148938_b" +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +f.y.S0CPacketSpawnPlayer = "field_148953_d" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +f.y.S0EPacketSpawnObject = "field_149017_c" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +f.y.S0FPacketSpawnMob = "field_149038_d" +/** + * + * + * Parent Class: S2CPacketSpawnGlobalEntity + */ +f.y.S2CPacketSpawnGlobalEntity = "field_149058_c" +/** + * + * + * Parent Class: C03PacketPlayer + */ +f.y.C03PacketPlayer = "field_149477_b" +/** + * Y coordinate + * + * Parent Class: Vec3i + */ +f.y.Vec3i = "field_177960_b" +/** + * Mutable Y Coordinate + * + * Parent Class: BlockPos$MutableBlockPos + */ +f.y.BlockPos$MutableBlockPos = "field_177998_c" +/** + * Rotation on the Y axis + * + * Parent Class: Rotations + */ +f.y.Rotations = "field_179417_b" +/** + * The Y coordinate + * + * Parent Class: Vector3d + */ +f.y.Vector3d = "field_181060_b" +/** + * + * + * Parent Class: PositionImpl + */ +f.y.PositionImpl = "field_82628_b" + +f.z = {} +/** + * + * + * Parent Class: S08PacketPlayerPosLook + */ +f.z.S08PacketPlayerPosLook = "field_148939_c" +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +f.z.S0CPacketSpawnPlayer = "field_148954_e" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +f.z.S0EPacketSpawnObject = "field_149014_d" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +f.z.S0FPacketSpawnMob = "field_149039_e" +/** + * + * + * Parent Class: S2CPacketSpawnGlobalEntity + */ +f.z.S2CPacketSpawnGlobalEntity = "field_149055_d" +/** + * + * + * Parent Class: C03PacketPlayer + */ +f.z.C03PacketPlayer = "field_149478_c" +/** + * Z coordinate + * + * Parent Class: Vec3i + */ +f.z.Vec3i = "field_177961_c" +/** + * Mutable Z Coordinate + * + * Parent Class: BlockPos$MutableBlockPos + */ +f.z.BlockPos$MutableBlockPos = "field_177996_d" +/** + * Rotation on the Z axis + * + * Parent Class: Rotations + */ +f.z.Rotations = "field_179418_c" +/** + * The Z coordinate + * + * Parent Class: Vector3d + */ +f.z.Vector3d = "field_181061_c" +/** + * + * + * Parent Class: ChunkLoader$AnvilConverterData + */ +f.z.ChunkLoader$AnvilConverterData = "field_76699_l" +/** + * + * + * Parent Class: PositionImpl + */ +f.z.PositionImpl = "field_82629_c" + +f.x = {} +/** + * + * + * Parent Class: S08PacketPlayerPosLook + */ +f.x.S08PacketPlayerPosLook = "field_148940_a" +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +f.x.S0CPacketSpawnPlayer = "field_148956_c" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +f.x.S0EPacketSpawnObject = "field_149016_b" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +f.x.S0FPacketSpawnMob = "field_149041_c" +/** + * + * + * Parent Class: S2CPacketSpawnGlobalEntity + */ +f.x.S2CPacketSpawnGlobalEntity = "field_149057_b" +/** + * + * + * Parent Class: C03PacketPlayer + */ +f.x.C03PacketPlayer = "field_149479_a" +/** + * X coordinate + * + * Parent Class: Vec3i + */ +f.x.Vec3i = "field_177962_a" +/** + * Mutable X Coordinate + * + * Parent Class: BlockPos$MutableBlockPos + */ +f.x.BlockPos$MutableBlockPos = "field_177997_b" +/** + * Rotation on the X axis + * + * Parent Class: Rotations + */ +f.x.Rotations = "field_179419_a" +/** + * The X coordinate + * + * Parent Class: Vector3d + */ +f.x.Vector3d = "field_181059_a" +/** + * + * + * Parent Class: ChunkLoader$AnvilConverterData + */ +f.x.ChunkLoader$AnvilConverterData = "field_76701_k" +/** + * + * + * Parent Class: PositionImpl + */ +f.x.PositionImpl = "field_82630_a" + +f.currentItem = {} +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +f.currentItem.S0CPacketSpawnPlayer = "field_148959_h" +/** + * The index of the currently held item (0-8). + * + * Parent Class: InventoryPlayer + */ +f.currentItem.InventoryPlayer = "field_70461_c" + +f.watcher = {} +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +f.watcher.S0CPacketSpawnPlayer = "field_148960_i" +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +f.watcher.S0FPacketSpawnMob = "field_149044_m" + +f.title = {} +/** + * + * + * Parent Class: S10PacketSpawnPainting + */ +f.title.S10PacketSpawnPainting = "field_148968_f" +/** + * The title of the GUI. + * + * Parent Class: GuiCustomizeSkin + */ +f.title.GuiCustomizeSkin = "field_175360_f" +/** + * Painting Title. + * + * Parent Class: EntityPainting$EnumArt + */ +f.title.EntityPainting$EnumArt = "field_75702_A" + +f.entityID = {} +/** + * + * + * Parent Class: S10PacketSpawnPainting + */ +f.entityID.S10PacketSpawnPainting = "field_148973_a" +/** + * + * + * Parent Class: S11PacketSpawnExperienceOrb + */ +f.entityID.S11PacketSpawnExperienceOrb = "field_148992_a" +/** + * + * + * Parent Class: S04PacketEntityEquipment + */ +f.entityID.S04PacketEntityEquipment = "field_149394_a" +/** + * + * + * Parent Class: S12PacketEntityVelocity + */ +f.entityID.S12PacketEntityVelocity = "field_149417_a" +/** + * + * + * Parent Class: C0BPacketEntityAction + */ +f.entityID.C0BPacketEntityAction = "field_149517_a" + +f.posZ = {} +/** + * + * + * Parent Class: S11PacketSpawnExperienceOrb + */ +f.posZ.S11PacketSpawnExperienceOrb = "field_148988_d" +/** + * + * + * Parent Class: S14PacketEntity + */ +f.posZ.S14PacketEntity = "field_149070_d" +/** + * + * + * Parent Class: S27PacketExplosion + */ +f.posZ.S27PacketExplosion = "field_149157_c" +/** + * + * + * Parent Class: S29PacketSoundEffect + */ +f.posZ.S29PacketSoundEffect = "field_149215_d" +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +f.posZ.S18PacketEntityTeleport = "field_149454_d" +/** + * Entity position Z + * + * Parent Class: Entity + */ +f.posZ.Entity = "field_70161_v" +/** + * + * + * Parent Class: EntityMoveHelper + */ +f.posZ.EntityMoveHelper = "field_75644_d" +/** + * + * + * Parent Class: EntityLookHelper + */ +f.posZ.EntityLookHelper = "field_75654_g" + +f.xpValue = {} +/** + * + * + * Parent Class: S11PacketSpawnExperienceOrb + */ +f.xpValue.S11PacketSpawnExperienceOrb = "field_148989_e" +/** + * This is how much XP this orb has. + * + * Parent Class: EntityXPOrb + */ +f.xpValue.EntityXPOrb = "field_70530_e" + +f.posX = {} +/** + * + * + * Parent Class: S11PacketSpawnExperienceOrb + */ +f.posX.S11PacketSpawnExperienceOrb = "field_148990_b" +/** + * + * + * Parent Class: S14PacketEntity + */ +f.posX.S14PacketEntity = "field_149072_b" +/** + * + * + * Parent Class: S27PacketExplosion + */ +f.posX.S27PacketExplosion = "field_149158_a" +/** + * + * + * Parent Class: S29PacketSoundEffect + */ +f.posX.S29PacketSoundEffect = "field_149217_b" +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +f.posX.S18PacketEntityTeleport = "field_149456_b" +/** + * Entity position X + * + * Parent Class: Entity + */ +f.posX.Entity = "field_70165_t" +/** + * + * + * Parent Class: EntityMoveHelper + */ +f.posX.EntityMoveHelper = "field_75646_b" +/** + * + * + * Parent Class: EntityLookHelper + */ +f.posX.EntityLookHelper = "field_75656_e" +/** + * Current X coordinate at which to draw the next character. + * + * Parent Class: FontRenderer + */ +f.posX.FontRenderer = "field_78295_j" + +f.posY = {} +/** + * + * + * Parent Class: S11PacketSpawnExperienceOrb + */ +f.posY.S11PacketSpawnExperienceOrb = "field_148991_c" +/** + * + * + * Parent Class: S14PacketEntity + */ +f.posY.S14PacketEntity = "field_149073_c" +/** + * + * + * Parent Class: S27PacketExplosion + */ +f.posY.S27PacketExplosion = "field_149156_b" +/** + * + * + * Parent Class: S29PacketSoundEffect + */ +f.posY.S29PacketSoundEffect = "field_149218_c" +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +f.posY.S18PacketEntityTeleport = "field_149457_c" +/** + * Entity position Y + * + * Parent Class: Entity + */ +f.posY.Entity = "field_70163_u" +/** + * + * + * Parent Class: EntityMoveHelper + */ +f.posY.EntityMoveHelper = "field_75647_c" +/** + * + * + * Parent Class: EntityLookHelper + */ +f.posY.EntityLookHelper = "field_75653_f" +/** + * Current Y coordinate at which to draw the next character. + * + * Parent Class: FontRenderer + */ +f.posY.FontRenderer = "field_78296_k" + +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +f.speedY = "field_149012_f" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +f.speedZ = "field_149013_g" +/** + * + * + * Parent Class: S0EPacketSpawnObject + */ +f.speedX = "field_149015_e" +f.velocityX = {} +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +f.velocityX.S0FPacketSpawnMob = "field_149036_f" +/** + * + * + * Parent Class: EntityBoat + */ +f.velocityX.EntityBoat = "field_70282_i" +/** + * + * + * Parent Class: EntityMinecart + */ +f.velocityX.EntityMinecart = "field_70508_aq" + +f.velocityY = {} +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +f.velocityY.S0FPacketSpawnMob = "field_149037_g" +/** + * + * + * Parent Class: EntityBoat + */ +f.velocityY.EntityBoat = "field_70280_j" +/** + * + * + * Parent Class: EntityMinecart + */ +f.velocityY.EntityMinecart = "field_70507_ar" + +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +f.headPitch = "field_149046_k" +f.velocityZ = {} +/** + * + * + * Parent Class: S0FPacketSpawnMob + */ +f.velocityZ.S0FPacketSpawnMob = "field_149047_h" +/** + * + * + * Parent Class: EntityBoat + */ +f.velocityZ.EntityBoat = "field_70278_an" +/** + * + * + * Parent Class: EntityMinecart + */ +f.velocityZ.EntityMinecart = "field_70506_as" + +f.effectId = {} +/** + * + * + * Parent Class: S1EPacketRemoveEntityEffect + */ +f.effectId.S1EPacketRemoveEntityEffect = "field_149078_b" +/** + * + * + * Parent Class: S1DPacketEntityEffect + */ +f.effectId.S1DPacketEntityEffect = "field_149432_b" +/** + * + * + * Parent Class: Enchantment + */ +f.effectId.Enchantment = "field_77352_x" + +f.worldType = {} +/** + * + * + * Parent Class: S07PacketRespawn + */ +f.worldType.S07PacketRespawn = "field_149085_d" +/** + * + * + * Parent Class: S01PacketJoinGame + */ +f.worldType.S01PacketJoinGame = "field_149201_g" +/** + * + * + * Parent Class: WorldType + */ +f.worldType.WorldType = "field_77133_f" + +f.difficulty = {} +/** + * + * + * Parent Class: S07PacketRespawn + */ +f.difficulty.S07PacketRespawn = "field_149086_b" +/** + * + * + * Parent Class: S01PacketJoinGame + */ +f.difficulty.S01PacketJoinGame = "field_149203_e" +/** + * + * + * Parent Class: WorldInfo + */ +f.difficulty.WorldInfo = "field_176158_z" +/** + * + * + * Parent Class: S41PacketServerDifficulty + */ +f.difficulty.S41PacketServerDifficulty = "field_179833_a" +/** + * + * + * Parent Class: GameSettings + */ +f.difficulty.GameSettings = "field_74318_M" + +f.gameType = {} +/** + * + * + * Parent Class: S07PacketRespawn + */ +f.gameType.S07PacketRespawn = "field_149087_c" +/** + * + * + * Parent Class: S01PacketJoinGame + */ +f.gameType.S01PacketJoinGame = "field_149205_c" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +f.gameType.NetworkPlayerInfo = "field_178866_b" +/** + * + * + * Parent Class: DedicatedServer + */ +f.gameType.DedicatedServer = "field_71337_q" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +f.gameType.ServerConfigurationManager = "field_72410_m" +/** + * + * + * Parent Class: ItemInWorldManager + */ +f.gameType.ItemInWorldManager = "field_73091_c" + +/** + * + * + * Parent Class: S07PacketRespawn + */ +f.dimensionID = "field_149088_a" +/** + * + * + * Parent Class: S13PacketDestroyEntities + */ +f.entityIDs = "field_149100_a" +f.walkSpeed = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +f.walkSpeed.S39PacketPlayerAbilities = "field_149114_f" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +f.walkSpeed.C13PacketPlayerAbilities = "field_149495_f" +/** + * + * + * Parent Class: PlayerCapabilities + */ +f.walkSpeed.PlayerCapabilities = "field_75097_g" + +f.creativeMode = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +f.creativeMode.S39PacketPlayerAbilities = "field_149115_d" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +f.creativeMode.C13PacketPlayerAbilities = "field_149496_d" + +f.flySpeed = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +f.flySpeed.S39PacketPlayerAbilities = "field_149116_e" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +f.flySpeed.C13PacketPlayerAbilities = "field_149497_e" +/** + * + * + * Parent Class: PlayerCapabilities + */ +f.flySpeed.PlayerCapabilities = "field_75096_f" + +f.flying = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +f.flying.S39PacketPlayerAbilities = "field_149117_b" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +f.flying.C13PacketPlayerAbilities = "field_149498_b" + +f.allowFlying = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +f.allowFlying.S39PacketPlayerAbilities = "field_149118_c" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +f.allowFlying.C13PacketPlayerAbilities = "field_149499_c" +/** + * whether or not to allow the player to fly when they double jump. + * + * Parent Class: PlayerCapabilities + */ +f.allowFlying.PlayerCapabilities = "field_75101_c" + +f.invulnerable = {} +/** + * + * + * Parent Class: S39PacketPlayerAbilities + */ +f.invulnerable.S39PacketPlayerAbilities = "field_149119_a" +/** + * + * + * Parent Class: C13PacketPlayerAbilities + */ +f.invulnerable.C13PacketPlayerAbilities = "field_149500_a" +/** + * + * + * Parent Class: Entity + */ +f.invulnerable.Entity = "field_83001_bt" + +f.state = {} +/** + * + * + * Parent Class: S2BPacketChangeGameState + */ +f.state.S2BPacketChangeGameState = "field_149140_b" +/** + * + * + * Parent Class: BlockWorldState + */ +f.state.BlockWorldState = "field_177514_c" +/** + * + * + * Parent Class: CompiledChunk + */ +f.state.CompiledChunk = "field_178497_g" +/** + * + * + * Parent Class: BlockRailBase$Rail + */ +f.state.BlockRailBase$Rail = "field_180366_e" + +/** + * + * + * Parent Class: S2BPacketChangeGameState + */ +f.MESSAGE_NAMES = "field_149142_a" +/** + * + * + * Parent Class: S27PacketExplosion + */ +f.strength = "field_149154_d" +f.affectedBlockPositions = {} +/** + * + * + * Parent Class: S27PacketExplosion + */ +f.affectedBlockPositions.S27PacketExplosion = "field_149155_e" +/** + * A list of ChunkPositions of blocks affected by this explosion + * + * Parent Class: Explosion + */ +f.affectedBlockPositions.Explosion = "field_77281_g" + +/** + * + * + * Parent Class: S19PacketEntityStatus + */ +f.logicOpcode = "field_149163_b" +f.data = {} +/** + * + * + * Parent Class: S3FPacketCustomPayload + */ +f.data.S3FPacketCustomPayload = "field_149171_b" +/** + * + * + * Parent Class: C17PacketCustomPayload + */ +f.data.C17PacketCustomPayload = "field_149561_c" +/** + * + * + * Parent Class: S21PacketChunkData$Extracted + */ +f.data.S21PacketChunkData$Extracted = "field_150282_a" +/** + * + * + * Parent Class: ExtendedBlockStorage + */ +f.data.ExtendedBlockStorage = "field_177488_d" +/** + * + * + * Parent Class: ChunkPrimer + */ +f.data.ChunkPrimer = "field_177860_a" +/** + * The integer value for the tag. + * + * Parent Class: NBTTagInt + */ +f.data.NBTTagInt = "field_74748_a" +/** + * The float value for the tag. + * + * Parent Class: NBTTagFloat + */ +f.data.NBTTagFloat = "field_74750_a" +/** + * The string value for the tag (cannot be empty). + * + * Parent Class: NBTTagString + */ +f.data.NBTTagString = "field_74751_a" +/** + * The short value for the tag. + * + * Parent Class: NBTTagShort + */ +f.data.NBTTagShort = "field_74752_a" +/** + * The long value for the tag. + * + * Parent Class: NBTTagLong + */ +f.data.NBTTagLong = "field_74753_a" +/** + * The byte array stored in the tag. + * + * Parent Class: NBTTagByteArray + */ +f.data.NBTTagByteArray = "field_74754_a" +/** + * The double value for the tag. + * + * Parent Class: NBTTagDouble + */ +f.data.NBTTagDouble = "field_74755_a" +/** + * The byte value for the tag. + * + * Parent Class: NBTTagByte + */ +f.data.NBTTagByte = "field_74756_a" +/** + * Byte array of data stored in this holder. Possibly a light map or some chunk data. Data is accessed in 4-bit pieces. + * + * Parent Class: NibbleArray + */ +f.data.NibbleArray = "field_76585_a" +/** + * + * + * Parent Class: NibbleArrayReader + */ +f.data.NibbleArrayReader = "field_76689_a" +/** + * + * + * Parent Class: ChunkLoader$AnvilConverterData + */ +f.data.ChunkLoader$AnvilConverterData = "field_76692_f" + +f.channel = {} +/** + * + * + * Parent Class: S3FPacketCustomPayload + */ +f.channel.S3FPacketCustomPayload = "field_149172_a" +/** + * + * + * Parent Class: C17PacketCustomPayload + */ +f.channel.C17PacketCustomPayload = "field_149562_a" +/** + * The active channel + * + * Parent Class: NetworkManager + */ +f.channel.NetworkManager = "field_150746_k" + +f.item = {} +/** + * + * + * Parent Class: S2FPacketSetSlot + */ +f.item.S2FPacketSetSlot = "field_149178_c" +/** + * + * + * Parent Class: ItemStack + */ +f.item.ItemStack = "field_151002_e" + +/** + * + * + * Parent Class: S31PacketWindowProperty + */ +f.varIndex = "field_149184_b" +/** + * + * + * Parent Class: S31PacketWindowProperty + */ +f.varValue = "field_149185_c" +/** + * + * + * Parent Class: S34PacketMaps + */ +f.mapId = "field_149191_a" +f.maxPlayers = {} +/** + * + * + * Parent Class: S01PacketJoinGame + */ +f.maxPlayers.S01PacketJoinGame = "field_149200_f" +/** + * + * + * Parent Class: ServerStatusResponse$PlayerCountData + */ +f.maxPlayers.ServerStatusResponse$PlayerCountData = "field_151336_a" +/** + * The maximum number of players that can be connected at a time. + * + * Parent Class: ServerConfigurationManager + */ +f.maxPlayers.ServerConfigurationManager = "field_72405_c" +/** + * The maximum number of players allowed on the server + * + * Parent Class: RConThreadQuery + */ +f.maxPlayers.RConThreadQuery = "field_72634_j" + +f.dimension = {} +/** + * + * + * Parent Class: S01PacketJoinGame + */ +f.dimension.S01PacketJoinGame = "field_149202_d" +/** + * "Which dimension the player is in (-1 = the Nether + * + * Parent Class: Entity + */ +f.dimension.Entity = "field_71093_bK" +/** + * + * + * Parent Class: WorldInfo + */ +f.dimension.WorldInfo = "field_76105_j" +/** + * + * + * Parent Class: MapData + */ +f.dimension.MapData = "field_76200_c" + +/** + * + * + * Parent Class: S01PacketJoinGame + */ +f.hardcoreMode = "field_149204_b" +/** + * + * + * Parent Class: S29PacketSoundEffect + */ +f.soundPitch = "field_149214_f" +/** + * + * + * Parent Class: S29PacketSoundEffect + */ +f.soundVolume = "field_149216_e" +f.soundName = {} +/** + * + * + * Parent Class: S29PacketSoundEffect + */ +f.soundName.S29PacketSoundEffect = "field_149219_a" +/** + * + * + * Parent Class: Block$SoundType + */ +f.soundName.Block$SoundType = "field_150501_a" + +f.yOffset = {} +/** + * + * + * Parent Class: S2APacketParticles + */ +f.yOffset.S2APacketParticles = "field_149230_f" +/** + * + * + * Parent Class: WorldRenderer + */ +f.yOffset.WorldRenderer = "field_179005_m" + +f.zOffset = {} +/** + * + * + * Parent Class: S2APacketParticles + */ +f.zOffset.S2APacketParticles = "field_149231_g" +/** + * + * + * Parent Class: WorldRenderer + */ +f.zOffset.WorldRenderer = "field_179002_n" + +f.zCoord = {} +/** + * + * + * Parent Class: S2APacketParticles + */ +f.zCoord.S2APacketParticles = "field_149232_d" +/** + * Z coordinate of Vec3D + * + * Parent Class: Vec3 + */ +f.zCoord.Vec3 = "field_72449_c" +/** + * The z coordinate of this point + * + * Parent Class: PathPoint + */ +f.zCoord.PathPoint = "field_75838_c" +/** + * + * + * Parent Class: NoiseGeneratorImproved + */ +f.zCoord.NoiseGeneratorImproved = "field_76314_c" + +f.xOffset = {} +/** + * + * + * Parent Class: S2APacketParticles + */ +f.xOffset.S2APacketParticles = "field_149233_e" +/** + * + * + * Parent Class: WorldRenderer + */ +f.xOffset.WorldRenderer = "field_179004_l" + +f.xCoord = {} +/** + * + * + * Parent Class: S2APacketParticles + */ +f.xCoord.S2APacketParticles = "field_149234_b" +/** + * X coordinate of Vec3D + * + * Parent Class: Vec3 + */ +f.xCoord.Vec3 = "field_72450_a" +/** + * The x coordinate of this point + * + * Parent Class: PathPoint + */ +f.xCoord.PathPoint = "field_75839_a" +/** + * + * + * Parent Class: NoiseGeneratorImproved + */ +f.xCoord.NoiseGeneratorImproved = "field_76315_a" + +f.yCoord = {} +/** + * + * + * Parent Class: S2APacketParticles + */ +f.yCoord.S2APacketParticles = "field_149235_c" +/** + * Y coordinate of Vec3D + * + * Parent Class: Vec3 + */ +f.yCoord.Vec3 = "field_72448_b" +/** + * The y coordinate of this point + * + * Parent Class: PathPoint + */ +f.yCoord.PathPoint = "field_75837_b" +/** + * + * + * Parent Class: NoiseGeneratorImproved + */ +f.yCoord.NoiseGeneratorImproved = "field_76313_b" + +/** + * + * + * Parent Class: S2APacketParticles + */ +f.particleSpeed = "field_149237_h" +/** + * + * + * Parent Class: S2APacketParticles + */ +f.particleCount = "field_149238_i" +/** + * If true the sound is played across the server + * + * Parent Class: S28PacketEffect + */ +f.serverWide = "field_149246_f" +/** + * can be a block/item id or other depending on the soundtype + * + * Parent Class: S28PacketEffect + */ +f.soundData = "field_149249_b" +/** + * + * + * Parent Class: S28PacketEffect + */ +f.soundType = "field_149251_a" +/** + * + * + * Parent Class: S26PacketMapChunkBulk + */ +f.zPositions = "field_149264_b" +/** + * + * + * Parent Class: S26PacketMapChunkBulk + */ +f.xPositions = "field_149266_a" +/** + * + * + * Parent Class: S26PacketMapChunkBulk + */ +f.isOverworld = "field_149267_h" +f.chunkZ = {} +/** + * + * + * Parent Class: S21PacketChunkData + */ +f.chunkZ.S21PacketChunkData = "field_149282_b" +/** + * + * + * Parent Class: ChunkCache + */ +f.chunkZ.ChunkCache = "field_72816_b" +/** + * + * + * Parent Class: RegionFile$ChunkBuffer + */ +f.chunkZ.RegionFile$ChunkBuffer = "field_76723_c" + +f.chunkX = {} +/** + * + * + * Parent Class: S21PacketChunkData + */ +f.chunkX.S21PacketChunkData = "field_149284_a" +/** + * + * + * Parent Class: ChunkCache + */ +f.chunkX.ChunkCache = "field_72818_a" +/** + * + * + * Parent Class: RegionFile$ChunkBuffer + */ +f.chunkX.RegionFile$ChunkBuffer = "field_76722_b" + +f.clientTime = {} +/** + * + * + * Parent Class: C01PacketPing + */ +f.clientTime.C01PacketPing = "field_149290_a" +/** + * + * + * Parent Class: S01PacketPong + */ +f.clientTime.S01PacketPong = "field_149293_a" + +/** + * + * + * Parent Class: S00PacketServerInfo + */ +f.response = "field_149296_b" +/** + * + * + * Parent Class: C01PacketEncryptionResponse + */ +f.verifyTokenEncrypted = "field_149301_b" +/** + * + * + * Parent Class: C01PacketEncryptionResponse + */ +f.secretKeyEncrypted = "field_149302_a" +f.profile = {} +/** + * + * + * Parent Class: C00PacketLoginStart + */ +f.profile.C00PacketLoginStart = "field_149305_a" +/** + * + * + * Parent Class: S02PacketLoginSuccess + */ +f.profile.S02PacketLoginSuccess = "field_149602_a" +/** + * + * + * Parent Class: NetHandlerPlayClient + */ +f.profile.NetHandlerPlayClient = "field_175107_d" +/** + * + * + * Parent Class: PlayerMenuObject + */ +f.profile.PlayerMenuObject = "field_178668_a" +/** + * + * + * Parent Class: S38PacketPlayerListItem$AddPlayerData + */ +f.profile.S38PacketPlayerListItem$AddPlayerData = "field_179964_d" + +f.action = {} +/** + * + * + * Parent Class: S3EPacketTeams + */ +f.action.S3EPacketTeams = "field_149314_f" +/** + * + * + * Parent Class: S3CPacketUpdateScore + */ +f.action.S3CPacketUpdateScore = "field_149326_d" +/** + * + * + * Parent Class: C0BPacketEntityAction + */ +f.action.C0BPacketEntityAction = "field_149515_b" +/** + * + * + * Parent Class: C02PacketUseEntity + */ +f.action.C02PacketUseEntity = "field_149566_b" +/** + * + * + * Parent Class: ClickEvent + */ +f.action.ClickEvent = "field_150671_a" +/** + * + * + * Parent Class: HoverEvent + */ +f.action.HoverEvent = "field_150704_a" +/** + * + * + * Parent Class: S38PacketPlayerListItem + */ +f.action.S38PacketPlayerListItem = "field_179770_a" +/** + * + * + * Parent Class: S44PacketWorldBorder + */ +f.action.S44PacketWorldBorder = "field_179795_a" +/** + * The EntityAIBase object. + * + * Parent Class: EntityAITasks$EntityAITaskEntry + */ +f.action.EntityAITasks$EntityAITaskEntry = "field_75733_a" + +/** + * + * + * Parent Class: S3EPacketTeams + */ +f.friendlyFlags = "field_149315_g" +f.suffix = {} +/** + * + * + * Parent Class: S3EPacketTeams + */ +f.suffix.S3EPacketTeams = "field_149316_d" +/** + * + * + * Parent Class: StateMap + */ +f.suffix.StateMap = "field_178141_c" +/** + * + * + * Parent Class: StateMap$Builder + */ +f.suffix.StateMap$Builder = "field_178443_b" + +f.players = {} +/** + * + * + * Parent Class: S3EPacketTeams + */ +f.players.S3EPacketTeams = "field_149317_e" +/** + * + * + * Parent Class: ServerStatusResponse$PlayerCountData + */ +f.players.ServerStatusResponse$PlayerCountData = "field_151335_c" +/** + * + * + * Parent Class: S38PacketPlayerListItem + */ +f.players.S38PacketPlayerListItem = "field_179769_b" +/** + * players in the current instance + * + * Parent Class: PlayerManager + */ +f.players.PlayerManager = "field_72699_b" + +f.displayName = {} +/** + * + * + * Parent Class: S3EPacketTeams + */ +f.displayName.S3EPacketTeams = "field_149318_b" +/** + * + * + * Parent Class: LocalBlockIntercommunication + */ +f.displayName.LocalBlockIntercommunication = "field_175125_b" +/** + * + * + * Parent Class: VertexFormatElement$EnumUsage + */ +f.displayName.VertexFormatElement$EnumUsage = "field_177392_h" +/** + * + * + * Parent Class: VertexFormatElement$EnumType + */ +f.displayName.VertexFormatElement$EnumType = "field_177408_i" +/** + * "When this is non-null + * + * Parent Class: NetworkPlayerInfo + */ +f.displayName.NetworkPlayerInfo = "field_178872_h" +/** + * + * + * Parent Class: S38PacketPlayerListItem$AddPlayerData + */ +f.displayName.S38PacketPlayerListItem$AddPlayerData = "field_179965_e" +/** + * the displayed name of this save file + * + * Parent Class: SaveFormatComparator + */ +f.displayName.SaveFormatComparator = "field_75795_b" +/** + * + * + * Parent Class: ScoreObjective + */ +f.displayName.ScoreObjective = "field_96683_d" + +/** + * + * + * Parent Class: S3EPacketTeams + */ +f.prefix = "field_149319_c" +f.objective = {} +/** + * + * + * Parent Class: S3CPacketUpdateScore + */ +f.objective.S3CPacketUpdateScore = "field_149327_b" +/** + * + * + * Parent Class: ChatComponentScore + */ +f.objective.ChatComponentScore = "field_180000_c" + +f.value = {} +/** + * + * + * Parent Class: S3CPacketUpdateScore + */ +f.value.S3CPacketUpdateScore = "field_149328_c" +/** + * + * + * Parent Class: ClickEvent + */ +f.value.ClickEvent = "field_150670_b" +/** + * + * + * Parent Class: HoverEvent + */ +f.value.HoverEvent = "field_150703_b" +/** + * + * + * Parent Class: UserListEntry + */ +f.value.UserListEntry = "field_152642_a" +/** + * + * + * Parent Class: LazyLoadBase + */ +f.value.LazyLoadBase = "field_179283_a" +/** + * The value displayed instead of the real score (may be null) + * + * Parent Class: ChatComponentScore + */ +f.value.ChatComponentScore = "field_179998_d" +/** + * the value held by the hash at the specified key + * + * Parent Class: LongHashMap$Entry + */ +f.value.LongHashMap$Entry = "field_76148_b" +/** + * + * + * Parent Class: CrashReportCategory$Entry + */ +f.value.CrashReportCategory$Entry = "field_85091_b" + +f.foodLevel = {} +/** + * + * + * Parent Class: S06PacketUpdateHealth + */ +f.foodLevel.S06PacketUpdateHealth = "field_149334_b" +/** + * The player's food level. + * + * Parent Class: FoodStats + */ +f.foodLevel.FoodStats = "field_75127_a" + +/** + * + * + * Parent Class: S06PacketUpdateHealth + */ +f.saturationLevel = "field_149335_c" +f.health = {} +/** + * + * + * Parent Class: S06PacketUpdateHealth + */ +f.health.S06PacketUpdateHealth = "field_149336_a" +/** + * + * + * Parent Class: EntityEnderCrystal + */ +f.health.EntityEnderCrystal = "field_70260_b" +/** + * "The health of this EntityItem. (For example + * + * Parent Class: EntityItem + */ +f.health.EntityItem = "field_70291_e" +/** + * + * + * Parent Class: CombatEntry + */ +f.health.CombatEntry = "field_94565_d" +/** + * + * + * Parent Class: IScoreObjectiveCriteria + */ +f.health.IScoreObjectiveCriteria = "field_96638_f" + +/** + * + * + * Parent Class: S3BPacketScoreboardObjective + */ +f.objectiveValue = "field_149341_b" +/** + * + * + * Parent Class: S3BPacketScoreboardObjective + */ +f.objectiveName = "field_149343_a" +f.lines = {} +/** + * + * + * Parent Class: S33PacketUpdateSign + */ +f.lines.S33PacketUpdateSign = "field_149349_d" +/** + * + * + * Parent Class: C12PacketUpdateSign + */ +f.lines.C12PacketUpdateSign = "field_149590_d" + +/** + * + * + * Parent Class: S0DPacketCollectItem + */ +f.collectedItemEntityId = "field_149357_a" +f.worldTime = {} +/** + * + * + * Parent Class: S03PacketTimeUpdate + */ +f.worldTime.S03PacketTimeUpdate = "field_149368_b" +/** + * "The current world time in ticks + * + * Parent Class: WorldInfo + */ +f.worldTime.WorldInfo = "field_76094_f" + +/** + * + * + * Parent Class: S03PacketTimeUpdate + */ +f.totalWorldTime = "field_149369_a" +/** + * + * + * Parent Class: S3DPacketDisplayScoreboard + */ +f.scoreName = "field_149373_b" +f.position = {} +/** + * + * + * Parent Class: S3DPacketDisplayScoreboard + */ +f.position.S3DPacketDisplayScoreboard = "field_149374_a" +/** + * + * + * Parent Class: BlockWorkbench$InterfaceCraftingTable + */ +f.position.BlockWorkbench$InterfaceCraftingTable = "field_175127_b" +/** + * + * + * Parent Class: BlockAnvil$Anvil + */ +f.position.BlockAnvil$Anvil = "field_175129_b" +/** + * + * + * Parent Class: RegionRenderCache + */ +f.position.RegionRenderCache = "field_175633_g" +/** + * + * + * Parent Class: ContainerEnchantment + */ +f.position.ContainerEnchantment = "field_178150_j" +/** + * + * + * Parent Class: RenderChunk + */ +f.position.RenderChunk = "field_178586_f" +/** + * + * + * Parent Class: ActiveRenderInfo + */ +f.position.ActiveRenderInfo = "field_178811_e" +/** + * + * + * Parent Class: C07PacketPlayerDigging + */ +f.position.C07PacketPlayerDigging = "field_179717_a" +/** + * + * + * Parent Class: C08PacketPlayerBlockPlacement + */ +f.position.C08PacketPlayerBlockPlacement = "field_179725_b" +/** + * + * + * Parent Class: S25PacketBlockBreakAnim + */ +f.position.S25PacketBlockBreakAnim = "field_179822_b" +/** + * + * + * Parent Class: S10PacketSpawnPainting + */ +f.position.S10PacketSpawnPainting = "field_179838_b" +/** + * + * + * Parent Class: DestroyBlockProgress + */ +f.position.DestroyBlockProgress = "field_180247_b" +/** + * + * + * Parent Class: NextTickListEntry + */ +f.position.NextTickListEntry = "field_180282_a" +/** + * + * + * Parent Class: BlockEventData + */ +f.position.BlockEventData = "field_180329_a" + +/** + * + * + * Parent Class: S09PacketHeldItemChange + */ +f.heldItemHotbarIndex = "field_149387_a" +/** + * + * + * Parent Class: S04PacketEntityEquipment + */ +f.equipmentSlot = "field_149392_b" +f.itemStack = {} +/** + * + * + * Parent Class: S04PacketEntityEquipment + */ +f.itemStack.S04PacketEntityEquipment = "field_149393_c" +/** + * + * + * Parent Class: InventoryPlayer + */ +f.itemStack.InventoryPlayer = "field_70457_g" + +/** + * + * + * Parent Class: S1FPacketSetExperience + */ +f.totalExperience = "field_149399_b" +/** + * + * + * Parent Class: S1FPacketSetExperience + */ +f.level = "field_149400_c" +/** + * + * + * Parent Class: S1BPacketEntityAttach + */ +f.vehicleEntityId = "field_149407_c" +/** + * + * + * Parent Class: S1BPacketEntityAttach + */ +f.leash = "field_149408_a" +f.motionZ = {} +/** + * + * + * Parent Class: S12PacketEntityVelocity + */ +f.motionZ.S12PacketEntityVelocity = "field_149414_d" +/** + * Entity motion Z + * + * Parent Class: Entity + */ +f.motionZ.Entity = "field_70179_y" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.motionZ.EntityTrackerEntry = "field_73135_l" + +f.motionX = {} +/** + * + * + * Parent Class: S12PacketEntityVelocity + */ +f.motionX.S12PacketEntityVelocity = "field_149415_b" +/** + * Entity motion X + * + * Parent Class: Entity + */ +f.motionX.Entity = "field_70159_w" + +f.motionY = {} +/** + * + * + * Parent Class: S12PacketEntityVelocity + */ +f.motionY.S12PacketEntityVelocity = "field_149416_c" +/** + * Entity motion Y + * + * Parent Class: Entity + */ +f.motionY.Entity = "field_70181_x" + +f.duration = {} +/** + * + * + * Parent Class: S1DPacketEntityEffect + */ +f.duration.S1DPacketEntityEffect = "field_149431_d" +/** + * + * + * Parent Class: EntityRabbit$EnumMoveType + */ +f.duration.EntityRabbit$EnumMoveType = "field_180084_h" +/** + * The duration of the potion effect + * + * Parent Class: PotionEffect + */ +f.duration.PotionEffect = "field_76460_b" + +f.amplifier = {} +/** + * + * + * Parent Class: S1DPacketEntityEffect + */ +f.amplifier.S1DPacketEntityEffect = "field_149433_c" +/** + * The amplifier of the potion effect + * + * Parent Class: PotionEffect + */ +f.amplifier.PotionEffect = "field_76461_c" + +f.status = {} +/** + * + * + * Parent Class: C16PacketClientStatus + */ +f.status.C16PacketClientStatus = "field_149437_a" +/** + * "Status of the digging (started + * + * Parent Class: C07PacketPlayerDigging + */ +f.status.C07PacketPlayerDigging = "field_149508_e" +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +f.status.ChunkCompileTaskGenerator = "field_178548_g" +/** + * + * + * Parent Class: C19PacketResourcePackStatus + */ +f.status.C19PacketResourcePackStatus = "field_179719_b" + +f.key = {} +/** + * + * + * Parent Class: C00PacketKeepAlive + */ +f.key.C00PacketKeepAlive = "field_149461_a" +/** + * + * + * Parent Class: ChatComponentTranslation + */ +f.key.ChatComponentTranslation = "field_150276_d" +/** + * the key as a long (for playerInstances it is the x in the most significant 32 bits and then y) + * + * Parent Class: LongHashMap$Entry + */ +f.key.LongHashMap$Entry = "field_76150_a" +/** + * + * + * Parent Class: CrashReportCategory$Entry + */ +f.key.CrashReportCategory$Entry = "field_85092_a" + +f.onGround = {} +/** + * + * + * Parent Class: C03PacketPlayer + */ +f.onGround.C03PacketPlayer = "field_149474_g" +/** + * + * + * Parent Class: S18PacketEntityTeleport + */ +f.onGround.S18PacketEntityTeleport = "field_179698_g" +/** + * + * + * Parent Class: S14PacketEntity + */ +f.onGround.S14PacketEntity = "field_179743_g" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.onGround.EntityTrackerEntry = "field_180234_y" +/** + * + * + * Parent Class: Entity + */ +f.onGround.Entity = "field_70122_E" + +/** + * + * + * Parent Class: C03PacketPlayer + */ +f.moving = "field_149480_h" +/** + * + * + * Parent Class: C03PacketPlayer + */ +f.rotating = "field_149481_i" +/** + * + * + * Parent Class: C0BPacketEntityAction + */ +f.auxData = "field_149516_c" +/** + * + * + * Parent Class: C15PacketClientSettings + */ +f.enableColors = "field_149526_d" +/** + * + * + * Parent Class: C15PacketClientSettings + */ +f.view = "field_149528_b" +f.chatVisibility = {} +/** + * + * + * Parent Class: C15PacketClientSettings + */ +f.chatVisibility.C15PacketClientSettings = "field_149529_c" +/** + * + * + * Parent Class: EntityPlayer$EnumChatVisibility + */ +f.chatVisibility.EntityPlayer$EnumChatVisibility = "field_151433_e" +/** + * + * + * Parent Class: EntityPlayerMP + */ +f.chatVisibility.EntityPlayerMP = "field_71143_cn" +/** + * + * + * Parent Class: GameSettings + */ +f.chatVisibility.GameSettings = "field_74343_n" + +/** + * + * + * Parent Class: C15PacketClientSettings + */ +f.lang = "field_149530_a" +/** + * + * + * Parent Class: C0FPacketConfirmTransaction + */ +f.uid = "field_149534_b" +/** + * + * + * Parent Class: C0FPacketConfirmTransaction + */ +f.accepted = "field_149535_c" +/** + * + * + * Parent Class: C11PacketEnchantItem + */ +f.button = "field_149540_b" +f.mode = {} +/** + * Inventory operation mode + * + * Parent Class: C0EPacketClickWindow + */ +f.mode.C0EPacketClickWindow = "field_149549_f" +/** + * + * + * Parent Class: GlStateManager$FogState + */ +f.mode.GlStateManager$FogState = "field_179047_b" +/** + * + * + * Parent Class: GlStateManager$CullState + */ +f.mode.GlStateManager$CullState = "field_179053_b" +/** + * + * + * Parent Class: GlStateManager$ColorMaterialState + */ +f.mode.GlStateManager$ColorMaterialState = "field_179190_c" + +/** + * The item stack present in the slot + * + * Parent Class: C0EPacketClickWindow + */ +f.clickedItem = "field_149551_e" +f.slotId = {} +/** + * Id of the clicked slot + * + * Parent Class: C0EPacketClickWindow + */ +f.slotId.C0EPacketClickWindow = "field_149552_b" +/** + * + * + * Parent Class: C09PacketHeldItemChange + */ +f.slotId.C09PacketHeldItemChange = "field_149615_a" +/** + * + * + * Parent Class: C10PacketCreativeInventoryAction + */ +f.slotId.C10PacketCreativeInventoryAction = "field_149629_a" + +/** + * Button used + * + * Parent Class: C0EPacketClickWindow + */ +f.usedButton = "field_149553_c" +/** + * + * + * Parent Class: C08PacketPlayerBlockPlacement + */ +f.facingX = "field_149577_f" +/** + * + * + * Parent Class: C08PacketPlayerBlockPlacement + */ +f.facingY = "field_149578_g" +/** + * + * + * Parent Class: C08PacketPlayerBlockPlacement + */ +f.placedBlockDirection = "field_149579_d" +f.stack = {} +/** + * + * + * Parent Class: C08PacketPlayerBlockPlacement + */ +f.stack.C08PacketPlayerBlockPlacement = "field_149580_e" +/** + * + * + * Parent Class: C10PacketCreativeInventoryAction + */ +f.stack.C10PacketCreativeInventoryAction = "field_149628_b" + +/** + * + * + * Parent Class: C08PacketPlayerBlockPlacement + */ +f.facingZ = "field_149584_h" +/** + * + * + * Parent Class: C00Handshake + */ +f.requestedState = "field_149597_d" +/** + * + * + * Parent Class: C00Handshake + */ +f.ip = "field_149598_b" +/** + * + * + * Parent Class: C00Handshake + */ +f.port = "field_149599_c" +f.protocolVersion = {} +/** + * + * + * Parent Class: C00Handshake + */ +f.protocolVersion.C00Handshake = "field_149600_a" +/** + * + * + * Parent Class: ServerStatusResponse + */ +f.protocolVersion.ServerStatusResponse = "field_151325_c" + +/** + * + * + * Parent Class: S01PacketEncryptionRequest + */ +f.publicKey = "field_149610_b" +/** + * + * + * Parent Class: S01PacketEncryptionRequest + */ +f.hashedServerId = "field_149612_a" +/** + * + * + * Parent Class: C0CPacketInput + */ +f.sneaking = "field_149621_d" +/** + * "Positive for forward + * + * Parent Class: C0CPacketInput + */ +f.forwardSpeed = "field_149622_b" +/** + * + * + * Parent Class: C0CPacketInput + */ +f.jumping = "field_149623_c" +/** + * "Positive for left strafe + * + * Parent Class: C0CPacketInput + */ +f.strafeSpeed = "field_149624_a" +/** + * + * + * Parent Class: S3APacketTabComplete + */ +f.matches = "field_149632_a" +f.minZ = {} +/** + * + * + * Parent Class: Block + */ +f.minZ.Block = "field_149754_D" +/** + * + * + * Parent Class: AxisAlignedBB + */ +f.minZ.AxisAlignedBB = "field_72339_c" +/** + * The first z coordinate of a bounding box. + * + * Parent Class: StructureBoundingBox + */ +f.minZ.StructureBoundingBox = "field_78896_c" + +f.maxX = {} +/** + * + * + * Parent Class: Block + */ +f.maxX.Block = "field_149755_E" +/** + * + * + * Parent Class: MapData$MapInfo + */ +f.maxX.MapData$MapInfo = "field_176104_g" +/** + * + * + * Parent Class: AxisAlignedBB + */ +f.maxX.AxisAlignedBB = "field_72336_d" +/** + * The second x coordinate of a bounding box. + * + * Parent Class: StructureBoundingBox + */ +f.maxX.StructureBoundingBox = "field_78893_d" + +f.maxY = {} +/** + * + * + * Parent Class: Block + */ +f.maxY.Block = "field_149756_F" +/** + * + * + * Parent Class: MapData$MapInfo + */ +f.maxY.MapData$MapInfo = "field_176108_h" +/** + * + * + * Parent Class: AxisAlignedBB + */ +f.maxY.AxisAlignedBB = "field_72337_e" +/** + * The second y coordinate of a bounding box. + * + * Parent Class: StructureBoundingBox + */ +f.maxY.StructureBoundingBox = "field_78894_e" + +f.maxZ = {} +/** + * + * + * Parent Class: Block + */ +f.maxZ.Block = "field_149757_G" +/** + * + * + * Parent Class: AxisAlignedBB + */ +f.maxZ.AxisAlignedBB = "field_72334_f" +/** + * The second z coordinate of a bounding box. + * + * Parent Class: StructureBoundingBox + */ +f.maxZ.StructureBoundingBox = "field_78892_f" + +/** + * true if the Block contains a Tile Entity + * + * Parent Class: Block + */ +f.isBlockContainer = "field_149758_A" +f.minX = {} +/** + * + * + * Parent Class: Block + */ +f.minX.Block = "field_149759_B" +/** + * + * + * Parent Class: MapData$MapInfo + */ +f.minX.MapData$MapInfo = "field_176106_e" +/** + * + * + * Parent Class: AxisAlignedBB + */ +f.minX.AxisAlignedBB = "field_72340_a" +/** + * The first x coordinate of a bounding box. + * + * Parent Class: StructureBoundingBox + */ +f.minX.StructureBoundingBox = "field_78897_a" + +f.minY = {} +/** + * + * + * Parent Class: Block + */ +f.minY.Block = "field_149760_C" +/** + * + * + * Parent Class: MapData$MapInfo + */ +f.minY.MapData$MapInfo = "field_176103_f" +/** + * + * + * Parent Class: AxisAlignedBB + */ +f.minY.AxisAlignedBB = "field_72338_b" +/** + * The first y coordinate of a bounding box. + * + * Parent Class: StructureBoundingBox + */ +f.minY.StructureBoundingBox = "field_78895_b" + +/** + * Sound of stepping on the block + * + * Parent Class: Block + */ +f.stepSound = "field_149762_H" +/** + * + * + * Parent Class: Block + */ +f.blockParticleGravity = "field_149763_I" +/** + * + * + * Parent Class: Block + */ +f.blockMaterial = "field_149764_J" +/** + * Determines how much velocity is maintained while moving on top of this block + * + * Parent Class: Block + */ +f.slipperiness = "field_149765_K" +/** + * the wood sound type + * + * Parent Class: Block + */ +f.soundTypeWood = "field_149766_f" +/** + * the gravel sound type + * + * Parent Class: Block + */ +f.soundTypeGravel = "field_149767_g" +/** + * + * + * Parent Class: Block + */ +f.soundTypeStone = "field_149769_e" +/** + * + * + * Parent Class: Block + */ +f.blockRegistry = "field_149771_c" +/** + * + * + * Parent Class: Block + */ +f.displayOnCreativeTab = "field_149772_a" +/** + * + * + * Parent Class: Block + */ +f.soundTypeSnow = "field_149773_n" +/** + * + * + * Parent Class: Block + */ +f.soundTypeLadder = "field_149774_o" +/** + * + * + * Parent Class: Block + */ +f.soundTypeCloth = "field_149775_l" +/** + * + * + * Parent Class: Block + */ +f.soundTypeSand = "field_149776_m" +/** + * + * + * Parent Class: Block + */ +f.soundTypeMetal = "field_149777_j" +/** + * + * + * Parent Class: Block + */ +f.soundTypeGlass = "field_149778_k" +/** + * + * + * Parent Class: Block + */ +f.soundTypeGrass = "field_149779_h" +/** + * + * + * Parent Class: Block + */ +f.soundTypePiston = "field_149780_i" +/** + * Indicates how much this block can resist explosions + * + * Parent Class: Block + */ +f.blockResistance = "field_149781_w" +/** + * Indicates how many hits it takes to break a block. + * + * Parent Class: Block + */ +f.blockHardness = "field_149782_v" +/** + * Flag if block should use the brightest neighbor light value as its own + * + * Parent Class: Block + */ +f.useNeighborBrightness = "field_149783_u" +/** + * Amount of light emitted + * + * Parent Class: Block + */ +f.lightValue = "field_149784_t" +/** + * + * + * Parent Class: Block + */ +f.translucent = "field_149785_s" +/** + * How much light is subtracted for going through this block + * + * Parent Class: Block + */ +f.lightOpacity = "field_149786_r" +/** + * + * + * Parent Class: Block + */ +f.fullBlock = "field_149787_q" +/** + * + * + * Parent Class: Block + */ +f.soundTypeAnvil = "field_149788_p" +/** + * Flags whether or not this block is of a type that needs random ticking. Ref-counted by ExtendedBlockStorage in order to broadly cull a chunk from the random chunk update list for efficiency's sake. + * + * Parent Class: Block + */ +f.needsRandomTick = "field_149789_z" +/** + * + * + * Parent Class: Block + */ +f.enableStats = "field_149790_y" +/** + * + * + * Parent Class: BlockDynamicLiquid + */ +f.adjacentSourceBlocks = "field_149815_a" +/** + * + * + * Parent Class: BlockFalling + */ +f.fallInstantly = "field_149832_M" +/** + * + * + * Parent Class: BlockFire + */ +f.flammabilities = "field_149848_b" +/** + * + * + * Parent Class: BlockFire + */ +f.encouragements = "field_149849_a" +/** + * + * + * Parent Class: BlockStem + */ +f.crop = "field_149877_a" +/** + * Tells whether the repeater is powered or not + * + * Parent Class: BlockRedstoneDiode + */ +f.isRepeaterPowered = "field_149914_a" +/** + * + * + * Parent Class: BlockFurnace + */ +f.isBurning = "field_149932_b" +/** + * + * + * Parent Class: BlockFurnace + */ +f.keepInventory = "field_149934_M" +/** + * Registry for all dispense behaviors. + * + * Parent Class: BlockDispenser + */ +f.dispenseBehaviorRegistry = "field_149943_a" +/** + * + * + * Parent Class: BlockDropper + */ +f.dropBehavior = "field_149947_P" +/** + * "0 : Normal chest + * + * Parent Class: BlockChest + */ +f.chestType = "field_149956_a" +/** + * + * + * Parent Class: BlockBreakable + */ +f.ignoreSimilarity = "field_149996_a" +/** + * + * + * Parent Class: BlockButton + */ +f.wooden = "field_150047_a" +f.isPowered = {} +/** + * + * + * Parent Class: BlockRailBase + */ +f.isPowered.BlockRailBase = "field_150053_a" +/** + * + * + * Parent Class: BlockRailBase$Rail + */ +f.isPowered.BlockRailBase$Rail = "field_150656_f" + +/** + * + * + * Parent Class: BlockPressurePlate + */ +f.sensitivity = "field_150069_a" +/** + * This piston is the sticky one? + * + * Parent Class: BlockPistonBase + */ +f.isSticky = "field_150082_a" +/** + * + * + * Parent Class: BlockPane + */ +f.canDrop = "field_150099_b" +/** + * + * + * Parent Class: BlockRedstoneTorch + */ +f.toggles = "field_150112_b" +f.isOn = {} +/** + * + * + * Parent Class: BlockRedstoneTorch + */ +f.isOn.BlockRedstoneTorch = "field_150113_a" +/** + * + * + * Parent Class: BlockRedstoneLight + */ +f.isOn.BlockRedstoneLight = "field_150171_a" +/** + * + * + * Parent Class: BlockRedstoneOre + */ +f.isOn.BlockRedstoneOre = "field_150187_a" + +f.fancyGraphics = {} +/** + * + * + * Parent Class: BlockLeavesBase + */ +f.fancyGraphics.BlockLeavesBase = "field_150121_P" +/** + * + * + * Parent Class: GameSettings + */ +f.fancyGraphics.GameSettings = "field_74347_j" + +/** + * + * + * Parent Class: BlockLeaves + */ +f.iconIndex = "field_150127_b" +/** + * + * + * Parent Class: BlockLeaves + */ +f.surroundings = "field_150128_a" +/** + * + * + * Parent Class: BlockStairs + */ +f.modelBlock = "field_150149_b" +/** + * + * + * Parent Class: BlockStairs + */ +f.modelState = "field_150151_M" +/** + * + * + * Parent Class: BlockStairs + */ +f.hasRaytraced = "field_150152_N" +/** + * + * + * Parent Class: BlockStairs + */ +f.rayTracePass = "field_150153_O" +/** + * List of blocks to update with redstone. + * + * Parent Class: BlockRedstoneWire + */ +f.blocksNeedingUpdate = "field_150179_b" +/** + * + * + * Parent Class: BlockRedstoneWire + */ +f.canProvidePower = "field_150181_a" +/** + * + * + * Parent Class: ChatStyle + */ +f.strikethrough = "field_150243_f" +/** + * + * + * Parent Class: ChatStyle + */ +f.obfuscated = "field_150244_g" +/** + * + * + * Parent Class: ChatStyle + */ +f.italic = "field_150245_d" +/** + * + * + * Parent Class: ChatStyle + */ +f.underlined = "field_150246_e" +f.color = {} +/** + * + * + * Parent Class: ChatStyle + */ +f.color.ChatStyle = "field_150247_b" +/** + * + * + * Parent Class: GlStateManager$ClearState + */ +f.color.GlStateManager$ClearState = "field_179203_b" +/** + * + * + * Parent Class: S3EPacketTeams + */ +f.color.S3EPacketTeams = "field_179815_f" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.color.BiomeGenBase = "field_76790_z" + +/** + * + * + * Parent Class: ChatStyle + */ +f.bold = "field_150248_c" +/** + * The parent of this ChatStyle. Used for looking up values that this instance does not override. + * + * Parent Class: ChatStyle + */ +f.parentStyle = "field_150249_a" +/** + * The base of the ChatStyle hierarchy. All ChatStyle instances are implicitly children of this. + * + * Parent Class: ChatStyle + */ +f.rootStyle = "field_150250_j" +/** + * + * + * Parent Class: ChatStyle + */ +f.chatClickEvent = "field_150251_h" +/** + * + * + * Parent Class: ChatStyle + */ +f.chatHoverEvent = "field_150252_i" +/** + * + * + * Parent Class: ChatComponentStyle + */ +f.style = "field_150263_b" +/** + * "The later siblings of this component. If this component turns the text bold + * + * Parent Class: ChatComponentStyle + */ +f.siblings = "field_150264_a" +f.syncLock = {} +/** + * + * + * Parent Class: ChatComponentTranslation + */ +f.syncLock.ChatComponentTranslation = "field_150274_f" +/** + * + * + * Parent Class: PlayerUsageSnooper + */ +f.syncLock.PlayerUsageSnooper = "field_76476_f" + +/** + * + * + * Parent Class: ChatComponentTranslation + */ +f.lastTranslationUpdateTimeInMilliseconds = "field_150275_g" +/** + * + * + * Parent Class: ChatComponentTranslation + */ +f.formatArgs = "field_150277_e" +f.children = {} +/** + * "The discrete elements that make up this component. For example + * + * Parent Class: ChatComponentTranslation + */ +f.children.ChatComponentTranslation = "field_150278_b" +/** + * + * + * Parent Class: CrashReportCategory + */ +f.children.CrashReportCategory = "field_85077_c" + +/** + * + * + * Parent Class: ChatComponentTranslation + */ +f.stringVariablePattern = "field_150279_c" +/** + * + * + * Parent Class: S21PacketChunkData$Extracted + */ +f.dataSize = "field_150280_b" +/** + * + * + * Parent Class: Blocks + */ +f.golden_rail = "field_150318_D" +/** + * + * + * Parent Class: Blocks + */ +f.detector_rail = "field_150319_E" +/** + * + * + * Parent Class: Blocks + */ +f.sticky_piston = "field_150320_F" +f.web = {} +/** + * + * + * Parent Class: Blocks + */ +f.web.Blocks = "field_150321_G" +/** + * + * + * Parent Class: Material + */ +f.web.Material = "field_151569_G" + +/** + * + * + * Parent Class: Blocks + */ +f.sandstone = "field_150322_A" +/** + * + * + * Parent Class: Blocks + */ +f.noteblock = "field_150323_B" +f.bed = {} +/** + * + * + * Parent Class: Blocks + */ +f.bed.Blocks = "field_150324_C" +/** + * + * + * Parent Class: Items + */ +f.bed.Items = "field_151104_aV" + +/** + * + * + * Parent Class: Blocks + */ +f.wool = "field_150325_L" +/** + * + * + * Parent Class: Blocks + */ +f.yellow_flower = "field_150327_N" +/** + * + * + * Parent Class: Blocks + */ +f.red_flower = "field_150328_O" +/** + * + * + * Parent Class: Blocks + */ +f.tallgrass = "field_150329_H" +/** + * + * + * Parent Class: Blocks + */ +f.deadbush = "field_150330_I" +f.piston = {} +/** + * + * + * Parent Class: Blocks + */ +f.piston.Blocks = "field_150331_J" +/** + * Pistons' material. + * + * Parent Class: Material + */ +f.piston.Material = "field_76233_E" + +/** + * + * + * Parent Class: Blocks + */ +f.piston_head = "field_150332_K" +/** + * + * + * Parent Class: Blocks + */ +f.stone_slab = "field_150333_U" +/** + * + * + * Parent Class: Blocks + */ +f.double_stone_slab = "field_150334_T" +f.tnt = {} +/** + * + * + * Parent Class: Blocks + */ +f.tnt.Blocks = "field_150335_W" +/** + * + * + * Parent Class: Material + */ +f.tnt.Material = "field_151590_u" + +/** + * + * + * Parent Class: Blocks + */ +f.brick_block = "field_150336_V" +/** + * + * + * Parent Class: Blocks + */ +f.red_mushroom = "field_150337_Q" +/** + * + * + * Parent Class: Blocks + */ +f.brown_mushroom = "field_150338_P" +/** + * + * + * Parent Class: Blocks + */ +f.iron_block = "field_150339_S" +/** + * + * + * Parent Class: Blocks + */ +f.gold_block = "field_150340_R" +/** + * + * + * Parent Class: Blocks + */ +f.mossy_cobblestone = "field_150341_Y" +/** + * + * + * Parent Class: Blocks + */ +f.bookshelf = "field_150342_X" +/** + * + * + * Parent Class: Blocks + */ +f.obsidian = "field_150343_Z" +/** + * + * + * Parent Class: Blocks + */ +f.planks = "field_150344_f" +/** + * + * + * Parent Class: Blocks + */ +f.sapling = "field_150345_g" +/** + * + * + * Parent Class: Blocks + */ +f.dirt = "field_150346_d" +/** + * + * + * Parent Class: Blocks + */ +f.cobblestone = "field_150347_e" +/** + * + * + * Parent Class: Blocks + */ +f.stone = "field_150348_b" +f.grass = {} +/** + * + * + * Parent Class: Blocks + */ +f.grass.Blocks = "field_150349_c" +/** + * + * + * Parent Class: Material + */ +f.grass.Material = "field_151577_b" + +f.air = {} +/** + * + * + * Parent Class: Blocks + */ +f.air.Blocks = "field_150350_a" +/** + * + * + * Parent Class: Material + */ +f.air.Material = "field_151579_a" + +/** + * + * + * Parent Class: Blocks + */ +f.gravel = "field_150351_n" +/** + * + * + * Parent Class: Blocks + */ +f.gold_ore = "field_150352_o" +f.lava = {} +/** + * + * + * Parent Class: Blocks + */ +f.lava.Blocks = "field_150353_l" +/** + * + * + * Parent Class: Material + */ +f.lava.Material = "field_151587_i" +/** + * + * + * Parent Class: DamageSource + */ +f.lava.DamageSource = "field_76371_c" + +f.sand = {} +/** + * + * + * Parent Class: Blocks + */ +f.sand.Blocks = "field_150354_m" +/** + * + * + * Parent Class: Material + */ +f.sand.Material = "field_151595_p" + +f.water = {} +/** + * + * + * Parent Class: Blocks + */ +f.water.Blocks = "field_150355_j" +/** + * + * + * Parent Class: Material + */ +f.water.Material = "field_151586_h" + +/** + * + * + * Parent Class: Blocks + */ +f.flowing_lava = "field_150356_k" +/** + * + * + * Parent Class: Blocks + */ +f.bedrock = "field_150357_h" +/** + * + * + * Parent Class: Blocks + */ +f.flowing_water = "field_150358_i" +f.glass = {} +/** + * + * + * Parent Class: Blocks + */ +f.glass.Blocks = "field_150359_w" +/** + * + * + * Parent Class: Material + */ +f.glass.Material = "field_151592_s" +/** + * The glass model for the Ender Crystal. + * + * Parent Class: ModelEnderCrystal + */ +f.glass.ModelEnderCrystal = "field_78228_b" + +f.sponge = {} +/** + * + * + * Parent Class: Blocks + */ +f.sponge.Blocks = "field_150360_v" +/** + * + * + * Parent Class: Material + */ +f.sponge.Material = "field_151583_m" + +/** + * + * + * Parent Class: Blocks + */ +f.leaves2 = "field_150361_u" +f.leaves = {} +/** + * + * + * Parent Class: Blocks + */ +f.leaves.Blocks = "field_150362_t" +/** + * + * + * Parent Class: ItemLeaves + */ +f.leaves.ItemLeaves = "field_150940_b" +/** + * + * + * Parent Class: Material + */ +f.leaves.Material = "field_151584_j" + +/** + * + * + * Parent Class: Blocks + */ +f.log2 = "field_150363_s" +/** + * + * + * Parent Class: Blocks + */ +f.log = "field_150364_r" +/** + * + * + * Parent Class: Blocks + */ +f.coal_ore = "field_150365_q" +/** + * + * + * Parent Class: Blocks + */ +f.iron_ore = "field_150366_p" +/** + * + * + * Parent Class: Blocks + */ +f.dispenser = "field_150367_z" +/** + * + * + * Parent Class: Blocks + */ +f.lapis_block = "field_150368_y" +/** + * + * + * Parent Class: Blocks + */ +f.lapis_ore = "field_150369_x" +/** + * + * + * Parent Class: Blocks + */ +f.quartz_stairs = "field_150370_cb" +/** + * + * + * Parent Class: Blocks + */ +f.quartz_block = "field_150371_ca" +/** + * + * + * Parent Class: Blocks + */ +f.sandstone_stairs = "field_150372_bz" +/** + * + * + * Parent Class: Blocks + */ +f.double_wooden_slab = "field_150373_bw" +/** + * + * + * Parent Class: Blocks + */ +f.lit_redstone_lamp = "field_150374_bv" +/** + * + * + * Parent Class: Blocks + */ +f.cocoa = "field_150375_by" +/** + * + * + * Parent Class: Blocks + */ +f.wooden_slab = "field_150376_bx" +/** + * + * + * Parent Class: Blocks + */ +f.end_stone = "field_150377_bs" +/** + * + * + * Parent Class: Blocks + */ +f.end_portal_frame = "field_150378_br" +/** + * + * + * Parent Class: Blocks + */ +f.redstone_lamp = "field_150379_bu" +/** + * + * + * Parent Class: Blocks + */ +f.dragon_egg = "field_150380_bt" +/** + * + * + * Parent Class: Blocks + */ +f.enchanting_table = "field_150381_bn" +f.brewing_stand = {} +/** + * + * + * Parent Class: Blocks + */ +f.brewing_stand.Blocks = "field_150382_bo" +/** + * + * + * Parent Class: Items + */ +f.brewing_stand.Items = "field_151067_bt" + +f.cauldron = {} +/** + * + * + * Parent Class: Blocks + */ +f.cauldron.Blocks = "field_150383_bp" +/** + * + * + * Parent Class: Items + */ +f.cauldron.Items = "field_151066_bu" + +/** + * + * + * Parent Class: Blocks + */ +f.end_portal = "field_150384_bq" +/** + * + * + * Parent Class: Blocks + */ +f.nether_brick = "field_150385_bj" +/** + * + * + * Parent Class: Blocks + */ +f.nether_brick_fence = "field_150386_bk" +/** + * + * + * Parent Class: Blocks + */ +f.nether_brick_stairs = "field_150387_bl" +f.nether_wart = {} +/** + * + * + * Parent Class: Blocks + */ +f.nether_wart.Blocks = "field_150388_bm" +/** + * + * + * Parent Class: Items + */ +f.nether_wart.Items = "field_151075_bm" + +/** + * + * + * Parent Class: Blocks + */ +f.brick_stairs = "field_150389_bf" +/** + * + * + * Parent Class: Blocks + */ +f.stone_brick_stairs = "field_150390_bg" +/** + * + * + * Parent Class: Blocks + */ +f.mycelium = "field_150391_bh" +/** + * + * + * Parent Class: Blocks + */ +f.waterlily = "field_150392_bi" +/** + * + * + * Parent Class: Blocks + */ +f.pumpkin_stem = "field_150393_bb" +/** + * + * + * Parent Class: Blocks + */ +f.melon_stem = "field_150394_bc" +f.vine = {} +/** + * + * + * Parent Class: Blocks + */ +f.vine.Blocks = "field_150395_bd" +/** + * + * + * Parent Class: Material + */ +f.vine.Material = "field_151582_l" + +/** + * + * + * Parent Class: Blocks + */ +f.stained_glass_pane = "field_150397_co" +/** + * + * + * Parent Class: Blocks + */ +f.double_plant = "field_150398_cm" +/** + * + * + * Parent Class: Blocks + */ +f.stained_glass = "field_150399_cn" +/** + * + * + * Parent Class: Blocks + */ +f.acacia_stairs = "field_150400_ck" +/** + * + * + * Parent Class: Blocks + */ +f.dark_oak_stairs = "field_150401_cl" +/** + * + * + * Parent Class: Blocks + */ +f.coal_block = "field_150402_ci" +/** + * + * + * Parent Class: Blocks + */ +f.packed_ice = "field_150403_cj" +f.carpet = {} +/** + * + * + * Parent Class: Blocks + */ +f.carpet.Blocks = "field_150404_cg" +/** + * + * + * Parent Class: Material + */ +f.carpet.Material = "field_151593_r" + +/** + * + * + * Parent Class: Blocks + */ +f.hardened_clay = "field_150405_ch" +/** + * + * + * Parent Class: Blocks + */ +f.stained_hardened_clay = "field_150406_ce" +/** + * + * + * Parent Class: Blocks + */ +f.hay_block = "field_150407_cf" +/** + * + * + * Parent Class: Blocks + */ +f.activator_rail = "field_150408_cc" +/** + * + * + * Parent Class: Blocks + */ +f.dropper = "field_150409_cd" +/** + * + * + * Parent Class: Blocks + */ +f.glass_pane = "field_150410_aZ" +/** + * + * + * Parent Class: Blocks + */ +f.iron_bars = "field_150411_aY" +/** + * + * + * Parent Class: Blocks + */ +f.emerald_ore = "field_150412_bA" +/** + * + * + * Parent Class: Blocks + */ +f.unpowered_repeater = "field_150413_aR" +f.cake = {} +/** + * + * + * Parent Class: Blocks + */ +f.cake.Blocks = "field_150414_aQ" +/** + * + * + * Parent Class: Items + */ +f.cake.Items = "field_151105_aU" +/** + * + * + * Parent Class: Material + */ +f.cake.Material = "field_151568_F" + +/** + * + * + * Parent Class: Blocks + */ +f.trapdoor = "field_150415_aT" +/** + * + * + * Parent Class: Blocks + */ +f.powered_repeater = "field_150416_aS" +/** + * + * + * Parent Class: Blocks + */ +f.stonebrick = "field_150417_aV" +/** + * + * + * Parent Class: Blocks + */ +f.monster_egg = "field_150418_aU" +/** + * + * + * Parent Class: Blocks + */ +f.red_mushroom_block = "field_150419_aX" +/** + * + * + * Parent Class: Blocks + */ +f.brown_mushroom_block = "field_150420_aW" +/** + * + * + * Parent Class: Blocks + */ +f.jukebox = "field_150421_aI" +/** + * + * + * Parent Class: Blocks + */ +f.pumpkin = "field_150423_aK" +/** + * + * + * Parent Class: Blocks + */ +f.netherrack = "field_150424_aL" +/** + * + * + * Parent Class: Blocks + */ +f.soul_sand = "field_150425_aM" +/** + * + * + * Parent Class: Blocks + */ +f.glowstone = "field_150426_aN" +f.portal = {} +/** + * + * + * Parent Class: Blocks + */ +f.portal.Blocks = "field_150427_aO" +/** + * + * + * Parent Class: Material + */ +f.portal.Material = "field_151567_E" +/** + * Is the 'We Need to Go Deeper' achievement + * + * Parent Class: AchievementList + */ +f.portal.AchievementList = "field_76029_x" + +/** + * + * + * Parent Class: Blocks + */ +f.lit_pumpkin = "field_150428_aP" +/** + * + * + * Parent Class: Blocks + */ +f.redstone_torch = "field_150429_aA" +/** + * + * + * Parent Class: Blocks + */ +f.stone_button = "field_150430_aB" +/** + * + * + * Parent Class: Blocks + */ +f.snow_layer = "field_150431_aC" +f.ice = {} +/** + * + * + * Parent Class: Blocks + */ +f.ice.Blocks = "field_150432_aD" +/** + * + * + * Parent Class: Material + */ +f.ice.Material = "field_151588_w" + +f.snow = {} +/** + * + * + * Parent Class: Blocks + */ +f.snow.Blocks = "field_150433_aE" +/** + * + * + * Parent Class: Material + */ +f.snow.Material = "field_151597_y" + +f.cactus = {} +/** + * + * + * Parent Class: Blocks + */ +f.cactus.Blocks = "field_150434_aF" +/** + * + * + * Parent Class: Material + */ +f.cactus.Material = "field_151570_A" +/** + * + * + * Parent Class: DamageSource + */ +f.cactus.DamageSource = "field_76367_g" + +f.clay = {} +/** + * + * + * Parent Class: Blocks + */ +f.clay.Blocks = "field_150435_aG" +/** + * + * + * Parent Class: Material + */ +f.clay.Material = "field_151571_B" + +f.reeds = {} +/** + * + * + * Parent Class: Blocks + */ +f.reeds.Blocks = "field_150436_aH" +/** + * + * + * Parent Class: Items + */ +f.reeds.Items = "field_151120_aE" + +/** + * + * + * Parent Class: Blocks + */ +f.unlit_redstone_torch = "field_150437_az" +/** + * + * + * Parent Class: Blocks + */ +f.hopper = "field_150438_bZ" +/** + * + * + * Parent Class: Blocks + */ +f.lit_redstone_ore = "field_150439_ay" +/** + * + * + * Parent Class: Blocks + */ +f.melon_block = "field_150440_ba" +/** + * + * + * Parent Class: Blocks + */ +f.unpowered_comparator = "field_150441_bU" +/** + * + * + * Parent Class: Blocks + */ +f.lever = "field_150442_at" +/** + * + * + * Parent Class: Blocks + */ +f.heavy_weighted_pressure_plate = "field_150443_bT" +/** + * + * + * Parent Class: Blocks + */ +f.wall_sign = "field_150444_as" +/** + * + * + * Parent Class: Blocks + */ +f.light_weighted_pressure_plate = "field_150445_bS" +/** + * + * + * Parent Class: Blocks + */ +f.stone_stairs = "field_150446_ar" +/** + * + * + * Parent Class: Blocks + */ +f.trapped_chest = "field_150447_bR" +/** + * + * + * Parent Class: Blocks + */ +f.rail = "field_150448_aq" +/** + * + * + * Parent Class: Blocks + */ +f.quartz_ore = "field_150449_bY" +/** + * + * + * Parent Class: Blocks + */ +f.redstone_ore = "field_150450_ax" +/** + * + * + * Parent Class: Blocks + */ +f.redstone_block = "field_150451_bX" +/** + * + * + * Parent Class: Blocks + */ +f.wooden_pressure_plate = "field_150452_aw" +/** + * + * + * Parent Class: Blocks + */ +f.daylight_detector = "field_150453_bW" +f.iron_door = {} +/** + * + * + * Parent Class: Blocks + */ +f.iron_door.Blocks = "field_150454_av" +/** + * + * + * Parent Class: Items + */ +f.iron_door.Items = "field_151139_aw" + +/** + * + * + * Parent Class: Blocks + */ +f.powered_comparator = "field_150455_bV" +/** + * + * + * Parent Class: Blocks + */ +f.stone_pressure_plate = "field_150456_au" +f.flower_pot = {} +/** + * + * + * Parent Class: Blocks + */ +f.flower_pot.Blocks = "field_150457_bL" +/** + * + * + * Parent Class: Items + */ +f.flower_pot.Items = "field_151162_bE" + +/** + * + * + * Parent Class: Blocks + */ +f.farmland = "field_150458_ak" +/** + * + * + * Parent Class: Blocks + */ +f.carrots = "field_150459_bM" +/** + * + * + * Parent Class: Blocks + */ +f.furnace = "field_150460_al" +/** + * + * + * Parent Class: Blocks + */ +f.beacon = "field_150461_bJ" +/** + * + * + * Parent Class: Blocks + */ +f.crafting_table = "field_150462_ai" +/** + * + * + * Parent Class: Blocks + */ +f.cobblestone_wall = "field_150463_bK" +f.wheat = {} +/** + * + * + * Parent Class: Blocks + */ +f.wheat.Blocks = "field_150464_aj" +/** + * + * + * Parent Class: Items + */ +f.wheat.Items = "field_151015_O" + +f.skull = {} +/** + * + * + * Parent Class: Blocks + */ +f.skull.Blocks = "field_150465_bP" +/** + * + * + * Parent Class: Items + */ +f.skull.Items = "field_151144_bL" +/** + * + * + * Parent Class: TileEntityItemStackRenderer + */ +f.skull.TileEntityItemStackRenderer = "field_179023_f" + +/** + * + * + * Parent Class: Blocks + */ +f.ladder = "field_150468_ap" +/** + * + * + * Parent Class: Blocks + */ +f.potatoes = "field_150469_bN" +/** + * + * + * Parent Class: Blocks + */ +f.lit_furnace = "field_150470_am" +/** + * + * + * Parent Class: Blocks + */ +f.wooden_button = "field_150471_bO" +/** + * + * + * Parent Class: Blocks + */ +f.standing_sign = "field_150472_an" +/** + * + * + * Parent Class: Blocks + */ +f.tripwire = "field_150473_bD" +/** + * + * + * Parent Class: Blocks + */ +f.mob_spawner = "field_150474_ac" +/** + * + * + * Parent Class: Blocks + */ +f.emerald_block = "field_150475_bE" +/** + * + * + * Parent Class: Blocks + */ +f.oak_stairs = "field_150476_ad" +/** + * + * + * Parent Class: Blocks + */ +f.ender_chest = "field_150477_bB" +/** + * + * + * Parent Class: Blocks + */ +f.torch = "field_150478_aa" +/** + * + * + * Parent Class: Blocks + */ +f.tripwire_hook = "field_150479_bC" +f.fire = {} +/** + * + * + * Parent Class: Blocks + */ +f.fire.Blocks = "field_150480_ab" +/** + * + * + * Parent Class: Material + */ +f.fire.Material = "field_151581_o" +/** + * + * + * Parent Class: Entity + */ +f.fire.Entity = "field_70151_c" + +/** + * + * + * Parent Class: Blocks + */ +f.jungle_stairs = "field_150481_bH" +/** + * + * + * Parent Class: Blocks + */ +f.diamond_ore = "field_150482_ag" +/** + * + * + * Parent Class: Blocks + */ +f.command_block = "field_150483_bI" +/** + * + * + * Parent Class: Blocks + */ +f.diamond_block = "field_150484_ah" +/** + * + * + * Parent Class: Blocks + */ +f.spruce_stairs = "field_150485_bF" +/** + * + * + * Parent Class: Blocks + */ +f.chest = "field_150486_ae" +/** + * + * + * Parent Class: Blocks + */ +f.birch_stairs = "field_150487_bG" +/** + * + * + * Parent Class: Blocks + */ +f.redstone_wire = "field_150488_af" +/** + * + * + * Parent Class: JsonToNBT$Any + */ +f.json = "field_150490_a" +/** + * The value to be parsed into a tag. + * + * Parent Class: JsonToNBT$Primitive + */ +f.jsonValue = "field_150493_b" +/** + * + * + * Parent Class: Block$SoundType + */ +f.frequency = "field_150500_c" +/** + * + * + * Parent Class: NettyEncryptionTranslator + */ +f.cipher = "field_150507_a" +/** + * + * + * Parent Class: NettyEncryptingDecoder + */ +f.decryptionCodec = "field_150509_a" +/** + * "The time + * + * Parent Class: StringTranslate + */ +f.lastUpdateTimeInMilliseconds = "field_150511_e" +/** + * + * + * Parent Class: BiomeDecorator + */ +f.yellowFlowerGen = "field_150514_p" +/** + * + * + * Parent Class: WorldGenSpikes + */ +f.baseBlockRequired = "field_150520_a" +f.woodMetadata = {} +/** + * + * + * Parent Class: WorldGenShrub + */ +f.woodMetadata.WorldGenShrub = "field_150527_b" +/** + * Sets the metadata for the wood blocks used + * + * Parent Class: WorldGenHugeTrees + */ +f.woodMetadata.WorldGenHugeTrees = "field_76520_b" + +f.leavesMetadata = {} +/** + * + * + * Parent Class: WorldGenShrub + */ +f.leavesMetadata.WorldGenShrub = "field_150528_a" +/** + * Sets the metadata for the leaves used in huge trees + * + * Parent Class: WorldGenHugeTrees + */ +f.leavesMetadata.WorldGenHugeTrees = "field_76521_c" + +/** + * + * + * Parent Class: WorldGenForest + */ +f.useExtraRandomHeight = "field_150531_a" +/** + * + * + * Parent Class: WorldGenHugeTrees + */ +f.extraRandomHeight = "field_150538_d" +/** + * + * + * Parent Class: WorldGenMegaPineTree + */ +f.useBaseHeight = "field_150542_e" +/** + * + * + * Parent Class: WorldGenFlowers + */ +f.flower = "field_150552_a" +/** + * + * + * Parent Class: WorldGenIcePath + */ +f.basePathWidth = "field_150554_b" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.jungleEdge = "field_150574_L" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.deepOcean = "field_150575_M" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.stoneBeach = "field_150576_N" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.coldBeach = "field_150577_O" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.megaTaiga = "field_150578_U" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.coldTaigaHills = "field_150579_T" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.extremeHillsPlus = "field_150580_W" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.megaTaigaHills = "field_150581_V" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.birchForestHills = "field_150582_Q" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.birchForest = "field_150583_P" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.coldTaiga = "field_150584_S" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.roofedForest = "field_150585_R" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.savannaPlateau = "field_150587_Y" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.savanna = "field_150588_X" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.mesa = "field_150589_Z" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.height_MidPlains = "field_150590_f" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.height_LowHills = "field_150591_g" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.height_DeepOceans = "field_150592_d" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.height_LowPlains = "field_150593_e" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.height_ShallowWaters = "field_150594_b" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.height_Oceans = "field_150595_c" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.height_Default = "field_150596_a" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.explorationBiomesList = "field_150597_n" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.height_LowIslands = "field_150598_l" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.height_PartiallySubmerged = "field_150599_m" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.height_Shores = "field_150600_j" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.height_RockyWaters = "field_150601_k" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.height_HighPlateaus = "field_150602_h" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.height_MidHills = "field_150603_i" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.temperatureNoise = "field_150605_ac" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.mesaPlateau_F = "field_150607_aa" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.mesaPlateau = "field_150608_ab" +/** + * + * + * Parent Class: BiomeGenMutated + */ +f.baseBiome = "field_150611_aD" +f.world = {} +/** + * + * + * Parent Class: BlockRailBase$Rail + */ +f.world.BlockRailBase$Rail = "field_150660_b" +/** + * + * + * Parent Class: BlockPortal$Size + */ +f.world.BlockPortal$Size = "field_150867_a" +/** + * + * + * Parent Class: BlockWorkbench$InterfaceCraftingTable + */ +f.world.BlockWorkbench$InterfaceCraftingTable = "field_175128_a" +/** + * + * + * Parent Class: BlockAnvil$Anvil + */ +f.world.BlockAnvil$Anvil = "field_175130_a" +/** + * + * + * Parent Class: WorldGenBigTree + */ +f.world.WorldGenBigTree = "field_175946_l" +/** + * + * + * Parent Class: BlockPistonStructureHelper + */ +f.world.BlockPistonStructureHelper = "field_177261_a" +/** + * + * + * Parent Class: ChunkProviderDebug + */ +f.world.ChunkProviderDebug = "field_177463_c" +/** + * + * + * Parent Class: BlockWorldState + */ +f.world.BlockWorldState = "field_177515_a" +/** + * + * + * Parent Class: BlockPattern$CacheLoader + */ +f.world.BlockPattern$CacheLoader = "field_177680_a" +/** + * + * + * Parent Class: ViewFrustum + */ +f.world.ViewFrustum = "field_178167_b" +/** + * + * + * Parent Class: RenderChunk + */ +f.world.RenderChunk = "field_178588_d" +/** + * + * + * Parent Class: S33PacketUpdateSign + */ +f.world.S33PacketUpdateSign = "field_179706_a" + +f.allowedInChat = {} +/** + * + * + * Parent Class: ClickEvent$Action + */ +f.allowedInChat.ClickEvent$Action = "field_150676_f" +/** + * + * + * Parent Class: HoverEvent$Action + */ +f.allowedInChat.HoverEvent$Action = "field_150691_e" + +f.canonicalName = {} +/** + * The canonical name used to refer to this action. + * + * Parent Class: ClickEvent$Action + */ +f.canonicalName.ClickEvent$Action = "field_150677_g" +/** + * + * + * Parent Class: HoverEvent$Action + */ +f.canonicalName.HoverEvent$Action = "field_150688_f" + +f.nameMapping = {} +/** + * + * + * Parent Class: ClickEvent$Action + */ +f.nameMapping.ClickEvent$Action = "field_150679_e" +/** + * + * + * Parent Class: HoverEvent$Action + */ +f.nameMapping.HoverEvent$Action = "field_150690_d" +/** + * "Maps a name (e.g. + * + * Parent Class: EnumChatFormatting + */ +f.nameMapping.EnumChatFormatting = "field_96331_x" + +/** + * + * + * Parent Class: WeightedRandomFishable + */ +f.enchantable = "field_150710_d" +/** + * + * + * Parent Class: WeightedRandomFishable + */ +f.returnStack = "field_150711_b" +/** + * + * + * Parent Class: WeightedRandomFishable + */ +f.maxDamagePercent = "field_150712_c" +/** + * + * + * Parent Class: NetworkManager + */ +f.logMarkerPackets = "field_150738_b" +/** + * + * + * Parent Class: NetworkManager + */ +f.attrKeyConnectionState = "field_150739_c" +/** + * + * + * Parent Class: NetworkManager + */ +f.logMarkerNetwork = "field_150740_a" +/** + * A String indicating why the network has shutdown. + * + * Parent Class: NetworkManager + */ +f.terminationReason = "field_150742_o" +/** + * The address of the remote party + * + * Parent Class: NetworkManager + */ +f.socketAddress = "field_150743_l" +/** + * The INetHandler instance responsible for processing received packets + * + * Parent Class: NetworkManager + */ +f.packetListener = "field_150744_m" +/** + * The queue for packets that require transmission + * + * Parent Class: NetworkManager + */ +f.outboundPacketsQueue = "field_150745_j" +/** + * + * + * Parent Class: NettyEncryptingEncoder + */ +f.encryptionCodec = "field_150750_a" +/** + * + * + * Parent Class: EnumConnectionState + */ +f.STATES_BY_CLASS = "field_150761_f" +/** + * + * + * Parent Class: EnumConnectionState + */ +f.STATES_BY_ID = "field_150764_e" +/** + * + * + * Parent Class: NetworkManager$InboundHandlerTuplePacketListener + */ +f.futureListeners = "field_150773_b" +/** + * + * + * Parent Class: NetworkManager$InboundHandlerTuplePacketListener + */ +f.packet = "field_150774_a" +/** + * + * + * Parent Class: BiomeGenBase$Height + */ +f.variation = "field_150776_b" +/** + * + * + * Parent Class: BiomeGenBase$Height + */ +f.rootHeight = "field_150777_a" +/** + * + * + * Parent Class: PacketBuffer + */ +f.buf = "field_150794_a" +f.RECEIVED_PACKET_MARKER = {} +/** + * + * + * Parent Class: MessageSerializer + */ +f.RECEIVED_PACKET_MARKER.MessageSerializer = "field_150797_b" +/** + * + * + * Parent Class: MessageDeserializer + */ +f.RECEIVED_PACKET_MARKER.MessageDeserializer = "field_150799_b" + +/** + * + * + * Parent Class: Chunk + */ +f.isLightPopulated = "field_150814_l" +/** + * A Map of ChunkPositions to TileEntities in this chunk + * + * Parent Class: Chunk + */ +f.chunkTileEntityMap = "field_150816_i" +/** + * A StringTranslate instance using the hardcoded default locale (en_US). Used as a fallback in case the shared StringTranslate singleton instance fails to translate a key. + * + * Parent Class: StatCollector + */ +f.fallbackTranslator = "field_150828_b" +f.time = {} +/** + * + * + * Parent Class: BlockRedstoneTorch$Toggle + */ +f.time.BlockRedstoneTorch$Toggle = "field_150844_d" +/** + * + * + * Parent Class: GuiControls + */ +f.time.GuiControls = "field_152177_g" +/** + * "The time that this RConThreadQuery was constructed + * + * Parent Class: RConThreadQuery + */ +f.time.RConThreadQuery = "field_72640_t" + +f.axis = {} +/** + * + * + * Parent Class: BlockPortal$Size + */ +f.axis.BlockPortal$Size = "field_150865_b" +/** + * + * + * Parent Class: EnumFacing + */ +f.axis.EnumFacing = "field_176758_k" +/** + * + * + * Parent Class: BlockPartRotation + */ +f.axis.BlockPartRotation = "field_178342_b" + +/** + * + * + * Parent Class: StatFileWriter + */ +f.statsData = "field_150875_a" +/** + * + * + * Parent Class: Item + */ +f.itemRegistry = "field_150901_e" +/** + * "Indicates whether this fish is ""cooked"" or not." + * + * Parent Class: ItemFishFood + */ +f.cooked = "field_150907_b" +f.crops = {} +/** + * + * + * Parent Class: ItemSeedFood + */ +f.crops.ItemSeedFood = "field_150908_b" +/** + * + * + * Parent Class: ItemSeeds + */ +f.crops.ItemSeeds = "field_150925_a" + +/** + * + * + * Parent Class: ItemTool + */ +f.effectiveBlocks = "field_150914_c" +f.EFFECTIVE_ON = {} +/** + * + * + * Parent Class: ItemPickaxe + */ +f.EFFECTIVE_ON.ItemPickaxe = "field_150915_c" +/** + * + * + * Parent Class: ItemSpade + */ +f.EFFECTIVE_ON.ItemSpade = "field_150916_c" +/** + * + * + * Parent Class: ItemAxe + */ +f.EFFECTIVE_ON.ItemAxe = "field_150917_c" + +/** + * + * + * Parent Class: ItemDye + */ +f.dyeColors = "field_150922_c" +/** + * + * + * Parent Class: ItemRecord + */ +f.RECORDS = "field_150928_b" +/** + * The name of the record. + * + * Parent Class: ItemRecord + */ +f.recordName = "field_150929_a" +f.material = {} +/** + * + * + * Parent Class: ItemSword + */ +f.material.ItemSword = "field_150933_b" +/** + * The EnumArmorMaterial used for this ItemArmor + * + * Parent Class: ItemArmor + */ +f.material.ItemArmor = "field_77878_bZ" + +/** + * + * + * Parent Class: ItemColored + */ +f.coloredBlock = "field_150944_b" +/** + * + * + * Parent Class: ItemColored + */ +f.subtypeNames = "field_150945_c" +/** + * + * + * Parent Class: ItemSlab + */ +f.singleSlab = "field_150949_c" +f.objectiveCriteria = {} +/** + * + * + * Parent Class: StatBase + */ +f.objectiveCriteria.StatBase = "field_150957_c" +/** + * The ScoreObjectiveCriteria for this objetive + * + * Parent Class: ScoreObjective + */ +f.objectiveCriteria.ScoreObjective = "field_96685_c" + +/** + * Is the 'Adventuring Time' achievement + * + * Parent Class: AchievementList + */ +f.exploreAllBiomes = "field_150961_L" +/** + * Is the 'Repopulation' achievement + * + * Parent Class: AchievementList + */ +f.breedCow = "field_150962_H" +/** + * Is the 'The Beginning?' achievement + * + * Parent Class: AchievementList + */ +f.spawnWither = "field_150963_I" +/** + * Is the 'The Beginning.' achievement + * + * Parent Class: AchievementList + */ +f.killWither = "field_150964_J" +/** + * Is the 'Beaconator' achievement + * + * Parent Class: AchievementList + */ +f.fullBeacon = "field_150965_K" +/** + * + * + * Parent Class: AchievementList + */ +f.diamondsToYou = "field_150966_x" +f.meta = {} +/** + * The item damage value on an ItemStack that represents this fish type + * + * Parent Class: ItemFishFood$FishType + */ +f.meta.ItemFishFood$FishType = "field_150980_f" +/** + * + * + * Parent Class: BlockStoneBrick$EnumType + */ +f.meta.BlockStoneBrick$EnumType = "field_176615_f" +/** + * + * + * Parent Class: BlockStoneSlab$EnumType + */ +f.meta.BlockStoneSlab$EnumType = "field_176637_j" +/** + * The BlockState's metadata. + * + * Parent Class: BlockStone$EnumType + */ +f.meta.BlockStone$EnumType = "field_176656_i" +/** + * + * + * Parent Class: BlockWall$EnumType + */ +f.meta.BlockWall$EnumType = "field_176663_d" +/** + * + * + * Parent Class: BlockSand$EnumType + */ +f.meta.BlockSand$EnumType = "field_176692_d" +/** + * + * + * Parent Class: EnumDyeColor + */ +f.meta.EnumDyeColor = "field_176788_s" +/** + * + * + * Parent Class: BlockQuartz$EnumType + */ +f.meta.BlockQuartz$EnumType = "field_176798_g" +/** + * + * + * Parent Class: BlockPrismarine$EnumType + */ +f.meta.BlockPrismarine$EnumType = "field_176814_e" +/** + * + * + * Parent Class: BlockRedSandstone$EnumType + */ +f.meta.BlockRedSandstone$EnumType = "field_176832_e" +/** + * + * + * Parent Class: BlockPlanks$EnumType + */ +f.meta.BlockPlanks$EnumType = "field_176850_h" +/** + * + * + * Parent Class: BlockLever$EnumOrientation + */ +f.meta.BlockLever$EnumOrientation = "field_176866_j" +/** + * + * + * Parent Class: BlockSilverfish$EnumType + */ +f.meta.BlockSilverfish$EnumType = "field_176893_h" +/** + * + * + * Parent Class: BlockHugeMushroom$EnumType + */ +f.meta.BlockHugeMushroom$EnumType = "field_176906_o" +/** + * + * + * Parent Class: BlockStoneSlabNew$EnumType + */ +f.meta.BlockStoneSlabNew$EnumType = "field_176922_c" +/** + * + * + * Parent Class: BlockDoublePlant$EnumPlantType + */ +f.meta.BlockDoublePlant$EnumPlantType = "field_176949_h" +/** + * + * + * Parent Class: BlockFlower$EnumFlowerType + */ +f.meta.BlockFlower$EnumFlowerType = "field_176979_m" +/** + * + * + * Parent Class: BlockRailBase$EnumRailDirection + */ +f.meta.BlockRailBase$EnumRailDirection = "field_177027_l" +/** + * + * + * Parent Class: BlockTallGrass$EnumType + */ +f.meta.BlockTallGrass$EnumType = "field_177049_e" + +f.META_LOOKUP = {} +/** + * Maps an item damage value for an ItemStack to the corresponding FishType value. + * + * Parent Class: ItemFishFood$FishType + */ +f.META_LOOKUP.ItemFishFood$FishType = "field_150983_e" +/** + * + * + * Parent Class: BlockStoneBrick$EnumType + */ +f.META_LOOKUP.BlockStoneBrick$EnumType = "field_176618_e" +/** + * + * + * Parent Class: BlockStoneSlab$EnumType + */ +f.META_LOOKUP.BlockStoneSlab$EnumType = "field_176640_i" +/** + * Array of the Block's BlockStates + * + * Parent Class: BlockStone$EnumType + */ +f.META_LOOKUP.BlockStone$EnumType = "field_176655_h" +/** + * + * + * Parent Class: BlockWall$EnumType + */ +f.META_LOOKUP.BlockWall$EnumType = "field_176666_c" +/** + * + * + * Parent Class: BlockSandStone$EnumType + */ +f.META_LOOKUP.BlockSandStone$EnumType = "field_176679_d" +/** + * + * + * Parent Class: BlockSand$EnumType + */ +f.META_LOOKUP.BlockSand$EnumType = "field_176695_c" +/** + * + * + * Parent Class: EnumDyeColor + */ +f.META_LOOKUP.EnumDyeColor = "field_176790_q" +/** + * + * + * Parent Class: BlockQuartz$EnumType + */ +f.META_LOOKUP.BlockQuartz$EnumType = "field_176797_f" +/** + * + * + * Parent Class: BlockPrismarine$EnumType + */ +f.META_LOOKUP.BlockPrismarine$EnumType = "field_176813_d" +/** + * + * + * Parent Class: BlockRedSandstone$EnumType + */ +f.META_LOOKUP.BlockRedSandstone$EnumType = "field_176831_d" +/** + * + * + * Parent Class: BlockPlanks$EnumType + */ +f.META_LOOKUP.BlockPlanks$EnumType = "field_176842_g" +/** + * + * + * Parent Class: BlockLever$EnumOrientation + */ +f.META_LOOKUP.BlockLever$EnumOrientation = "field_176869_i" +/** + * + * + * Parent Class: BlockSilverfish$EnumType + */ +f.META_LOOKUP.BlockSilverfish$EnumType = "field_176885_g" +/** + * + * + * Parent Class: BlockHugeMushroom$EnumType + */ +f.META_LOOKUP.BlockHugeMushroom$EnumType = "field_176905_n" +/** + * + * + * Parent Class: BlockStoneSlabNew$EnumType + */ +f.META_LOOKUP.BlockStoneSlabNew$EnumType = "field_176921_b" +/** + * + * + * Parent Class: BlockDoublePlant$EnumPlantType + */ +f.META_LOOKUP.BlockDoublePlant$EnumPlantType = "field_176941_g" +/** + * + * + * Parent Class: BlockRailBase$EnumRailDirection + */ +f.META_LOOKUP.BlockRailBase$EnumRailDirection = "field_177030_k" +/** + * + * + * Parent Class: BlockTallGrass$EnumType + */ +f.META_LOOKUP.BlockTallGrass$EnumType = "field_177048_d" + +/** + * "Indicates whether this type of fish has ""raw"" and ""cooked"" variants" + * + * Parent Class: ItemFishFood$FishType + */ +f.cookable = "field_150987_n" +/** + * The amount that eating the cooked version of this fish should heal the player. + * + * Parent Class: ItemFishFood$FishType + */ +f.cookedHealAmount = "field_150989_l" +/** + * The saturation modifier to apply to the heal amount when the player eats the cooked version of this fish. + * + * Parent Class: ItemFishFood$FishType + */ +f.cookedSaturationModifier = "field_150990_m" +/** + * The amount that eating the uncooked version of this fish should heal the player. + * + * Parent Class: ItemFishFood$FishType + */ +f.uncookedHealAmount = "field_150991_j" +/** + * The saturation modifier to apply to the heal amount when the player eats the uncooked version of this fish. + * + * Parent Class: ItemFishFood$FishType + */ +f.uncookedSaturationModifier = "field_150992_k" +/** + * The set for this ForwardingSet to forward methods to. + * + * Parent Class: JsonSerializableSet + */ +f.underlyingSet = "field_151004_a" +/** + * + * + * Parent Class: Items + */ +f.golden_pickaxe = "field_151005_D" +/** + * + * + * Parent Class: Items + */ +f.golden_axe = "field_151006_E" +/** + * + * + * Parent Class: Items + */ +f.string = "field_151007_F" +/** + * + * + * Parent Class: Items + */ +f.feather = "field_151008_G" +/** + * + * + * Parent Class: Items + */ +f.mushroom_stew = "field_151009_A" +/** + * + * + * Parent Class: Items + */ +f.golden_sword = "field_151010_B" +/** + * + * + * Parent Class: Items + */ +f.golden_shovel = "field_151011_C" +/** + * + * + * Parent Class: Items + */ +f.diamond_hoe = "field_151012_L" +/** + * + * + * Parent Class: Items + */ +f.golden_hoe = "field_151013_M" +/** + * + * + * Parent Class: Items + */ +f.wheat_seeds = "field_151014_N" +/** + * + * + * Parent Class: Items + */ +f.gunpowder = "field_151016_H" +/** + * + * + * Parent Class: Items + */ +f.wooden_hoe = "field_151017_I" +/** + * + * + * Parent Class: Items + */ +f.stone_hoe = "field_151018_J" +/** + * + * + * Parent Class: Items + */ +f.iron_hoe = "field_151019_K" +/** + * + * + * Parent Class: Items + */ +f.chainmail_helmet = "field_151020_U" +/** + * + * + * Parent Class: Items + */ +f.leather_boots = "field_151021_T" +/** + * + * + * Parent Class: Items + */ +f.chainmail_leggings = "field_151022_W" +/** + * + * + * Parent Class: Items + */ +f.chainmail_chestplate = "field_151023_V" +/** + * + * + * Parent Class: Items + */ +f.leather_helmet = "field_151024_Q" +/** + * + * + * Parent Class: Items + */ +f.bread = "field_151025_P" +/** + * + * + * Parent Class: Items + */ +f.leather_leggings = "field_151026_S" +/** + * + * + * Parent Class: Items + */ +f.leather_chestplate = "field_151027_R" +/** + * + * + * Parent Class: Items + */ +f.iron_helmet = "field_151028_Y" +/** + * + * + * Parent Class: Items + */ +f.chainmail_boots = "field_151029_X" +/** + * + * + * Parent Class: Items + */ +f.iron_chestplate = "field_151030_Z" +/** + * + * + * Parent Class: Items + */ +f.bow = "field_151031_f" +/** + * + * + * Parent Class: Items + */ +f.arrow = "field_151032_g" +/** + * + * + * Parent Class: Items + */ +f.flint_and_steel = "field_151033_d" +/** + * + * + * Parent Class: Items + */ +f.apple = "field_151034_e" +/** + * + * + * Parent Class: Items + */ +f.iron_pickaxe = "field_151035_b" +/** + * + * + * Parent Class: Items + */ +f.iron_axe = "field_151036_c" +/** + * + * + * Parent Class: Items + */ +f.iron_shovel = "field_151037_a" +/** + * + * + * Parent Class: Items + */ +f.wooden_shovel = "field_151038_n" +/** + * + * + * Parent Class: Items + */ +f.wooden_pickaxe = "field_151039_o" +/** + * + * + * Parent Class: Items + */ +f.iron_sword = "field_151040_l" +/** + * + * + * Parent Class: Items + */ +f.wooden_sword = "field_151041_m" +/** + * + * + * Parent Class: Items + */ +f.iron_ingot = "field_151042_j" +/** + * + * + * Parent Class: Items + */ +f.gold_ingot = "field_151043_k" +/** + * + * + * Parent Class: Items + */ +f.coal = "field_151044_h" +/** + * + * + * Parent Class: Items + */ +f.diamond = "field_151045_i" +/** + * + * + * Parent Class: Items + */ +f.diamond_pickaxe = "field_151046_w" +/** + * + * + * Parent Class: Items + */ +f.diamond_shovel = "field_151047_v" +/** + * + * + * Parent Class: Items + */ +f.diamond_sword = "field_151048_u" +/** + * + * + * Parent Class: Items + */ +f.stone_axe = "field_151049_t" +/** + * + * + * Parent Class: Items + */ +f.stone_pickaxe = "field_151050_s" +/** + * + * + * Parent Class: Items + */ +f.stone_shovel = "field_151051_r" +/** + * + * + * Parent Class: Items + */ +f.stone_sword = "field_151052_q" +/** + * + * + * Parent Class: Items + */ +f.wooden_axe = "field_151053_p" +/** + * + * + * Parent Class: Items + */ +f.bowl = "field_151054_z" +/** + * + * + * Parent Class: Items + */ +f.stick = "field_151055_y" +/** + * + * + * Parent Class: Items + */ +f.diamond_axe = "field_151056_x" +/** + * + * + * Parent Class: Items + */ +f.name_tag = "field_151057_cb" +/** + * + * + * Parent Class: Items + */ +f.lead = "field_151058_ca" +/** + * + * + * Parent Class: Items + */ +f.fire_charge = "field_151059_bz" +/** + * + * + * Parent Class: Items + */ +f.speckled_melon = "field_151060_bw" +/** + * + * + * Parent Class: Items + */ +f.ender_eye = "field_151061_bv" +/** + * + * + * Parent Class: Items + */ +f.experience_bottle = "field_151062_by" +/** + * + * + * Parent Class: Items + */ +f.spawn_egg = "field_151063_bx" +/** + * + * + * Parent Class: Items + */ +f.magma_cream = "field_151064_bs" +/** + * + * + * Parent Class: Items + */ +f.blaze_powder = "field_151065_br" +/** + * + * + * Parent Class: Items + */ +f.potionitem = "field_151068_bn" +/** + * + * + * Parent Class: Items + */ +f.glass_bottle = "field_151069_bo" +/** + * + * + * Parent Class: Items + */ +f.spider_eye = "field_151070_bp" +/** + * + * + * Parent Class: Items + */ +f.fermented_spider_eye = "field_151071_bq" +/** + * + * + * Parent Class: Items + */ +f.blaze_rod = "field_151072_bj" +/** + * + * + * Parent Class: Items + */ +f.ghast_tear = "field_151073_bk" +/** + * + * + * Parent Class: Items + */ +f.gold_nugget = "field_151074_bl" +/** + * + * + * Parent Class: Items + */ +f.chicken = "field_151076_bf" +/** + * + * + * Parent Class: Items + */ +f.cooked_chicken = "field_151077_bg" +/** + * + * + * Parent Class: Items + */ +f.rotten_flesh = "field_151078_bh" +/** + * + * + * Parent Class: Items + */ +f.ender_pearl = "field_151079_bi" +/** + * + * + * Parent Class: Items + */ +f.pumpkin_seeds = "field_151080_bb" +/** + * + * + * Parent Class: Items + */ +f.melon_seeds = "field_151081_bc" +/** + * + * + * Parent Class: Items + */ +f.beef = "field_151082_bd" +/** + * + * + * Parent Class: Items + */ +f.cooked_beef = "field_151083_be" +/** + * + * + * Parent Class: Items + */ +f.record_wait = "field_151084_co" +/** + * + * + * Parent Class: Items + */ +f.record_ward = "field_151085_cm" +/** + * + * + * Parent Class: Items + */ +f.record_11 = "field_151086_cn" +/** + * + * + * Parent Class: Items + */ +f.record_stal = "field_151087_ck" +/** + * + * + * Parent Class: Items + */ +f.record_strad = "field_151088_cl" +/** + * + * + * Parent Class: Items + */ +f.record_mall = "field_151089_ci" +/** + * + * + * Parent Class: Items + */ +f.record_mellohi = "field_151090_cj" +/** + * + * + * Parent Class: Items + */ +f.record_chirp = "field_151091_cg" +/** + * + * + * Parent Class: Items + */ +f.record_far = "field_151092_ch" +/** + * + * + * Parent Class: Items + */ +f.record_cat = "field_151093_ce" +/** + * + * + * Parent Class: Items + */ +f.record_blocks = "field_151094_cf" +/** + * + * + * Parent Class: Items + */ +f.command_block_minecart = "field_151095_cc" +/** + * + * + * Parent Class: Items + */ +f.record_13 = "field_151096_cd" +/** + * + * + * Parent Class: Items + */ +f.shears = "field_151097_aZ" +/** + * + * + * Parent Class: Items + */ +f.filled_map = "field_151098_aY" +/** + * + * + * Parent Class: Items + */ +f.writable_book = "field_151099_bA" +/** + * + * + * Parent Class: Items + */ +f.dye = "field_151100_aR" +/** + * + * + * Parent Class: Items + */ +f.sugar = "field_151102_aT" +/** + * + * + * Parent Class: Items + */ +f.bone = "field_151103_aS" +/** + * + * + * Parent Class: Items + */ +f.cookie = "field_151106_aX" +/** + * + * + * Parent Class: Items + */ +f.repeater = "field_151107_aW" +/** + * + * + * Parent Class: Items + */ +f.chest_minecart = "field_151108_aI" +/** + * + * + * Parent Class: Items + */ +f.furnace_minecart = "field_151109_aJ" +/** + * + * + * Parent Class: Items + */ +f.egg = "field_151110_aK" +/** + * + * + * Parent Class: Items + */ +f.compass = "field_151111_aL" +/** + * + * + * Parent Class: Items + */ +f.fishing_rod = "field_151112_aM" +/** + * + * + * Parent Class: Items + */ +f.clock = "field_151113_aN" +/** + * + * + * Parent Class: Items + */ +f.glowstone_dust = "field_151114_aO" +/** + * + * + * Parent Class: Items + */ +f.fish = "field_151115_aP" +/** + * + * + * Parent Class: Items + */ +f.leather = "field_151116_aA" +/** + * + * + * Parent Class: Items + */ +f.milk_bucket = "field_151117_aB" +/** + * + * + * Parent Class: Items + */ +f.brick = "field_151118_aC" +/** + * + * + * Parent Class: Items + */ +f.clay_ball = "field_151119_aD" +/** + * + * + * Parent Class: Items + */ +f.paper = "field_151121_aF" +/** + * + * + * Parent Class: Items + */ +f.book = "field_151122_aG" +/** + * + * + * Parent Class: Items + */ +f.slime_ball = "field_151123_aH" +/** + * + * + * Parent Class: Items + */ +f.boat = "field_151124_az" +/** + * + * + * Parent Class: Items + */ +f.diamond_horse_armor = "field_151125_bZ" +/** + * + * + * Parent Class: Items + */ +f.snowball = "field_151126_ay" +/** + * + * + * Parent Class: Items + */ +f.melon = "field_151127_ba" +/** + * + * + * Parent Class: Items + */ +f.quartz = "field_151128_bU" +/** + * + * + * Parent Class: Items + */ +f.lava_bucket = "field_151129_at" +/** + * + * + * Parent Class: Items + */ +f.netherbrick = "field_151130_bT" +/** + * + * + * Parent Class: Items + */ +f.water_bucket = "field_151131_as" +/** + * + * + * Parent Class: Items + */ +f.comparator = "field_151132_bS" +/** + * + * + * Parent Class: Items + */ +f.bucket = "field_151133_ar" +/** + * + * + * Parent Class: Items + */ +f.enchanted_book = "field_151134_bR" +/** + * + * + * Parent Class: Items + */ +f.golden_horse_armor = "field_151136_bY" +/** + * + * + * Parent Class: Items + */ +f.redstone = "field_151137_ax" +/** + * + * + * Parent Class: Items + */ +f.iron_horse_armor = "field_151138_bX" +/** + * + * + * Parent Class: Items + */ +f.hopper_minecart = "field_151140_bW" +/** + * + * + * Parent Class: Items + */ +f.saddle = "field_151141_av" +/** + * + * + * Parent Class: Items + */ +f.tnt_minecart = "field_151142_bV" +/** + * + * + * Parent Class: Items + */ +f.flint = "field_151145_ak" +/** + * + * + * Parent Class: Items + */ +f.carrot_on_a_stick = "field_151146_bM" +/** + * + * + * Parent Class: Items + */ +f.porkchop = "field_151147_al" +f.map = {} +/** + * + * + * Parent Class: Items + */ +f.map.Items = "field_151148_bJ" +/** + * + * + * Parent Class: ClassInheritanceMultiMap + */ +f.map.ClassInheritanceMultiMap = "field_180218_a" + +/** + * + * + * Parent Class: Items + */ +f.golden_leggings = "field_151149_ai" +/** + * + * + * Parent Class: Items + */ +f.golden_carrot = "field_151150_bK" +/** + * + * + * Parent Class: Items + */ +f.golden_boots = "field_151151_aj" +/** + * + * + * Parent Class: Items + */ +f.fireworks = "field_151152_bP" +/** + * + * + * Parent Class: Items + */ +f.golden_apple = "field_151153_ao" +/** + * + * + * Parent Class: Items + */ +f.firework_charge = "field_151154_bQ" +/** + * + * + * Parent Class: Items + */ +f.sign = "field_151155_ap" +/** + * + * + * Parent Class: Items + */ +f.nether_star = "field_151156_bN" +/** + * + * + * Parent Class: Items + */ +f.cooked_porkchop = "field_151157_am" +/** + * + * + * Parent Class: Items + */ +f.pumpkin_pie = "field_151158_bO" +/** + * + * + * Parent Class: Items + */ +f.painting = "field_151159_an" +/** + * + * + * Parent Class: Items + */ +f.item_frame = "field_151160_bD" +/** + * + * + * Parent Class: Items + */ +f.diamond_helmet = "field_151161_ac" +/** + * + * + * Parent Class: Items + */ +f.diamond_chestplate = "field_151163_ad" +/** + * + * + * Parent Class: Items + */ +f.written_book = "field_151164_bB" +/** + * + * + * Parent Class: Items + */ +f.iron_leggings = "field_151165_aa" +/** + * + * + * Parent Class: Items + */ +f.emerald = "field_151166_bC" +/** + * + * + * Parent Class: Items + */ +f.iron_boots = "field_151167_ab" +/** + * + * + * Parent Class: Items + */ +f.baked_potato = "field_151168_bH" +/** + * + * + * Parent Class: Items + */ +f.golden_helmet = "field_151169_ag" +/** + * + * + * Parent Class: Items + */ +f.poisonous_potato = "field_151170_bI" +/** + * + * + * Parent Class: Items + */ +f.golden_chestplate = "field_151171_ah" +/** + * + * + * Parent Class: Items + */ +f.carrot = "field_151172_bF" +/** + * + * + * Parent Class: Items + */ +f.diamond_leggings = "field_151173_ae" +/** + * + * + * Parent Class: Items + */ +f.potato = "field_151174_bG" +/** + * + * + * Parent Class: Items + */ +f.diamond_boots = "field_151175_af" +/** + * + * + * Parent Class: StatList + */ +f.junkFishedStat = "field_151183_A" +/** + * + * + * Parent Class: StatList + */ +f.treasureFishedStat = "field_151184_B" +/** + * + * + * Parent Class: StatList + */ +f.distanceByHorseStat = "field_151185_q" +/** + * the number of animals you have bred + * + * Parent Class: StatList + */ +f.animalsBredStat = "field_151186_x" +/** + * + * + * Parent Class: TupleIntJsonSerializable + */ +f.jsonSerializableValue = "field_151191_b" +/** + * + * + * Parent Class: TupleIntJsonSerializable + */ +f.integerValue = "field_151192_a" +/** + * The number of download threads that we have started so far. + * + * Parent Class: HttpUtil + */ +f.downloadThreadsStarted = "field_151228_a" +/** + * "Though it looks like an array + * + * Parent Class: MathHelper + */ +f.multiplyDeBruijnBitPosition = "field_151242_b" +/** + * + * + * Parent Class: CreativeTabs + */ +f.iconItemStack = "field_151245_t" +/** + * + * + * Parent Class: PlayerManager$PlayerInstance + */ +f.locationOfBlockChange = "field_151254_d" +/** + * A list containing all NetworkManager instances of all endpoints + * + * Parent Class: NetworkSystem + */ +f.networkManagers = "field_151272_f" +/** + * Contains all endpoints added to this NetworkSystem + * + * Parent Class: NetworkSystem + */ +f.endpoints = "field_151274_e" +/** + * + * + * Parent Class: NetworkSystem + */ +f.eventLoops = "field_151276_c" +/** + * True if this NetworkSystem has never had his endpoints terminated + * + * Parent Class: NetworkSystem + */ +f.isAlive = "field_151277_a" +/** + * + * + * Parent Class: ServerStatusResponse$MinecraftProtocolVersionIdentifier + */ +f.protocol = "field_151305_b" +/** + * + * + * Parent Class: ServerStatusResponse + */ +f.favicon = "field_151323_d" +/** + * + * + * Parent Class: ServerStatusResponse + */ +f.playerCount = "field_151324_b" +f.serverMotd = {} +/** + * + * + * Parent Class: ServerStatusResponse + */ +f.serverMotd.ServerStatusResponse = "field_151326_a" +/** + * The current server message of the day + * + * Parent Class: RConThreadQuery + */ +f.serverMotd.RConThreadQuery = "field_72635_k" + +/** + * + * + * Parent Class: ServerStatusResponse$PlayerCountData + */ +f.onlinePlayerCount = "field_151334_b" +/** + * + * + * Parent Class: BlockEventData + */ +f.eventParameter = "field_151343_f" +/** + * Different for each blockID + * + * Parent Class: BlockEventData + */ +f.eventID = "field_151345_e" +/** + * "Whether the blocks + * + * Parent Class: Bootstrap + */ +f.alreadyRegistered = "field_151355_a" +/** + * amplified world type + * + * Parent Class: WorldType + */ +f.AMPLIFIED = "field_151360_e" +/** + * + * + * Parent Class: WorldType + */ +f.hasNotificationData = "field_151361_l" +f.attacker = {} +/** + * The attacker of the user with the enchantment + * + * Parent Class: EnchantmentHelper$HurtIterator + */ +f.attacker.EnchantmentHelper$HurtIterator = "field_151363_b" +/** + * + * + * Parent Class: EntityAIAttackOnCollide + */ +f.attacker.EntityAIAttackOnCollide = "field_75441_b" + +f.user = {} +/** + * The user of the enchantment + * + * Parent Class: EnchantmentHelper$HurtIterator + */ +f.user.EnchantmentHelper$HurtIterator = "field_151364_a" +/** + * The user of the enchantment + * + * Parent Class: EnchantmentHelper$DamageIterator + */ +f.user.EnchantmentHelper$DamageIterator = "field_151366_a" + +f.target = {} +/** + * The target entity being damaged + * + * Parent Class: EnchantmentHelper$DamageIterator + */ +f.target.EnchantmentHelper$DamageIterator = "field_151365_b" +/** + * + * + * Parent Class: EntityAIFindEntityNearest + */ +f.target.EntityAIFindEntityNearest = "field_179441_e" +/** + * + * + * Parent Class: EntityDragon + */ +f.target.EntityDragon = "field_70993_bI" + +/** + * + * + * Parent Class: Enchantment + */ +f.lure = "field_151369_A" +/** + * + * + * Parent Class: Enchantment + */ +f.luckOfTheSea = "field_151370_z" +/** + * + * + * Parent Class: JsonException + */ +f.exceptionMessage = "field_151382_b" +/** + * + * + * Parent Class: EnchantmentHelper + */ +f.ENCHANTMENT_ITERATOR_HURT = "field_151388_d" +/** + * + * + * Parent Class: EnchantmentHelper + */ +f.ENCHANTMENT_ITERATOR_DAMAGE = "field_151389_e" +/** + * + * + * Parent Class: PotionHelper + */ +f.pufferfishEffect = "field_151423_m" +/** + * + * + * Parent Class: EntityPlayer$EnumChatVisibility + */ +f.resourceKey = "field_151430_f" +f.ID_LOOKUP = {} +/** + * + * + * Parent Class: EntityPlayer$EnumChatVisibility + */ +f.ID_LOOKUP.EntityPlayer$EnumChatVisibility = "field_151432_d" +/** + * + * + * Parent Class: EntityMinecart$EnumMinecartType + */ +f.ID_LOOKUP.EntityMinecart$EnumMinecartType = "field_180051_h" + +/** + * + * + * Parent Class: GameSettings + */ +f.showInventoryAchievementHint = "field_151441_H" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindSprint = "field_151444_V" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindInventory = "field_151445_Q" +/** + * + * + * Parent Class: GameSettings + */ +f.mapSoundLevels = "field_151446_aD" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindScreenshot = "field_151447_Z" +/** + * + * + * Parent Class: GameSettings + */ +f.fboEnable = "field_151448_g" +/** + * + * + * Parent Class: GameSettings + */ +f.typeListString = "field_151449_az" +f.renderDistanceChunks = {} +/** + * + * + * Parent Class: GameSettings + */ +f.renderDistanceChunks.GameSettings = "field_151451_c" +/** + * + * + * Parent Class: RenderGlobal + */ +f.renderDistanceChunks.RenderGlobal = "field_72739_F" + +f.saturation = {} +/** + * + * + * Parent Class: GameSettings + */ +f.saturation.GameSettings = "field_151452_as" +/** + * The saturation Potion object. + * + * Parent Class: Potion + */ +f.saturation.Potion = "field_76443_y" + +/** + * + * + * Parent Class: GameSettings + */ +f.forceUnicodeFont = "field_151455_aw" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindsHotbar = "field_151456_ac" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindTogglePerspective = "field_151457_aa" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindSmoothCamera = "field_151458_ab" +/** + * + * + * Parent Class: ObjectiveStat + */ +f.stat = "field_151459_g" +/** + * + * + * Parent Class: KeyBinding + */ +f.keyCategory = "field_151471_f" +/** + * + * + * Parent Class: KeyBinding + */ +f.keyCodeDefault = "field_151472_e" +/** + * + * + * Parent Class: KeyBinding + */ +f.keybindSet = "field_151473_c" +/** + * + * + * Parent Class: KeyBinding + */ +f.pressTime = "field_151474_i" +/** + * + * + * Parent Class: EntityAITempt + */ +f.temptItem = "field_151484_k" +/** + * + * + * Parent Class: EntityAIOcelotSit + */ +f.ocelot = "field_151493_a" +/** + * The entity owner of this AITask + * + * Parent Class: EntityAIEatGrass + */ +f.grassEaterEntity = "field_151500_b" +/** + * The world the grass eater entity is eating from + * + * Parent Class: EntityAIEatGrass + */ +f.entityWorld = "field_151501_c" +/** + * Number of ticks since the entity started to eat grass + * + * Parent Class: EntityAIEatGrass + */ +f.eatingGrassTimer = "field_151502_a" +/** + * The wooden door block + * + * Parent Class: EntityAIDoorInteract + */ +f.doorBlock = "field_151504_e" +/** + * Whether or not the damage ignores modification by potion effects or enchantments. + * + * Parent Class: DamageSource + */ +f.damageIsAbsolute = "field_151520_r" +/** + * + * + * Parent Class: EnumDifficulty + */ +f.difficultyId = "field_151527_f" +/** + * + * + * Parent Class: EnumDifficulty + */ +f.difficultyResourceKey = "field_151528_g" +/** + * + * + * Parent Class: EnumDifficulty + */ +f.difficultyEnums = "field_151530_e" +f.blockstate = {} +/** + * + * + * Parent Class: StructureComponent$BlockSelector + */ +f.blockstate.StructureComponent$BlockSelector = "field_151562_a" +/** + * + * + * Parent Class: BlockStateHelper + */ +f.blockstate.BlockStateHelper = "field_177641_a" + +/** + * + * + * Parent Class: ChunkLoader$AnvilConverterData + */ +f.tileTicks = "field_151563_j" +f.tileEntities = {} +/** + * + * + * Parent Class: ChunkLoader$AnvilConverterData + */ +f.tileEntities.ChunkLoader$AnvilConverterData = "field_151564_i" +/** + * + * + * Parent Class: CompiledChunk + */ +f.tileEntities.CompiledChunk = "field_178499_e" + +/** + * + * + * Parent Class: Material + */ +f.dragonEgg = "field_151566_D" +/** + * + * + * Parent Class: Material + */ +f.gourd = "field_151572_C" +/** + * + * + * Parent Class: Material + */ +f.iron = "field_151573_f" +/** + * + * + * Parent Class: Material + */ +f.wood = "field_151575_d" +/** + * + * + * Parent Class: Material + */ +f.rock = "field_151576_e" +f.ground = {} +/** + * + * + * Parent Class: Material + */ +f.ground.Material = "field_151578_c" +/** + * + * + * Parent Class: ItemCameraTransforms + */ +f.ground.ItemCameraTransforms = "field_181699_o" + +/** + * + * + * Parent Class: Material + */ +f.cloth = "field_151580_n" +/** + * + * + * Parent Class: Material + */ +f.plants = "field_151585_k" +/** + * + * + * Parent Class: Material + */ +f.coral = "field_151589_v" +/** + * + * + * Parent Class: Material + */ +f.redstoneLight = "field_151591_t" +/** + * + * + * Parent Class: Material + */ +f.circuits = "field_151594_q" +/** + * The material for crafted snow. + * + * Parent Class: Material + */ +f.craftedSnow = "field_151596_z" +/** + * + * + * Parent Class: Material + */ +f.packedIce = "field_151598_x" +/** + * + * + * Parent Class: MapColor + */ +f.redColor = "field_151645_D" +/** + * + * + * Parent Class: MapColor + */ +f.blackColor = "field_151646_E" +/** + * + * + * Parent Class: MapColor + */ +f.goldColor = "field_151647_F" +/** + * + * + * Parent Class: MapColor + */ +f.diamondColor = "field_151648_G" +/** + * + * + * Parent Class: MapColor + */ +f.blueColor = "field_151649_A" +/** + * + * + * Parent Class: MapColor + */ +f.brownColor = "field_151650_B" +/** + * + * + * Parent Class: MapColor + */ +f.greenColor = "field_151651_C" +/** + * + * + * Parent Class: MapColor + */ +f.lapisColor = "field_151652_H" +/** + * + * + * Parent Class: MapColor + */ +f.emeraldColor = "field_151653_I" +/** + * + * + * Parent Class: MapColor + */ +f.obsidianColor = "field_151654_J" +/** + * + * + * Parent Class: MapColor + */ +f.netherrackColor = "field_151655_K" +/** + * + * + * Parent Class: MapColor + */ +f.tntColor = "field_151656_f" +/** + * + * + * Parent Class: MapColor + */ +f.iceColor = "field_151657_g" +/** + * + * + * Parent Class: MapColor + */ +f.sandColor = "field_151658_d" +/** + * + * + * Parent Class: MapColor + */ +f.clothColor = "field_151659_e" +/** + * + * + * Parent Class: MapColor + */ +f.airColor = "field_151660_b" +/** + * + * + * Parent Class: MapColor + */ +f.grassColor = "field_151661_c" +/** + * + * + * Parent Class: MapColor + */ +f.waterColor = "field_151662_n" +/** + * + * + * Parent Class: MapColor + */ +f.woodColor = "field_151663_o" +/** + * + * + * Parent Class: MapColor + */ +f.dirtColor = "field_151664_l" +/** + * + * + * Parent Class: MapColor + */ +f.stoneColor = "field_151665_m" +/** + * + * + * Parent Class: MapColor + */ +f.snowColor = "field_151666_j" +/** + * + * + * Parent Class: MapColor + */ +f.clayColor = "field_151667_k" +/** + * + * + * Parent Class: MapColor + */ +f.ironColor = "field_151668_h" +/** + * + * + * Parent Class: MapColor + */ +f.foliageColor = "field_151669_i" +/** + * + * + * Parent Class: MapColor + */ +f.grayColor = "field_151670_w" +/** + * + * + * Parent Class: MapColor + */ +f.pinkColor = "field_151671_v" +/** + * + * + * Parent Class: MapColor + */ +f.limeColor = "field_151672_u" +/** + * + * + * Parent Class: MapColor + */ +f.yellowColor = "field_151673_t" +/** + * + * + * Parent Class: MapColor + */ +f.lightBlueColor = "field_151674_s" +/** + * + * + * Parent Class: MapColor + */ +f.magentaColor = "field_151675_r" +/** + * + * + * Parent Class: MapColor + */ +f.adobeColor = "field_151676_q" +/** + * + * + * Parent Class: MapColor + */ +f.quartzColor = "field_151677_p" +/** + * + * + * Parent Class: MapColor + */ +f.purpleColor = "field_151678_z" +/** + * + * + * Parent Class: MapColor + */ +f.cyanColor = "field_151679_y" +/** + * + * + * Parent Class: MapColor + */ +f.silverColor = "field_151680_x" +/** + * + * + * Parent Class: TileEntitySkull + */ +f.playerProfile = "field_152110_j" +/** + * + * + * Parent Class: EntityChicken + */ +f.chickenJockey = "field_152118_bv" +/** + * + * + * Parent Class: GuiIngame + */ +f.streamIndicator = "field_152127_m" +/** + * + * + * Parent Class: GuiScreenAddServer + */ +f.serverResourcePacks = "field_152176_i" +f.stream = {} +/** + * + * + * Parent Class: GuiTwitchUserMode + */ +f.stream.GuiTwitchUserMode = "field_152333_s" +/** + * + * + * Parent Class: Minecraft + */ +f.stream.Minecraft = "field_152353_at" + +/** + * + * + * Parent Class: Minecraft + */ +f.skinManager = "field_152350_aA" +/** + * + * + * Parent Class: Minecraft + */ +f.scheduledTasks = "field_152351_aB" +/** + * + * + * Parent Class: Minecraft + */ +f.mcThread = "field_152352_aC" +/** + * + * + * Parent Class: Minecraft + */ +f.mojangLogo = "field_152354_ay" +/** + * + * + * Parent Class: Minecraft + */ +f.twitchDetails = "field_152356_J" +/** + * + * + * Parent Class: MinecraftServer + */ +f.authService = "field_152364_T" +/** + * + * + * Parent Class: MinecraftServer + */ +f.profileRepo = "field_152365_W" +/** + * + * + * Parent Class: MinecraftServer + */ +f.profileCache = "field_152366_X" +/** + * + * + * Parent Class: MinecraftServer + */ +f.USER_CACHE_FILE = "field_152367_a" +/** + * + * + * Parent Class: GameSettings + */ +f.STREAM_COMPRESSIONS = "field_152391_aS" +/** + * + * + * Parent Class: GameSettings + */ +f.STREAM_CHAT_MODES = "field_152392_aT" +/** + * + * + * Parent Class: GameSettings + */ +f.STREAM_CHAT_FILTER_MODES = "field_152393_aU" +/** + * + * + * Parent Class: GameSettings + */ +f.STREAM_MIC_MODES = "field_152394_aV" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindFullscreen = "field_152395_am" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindStreamStartStop = "field_152396_an" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindStreamPauseUnpause = "field_152397_ao" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindStreamCommercials = "field_152398_ap" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindStreamToggleMic = "field_152399_aq" +/** + * + * + * Parent Class: GameSettings + */ +f.streamBytesPerPixel = "field_152400_J" +/** + * + * + * Parent Class: GameSettings + */ +f.streamMicVolume = "field_152401_K" +/** + * + * + * Parent Class: GameSettings + */ +f.streamGameVolume = "field_152402_L" +/** + * + * + * Parent Class: GameSettings + */ +f.streamKbps = "field_152403_M" +/** + * + * + * Parent Class: GameSettings + */ +f.streamFps = "field_152404_N" +/** + * + * + * Parent Class: GameSettings + */ +f.streamCompression = "field_152405_O" +/** + * + * + * Parent Class: GameSettings + */ +f.streamSendMetadata = "field_152406_P" +/** + * + * + * Parent Class: GameSettings + */ +f.streamPreferredServer = "field_152407_Q" +/** + * + * + * Parent Class: GameSettings + */ +f.streamChatEnabled = "field_152408_R" +/** + * + * + * Parent Class: GameSettings + */ +f.streamChatUserFilter = "field_152409_S" +/** + * + * + * Parent Class: GameSettings + */ +f.streamMicToggleBehavior = "field_152410_T" +/** + * + * + * Parent Class: Session$Type + */ +f.SESSION_TYPES = "field_152425_c" +f.sessionType = {} +/** + * + * + * Parent Class: Session$Type + */ +f.sessionType.Session$Type = "field_152426_d" +/** + * + * + * Parent Class: Session + */ +f.sessionType.Session = "field_152429_d" + +/** + * + * + * Parent Class: ThreadDownloadImageData + */ +f.cacheFile = "field_152434_e" +/** + * + * + * Parent Class: GuiStreamIndicator + */ +f.locationStreamIndicator = "field_152441_a" +/** + * + * + * Parent Class: GuiStreamIndicator + */ +f.streamAlpha = "field_152443_c" +/** + * + * + * Parent Class: GuiStreamIndicator + */ +f.streamAlphaDelta = "field_152444_d" +/** + * + * + * Parent Class: NBTSizeTracker + */ +f.INFINITE = "field_152451_a" +f.max = {} +/** + * + * + * Parent Class: NBTSizeTracker + */ +f.max.NBTSizeTracker = "field_152452_b" +/** + * + * + * Parent Class: GuiSlider + */ +f.max.GuiSlider = "field_175224_s" + +/** + * + * + * Parent Class: NBTSizeTracker + */ +f.read = "field_152453_c" +/** + * + * + * Parent Class: NetworkManager + */ +f.isEncrypted = "field_152463_r" +f.LOGGER = {} +/** + * + * + * Parent Class: ChunkRenderWorker + */ +f.LOGGER.ChunkRenderWorker = "field_152478_a" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +f.LOGGER.PreYggdrasilConverter = "field_152732_e" +/** + * + * + * Parent Class: TwitchStream + */ +f.LOGGER.TwitchStream = "field_152950_b" +/** + * + * + * Parent Class: ChatController + */ +f.LOGGER.ChatController = "field_153018_p" +/** + * + * + * Parent Class: RConThreadClient + */ +f.LOGGER.RConThreadClient = "field_164005_h" +/** + * + * + * Parent Class: MinecraftServerGui + */ +f.LOGGER.MinecraftServerGui = "field_164248_b" +/** + * + * + * Parent Class: DedicatedPlayerList + */ +f.LOGGER.DedicatedPlayerList = "field_164439_d" +/** + * + * + * Parent Class: PropertyManager + */ +f.LOGGER.PropertyManager = "field_164440_a" +/** + * + * + * Parent Class: GuiScreen + */ +f.LOGGER.GuiScreen = "field_175287_a" +/** + * + * + * Parent Class: CommandTitle + */ +f.LOGGER.CommandTitle = "field_175774_a" +/** + * + * + * Parent Class: VertexFormat + */ +f.LOGGER.VertexFormat = "field_177357_a" +/** + * + * + * Parent Class: VertexFormatElement + */ +f.LOGGER.VertexFormatElement = "field_177381_a" +/** + * + * + * Parent Class: ModelBakery + */ +f.LOGGER.ModelBakery = "field_177603_c" +/** + * + * + * Parent Class: ModelBlock + */ +f.LOGGER.ModelBlock = "field_178313_f" +/** + * + * + * Parent Class: NBTTagList + */ +f.LOGGER.NBTTagList = "field_179239_b" +/** + * + * + * Parent Class: EntityAIFindEntityNearestPlayer + */ +f.LOGGER.EntityAIFindEntityNearestPlayer = "field_179436_a" +/** + * + * + * Parent Class: EntityAIFindEntityNearest + */ +f.LOGGER.EntityAIFindEntityNearest = "field_179444_a" +/** + * + * + * Parent Class: Bootstrap + */ +f.LOGGER.Bootstrap = "field_179871_c" +/** + * + * + * Parent Class: LoggingPrintStream + */ +f.LOGGER.LoggingPrintStream = "field_179884_a" +/** + * + * + * Parent Class: PotionEffect + */ +f.LOGGER.PotionEffect = "field_180155_a" +/** + * + * + * Parent Class: CryptManager + */ +f.LOGGER.CryptManager = "field_180198_a" +/** + * + * + * Parent Class: ServerHangWatchdog + */ +f.LOGGER.ServerHangWatchdog = "field_180251_a" + +f.direction = {} +/** + * + * + * Parent Class: MessageDeserializer + */ +f.direction.MessageDeserializer = "field_152499_c" +/** + * + * + * Parent Class: MessageSerializer + */ +f.direction.MessageSerializer = "field_152500_c" +/** + * + * + * Parent Class: NetworkManager + */ +f.direction.NetworkManager = "field_179294_g" + +/** + * + * + * Parent Class: ServerData + */ +f.resourceMode = "field_152587_j" +f.motd = {} +/** + * + * + * Parent Class: ServerData$ServerResourceMode + */ +f.motd.ServerData$ServerResourceMode = "field_152594_d" +/** + * The server MOTD string. + * + * Parent Class: MinecraftServer + */ +f.motd.MinecraftServer = "field_71286_C" +/** + * + * + * Parent Class: ThreadLanServerPing + */ +f.motd.ThreadLanServerPing = "field_77528_b" + +/** + * + * + * Parent Class: ServerConfigurationManager + */ +f.FILE_PLAYERBANS = "field_152613_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +f.FILE_IPBANS = "field_152614_b" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +f.FILE_OPS = "field_152615_c" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +f.FILE_WHITELIST = "field_152616_d" +/** + * + * + * Parent Class: PlayerManager + */ +f.pmLogger = "field_152627_a" +/** + * + * + * Parent Class: UserListOpsEntry + */ +f.permissionLevel = "field_152645_a" +f.dateFormat = {} +/** + * + * + * Parent Class: PlayerProfileCache + */ +f.dateFormat.PlayerProfileCache = "field_152659_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +f.dateFormat.ServerConfigurationManager = "field_72403_e" +/** + * + * + * Parent Class: BanEntry + */ +f.dateFormat.BanEntry = "field_73698_a" +/** + * + * + * Parent Class: ScreenShotHelper + */ +f.dateFormat.ScreenShotHelper = "field_74295_a" + +/** + * A map between player usernames and {@link ProfileEntry profile entries} + * + * Parent Class: PlayerProfileCache + */ +f.usernameToProfileEntryMap = "field_152661_c" +/** + * A map between {@link UUID UUID's} and {@link ProfileEntry ProfileEntries} + * + * Parent Class: PlayerProfileCache + */ +f.uuidToProfileEntryMap = "field_152662_d" +/** + * A list of all the cached {@link GameProfile GameProfiles} + * + * Parent Class: PlayerProfileCache + */ +f.gameProfiles = "field_152663_e" +/** + * + * + * Parent Class: PlayerProfileCache + */ +f.usercacheFile = "field_152665_g" +/** + * The date that this entry will expire + * + * Parent Class: PlayerProfileCache$ProfileEntry + */ +f.expirationDate = "field_152673_c" +/** + * + * + * Parent Class: UserList + */ +f.saveFile = "field_152695_c" +f.values = {} +/** + * + * + * Parent Class: UserList + */ +f.values.UserList = "field_152696_d" +/** + * + * + * Parent Class: ClassInheritanceMultiMap + */ +f.values.ClassInheritanceMultiMap = "field_181745_e" + +f.lanServer = {} +/** + * + * + * Parent Class: UserList + */ +f.lanServer.UserList = "field_152697_e" +/** + * True if the server is a LAN server + * + * Parent Class: ServerData + */ +f.lanServer.ServerData = "field_181042_l" + +/** + * + * + * Parent Class: UserList + */ +f.saveFileFormat = "field_152698_f" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +f.OLD_IPBAN_FILE = "field_152728_a" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +f.OLD_PLAYERBAN_FILE = "field_152729_b" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +f.OLD_OPS_FILE = "field_152730_c" +/** + * + * + * Parent Class: PreYggdrasilConverter + */ +f.OLD_WHITELIST_FILE = "field_152731_d" +/** + * The snooper Map of stats + * + * Parent Class: PlayerUsageSnooper + */ +f.snooperStats = "field_152773_a" +/** + * The client Map of stats + * + * Parent Class: PlayerUsageSnooper + */ +f.clientStats = "field_152774_b" +/** + * + * + * Parent Class: DefaultResourcePack + */ +f.mapAssets = "field_152781_b" +/** + * + * + * Parent Class: ResourceIndex + */ +f.resourceMap = "field_152784_b" +/** + * Selects only entities which are neither ridden by anything nor ride on anything + * + * Parent Class: EntitySelectors + */ +f.IS_STANDALONE = "field_152785_b" +/** + * + * + * Parent Class: SkinManager + */ +f.THREAD_POOL = "field_152794_b" +/** + * + * + * Parent Class: SkinManager + */ +f.skinCacheDir = "field_152796_d" +/** + * + * + * Parent Class: SkinManager + */ +f.skinCacheLoader = "field_152798_f" +/** + * + * + * Parent Class: Metadata + */ +f.payload = "field_152814_d" +/** + * Instance of the IngestServerTester + * + * Parent Class: BroadcastController + */ +f.ingestServTester = "field_152860_A" +/** + * The last error that ocurred + * + * Parent Class: BroadcastController + */ +f.lastError = "field_152863_D" +/** + * + * + * Parent Class: BroadcastController + */ +f.errorCode = "field_152864_E" +/** + * + * + * Parent Class: BroadcastController + */ +f.broadcastListener = "field_152867_c" +/** + * The stream's core + * + * Parent Class: BroadcastController + */ +f.streamCore = "field_152872_h" +/** + * The Stream's instance + * + * Parent Class: BroadcastController + */ +f.theStream = "field_152873_i" +/** + * + * + * Parent Class: BroadcastController + */ +f.broadcastState = "field_152879_o" +/** + * + * + * Parent Class: BroadcastController + */ +f.videoParamaters = "field_152881_q" +/** + * + * + * Parent Class: BroadcastController + */ +f.audioParamaters = "field_152882_r" +/** + * + * + * Parent Class: BroadcastController + */ +f.ingestList = "field_152883_s" +/** + * The IngestServer's instance + * + * Parent Class: BroadcastController + */ +f.ingestServ = "field_152884_t" +/** + * + * + * Parent Class: BroadcastController + */ +f.authenticationToken = "field_152885_u" +/** + * + * + * Parent Class: BroadcastController + */ +f.channelInfo = "field_152886_v" +f.userInfo = {} +/** + * + * + * Parent Class: BroadcastController + */ +f.userInfo.BroadcastController = "field_152887_w" +/** + * + * + * Parent Class: GameConfiguration + */ +f.userInfo.GameConfiguration = "field_178745_a" + +/** + * + * + * Parent Class: BroadcastController + */ +f.streamInfo = "field_152888_x" +/** + * The current archiving state + * + * Parent Class: BroadcastController + */ +f.archivingState = "field_152889_y" +/** + * + * + * Parent Class: TwitchStream + */ +f.STREAM_MARKER = "field_152949_a" +/** + * + * + * Parent Class: TwitchStream + */ +f.broadcastController = "field_152951_c" +/** + * + * + * Parent Class: TwitchStream + */ +f.chatController = "field_152952_d" +/** + * + * + * Parent Class: TwitchStream + */ +f.twitchComponent = "field_152954_f" +/** + * stream's target fps + * + * Parent Class: TwitchStream + */ +f.targetFPS = "field_152958_j" +f.loggedIn = {} +/** + * + * + * Parent Class: TwitchStream + */ +f.loggedIn.TwitchStream = "field_152961_m" +/** + * "True if the client has succefssfully logged into the RCon + * + * Parent Class: RConThreadClient + */ +f.loggedIn.RConThreadClient = "field_72657_g" + +/** + * + * + * Parent Class: TwitchStream + */ +f.authFailureReason = "field_152964_p" +/** + * + * + * Parent Class: IngestServerTester + */ +f.audioParameters = "field_153053_k" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.logText = "field_153196_B" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.nvidia = "field_153197_d" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_FRAMEBUFFER = "field_153198_e" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_RENDERBUFFER = "field_153199_f" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_COLOR_ATTACHMENT0 = "field_153200_g" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_DEPTH_ATTACHMENT = "field_153201_h" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_FRAMEBUFFER_COMPLETE = "field_153202_i" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_FB_INCOMPLETE_ATTACHMENT = "field_153203_j" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_FB_INCOMPLETE_MISS_ATTACH = "field_153204_k" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_FB_INCOMPLETE_DRAW_BUFFER = "field_153205_l" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_FB_INCOMPLETE_READ_BUFFER = "field_153206_m" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_LINK_STATUS = "field_153207_o" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_COMPILE_STATUS = "field_153208_p" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_VERTEX_SHADER = "field_153209_q" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_FRAGMENT_SHADER = "field_153210_r" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.extBlendFuncSeparate = "field_153211_u" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.framebufferType = "field_153212_w" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.shadersAvailable = "field_153213_x" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.arbShaders = "field_153214_y" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.arbMultitexture = "field_153215_z" +f.realmsButton = {} +/** + * + * + * Parent Class: GuiButtonRealmsProxy + */ +f.realmsButton.GuiButtonRealmsProxy = "field_154318_o" +/** + * Minecraft Realms button. + * + * Parent Class: GuiMainMenu + */ +f.realmsButton.GuiMainMenu = "field_175372_K" + +/** + * + * + * Parent Class: DedicatedServer + */ +f.eula = "field_154332_n" +/** + * + * + * Parent Class: GuiSlotRealmsProxy + */ +f.selectionList = "field_154340_k" +f.LOG = {} +/** + * + * + * Parent Class: ServerEula + */ +f.LOG.ServerEula = "field_154349_a" +/** + * "Access to the Logger + * + * Parent Class: LayeredColorMaskTexture + */ +f.LOG.LayeredColorMaskTexture = "field_174947_f" + +/** + * + * + * Parent Class: ServerEula + */ +f.eulaFile = "field_154350_b" +/** + * + * + * Parent Class: ServerEula + */ +f.acceptedEULA = "field_154351_c" +/** + * + * + * Parent Class: RConThreadBase + */ +f.threadName = "field_164003_c" +/** + * + * + * Parent Class: RConThreadBase + */ +f.THREAD_ID = "field_164004_h" +/** + * + * + * Parent Class: MinecraftServerGui + */ +f.serverGuiFont = "field_164249_a" +/** + * + * + * Parent Class: Entity + */ +f.isOutsideBorder = "field_174835_g" +/** + * + * + * Parent Class: Entity + */ +f.ZERO_AABB = "field_174836_a" +/** + * The command result statistics for this Entity. + * + * Parent Class: Entity + */ +f.cmdResultStats = "field_174837_as" +/** + * + * + * Parent Class: EntityDiggingFX + */ +f.sourceState = "field_174847_a" +f.particleTypes = {} +/** + * + * + * Parent Class: EntityParticleEmitter + */ +f.particleTypes.EntityParticleEmitter = "field_174849_az" +/** + * + * + * Parent Class: EffectRenderer + */ +f.particleTypes.EffectRenderer = "field_178932_g" + +f.lifetime = {} +/** + * + * + * Parent Class: EntityParticleEmitter + */ +f.lifetime.EntityParticleEmitter = "field_174850_ay" +/** + * + * + * Parent Class: EntityEndermite + */ +f.lifetime.EntityEndermite = "field_175497_b" +/** + * The lifetime of the firework in ticks. When the age reaches the lifetime the firework explodes. + * + * Parent Class: EntityFireworkRocket + */ +f.lifetime.EntityFireworkRocket = "field_92055_b" + +/** + * + * + * Parent Class: EntityParticleEmitter + */ +f.attachedEntity = "field_174851_a" +f.age = {} +/** + * + * + * Parent Class: EntityParticleEmitter + */ +f.age.EntityParticleEmitter = "field_174852_ax" +/** + * The age of this EntityItem (used to animate it up and down as well as expire it) + * + * Parent Class: EntityItem + */ +f.age.EntityItem = "field_70292_b" +/** + * + * + * Parent Class: EntityPickupFX + */ +f.age.EntityPickupFX = "field_70594_ar" + +/** + * The direction the entity is facing + * + * Parent Class: EntityHanging + */ +f.facingDirection = "field_174860_b" +/** + * + * + * Parent Class: EntityHanging + */ +f.hangingPosition = "field_174861_a" +f.pos = {} +/** + * + * + * Parent Class: TileEntity + */ +f.pos.TileEntity = "field_174879_c" +/** + * + * + * Parent Class: BlockWorldState + */ +f.pos.BlockWorldState = "field_177513_b" +/** + * + * + * Parent Class: BlockPattern$PatternHelper + */ +f.pos.BlockPattern$PatternHelper = "field_177674_a" +/** + * Position of the workbench + * + * Parent Class: ContainerWorkbench + */ +f.pos.ContainerWorkbench = "field_178145_h" +/** + * + * + * Parent Class: BlockSourceImpl + */ +f.pos.BlockSourceImpl = "field_179317_b" +/** + * + * + * Parent Class: CommandClone$StaticCloneData + */ +f.pos.CommandClone$StaticCloneData = "field_179537_a" +/** + * + * + * Parent Class: C12PacketUpdateSign + */ +f.pos.C12PacketUpdateSign = "field_179723_a" +/** + * + * + * Parent Class: BlockRedstoneTorch$Toggle + */ +f.pos.BlockRedstoneTorch$Toggle = "field_180111_a" +/** + * + * + * Parent Class: BlockRailBase$Rail + */ +f.pos.BlockRailBase$Rail = "field_180367_c" + +/** + * + * + * Parent Class: TileEntitySign + */ +f.stats = "field_174883_i" +f.guiID = {} +/** + * + * + * Parent Class: ContainerLocalMenu + */ +f.guiID.ContainerLocalMenu = "field_174896_a" +/** + * + * + * Parent Class: LocalBlockIntercommunication + */ +f.guiID.LocalBlockIntercommunication = "field_175126_a" + +/** + * + * + * Parent Class: TileEntityLockable + */ +f.code = "field_174901_a" +f.totalCookTime = {} +/** + * + * + * Parent Class: TileEntityFurnace + */ +f.totalCookTime.TileEntityFurnace = "field_174905_l" +/** + * + * + * Parent Class: ContainerFurnace + */ +f.totalCookTime.ContainerFurnace = "field_178153_g" + +f.cookTime = {} +/** + * + * + * Parent Class: TileEntityFurnace + */ +f.cookTime.TileEntityFurnace = "field_174906_k" +/** + * + * + * Parent Class: ContainerFurnace + */ +f.cookTime.ContainerFurnace = "field_178152_f" + +/** + * A list of beam segments for this beacon + * + * Parent Class: TileEntityBeacon + */ +f.beamSegments = "field_174909_f" +/** + * + * + * Parent Class: TileEntityDispenser + */ +f.RNG = "field_174913_f" +/** + * + * + * Parent Class: InventoryCrafting + */ +f.inventoryHeight = "field_174924_c" +/** + * + * + * Parent Class: TileEntityPiston + */ +f.pistonFacing = "field_174931_f" +/** + * + * + * Parent Class: TileEntityPiston + */ +f.pistonState = "field_174932_a" +/** + * + * + * Parent Class: GuardianSound + */ +f.guardian = "field_174934_k" +/** + * + * + * Parent Class: AbstractTexture + */ +f.blurLast = "field_174938_d" +/** + * + * + * Parent Class: AbstractTexture + */ +f.mipmapLast = "field_174939_e" +/** + * + * + * Parent Class: AbstractTexture + */ +f.blur = "field_174940_b" +/** + * + * + * Parent Class: AbstractTexture + */ +f.mipmap = "field_174941_c" +/** + * + * + * Parent Class: TextureMap + */ +f.LOCATION_MISSING_TEXTURE = "field_174945_f" +/** + * + * + * Parent Class: TextureMap + */ +f.iconCreator = "field_174946_m" +/** + * + * + * Parent Class: ModelManager + */ +f.defaultModel = "field_174955_d" +/** + * + * + * Parent Class: ModelManager + */ +f.texMap = "field_174956_b" +/** + * + * + * Parent Class: ModelManager + */ +f.modelProvider = "field_174957_c" +/** + * + * + * Parent Class: ModelManager + */ +f.modelRegistry = "field_174958_a" +/** + * + * + * Parent Class: RenderGlobal + */ +f.frustumUpdatePosZ = "field_174987_D" +/** + * + * + * Parent Class: RenderGlobal + */ +f.frustumUpdatePosChunkX = "field_174988_E" +/** + * + * + * Parent Class: RenderGlobal + */ +f.frustumUpdatePosChunkY = "field_174989_F" +/** + * + * + * Parent Class: RenderGlobal + */ +f.frustumUpdatePosChunkZ = "field_174990_G" +/** + * Stores the shader group for the entity_outline shader + * + * Parent Class: RenderGlobal + */ +f.entityOutlineShader = "field_174991_A" +/** + * + * + * Parent Class: RenderGlobal + */ +f.frustumUpdatePosX = "field_174992_B" +/** + * + * + * Parent Class: RenderGlobal + */ +f.frustumUpdatePosY = "field_174993_C" +/** + * + * + * Parent Class: RenderGlobal + */ +f.lastViewEntityYaw = "field_174994_L" +/** + * + * + * Parent Class: RenderGlobal + */ +f.renderDispatcher = "field_174995_M" +/** + * + * + * Parent Class: RenderGlobal + */ +f.renderContainer = "field_174996_N" +/** + * + * + * Parent Class: RenderGlobal + */ +f.lastViewEntityX = "field_174997_H" +/** + * + * + * Parent Class: RenderGlobal + */ +f.lastViewEntityY = "field_174998_I" +/** + * + * + * Parent Class: RenderGlobal + */ +f.lastViewEntityZ = "field_174999_J" +/** + * + * + * Parent Class: RenderGlobal + */ +f.lastViewEntityPitch = "field_175000_K" +/** + * + * + * Parent Class: RenderGlobal + */ +f.debugFixedClippingHelper = "field_175001_U" +/** + * + * + * Parent Class: RenderGlobal + */ +f.debugFixTerrainFrustum = "field_175002_T" +/** + * + * + * Parent Class: RenderGlobal + */ +f.debugTerrainFrustumPosition = "field_175003_W" +/** + * + * + * Parent Class: RenderGlobal + */ +f.debugTerrainMatrix = "field_175004_V" +/** + * + * + * Parent Class: RenderGlobal + */ +f.vboEnabled = "field_175005_X" +/** + * + * + * Parent Class: RenderGlobal + */ +f.locationForcefieldPng = "field_175006_g" +/** + * + * + * Parent Class: RenderGlobal + */ +f.renderChunkFactory = "field_175007_a" +/** + * + * + * Parent Class: RenderGlobal + */ +f.viewFrustum = "field_175008_n" +/** + * + * + * Parent Class: RenderGlobal + */ +f.chunksToUpdate = "field_175009_l" +f.renderManager = {} +/** + * + * + * Parent Class: RenderGlobal + */ +f.renderManager.RenderGlobal = "field_175010_j" +/** + * + * + * Parent Class: Minecraft + */ +f.renderManager.Minecraft = "field_175616_W" +/** + * + * + * Parent Class: ItemRenderer + */ +f.renderManager.ItemRenderer = "field_178111_g" +/** + * + * + * Parent Class: Render + */ +f.renderManager.Render = "field_76990_c" + +/** + * + * + * Parent Class: RenderGlobal + */ +f.sky2VBO = "field_175011_u" +/** + * + * + * Parent Class: RenderGlobal + */ +f.skyVBO = "field_175012_t" +/** + * + * + * Parent Class: RenderGlobal + */ +f.starVBO = "field_175013_s" +/** + * + * + * Parent Class: RenderGlobal + */ +f.vertexBufferFormat = "field_175014_r" +/** + * + * + * Parent Class: RenderGlobal + */ +f.entityOutlineFramebuffer = "field_175015_z" +/** + * + * + * Parent Class: BlockRendererDispatcher + */ +f.chestRenderer = "field_175024_d" +/** + * + * + * Parent Class: BlockRendererDispatcher + */ +f.fluidRenderer = "field_175025_e" +f.gameSettings = {} +/** + * + * + * Parent Class: BlockRendererDispatcher + */ +f.gameSettings.BlockRendererDispatcher = "field_175026_b" +/** + * The game settings that currently hold effect. + * + * Parent Class: Minecraft + */ +f.gameSettings.Minecraft = "field_71474_y" +/** + * + * + * Parent Class: MovementInputFromOptions + */ +f.gameSettings.MovementInputFromOptions = "field_78903_e" + +/** + * + * + * Parent Class: BlockRendererDispatcher + */ +f.blockModelRenderer = "field_175027_c" +f.blockModelShapes = {} +/** + * + * + * Parent Class: BlockRendererDispatcher + */ +f.blockModelShapes.BlockRendererDispatcher = "field_175028_a" +/** + * + * + * Parent Class: ModelBakery + */ +f.blockModelShapes.ModelBakery = "field_177610_k" + +/** + * False when the renderer is rendering the item's effects into a GUI + * + * Parent Class: RenderItem + */ +f.notRenderingEffectsInGUI = "field_175058_l" +/** + * + * + * Parent Class: RenderItem + */ +f.itemModelMesher = "field_175059_m" +/** + * + * + * Parent Class: EntityRenderer + */ +f.drawBlockOutline = "field_175073_D" +/** + * + * + * Parent Class: EntityRenderer + */ +f.renderHand = "field_175074_C" +/** + * + * + * Parent Class: EntityRenderer + */ +f.torchFlickerDX = "field_175075_L" +/** + * + * + * Parent Class: EntityRenderer + */ +f.rainXCoords = "field_175076_N" +/** + * + * + * Parent Class: EntityRenderer + */ +f.rainYCoords = "field_175077_O" +/** + * + * + * Parent Class: EntityRenderer + */ +f.debugView = "field_175078_W" +/** + * + * + * Parent Class: EntityRenderer + */ +f.debugViewDirection = "field_175079_V" +/** + * + * + * Parent Class: EntityRenderer + */ +f.fogColorRed = "field_175080_Q" +/** + * + * + * Parent Class: EntityRenderer + */ +f.fogColorBlue = "field_175081_S" +/** + * + * + * Parent Class: EntityRenderer + */ +f.fogColorGreen = "field_175082_R" +/** + * + * + * Parent Class: EntityRenderer + */ +f.useShader = "field_175083_ad" +/** + * + * + * Parent Class: EntityRenderer + */ +f.frameCount = "field_175084_ae" +/** + * A list of all the banner patterns. + * + * Parent Class: TileEntityBanner + */ +f.patterns = "field_175118_f" +/** + * + * + * Parent Class: TileEntityBanner + */ +f.baseColor = "field_175120_a" +/** + * "This is a String representation of this banners pattern and color lists + * + * Parent Class: TileEntityBanner + */ +f.patternResourceLocation = "field_175121_j" +/** + * A list of all patterns stored on this banner. + * + * Parent Class: TileEntityBanner + */ +f.patternList = "field_175122_h" +/** + * A list of all the color values stored on this banner. + * + * Parent Class: TileEntityBanner + */ +f.colorList = "field_175123_i" +/** + * + * + * Parent Class: EntityFallingBlock + */ +f.fallTile = "field_175132_d" +f.xpSeed = {} +/** + * + * + * Parent Class: EntityPlayer + */ +f.xpSeed.EntityPlayer = "field_175152_f" +/** + * + * + * Parent Class: ContainerEnchantment + */ +f.xpSeed.ContainerEnchantment = "field_178149_f" + +/** + * + * + * Parent Class: EntityPlayer + */ +f.hasReducedDebug = "field_175153_bG" +/** + * + * + * Parent Class: AbstractClientPlayer + */ +f.playerInfo = "field_175157_a" +/** + * "The last yaw value which was transmitted to the server + * + * Parent Class: EntityPlayerSP + */ +f.lastReportedYaw = "field_175164_bL" +/** + * "The last pitch value which was transmitted to the server + * + * Parent Class: EntityPlayerSP + */ +f.lastReportedPitch = "field_175165_bM" +/** + * "The last Y position which was transmitted to the server + * + * Parent Class: EntityPlayerSP + */ +f.lastReportedPosY = "field_175166_bJ" +/** + * "The last Z position which was transmitted to the server + * + * Parent Class: EntityPlayerSP + */ +f.lastReportedPosZ = "field_175167_bK" +/** + * "Reset to 0 every time position is sent to the server + * + * Parent Class: EntityPlayerSP + */ +f.positionUpdateTicks = "field_175168_bP" +/** + * + * + * Parent Class: EntityPlayerSP + */ +f.hasValidHealth = "field_175169_bQ" +/** + * the last sneaking state sent to the server + * + * Parent Class: EntityPlayerSP + */ +f.serverSneakState = "field_175170_bN" +/** + * the last sprinting state sent to the server + * + * Parent Class: EntityPlayerSP + */ +f.serverSprintState = "field_175171_bO" +/** + * "The last X position which was transmitted to the server + * + * Parent Class: EntityPlayerSP + */ +f.lastReportedPosX = "field_175172_bI" +/** + * + * + * Parent Class: GuiIngame + */ +f.lastPlayerHealth = "field_175189_D" +/** + * The last recorded system time + * + * Parent Class: GuiIngame + */ +f.lastSystemTime = "field_175190_E" +/** + * Used with updateCounter to make the heart bar flash + * + * Parent Class: GuiIngame + */ +f.healthUpdateCounter = "field_175191_F" +/** + * The time that the title is display + * + * Parent Class: GuiIngame + */ +f.titleDisplayTime = "field_175192_A" +/** + * The time that the title take to fade out + * + * Parent Class: GuiIngame + */ +f.titleFadeOut = "field_175193_B" +/** + * + * + * Parent Class: GuiIngame + */ +f.playerHealth = "field_175194_C" +/** + * A timer for the current title and subtitle displayed + * + * Parent Class: GuiIngame + */ +f.titlesTimer = "field_175195_w" +/** + * + * + * Parent Class: GuiIngame + */ +f.overlayPlayerList = "field_175196_v" +/** + * The spectator GUI for this in-game GUI instance + * + * Parent Class: GuiIngame + */ +f.spectatorGui = "field_175197_u" +/** + * + * + * Parent Class: GuiIngame + */ +f.overlayDebug = "field_175198_t" +/** + * The time that the title take to fade in + * + * Parent Class: GuiIngame + */ +f.titleFadeIn = "field_175199_z" +/** + * The current sub-title displayed + * + * Parent Class: GuiIngame + */ +f.displayedSubTitle = "field_175200_y" +/** + * The current title displayed + * + * Parent Class: GuiIngame + */ +f.displayedTitle = "field_175201_x" +/** + * Called to check if the text is valid + * + * Parent Class: GuiTextField + */ +f.validator = "field_175209_y" +/** + * The GuiResponder Object reference. + * + * Parent Class: GuiListButton + */ +f.guiResponder = "field_175214_q" +/** + * The localization string used by this control. + * + * Parent Class: GuiListButton + */ +f.localizationStr = "field_175215_p" +/** + * + * + * Parent Class: GuiSlider + */ +f.formatHelper = "field_175222_u" +/** + * + * + * Parent Class: GuiSlider + */ +f.responder = "field_175223_t" +/** + * + * + * Parent Class: GuiSlider + */ +f.min = "field_175225_r" +/** + * + * + * Parent Class: GuiSlider + */ +f.sliderPosition = "field_175227_p" +/** + * + * + * Parent Class: GuiSlider + */ +f.isMouseDown = "field_175228_o" +/** + * + * + * Parent Class: GuiCustomizeSkin$ButtonPart + */ +f.playerModelParts = "field_175234_p" +/** + * + * + * Parent Class: GuiPlayerTabOverlay + */ +f.guiIngame = "field_175251_g" +/** + * "The last time the playerlist was opened (went from not being renderd + * + * Parent Class: GuiPlayerTabOverlay + */ +f.lastTimeOpened = "field_175253_j" +/** + * Weither or not the playerlist is currently being rendered + * + * Parent Class: GuiPlayerTabOverlay + */ +f.isBeingRendered = "field_175254_k" +f.footer = {} +/** + * + * + * Parent Class: GuiPlayerTabOverlay + */ +f.footer.GuiPlayerTabOverlay = "field_175255_h" +/** + * + * + * Parent Class: S47PacketPlayerListHeaderFooter + */ +f.footer.S47PacketPlayerListHeaderFooter = "field_179702_b" + +f.header = {} +/** + * + * + * Parent Class: GuiPlayerTabOverlay + */ +f.header.GuiPlayerTabOverlay = "field_175256_i" +/** + * + * + * Parent Class: S47PacketPlayerListHeaderFooter + */ +f.header.S47PacketPlayerListHeaderFooter = "field_179703_a" + +/** + * + * + * Parent Class: GuiScreen + */ +f.PROTOCOLS = "field_175284_f" +/** + * + * + * Parent Class: GuiScreen + */ +f.NEWLINE_SPLITTER = "field_175285_g" +/** + * + * + * Parent Class: GuiScreen + */ +f.clickedLinkURI = "field_175286_t" +/** + * + * + * Parent Class: GuiScreenResourcePacks + */ +f.changed = "field_175289_s" +/** + * "Used to save away the game mode when the current ""debug"" world type is chosen (forcing it to spectator mode)" + * + * Parent Class: GuiCreateWorld + */ +f.savedGameMode = "field_175300_s" +f.dispenserInventory = {} +/** + * The inventory contained within the corresponding Dispenser. + * + * Parent Class: GuiDispenser + */ +f.dispenserInventory.GuiDispenser = "field_175377_u" +/** + * + * + * Parent Class: ContainerDispenser + */ +f.dispenserInventory.ContainerDispenser = "field_178146_a" + +/** + * The entity the player is currently spectating through. + * + * Parent Class: EntityPlayerMP + */ +f.spectatingEntity = "field_175401_bS" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.DEFAULT_RIGHTLEG_ROTATION = "field_175429_f" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.contents = "field_175430_g" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.DEFAULT_RIGHTARM_ROTATION = "field_175431_d" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.DEFAULT_LEFTLEG_ROTATION = "field_175432_e" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.DEFAULT_BODY_ROTATION = "field_175433_b" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.DEFAULT_LEFTARM_ROTATION = "field_175434_c" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.DEFAULT_HEAD_ROTATION = "field_175435_a" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.canInteract = "field_175436_h" +/** + * "After punching the stand + * + * Parent Class: EntityArmorStand + */ +f.punchCooldown = "field_175437_i" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.leftArmRotation = "field_175438_bj" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.rightArmRotation = "field_175439_bk" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.leftLegRotation = "field_175440_bl" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.rightLegRotation = "field_175441_bm" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.disabledSlots = "field_175442_bg" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.headRotation = "field_175443_bh" +/** + * + * + * Parent Class: EntityArmorStand + */ +f.bodyRotation = "field_175444_bi" +/** + * Entity selector for IMob types that are not invisible + * + * Parent Class: IMob + */ +f.VISIBLE_MOB_SELECTOR = "field_175450_e" +/** + * + * + * Parent Class: EntitySlime + */ +f.wasOnGround = "field_175452_bi" +/** + * + * + * Parent Class: EntityPigZombie + */ +f.angerTargetUUID = "field_175459_bn" +/** + * + * + * Parent Class: EntitySilverfish + */ +f.summonSilverfish = "field_175460_b" +/** + * + * + * Parent Class: EntityGuardian + */ +f.targetedEntity = "field_175478_bn" +/** + * + * + * Parent Class: EntityGuardian + */ +f.wander = "field_175481_bq" +/** + * + * + * Parent Class: EntityEndermite + */ +f.playerSpawned = "field_175498_c" +/** + * + * + * Parent Class: EntityAgeable + */ +f.growingAge = "field_175504_a" +/** + * + * + * Parent Class: EntityAnimal + */ +f.spawnableBlock = "field_175506_bl" +/** + * Map from EnumDyeColor to RGB values for passage to GlStateManager.color() + * + * Parent Class: EntitySheep + */ +f.DYE_TO_RGB = "field_175514_bm" +/** + * + * + * Parent Class: EntityRabbit + */ +f.currentMoveTypeDuration = "field_175538_bq" +/** + * + * + * Parent Class: EntityRabbit + */ +f.aiAvoidWolves = "field_175539_bk" +/** + * + * + * Parent Class: EntityRabbit + */ +f.carrotTicks = "field_175541_bs" +/** + * + * + * Parent Class: EntityRabbit + */ +f.moveType = "field_175542_br" +/** + * + * + * Parent Class: EntityOcelot + */ +f.avoidEntity = "field_175545_bm" +/** + * + * + * Parent Class: EntityVillager + */ +f.villagerInventory = "field_175560_bz" +/** + * "A multi-dimensional array mapping the various professions + * + * Parent Class: EntityVillager + */ +f.DEFAULT_TRADE_LIST_MAP = "field_175561_bA" +/** + * This is the EntityVillager's career level value + * + * Parent Class: EntityVillager + */ +f.careerLevel = "field_175562_bw" +/** + * + * + * Parent Class: EntityVillager + */ +f.careerId = "field_175563_bv" +/** + * + * + * Parent Class: EntityVillager + */ +f.areAdditionalTasksSet = "field_175564_by" +/** + * + * + * Parent Class: EntityVillager + */ +f.isWillingToMate = "field_175565_bs" +/** + * + * + * Parent Class: CommandBlockLogic + */ +f.resultStats = "field_175575_g" +/** + * + * + * Parent Class: MinecraftServer + */ +f.resourcePackHash = "field_175588_P" +/** + * + * + * Parent Class: MinecraftServer + */ +f.futureTaskQueue = "field_175589_i" +/** + * + * + * Parent Class: MinecraftServer + */ +f.serverThread = "field_175590_aa" +/** + * + * + * Parent Class: MinecraftServer + */ +f.currentTime = "field_175591_ab" +/** + * + * + * Parent Class: Minecraft + */ +f.renderChunksMany = "field_175612_E" +f.modelManager = {} +/** + * + * + * Parent Class: Minecraft + */ +f.modelManager.Minecraft = "field_175617_aL" +/** + * + * + * Parent Class: ItemModelMesher + */ +f.modelManager.ItemModelMesher = "field_178090_d" +/** + * + * + * Parent Class: BlockModelShapes + */ +f.modelManager.BlockModelShapes = "field_178128_c" + +/** + * The BlockRenderDispatcher instance that will be used based off gamesettings + * + * Parent Class: Minecraft + */ +f.blockRenderDispatcher = "field_175618_aM" +/** + * + * + * Parent Class: Minecraft + */ +f.enableGLErrorChecking = "field_175619_R" +f.itemRenderer = {} +/** + * + * + * Parent Class: Minecraft + */ +f.itemRenderer.Minecraft = "field_175620_Y" +/** + * + * + * Parent Class: RenderItemFrame + */ +f.itemRenderer.RenderItemFrame = "field_177074_h" +/** + * + * + * Parent Class: RenderEntityItem + */ +f.itemRenderer.RenderEntityItem = "field_177080_a" +/** + * + * + * Parent Class: ItemRenderer + */ +f.itemRenderer.ItemRenderer = "field_178112_h" +/** + * + * + * Parent Class: GuiIngame + */ +f.itemRenderer.GuiIngame = "field_73841_b" +/** + * + * + * Parent Class: EntityRenderer + */ +f.itemRenderer.EntityRenderer = "field_78516_c" + +/** + * + * + * Parent Class: Minecraft + */ +f.renderViewEntity = "field_175622_Z" +/** + * + * + * Parent Class: RegionRenderCache + */ +f.DEFAULT_STATE = "field_175632_f" +/** + * + * + * Parent Class: RegionRenderCache + */ +f.combinedLights = "field_175634_h" +/** + * + * + * Parent Class: RegionRenderCache + */ +f.blockStates = "field_175635_i" +/** + * + * + * Parent Class: World + */ +f.worldBorder = "field_175728_M" +/** + * + * + * Parent Class: World + */ +f.entitiesById = "field_175729_l" +/** + * + * + * Parent Class: World + */ +f.tickableTileEntities = "field_175730_i" +/** + * + * + * Parent Class: WorldServer + */ +f.villageSiege = "field_175740_d" +/** + * + * + * Parent Class: WorldServer + */ +f.entitiesByUuid = "field_175741_N" +/** + * + * + * Parent Class: WorldServer + */ +f.mobSpawner = "field_175742_R" +/** + * + * + * Parent Class: WorldServerMulti + */ +f.delegate = "field_175743_a" +f.colorIndex = {} +/** + * The numerical index that represents this color + * + * Parent Class: EnumChatFormatting + */ +f.colorIndex.EnumChatFormatting = "field_175747_C" +/** + * Holds the index of the color used on map. + * + * Parent Class: MapColor + */ +f.colorIndex.MapColor = "field_76290_q" + +/** + * + * + * Parent Class: CommandReplaceItem + */ +f.SHORTCUTS = "field_175785_a" +/** + * + * + * Parent Class: StructureMineshaftPieces + */ +f.CHEST_CONTENT_WEIGHT_LIST = "field_175893_a" +/** + * + * + * Parent Class: FlatLayerInfo + */ +f.layerMaterial = "field_175901_b" +/** + * + * + * Parent Class: WorldGenTallGrass + */ +f.tallGrassState = "field_175907_a" +/** + * + * + * Parent Class: WorldGeneratorBonusChest + */ +f.chestItems = "field_175909_a" +/** + * + * + * Parent Class: WorldGenDungeons + */ +f.SPAWNERTYPES = "field_175916_b" +/** + * + * + * Parent Class: WorldGenDungeons + */ +f.CHESTCONTENT = "field_175917_c" +f.predicate = {} +/** + * + * + * Parent Class: WorldGenMinable + */ +f.predicate.WorldGenMinable = "field_175919_c" +/** + * Use to determine if an entity correspond to specification + * + * Parent Class: EntityAIFindEntityNearestPlayer + */ +f.predicate.EntityAIFindEntityNearestPlayer = "field_179435_c" + +/** + * + * + * Parent Class: WorldGenMinable + */ +f.oreBlock = "field_175920_a" +/** + * + * + * Parent Class: WorldGenBigTree + */ +f.trunkSize = "field_175943_g" +/** + * + * + * Parent Class: WorldGenBigTree + */ +f.branchSlope = "field_175944_d" +/** + * + * + * Parent Class: WorldGenBigTree + */ +f.scaleWidth = "field_175945_e" +/** + * + * + * Parent Class: WorldGenBigTree + */ +f.basePos = "field_175947_m" +/** + * + * + * Parent Class: WorldGenBigTree + */ +f.heightLimitLimit = "field_175950_h" +f.barrier = {} +/** + * + * + * Parent Class: Material + */ +f.barrier.Material = "field_175972_I" +/** + * + * + * Parent Class: Blocks + */ +f.barrier.Blocks = "field_180401_cv" + +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_OPERAND2_RGB = "field_176076_D" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_COMBINE_ALPHA = "field_176077_E" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_SOURCE0_ALPHA = "field_176078_F" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_SOURCE1_ALPHA = "field_176079_G" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_SOURCE2_RGB = "field_176080_A" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_OPERAND0_RGB = "field_176081_B" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_OPERAND1_RGB = "field_176082_C" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.vboSupported = "field_176083_O" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_SOURCE2_ALPHA = "field_176084_H" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_OPERAND0_ALPHA = "field_176085_I" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_OPERAND1_ALPHA = "field_176086_J" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_OPERAND2_ALPHA = "field_176087_K" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.arbTextureEnvCombine = "field_176088_V" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_ARRAY_BUFFER = "field_176089_P" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.arbVbo = "field_176090_Y" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_PREVIOUS = "field_176091_w" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_CONSTANT = "field_176092_v" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_PRIMARY_COLOR = "field_176093_u" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_INTERPOLATE = "field_176094_t" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_COMBINE = "field_176095_s" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_TEXTURE2 = "field_176096_r" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_SOURCE1_RGB = "field_176097_z" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_SOURCE0_RGB = "field_176098_y" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.GL_COMBINE_RGB = "field_176099_x" +/** + * + * + * Parent Class: WorldInfo + */ +f.borderSize = "field_176146_D" +/** + * + * + * Parent Class: WorldInfo + */ +f.borderSizeLerpTime = "field_176147_E" +/** + * + * + * Parent Class: WorldInfo + */ +f.borderSizeLerpTarget = "field_176148_F" +/** + * + * + * Parent Class: WorldInfo + */ +f.borderSafeZone = "field_176149_G" +f.difficultyLocked = {} +/** + * + * + * Parent Class: WorldInfo + */ +f.difficultyLocked.WorldInfo = "field_176150_A" +/** + * + * + * Parent Class: S41PacketServerDifficulty + */ +f.difficultyLocked.S41PacketServerDifficulty = "field_179832_b" + +/** + * + * + * Parent Class: WorldInfo + */ +f.borderCenterX = "field_176151_B" +/** + * + * + * Parent Class: WorldInfo + */ +f.borderCenterZ = "field_176152_C" +/** + * + * + * Parent Class: WorldInfo + */ +f.borderDamagePerBlock = "field_176153_H" +/** + * + * + * Parent Class: WorldInfo + */ +f.borderWarningDistance = "field_176154_I" +/** + * + * + * Parent Class: WorldInfo + */ +f.borderWarningTime = "field_176155_J" +/** + * + * + * Parent Class: WorldInfo + */ +f.DEFAULT_DIFFICULTY = "field_176156_a" +/** + * + * + * Parent Class: WorldInfo + */ +f.cleanWeatherTime = "field_176157_p" +/** + * + * + * Parent Class: NodeProcessor + */ +f.entitySizeY = "field_176165_d" +/** + * + * + * Parent Class: NodeProcessor + */ +f.entitySizeZ = "field_176166_e" +/** + * + * + * Parent Class: NodeProcessor + */ +f.pointMap = "field_176167_b" +/** + * + * + * Parent Class: NodeProcessor + */ +f.entitySizeX = "field_176168_c" +/** + * + * + * Parent Class: NodeProcessor + */ +f.blockaccess = "field_176169_a" +/** + * + * + * Parent Class: WalkNodeProcessor + */ +f.canEnterDoors = "field_176180_f" +/** + * + * + * Parent Class: WalkNodeProcessor + */ +f.canBreakDoors = "field_176181_g" +/** + * + * + * Parent Class: WalkNodeProcessor + */ +f.shouldAvoidWater = "field_176182_j" +/** + * + * + * Parent Class: WalkNodeProcessor + */ +f.avoidsWater = "field_176183_h" +/** + * + * + * Parent Class: WalkNodeProcessor + */ +f.canSwim = "field_176184_i" +f.nodeProcessor = {} +/** + * + * + * Parent Class: PathFinder + */ +f.nodeProcessor.PathFinder = "field_176190_c" +/** + * + * + * Parent Class: PathNavigateGround + */ +f.nodeProcessor.PathNavigateGround = "field_179695_a" + +/** + * + * + * Parent Class: Block + */ +f.defaultBlockState = "field_176228_M" +/** + * + * + * Parent Class: Block + */ +f.BLOCK_STATE_IDS = "field_176229_d" +/** + * ResourceLocation for the Air block + * + * Parent Class: Block + */ +f.AIR_ID = "field_176230_a" +/** + * + * + * Parent Class: Block + */ +f.SLIME_SOUND = "field_176231_q" +/** + * + * + * Parent Class: BlockLeaves + */ +f.CHECK_DECAY = "field_176236_b" +/** + * + * + * Parent Class: BlockLeaves + */ +f.DECAYABLE = "field_176237_a" +/** + * + * + * Parent Class: BlockLeaves + */ +f.isTransparent = "field_176238_O" +f.VARIANT = {} +/** + * + * + * Parent Class: BlockOldLeaf + */ +f.VARIANT.BlockOldLeaf = "field_176239_P" +/** + * + * + * Parent Class: BlockNewLeaf + */ +f.VARIANT.BlockNewLeaf = "field_176240_P" +/** + * + * + * Parent Class: BlockStone + */ +f.VARIANT.BlockStone = "field_176247_a" +/** + * + * + * Parent Class: BlockStoneBrick + */ +f.VARIANT.BlockStoneBrick = "field_176249_a" +/** + * + * + * Parent Class: BlockWall + */ +f.VARIANT.BlockWall = "field_176255_P" +/** + * + * + * Parent Class: BlockNewLog + */ +f.VARIANT.BlockNewLog = "field_176300_b" +/** + * + * + * Parent Class: BlockOldLog + */ +f.VARIANT.BlockOldLog = "field_176301_b" +/** + * + * + * Parent Class: BlockPrismarine + */ +f.VARIANT.BlockPrismarine = "field_176332_a" +/** + * + * + * Parent Class: BlockQuartz + */ +f.VARIANT.BlockQuartz = "field_176335_a" +/** + * + * + * Parent Class: BlockSilverfish + */ +f.VARIANT.BlockSilverfish = "field_176378_a" +/** + * + * + * Parent Class: BlockHugeMushroom + */ +f.VARIANT.BlockHugeMushroom = "field_176380_a" +/** + * + * + * Parent Class: BlockPlanks + */ +f.VARIANT.BlockPlanks = "field_176383_a" +/** + * + * + * Parent Class: BlockDirt + */ +f.VARIANT.BlockDirt = "field_176386_a" +/** + * + * + * Parent Class: BlockDoublePlant + */ +f.VARIANT.BlockDoublePlant = "field_176493_a" +/** + * + * + * Parent Class: BlockSand + */ +f.VARIANT.BlockSand = "field_176504_a" +/** + * + * + * Parent Class: BlockStoneSlab + */ +f.VARIANT.BlockStoneSlab = "field_176556_M" +/** + * + * + * Parent Class: BlockWoodSlab + */ +f.VARIANT.BlockWoodSlab = "field_176557_b" +/** + * + * + * Parent Class: BlockStoneSlabNew + */ +f.VARIANT.BlockStoneSlabNew = "field_176559_M" +/** + * + * + * Parent Class: BlockPistonExtension$EnumPistonType + */ +f.VARIANT.BlockPistonExtension$EnumPistonType = "field_176714_c" + +f.NORTH = {} +/** + * + * + * Parent Class: BlockPane + */ +f.NORTH.BlockPane = "field_176241_b" +/** + * + * + * Parent Class: BlockWall + */ +f.NORTH.BlockWall = "field_176254_b" +/** + * + * + * Parent Class: BlockVine + */ +f.NORTH.BlockVine = "field_176273_b" +/** + * + * + * Parent Class: BlockTripWire + */ +f.NORTH.BlockTripWire = "field_176296_O" +/** + * + * + * Parent Class: BlockRedstoneWire + */ +f.NORTH.BlockRedstoneWire = "field_176348_a" +/** + * Whether this fence connects in the northern direction + * + * Parent Class: BlockFence + */ +f.NORTH.BlockFence = "field_176526_a" +/** + * + * + * Parent Class: BlockFire + */ +f.NORTH.BlockFire = "field_176545_N" + +f.EAST = {} +/** + * + * + * Parent Class: BlockPane + */ +f.EAST.BlockPane = "field_176242_M" +/** + * + * + * Parent Class: BlockWall + */ +f.EAST.BlockWall = "field_176257_M" +/** + * + * + * Parent Class: BlockVine + */ +f.EAST.BlockVine = "field_176278_M" +/** + * + * + * Parent Class: BlockTripWire + */ +f.EAST.BlockTripWire = "field_176291_P" +/** + * + * + * Parent Class: BlockRedstoneWire + */ +f.EAST.BlockRedstoneWire = "field_176347_b" +/** + * Whether this fence connects in the eastern direction + * + * Parent Class: BlockFence + */ +f.EAST.BlockFence = "field_176525_b" +/** + * + * + * Parent Class: BlockFire + */ +f.EAST.BlockFire = "field_176546_O" + +f.SOUTH = {} +/** + * + * + * Parent Class: BlockPane + */ +f.SOUTH.BlockPane = "field_176243_N" +/** + * + * + * Parent Class: BlockWall + */ +f.SOUTH.BlockWall = "field_176258_N" +/** + * + * + * Parent Class: BlockVine + */ +f.SOUTH.BlockVine = "field_176279_N" +/** + * + * + * Parent Class: BlockTripWire + */ +f.SOUTH.BlockTripWire = "field_176289_Q" +/** + * + * + * Parent Class: BlockRedstoneWire + */ +f.SOUTH.BlockRedstoneWire = "field_176349_M" +/** + * Whether this fence connects in the southern direction + * + * Parent Class: BlockFence + */ +f.SOUTH.BlockFence = "field_176527_M" +/** + * + * + * Parent Class: BlockFire + */ +f.SOUTH.BlockFire = "field_176541_P" + +f.WEST = {} +/** + * + * + * Parent Class: BlockPane + */ +f.WEST.BlockPane = "field_176244_O" +/** + * + * + * Parent Class: BlockWall + */ +f.WEST.BlockWall = "field_176259_O" +/** + * + * + * Parent Class: BlockVine + */ +f.WEST.BlockVine = "field_176280_O" +/** + * + * + * Parent Class: BlockTripWire + */ +f.WEST.BlockTripWire = "field_176292_R" +/** + * + * + * Parent Class: BlockRedstoneWire + */ +f.WEST.BlockRedstoneWire = "field_176350_N" +/** + * Whether this fence connects in the western direction + * + * Parent Class: BlockFence + */ +f.WEST.BlockFence = "field_176528_N" +/** + * + * + * Parent Class: BlockFire + */ +f.WEST.BlockFire = "field_176539_Q" + +f.COLOR = {} +/** + * + * + * Parent Class: BlockStainedGlassPane + */ +f.COLOR.BlockStainedGlassPane = "field_176245_a" +/** + * + * + * Parent Class: BlockCarpet + */ +f.COLOR.BlockCarpet = "field_176330_a" +/** + * + * + * Parent Class: BlockStainedGlass + */ +f.COLOR.BlockStainedGlass = "field_176547_a" +/** + * + * + * Parent Class: BlockColored + */ +f.COLOR.BlockColored = "field_176581_a" + +/** + * + * + * Parent Class: BlockTNT + */ +f.EXPLODE = "field_176246_a" +/** + * + * + * Parent Class: BlockStoneBrick + */ +f.DEFAULT_META = "field_176248_b" +/** + * + * + * Parent Class: BlockStoneBrick + */ +f.MOSSY_META = "field_176250_M" +/** + * + * + * Parent Class: BlockStoneBrick + */ +f.CRACKED_META = "field_176251_N" +/** + * + * + * Parent Class: BlockStoneBrick + */ +f.CHISELED_META = "field_176252_O" +f.UP = {} +/** + * + * + * Parent Class: BlockWall + */ +f.UP.BlockWall = "field_176256_a" +/** + * + * + * Parent Class: BlockVine + */ +f.UP.BlockVine = "field_176277_a" + +f.POWERED = {} +/** + * + * + * Parent Class: BlockTripWireHook + */ +f.POWERED.BlockTripWireHook = "field_176263_b" +/** + * + * + * Parent Class: BlockTripWire + */ +f.POWERED.BlockTripWire = "field_176293_a" +/** + * + * + * Parent Class: BlockLever + */ +f.POWERED.BlockLever = "field_176359_b" +/** + * + * + * Parent Class: BlockRedstoneComparator + */ +f.POWERED.BlockRedstoneComparator = "field_176464_a" +/** + * + * + * Parent Class: BlockFenceGate + */ +f.POWERED.BlockFenceGate = "field_176465_b" +/** + * + * + * Parent Class: BlockDoor + */ +f.POWERED.BlockDoor = "field_176522_N" +/** + * + * + * Parent Class: BlockRailPowered + */ +f.POWERED.BlockRailPowered = "field_176569_M" +/** + * + * + * Parent Class: BlockRailDetector + */ +f.POWERED.BlockRailDetector = "field_176574_M" +/** + * + * + * Parent Class: BlockPressurePlate + */ +f.POWERED.BlockPressurePlate = "field_176580_a" +/** + * + * + * Parent Class: BlockButton + */ +f.POWERED.BlockButton = "field_176584_b" + +f.FACING = {} +/** + * + * + * Parent Class: BlockTripWireHook + */ +f.FACING.BlockTripWireHook = "field_176264_a" +/** + * + * + * Parent Class: BlockTrapDoor + */ +f.FACING.BlockTrapDoor = "field_176284_a" +/** + * + * + * Parent Class: BlockStairs + */ +f.FACING.BlockStairs = "field_176309_a" +/** + * + * + * Parent Class: BlockPistonBase + */ +f.FACING.BlockPistonBase = "field_176321_a" +/** + * + * + * Parent Class: BlockPistonExtension + */ +f.FACING.BlockPistonExtension = "field_176326_a" +/** + * + * + * Parent Class: BlockLever + */ +f.FACING.BlockLever = "field_176360_a" +/** + * + * + * Parent Class: BlockLadder + */ +f.FACING.BlockLadder = "field_176382_a" +/** + * + * + * Parent Class: BlockDirectional + */ +f.FACING.BlockDirectional = "field_176387_N" +/** + * + * + * Parent Class: BlockWallSign + */ +f.FACING.BlockWallSign = "field_176412_a" +/** + * + * + * Parent Class: BlockSkull + */ +f.FACING.BlockSkull = "field_176418_a" +/** + * + * + * Parent Class: BlockPistonMoving + */ +f.FACING.BlockPistonMoving = "field_176426_a" +/** + * + * + * Parent Class: BlockHopper + */ +f.FACING.BlockHopper = "field_176430_a" +/** + * + * + * Parent Class: BlockEnderChest + */ +f.FACING.BlockEnderChest = "field_176437_a" +/** + * + * + * Parent Class: BlockDispenser + */ +f.FACING.BlockDispenser = "field_176441_a" +/** + * + * + * Parent Class: BlockFurnace + */ +f.FACING.BlockFurnace = "field_176447_a" +/** + * + * + * Parent Class: BlockBanner + */ +f.FACING.BlockBanner = "field_176449_a" +/** + * + * + * Parent Class: BlockChest + */ +f.FACING.BlockChest = "field_176459_a" +/** + * + * + * Parent Class: BlockStem + */ +f.FACING.BlockStem = "field_176483_b" +/** + * + * + * Parent Class: BlockAnvil + */ +f.FACING.BlockAnvil = "field_176506_a" +/** + * + * + * Parent Class: BlockEndPortalFrame + */ +f.FACING.BlockEndPortalFrame = "field_176508_a" +/** + * + * + * Parent Class: BlockDoor + */ +f.FACING.BlockDoor = "field_176520_a" +/** + * + * + * Parent Class: BlockButton + */ +f.FACING.BlockButton = "field_176585_a" +/** + * + * + * Parent Class: BlockTorch + */ +f.FACING.BlockTorch = "field_176596_a" +/** + * + * + * Parent Class: BlockDoublePlant + */ +f.FACING.BlockDoublePlant = "field_181084_N" + +f.ATTACHED = {} +/** + * + * + * Parent Class: BlockTripWireHook + */ +f.ATTACHED.BlockTripWireHook = "field_176265_M" +/** + * + * + * Parent Class: BlockTripWire + */ +f.ATTACHED.BlockTripWire = "field_176294_M" + +f.SUSPENDED = {} +/** + * + * + * Parent Class: BlockTripWireHook + */ +f.SUSPENDED.BlockTripWireHook = "field_176266_N" +/** + * + * + * Parent Class: BlockTripWire + */ +f.SUSPENDED.BlockTripWire = "field_176290_b" + +/** + * + * + * Parent Class: BlockVine + */ +f.ALL_FACES = "field_176274_P" +f.OPEN = {} +/** + * + * + * Parent Class: BlockTrapDoor + */ +f.OPEN.BlockTrapDoor = "field_176283_b" +/** + * + * + * Parent Class: BlockFenceGate + */ +f.OPEN.BlockFenceGate = "field_176466_a" +/** + * + * + * Parent Class: BlockDoor + */ +f.OPEN.BlockDoor = "field_176519_b" + +f.HALF = {} +/** + * + * + * Parent Class: BlockTrapDoor + */ +f.HALF.BlockTrapDoor = "field_176285_M" +/** + * + * + * Parent Class: BlockStairs + */ +f.HALF.BlockStairs = "field_176308_b" +/** + * + * + * Parent Class: BlockDoublePlant + */ +f.HALF.BlockDoublePlant = "field_176492_b" +/** + * + * + * Parent Class: BlockDoor + */ +f.HALF.BlockDoor = "field_176523_O" +/** + * + * + * Parent Class: BlockSlab + */ +f.HALF.BlockSlab = "field_176554_a" + +/** + * + * + * Parent Class: BlockTripWire + */ +f.DISARMED = "field_176295_N" +f.AXIS = {} +/** + * + * + * Parent Class: BlockRotatedPillar + */ +f.AXIS.BlockRotatedPillar = "field_176298_M" +/** + * + * + * Parent Class: BlockPortal + */ +f.AXIS.BlockPortal = "field_176550_a" + +/** + * + * + * Parent Class: BlockLog + */ +f.LOG_AXIS = "field_176299_a" +f.SHAPE = {} +/** + * + * + * Parent Class: BlockStairs + */ +f.SHAPE.BlockStairs = "field_176310_M" +/** + * + * + * Parent Class: BlockRail + */ +f.SHAPE.BlockRail = "field_176565_b" +/** + * + * + * Parent Class: BlockRailPowered + */ +f.SHAPE.BlockRailPowered = "field_176568_b" +/** + * + * + * Parent Class: BlockRailDetector + */ +f.SHAPE.BlockRailDetector = "field_176573_b" + +/** + * + * + * Parent Class: BlockSponge + */ +f.WET = "field_176313_a" +f.LAYERS = {} +/** + * + * + * Parent Class: BlockSnow + */ +f.LAYERS.BlockSnow = "field_176315_a" +/** + * + * + * Parent Class: ItemModelGenerator + */ +f.LAYERS.ItemModelGenerator = "field_178398_a" + +/** + * + * + * Parent Class: BlockPistonBase + */ +f.EXTENDED = "field_176320_b" +f.SHORT = {} +/** + * + * + * Parent Class: BlockPistonExtension + */ +f.SHORT.BlockPistonExtension = "field_176327_M" +/** + * + * + * Parent Class: JsonToNBT$Primitive + */ +f.SHORT.JsonToNBT$Primitive = "field_179262_g" + +/** + * + * + * Parent Class: BlockPrismarine + */ +f.ROUGH_META = "field_176331_b" +/** + * + * + * Parent Class: BlockPrismarine + */ +f.BRICKS_META = "field_176333_M" +/** + * + * + * Parent Class: BlockPrismarine + */ +f.DARK_META = "field_176334_N" +f.POWER = {} +/** + * + * + * Parent Class: BlockRedstoneWire + */ +f.POWER.BlockRedstoneWire = "field_176351_O" +/** + * + * + * Parent Class: BlockDaylightDetector + */ +f.POWER.BlockDaylightDetector = "field_176436_a" +/** + * + * + * Parent Class: BlockPressurePlateWeighted + */ +f.POWER.BlockPressurePlateWeighted = "field_176579_a" + +f.AGE = {} +/** + * + * + * Parent Class: BlockReed + */ +f.AGE.BlockReed = "field_176355_a" +/** + * + * + * Parent Class: BlockStem + */ +f.AGE.BlockStem = "field_176484_a" +/** + * + * + * Parent Class: BlockNetherWart + */ +f.AGE.BlockNetherWart = "field_176486_a" +/** + * + * + * Parent Class: BlockCrops + */ +f.AGE.BlockCrops = "field_176488_a" +/** + * + * + * Parent Class: BlockCocoa + */ +f.AGE.BlockCocoa = "field_176501_a" +/** + * + * + * Parent Class: BlockFire + */ +f.AGE.BlockFire = "field_176543_a" +/** + * + * + * Parent Class: BlockCactus + */ +f.AGE.BlockCactus = "field_176587_a" + +f.LEVEL = {} +/** + * + * + * Parent Class: BlockLiquid + */ +f.LEVEL.BlockLiquid = "field_176367_b" +/** + * + * + * Parent Class: BlockCauldron + */ +f.LEVEL.BlockCauldron = "field_176591_a" + +/** + * + * + * Parent Class: BlockHugeMushroom + */ +f.smallBlock = "field_176379_b" +f.SNOWY = {} +/** + * + * + * Parent Class: BlockMycelium + */ +f.SNOWY.BlockMycelium = "field_176384_a" +/** + * + * + * Parent Class: BlockDirt + */ +f.SNOWY.BlockDirt = "field_176385_b" +/** + * + * + * Parent Class: BlockGrass + */ +f.SNOWY.BlockGrass = "field_176498_a" + +/** + * + * + * Parent Class: BlockPumpkin + */ +f.snowmanPattern = "field_176393_b" +/** + * + * + * Parent Class: BlockPumpkin + */ +f.snowmanBasePattern = "field_176394_a" +/** + * + * + * Parent Class: BlockPumpkin + */ +f.golemBasePattern = "field_176395_M" +/** + * + * + * Parent Class: BlockPumpkin + */ +f.golemPattern = "field_176396_O" +/** + * + * + * Parent Class: BlockRedstoneRepeater + */ +f.DELAY = "field_176410_b" +/** + * + * + * Parent Class: BlockRedstoneRepeater + */ +f.LOCKED = "field_176411_a" +f.ROTATION = {} +/** + * + * + * Parent Class: BlockStandingSign + */ +f.ROTATION.BlockStandingSign = "field_176413_a" +/** + * + * + * Parent Class: BlockBanner + */ +f.ROTATION.BlockBanner = "field_176448_b" + +/** + * + * + * Parent Class: BlockSkull + */ +f.NODROP = "field_176417_b" +/** + * + * + * Parent Class: BlockSkull + */ +f.IS_WITHER_SKELETON = "field_176419_M" +/** + * + * + * Parent Class: BlockSkull + */ +f.witherBasePattern = "field_176420_N" +/** + * + * + * Parent Class: BlockSkull + */ +f.witherPattern = "field_176421_O" +/** + * + * + * Parent Class: BlockHopper + */ +f.ENABLED = "field_176429_b" +/** + * + * + * Parent Class: BlockJukebox + */ +f.HAS_RECORD = "field_176432_a" +/** + * + * + * Parent Class: BlockNote + */ +f.INSTRUMENTS = "field_176434_a" +/** + * + * + * Parent Class: BlockDaylightDetector + */ +f.inverted = "field_176435_b" +f.TRIGGERED = {} +/** + * + * + * Parent Class: BlockDispenser + */ +f.TRIGGERED.BlockDispenser = "field_176440_b" +/** + * + * + * Parent Class: BlockCommandBlock + */ +f.TRIGGERED.BlockCommandBlock = "field_176452_a" + +/** + * + * + * Parent Class: BlockFlowerPot + */ +f.CONTENTS = "field_176443_b" +/** + * + * + * Parent Class: BlockFlowerPot + */ +f.LEGACY_DATA = "field_176444_a" +/** + * + * + * Parent Class: BlockBrewingStand + */ +f.HAS_BOTTLE = "field_176451_a" +/** + * + * + * Parent Class: BlockRedstoneComparator + */ +f.MODE = "field_176463_b" +/** + * + * + * Parent Class: BlockFenceGate + */ +f.IN_WALL = "field_176467_M" +/** + * + * + * Parent Class: BlockBed + */ +f.OCCUPIED = "field_176471_b" +/** + * + * + * Parent Class: BlockBed + */ +f.PART = "field_176472_a" +/** + * + * + * Parent Class: BlockSapling + */ +f.STAGE = "field_176479_b" +/** + * + * + * Parent Class: BlockAnvil + */ +f.DAMAGE = "field_176505_b" +/** + * + * + * Parent Class: BlockEndPortalFrame + */ +f.EYE = "field_176507_b" +/** + * + * + * Parent Class: BlockDoor + */ +f.HINGE = "field_176521_M" +/** + * + * + * Parent Class: BlockFarmland + */ +f.MOISTURE = "field_176531_a" +/** + * + * + * Parent Class: BlockFire + */ +f.FLIP = "field_176540_b" +/** + * + * + * Parent Class: BlockFire + */ +f.UPPER = "field_176542_R" +/** + * + * + * Parent Class: BlockFire + */ +f.ALT = "field_176544_M" +f.SEAMLESS = {} +/** + * + * + * Parent Class: BlockStoneSlab + */ +f.SEAMLESS.BlockStoneSlab = "field_176555_b" +/** + * + * + * Parent Class: BlockStoneSlabNew + */ +f.SEAMLESS.BlockStoneSlabNew = "field_176558_b" + +/** + * + * + * Parent Class: BlockCake + */ +f.BITES = "field_176589_a" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.ITEM = "field_176599_b" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.BLOCK = "field_176600_a" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.interpolatedFrameData = "field_176605_b" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.locationNameCompass = "field_176606_q" +/** + * + * + * Parent Class: TextureAtlasSprite + */ +f.locationNameClock = "field_176607_p" +/** + * + * + * Parent Class: TextureCompass + */ +f.locationSprite = "field_176608_l" +f.mapColor = {} +/** + * + * + * Parent Class: BlockSand$EnumType + */ +f.mapColor.BlockSand$EnumType = "field_176690_f" +/** + * + * + * Parent Class: EnumDyeColor + */ +f.mapColor.EnumDyeColor = "field_176784_w" +/** + * The color that represents this entry on a map. + * + * Parent Class: BlockPlanks$EnumType + */ +f.mapColor.BlockPlanks$EnumType = "field_181071_k" + +/** + * + * + * Parent Class: EnumFacing$Axis + */ +f.plane = "field_176723_f" +f.NAME_LOOKUP = {} +/** + * + * + * Parent Class: EnumFacing$Axis + */ +f.NAME_LOOKUP.EnumFacing$Axis = "field_176725_d" +/** + * + * + * Parent Class: EnumFacing + */ +f.NAME_LOOKUP.EnumFacing = "field_176761_p" + +f.index = {} +/** + * Ordering index for D-U-N-S-W-E + * + * Parent Class: EnumFacing + */ +f.index.EnumFacing = "field_176748_g" +/** + * + * + * Parent Class: VertexFormatElement + */ +f.index.VertexFormatElement = "field_177377_d" +/** + * + * + * Parent Class: RenderChunk + */ +f.index.RenderChunk = "field_178596_j" +/** + * + * + * Parent Class: Cartesian$Product$ProductIterator + */ +f.index.Cartesian$Product$ProductIterator = "field_179426_a" +/** + * The next index to use in the array + * + * Parent Class: FrameTimer + */ +f.index.FrameTimer = "field_181755_d" +/** + * The index of this point in its assigned path + * + * Parent Class: PathPoint + */ +f.index.PathPoint = "field_75835_d" + +/** + * All Facings with horizontal axis in order S-W-N-E + * + * Parent Class: EnumFacing + */ +f.HORIZONTALS = "field_176754_o" +/** + * + * + * Parent Class: EnumFacing + */ +f.axisDirection = "field_176755_l" +/** + * Normalized Vector that points in the direction of this Facing + * + * Parent Class: EnumFacing + */ +f.directionVec = "field_176756_m" +/** + * Index of the opposite Facing in the VALUES array + * + * Parent Class: EnumFacing + */ +f.opposite = "field_176759_h" +/** + * Ordering index for the HORIZONTALS field (S-W-N-E) + * + * Parent Class: EnumFacing + */ +f.horizontalIndex = "field_176760_i" +/** + * + * + * Parent Class: EnumDyeColor + */ +f.dyeDamage = "field_176787_t" +/** + * + * + * Parent Class: EnumDyeColor + */ +f.DYE_DMG_LOOKUP = "field_176789_r" +/** + * + * + * Parent Class: EnumDyeColor + */ +f.chatColor = "field_176793_x" +f.facing = {} +/** + * + * + * Parent Class: BlockLever$EnumOrientation + */ +f.facing.BlockLever$EnumOrientation = "field_176864_l" +/** + * + * + * Parent Class: RenderGlobal$ContainerLocalRenderInformation + */ +f.facing.RenderGlobal$ContainerLocalRenderInformation = "field_178034_b" +/** + * + * + * Parent Class: ItemModelGenerator$SpanFacing + */ +f.facing.ItemModelGenerator$SpanFacing = "field_178376_e" +/** + * + * + * Parent Class: EntitySilverfish$AIHideInStone + */ +f.facing.EntitySilverfish$AIHideInStone = "field_179483_b" +/** + * + * + * Parent Class: C07PacketPlayerDigging + */ +f.facing.C07PacketPlayerDigging = "field_179716_b" +/** + * + * + * Parent Class: S10PacketSpawnPainting + */ +f.facing.S10PacketSpawnPainting = "field_179839_c" + +/** + * + * + * Parent Class: BlockDirt$DirtType + */ +f.METADATA_LOOKUP = "field_176930_d" +/** + * + * + * Parent Class: BlockFlower$EnumFlowerType + */ +f.TYPES_FOR_BLOCK = "field_176981_k" +/** + * + * + * Parent Class: RenderItemFrame + */ +f.itemFrameModel = "field_177072_f" +/** + * + * + * Parent Class: RenderItemFrame + */ +f.mapModel = "field_177073_g" +/** + * + * + * Parent Class: RendererLivingEntity + */ +f.brightnessBuffer = "field_177095_g" +/** + * + * + * Parent Class: RendererLivingEntity + */ +f.textureBrightness = "field_177096_e" +/** + * + * + * Parent Class: RendererLivingEntity + */ +f.layerRenderers = "field_177097_h" +f.renderOutlines = {} +/** + * + * + * Parent Class: RendererLivingEntity + */ +f.renderOutlines.RendererLivingEntity = "field_177098_i" +/** + * + * + * Parent Class: RenderManager + */ +f.renderOutlines.RenderManager = "field_178639_r" + +/** + * "A constant instance of the armor stand texture + * + * Parent Class: ArmorStandRenderer + */ +f.TEXTURE_ARMOR_STAND = "field_177103_a" +/** + * + * + * Parent Class: RenderEndermite + */ +f.ENDERMITE_TEXTURES = "field_177108_a" +/** + * + * + * Parent Class: RenderGuardian + */ +f.GUARDIAN_TEXTURE = "field_177114_e" +/** + * + * + * Parent Class: RenderGuardian + */ +f.GUARDIAN_ELDER_TEXTURE = "field_177116_j" +/** + * + * + * Parent Class: RenderGuardian + */ +f.GUARDIAN_BEAM_TEXTURE = "field_177117_k" +/** + * + * + * Parent Class: RenderBiped + */ +f.DEFAULT_RES_LOC = "field_177118_j" +/** + * + * + * Parent Class: RenderPigZombie + */ +f.ZOMBIE_PIGMAN_TEXTURE = "field_177120_j" +/** + * + * + * Parent Class: RenderRabbit + */ +f.WHITE = "field_177126_e" +/** + * + * + * Parent Class: RenderRabbit + */ +f.BROWN = "field_177127_a" +/** + * + * + * Parent Class: RenderRabbit + */ +f.TOAST = "field_177128_n" +/** + * + * + * Parent Class: RenderRabbit + */ +f.CAERBANNOG = "field_177129_o" +/** + * + * + * Parent Class: RenderRabbit + */ +f.SALT = "field_177130_l" +/** + * + * + * Parent Class: RenderRabbit + */ +f.WHITE_SPLOTCHED = "field_177131_m" +/** + * + * + * Parent Class: RenderRabbit + */ +f.BLACK = "field_177132_j" +/** + * + * + * Parent Class: RenderRabbit + */ +f.GOLD = "field_177133_k" +f.smallArms = {} +/** + * this field is used to indicate the 3-pixel wide arms + * + * Parent Class: RenderPlayer + */ +f.smallArms.RenderPlayer = "field_177140_a" +/** + * + * + * Parent Class: ModelPlayer + */ +f.smallArms.ModelPlayer = "field_178735_y" + +/** + * + * + * Parent Class: LayerHeldItemWitch + */ +f.witchRenderer = "field_177144_a" +/** + * + * + * Parent Class: LayerWolfCollar + */ +f.wolfRenderer = "field_177146_b" +/** + * + * + * Parent Class: LayerWolfCollar + */ +f.WOLF_COLLAR = "field_177147_a" +/** + * + * + * Parent Class: LayerSpiderEyes + */ +f.spiderRenderer = "field_177149_b" +/** + * + * + * Parent Class: LayerSpiderEyes + */ +f.SPIDER_EYES = "field_177150_a" +/** + * + * + * Parent Class: LayerSnowmanHead + */ +f.snowManRenderer = "field_177152_a" +/** + * + * + * Parent Class: LayerIronGolemFlower + */ +f.ironGolemRenderer = "field_177154_a" +/** + * + * + * Parent Class: LayerSaddle + */ +f.pigRenderer = "field_177156_b" +/** + * + * + * Parent Class: LayerSaddle + */ +f.pigModel = "field_177157_c" +f.TEXTURE = {} +/** + * + * + * Parent Class: LayerSaddle + */ +f.TEXTURE.LayerSaddle = "field_177158_a" +/** + * + * + * Parent Class: LayerSheepWool + */ +f.TEXTURE.LayerSheepWool = "field_177165_a" +/** + * + * + * Parent Class: LayerEnderDragonEyes + */ +f.TEXTURE.LayerEnderDragonEyes = "field_177212_a" + +/** + * + * + * Parent Class: LayerSlimeGel + */ +f.slimeModel = "field_177160_b" +/** + * + * + * Parent Class: LayerSlimeGel + */ +f.slimeRenderer = "field_177161_a" +/** + * + * + * Parent Class: LayerSheepWool + */ +f.sheepRenderer = "field_177163_b" +/** + * + * + * Parent Class: LayerSheepWool + */ +f.sheepModel = "field_177164_c" +f.playerRenderer = {} +/** + * + * + * Parent Class: LayerCape + */ +f.playerRenderer.LayerCape = "field_177167_a" +/** + * + * + * Parent Class: LayerDeadmau5Head + */ +f.playerRenderer.LayerDeadmau5Head = "field_177208_a" +/** + * + * + * Parent Class: RenderManager + */ +f.playerRenderer.RenderManager = "field_178637_m" + +/** + * + * + * Parent Class: LayerCreeperCharge + */ +f.creeperRenderer = "field_177170_b" +/** + * + * + * Parent Class: LayerCreeperCharge + */ +f.creeperModel = "field_177171_c" +/** + * + * + * Parent Class: LayerCreeperCharge + */ +f.LIGHTNING_TEXTURE = "field_177172_a" +f.endermanRenderer = {} +/** + * + * + * Parent Class: LayerHeldBlock + */ +f.endermanRenderer.LayerHeldBlock = "field_177174_a" +/** + * + * + * Parent Class: LayerEndermanEyes + */ +f.endermanRenderer.LayerEndermanEyes = "field_177202_b" + +/** + * + * + * Parent Class: LayerArmorBase + */ +f.colorR = "field_177184_f" +/** + * + * + * Parent Class: LayerArmorBase + */ +f.colorG = "field_177185_g" +/** + * + * + * Parent Class: LayerArmorBase + */ +f.modelArmor = "field_177186_d" +f.alpha = {} +/** + * + * + * Parent Class: LayerArmorBase + */ +f.alpha.LayerArmorBase = "field_177187_e" +/** + * + * + * Parent Class: GlStateManager$ColorMask + */ +f.alpha.GlStateManager$ColorMask = "field_179185_d" +/** + * + * + * Parent Class: GlStateManager$Color + */ +f.alpha.GlStateManager$Color = "field_179192_d" +/** + * Used to speify new alpha value for the current color. + * + * Parent Class: FontRenderer + */ +f.alpha.FontRenderer = "field_78305_q" + +/** + * + * + * Parent Class: LayerArmorBase + */ +f.ENCHANTED_ITEM_GLINT_RES = "field_177188_b" +/** + * + * + * Parent Class: LayerArmorBase + */ +f.modelLeggings = "field_177189_c" +f.renderer = {} +/** + * + * + * Parent Class: LayerArmorBase + */ +f.renderer.LayerArmorBase = "field_177190_a" +/** + * + * + * Parent Class: EffectRenderer + */ +f.renderer.EffectRenderer = "field_78877_c" + +/** + * + * + * Parent Class: LayerArmorBase + */ +f.ARMOR_TEXTURE_RES_MAP = "field_177191_j" +/** + * + * + * Parent Class: LayerArmorBase + */ +f.colorB = "field_177192_h" +/** + * + * + * Parent Class: LayerArmorBase + */ +f.skipRenderGlint = "field_177193_i" +/** + * + * + * Parent Class: LayerEndermanEyes + */ +f.RES_ENDERMAN_EYES = "field_177203_a" +/** + * + * + * Parent Class: LayerMooshroomMushroom + */ +f.mooshroomRenderer = "field_177205_a" +/** + * + * + * Parent Class: LayerHeldItem + */ +f.livingEntityRenderer = "field_177206_a" +/** + * + * + * Parent Class: LayerEnderDragonEyes + */ +f.dragonRenderer = "field_177211_b" +/** + * + * + * Parent Class: LayerWitherAura + */ +f.witherRenderer = "field_177215_b" +/** + * + * + * Parent Class: LayerWitherAura + */ +f.witherModel = "field_177216_c" +/** + * + * + * Parent Class: LayerWitherAura + */ +f.WITHER_ARMOR = "field_177217_a" +/** + * + * + * Parent Class: AnimationMetadataSection + */ +f.interpolate = "field_177220_e" +/** + * + * + * Parent Class: BlockStateBase + */ +f.MAP_ENTRY_TO_STRING = "field_177233_b" +f.COMMA_JOINER = {} +/** + * + * + * Parent Class: BlockStateBase + */ +f.COMMA_JOINER.BlockStateBase = "field_177234_a" +/** + * + * + * Parent Class: BlockState + */ +f.COMMA_JOINER.BlockState = "field_177628_a" + +/** + * "Lookup-table for IBlockState instances. This is a Table<Property + * + * Parent Class: BlockState$StateImplementation + */ +f.propertyValueTable = "field_177238_c" +/** + * + * + * Parent Class: SimpleResource + */ +f.resourcePackName = "field_177242_b" +/** + * This is a List<BlockPos> of blocks that will be destroyed when a piston attempts to move them. + * + * Parent Class: BlockPistonStructureHelper + */ +f.toDestroy = "field_177256_f" +/** + * + * + * Parent Class: BlockPistonStructureHelper + */ +f.moveDirection = "field_177257_d" +/** + * This is a List<BlockPos> of all blocks that will be moved by the piston. + * + * Parent Class: BlockPistonStructureHelper + */ +f.toMove = "field_177258_e" +/** + * + * + * Parent Class: BlockPistonStructureHelper + */ +f.pistonPos = "field_177259_b" +/** + * + * + * Parent Class: BlockPistonStructureHelper + */ +f.blockToMove = "field_177260_c" +f.colors = {} +/** + * RGB (0 to 1.0) colors of this beam segment + * + * Parent Class: TileEntityBeacon$BeamSegment + */ +f.colors.TileEntityBeacon$BeamSegment = "field_177266_a" +/** + * colours + * + * Parent Class: MapData + */ +f.colors.MapData = "field_76198_e" + +/** + * The name used to represent this pattern. + * + * Parent Class: TileEntityBanner$EnumBannerPattern + */ +f.patternName = "field_177284_N" +/** + * A short string used to represent the pattern. + * + * Parent Class: TileEntityBanner$EnumBannerPattern + */ +f.patternID = "field_177285_O" +/** + * An ItemStack used to apply this pattern. + * + * Parent Class: TileEntityBanner$EnumBannerPattern + */ +f.patternCraftingStack = "field_177290_Q" +/** + * An array of three strings where each string represents a layer in the crafting grid. Goes from top to bottom. + * + * Parent Class: TileEntityBanner$EnumBannerPattern + */ +f.craftingLayers = "field_177291_P" +f.lock = {} +/** + * + * + * Parent Class: ResourcePackRepository + */ +f.lock.ResourcePackRepository = "field_177321_h" +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +f.lock.ChunkCompileTaskGenerator = "field_178551_b" +/** + * + * + * Parent Class: LockCode + */ +f.lock.LockCode = "field_180161_b" +/** + * + * + * Parent Class: DataWatcher + */ +f.lock.DataWatcher = "field_75694_d" + +/** + * ResourcesPack currently beeing downloaded + * + * Parent Class: ResourcePackRepository + */ +f.downloadingPacks = "field_177322_i" +/** + * + * + * Parent Class: FallbackResourceManager$InputStreamLeakedResourceLogger + */ +f.isClosed = "field_177329_c" +/** + * + * + * Parent Class: FallbackResourceManager$InputStreamLeakedResourceLogger + */ +f.inputStream = "field_177330_a" +/** + * The default skin for the Alex model. + * + * Parent Class: DefaultPlayerSkin + */ +f.TEXTURE_ALEX = "field_177336_b" +/** + * The default skin for the Steve model. + * + * Parent Class: DefaultPlayerSkin + */ +f.TEXTURE_STEVE = "field_177337_a" +/** + * + * + * Parent Class: VertexFormat + */ +f.uvOffsetsById = "field_177351_f" +/** + * + * + * Parent Class: VertexFormat + */ +f.normalElementOffset = "field_177352_g" +/** + * The next available offset in this vertex format + * + * Parent Class: VertexFormat + */ +f.nextOffset = "field_177353_d" +/** + * + * + * Parent Class: VertexFormat + */ +f.colorElementOffset = "field_177354_e" +f.elements = {} +/** + * + * + * Parent Class: VertexFormat + */ +f.elements.VertexFormat = "field_177355_b" +/** + * + * + * Parent Class: ModelBlock + */ +f.elements.ModelBlock = "field_178314_g" + +f.offsets = {} +/** + * + * + * Parent Class: VertexFormat + */ +f.offsets.VertexFormat = "field_177356_c" +/** + * + * + * Parent Class: RegionFile + */ +f.offsets.RegionFile = "field_76716_d" + +f.vertexFormat = {} +/** + * + * + * Parent Class: VertexBuffer + */ +f.vertexFormat.VertexBuffer = "field_177363_b" +/** + * + * + * Parent Class: WorldRenderer + */ +f.vertexFormat.WorldRenderer = "field_179011_q" + +f.count = {} +/** + * + * + * Parent Class: VertexBuffer + */ +f.count.VertexBuffer = "field_177364_c" +/** + * The number of points in this path + * + * Parent Class: Path + */ +f.count.Path = "field_75851_b" +/** + * The number of items stored in this map + * + * Parent Class: IntHashMap + */ +f.count.IntHashMap = "field_76053_b" + +/** + * + * + * Parent Class: VertexBuffer + */ +f.glBufferId = "field_177365_a" +/** + * + * + * Parent Class: VertexFormatElement + */ +f.elementCount = "field_177378_e" +/** + * + * + * Parent Class: VertexFormatElement + */ +f.usage = "field_177380_c" +/** + * + * + * Parent Class: VertexFormatElement$EnumType + */ +f.glConstant = "field_177405_j" +f.size = {} +/** + * + * + * Parent Class: VertexFormatElement$EnumType + */ +f.size.VertexFormatElement$EnumType = "field_177407_h" +/** + * + * + * Parent Class: S44PacketWorldBorder + */ +f.size.S44PacketWorldBorder = "field_179793_b" + +/** + * """queue containing the BlockPos of tile entities queued for creation""" + * + * Parent Class: Chunk + */ +f.tileEntityPosQueue = "field_177447_w" +/** + * A map containing the key-value pairs for UUIDs and their EntityPlayerMP objects. + * + * Parent Class: ServerConfigurationManager + */ +f.uuidToPlayerMap = "field_177454_f" +/** + * + * + * Parent Class: ChunkProviderGenerate + */ +f.oceanMonumentGenerator = "field_177474_A" +/** + * + * + * Parent Class: ChunkProviderGenerate + */ +f.oceanBlockTmpl = "field_177476_s" +f.settings = {} +/** + * + * + * Parent Class: ChunkProviderGenerate + */ +f.settings.ChunkProviderGenerate = "field_177477_r" +/** + * + * + * Parent Class: DedicatedServer + */ +f.settings.DedicatedServer = "field_71340_o" + +/** + * + * + * Parent Class: BlockWorldState + */ +f.tileEntity = "field_177511_d" +/** + * + * + * Parent Class: BlockWorldState + */ +f.tileEntityInitialized = "field_177512_e" +/** + * + * + * Parent Class: ModelResourceLocation + */ +f.variant = "field_177519_c" +/** + * + * + * Parent Class: ModelRotation + */ +f.quartersY = "field_177542_u" +/** + * + * + * Parent Class: ModelRotation + */ +f.quartersX = "field_177543_t" +/** + * + * + * Parent Class: ModelRotation + */ +f.matrix4d = "field_177544_s" +/** + * + * + * Parent Class: ModelRotation + */ +f.combinedXY = "field_177545_r" +/** + * + * + * Parent Class: ModelRotation + */ +f.mapRotations = "field_177546_q" +f.cameraTransforms = {} +/** + * + * + * Parent Class: BuiltInModel + */ +f.cameraTransforms.BuiltInModel = "field_177557_a" +/** + * + * + * Parent Class: SimpleBakedModel + */ +f.cameraTransforms.SimpleBakedModel = "field_177558_f" +/** + * + * + * Parent Class: ModelBlock + */ +f.cameraTransforms.ModelBlock = "field_178320_j" + +f.gui3d = {} +/** + * + * + * Parent Class: SimpleBakedModel + */ +f.gui3d.SimpleBakedModel = "field_177559_d" +/** + * + * + * Parent Class: ModelBlock + */ +f.gui3d.ModelBlock = "field_178321_h" + +f.texture = {} +/** + * + * + * Parent Class: SimpleBakedModel + */ +f.texture.SimpleBakedModel = "field_177560_e" +/** + * + * + * Parent Class: BreakingFour + */ +f.texture.BreakingFour = "field_178218_d" +/** + * + * + * Parent Class: BlockPartFace + */ +f.texture.BlockPartFace = "field_178242_d" + +/** + * + * + * Parent Class: SimpleBakedModel + */ +f.faceQuads = "field_177561_b" +f.ambientOcclusion = {} +/** + * + * + * Parent Class: SimpleBakedModel + */ +f.ambientOcclusion.SimpleBakedModel = "field_177562_c" +/** + * + * + * Parent Class: ModelBlock + */ +f.ambientOcclusion.ModelBlock = "field_178322_i" +/** + * Smooth Lighting + * + * Parent Class: GameSettings + */ +f.ambientOcclusion.GameSettings = "field_74348_k" + +/** + * + * + * Parent Class: SimpleBakedModel + */ +f.generalQuads = "field_177563_a" +f.models = {} +/** + * + * + * Parent Class: WeightedBakedModel + */ +f.models.WeightedBakedModel = "field_177565_b" +/** + * + * + * Parent Class: ModelBakery + */ +f.models.ModelBakery = "field_177611_h" + +f.baseModel = {} +/** + * + * + * Parent Class: WeightedBakedModel + */ +f.baseModel.WeightedBakedModel = "field_177566_c" +/** + * + * + * Parent Class: ModelRenderer + */ +f.baseModel.ModelRenderer = "field_78810_s" + +f.totalWeight = {} +/** + * + * + * Parent Class: WeightedBakedModel + */ +f.totalWeight.WeightedBakedModel = "field_177567_a" +/** + * + * + * Parent Class: StructureStrongholdPieces + */ +f.totalWeight.StructureStrongholdPieces = "field_75207_a" + +/** + * + * + * Parent Class: ModelBakery + */ +f.sprites = "field_177599_g" +/** + * + * + * Parent Class: ModelBakery + */ +f.BUILT_IN_MODELS = "field_177600_d" +/** + * + * + * Parent Class: ModelBakery + */ +f.JOINER = "field_177601_e" +/** + * + * + * Parent Class: ModelBakery + */ +f.LOCATIONS_BUILTIN_TEXTURES = "field_177602_b" +/** + * + * + * Parent Class: ModelBakery + */ +f.MODEL_MISSING = "field_177604_a" +/** + * + * + * Parent Class: ModelBakery + */ +f.bakedRegistry = "field_177605_n" +/** + * + * + * Parent Class: ModelBakery + */ +f.MODEL_GENERATED = "field_177606_o" +/** + * + * + * Parent Class: ModelBakery + */ +f.faceBakery = "field_177607_l" +/** + * + * + * Parent Class: ModelBakery + */ +f.itemModelGenerator = "field_177608_m" +/** + * + * + * Parent Class: ModelBakery + */ +f.textureMap = "field_177609_j" +/** + * + * + * Parent Class: ModelBakery + */ +f.variants = "field_177612_i" +/** + * + * + * Parent Class: ModelBakery + */ +f.variantNames = "field_177613_u" +/** + * + * + * Parent Class: ModelBakery + */ +f.blockDefinitions = "field_177614_t" +/** + * + * + * Parent Class: ModelBakery + */ +f.itemLocations = "field_177615_s" +/** + * + * + * Parent Class: ModelBakery + */ +f.MODEL_ENTITY = "field_177616_r" +/** + * + * + * Parent Class: ModelBakery + */ +f.MODEL_CLOCK = "field_177617_q" +/** + * + * + * Parent Class: ModelBakery + */ +f.MODEL_COMPASS = "field_177618_p" +/** + * + * + * Parent Class: BlockState + */ +f.validStates = "field_177625_e" +/** + * Function that converts a Property into it's name. + * + * Parent Class: BlockState + */ +f.GET_NAME_FUNC = "field_177626_b" +/** + * + * + * Parent Class: BlockStateHelper + */ +f.propertyPredicates = "field_177640_b" +/** + * + * + * Parent Class: SimpleBakedModel$Builder + */ +f.builderCameraTransforms = "field_177651_f" +/** + * + * + * Parent Class: SimpleBakedModel$Builder + */ +f.builderTexture = "field_177652_d" +/** + * + * + * Parent Class: SimpleBakedModel$Builder + */ +f.builderGui3d = "field_177653_e" +/** + * + * + * Parent Class: SimpleBakedModel$Builder + */ +f.builderFaceQuads = "field_177654_b" +/** + * + * + * Parent Class: SimpleBakedModel$Builder + */ +f.builderAmbientOcclusion = "field_177655_c" +/** + * + * + * Parent Class: SimpleBakedModel$Builder + */ +f.builderGeneralQuads = "field_177656_a" +/** + * + * + * Parent Class: FactoryBlockPattern + */ +f.aisleHeight = "field_177663_d" +/** + * + * + * Parent Class: FactoryBlockPattern + */ +f.rowWidth = "field_177664_e" +f.depth = {} +/** + * + * + * Parent Class: FactoryBlockPattern + */ +f.depth.FactoryBlockPattern = "field_177665_b" +/** + * + * + * Parent Class: GlStateManager$ClearState + */ +f.depth.GlStateManager$ClearState = "field_179205_a" + +/** + * + * + * Parent Class: FactoryBlockPattern + */ +f.symbolMap = "field_177666_c" +/** + * + * + * Parent Class: FactoryBlockPattern + */ +f.COMMA_JOIN = "field_177667_a" +/** + * + * + * Parent Class: BlockPattern$PatternHelper + */ +f.lcache = "field_177671_d" +/** + * + * + * Parent Class: BlockPattern$PatternHelper + */ +f.finger = "field_177672_b" +/** + * + * + * Parent Class: BlockPattern$PatternHelper + */ +f.thumb = "field_177673_c" +/** + * + * + * Parent Class: WeightedBakedModel$Builder + */ +f.listItems = "field_177678_a" +/** + * + * + * Parent Class: BlockPattern + */ +f.palmLength = "field_177686_d" +/** + * + * + * Parent Class: BlockPattern + */ +f.fingerLength = "field_177687_b" +/** + * + * + * Parent Class: BlockPattern + */ +f.thumbLength = "field_177688_c" +/** + * + * + * Parent Class: BlockPattern + */ +f.blockMatches = "field_177689_a" +/** + * + * + * Parent Class: PropertyHelper + */ +f.valueClass = "field_177704_a" +/** + * Map of names to Enum values + * + * Parent Class: PropertyEnum + */ +f.nameToValue = "field_177710_b" +f.allowedValues = {} +/** + * + * + * Parent Class: PropertyEnum + */ +f.allowedValues.PropertyEnum = "field_177711_a" +/** + * + * + * Parent Class: PropertyBool + */ +f.allowedValues.PropertyBool = "field_177717_a" +/** + * + * + * Parent Class: PropertyInteger + */ +f.allowedValues.PropertyInteger = "field_177720_a" + +/** + * + * + * Parent Class: WorldBorder + */ +f.endTime = "field_177752_f" +f.startTime = {} +/** + * + * + * Parent Class: WorldBorder + */ +f.startTime.WorldBorder = "field_177753_g" +/** + * + * + * Parent Class: MinecraftServer$1 + */ +f.startTime.MinecraftServer$1 = "field_96245_b" + +/** + * + * + * Parent Class: WorldBorder + */ +f.startDiameter = "field_177754_d" +/** + * + * + * Parent Class: WorldBorder + */ +f.endDiameter = "field_177755_e" +f.centerX = {} +/** + * + * + * Parent Class: WorldBorder + */ +f.centerX.WorldBorder = "field_177756_b" +/** + * + * + * Parent Class: S44PacketWorldBorder + */ +f.centerX.S44PacketWorldBorder = "field_179794_c" + +f.centerZ = {} +/** + * + * + * Parent Class: WorldBorder + */ +f.centerZ.WorldBorder = "field_177757_c" +/** + * + * + * Parent Class: S44PacketWorldBorder + */ +f.centerZ.S44PacketWorldBorder = "field_179791_d" + +/** + * + * + * Parent Class: WorldBorder + */ +f.listeners = "field_177758_a" +f.warningDistance = {} +/** + * + * + * Parent Class: WorldBorder + */ +f.warningDistance.WorldBorder = "field_177759_l" +/** + * + * + * Parent Class: S44PacketWorldBorder + */ +f.warningDistance.S44PacketWorldBorder = "field_179797_i" + +/** + * + * + * Parent Class: WorldBorder + */ +f.damageBuffer = "field_177760_j" +f.warningTime = {} +/** + * + * + * Parent Class: WorldBorder + */ +f.warningTime.WorldBorder = "field_177761_k" +/** + * + * + * Parent Class: S44PacketWorldBorder + */ +f.warningTime.S44PacketWorldBorder = "field_179796_h" + +/** + * + * + * Parent Class: WorldBorder + */ +f.worldSize = "field_177762_h" +/** + * + * + * Parent Class: WorldBorder + */ +f.damageAmount = "field_177763_i" +f.lavaLakeChance = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.lavaLakeChance.ChunkProviderSettings = "field_177777_D" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.lavaLakeChance.ChunkProviderSettings$Factory = "field_177867_E" + +f.useLavaOceans = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.useLavaOceans.ChunkProviderSettings = "field_177778_E" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.useLavaOceans.ChunkProviderSettings$Factory = "field_177868_F" + +f.fixedBiome = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.fixedBiome.ChunkProviderSettings = "field_177779_F" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.fixedBiome.ChunkProviderSettings$Factory = "field_177869_G" + +f.biomeSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.biomeSize.ChunkProviderSettings = "field_177780_G" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.biomeSize.ChunkProviderSettings$Factory = "field_177877_H" + +f.useWaterLakes = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.useWaterLakes.ChunkProviderSettings = "field_177781_A" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.useWaterLakes.ChunkProviderSettings$Factory = "field_177871_B" + +f.waterLakeChance = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.waterLakeChance.ChunkProviderSettings = "field_177782_B" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.waterLakeChance.ChunkProviderSettings$Factory = "field_177872_C" + +f.useLavaLakes = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.useLavaLakes.ChunkProviderSettings = "field_177783_C" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.useLavaLakes.ChunkProviderSettings$Factory = "field_177866_D" + +f.dirtMaxHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.dirtMaxHeight.ChunkProviderSettings = "field_177784_L" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.dirtMaxHeight.ChunkProviderSettings$Factory = "field_177874_M" + +f.gravelSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.gravelSize.ChunkProviderSettings = "field_177785_M" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.gravelSize.ChunkProviderSettings$Factory = "field_177875_N" + +f.gravelCount = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.gravelCount.ChunkProviderSettings = "field_177786_N" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.gravelCount.ChunkProviderSettings$Factory = "field_177876_O" + +f.gravelMinHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.gravelMinHeight.ChunkProviderSettings = "field_177787_O" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.gravelMinHeight.ChunkProviderSettings$Factory = "field_177886_P" + +f.riverSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.riverSize.ChunkProviderSettings = "field_177788_H" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.riverSize.ChunkProviderSettings$Factory = "field_177878_I" + +f.dirtSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.dirtSize.ChunkProviderSettings = "field_177789_I" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.dirtSize.ChunkProviderSettings$Factory = "field_177879_J" + +f.dirtCount = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.dirtCount.ChunkProviderSettings = "field_177790_J" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.dirtCount.ChunkProviderSettings$Factory = "field_177880_K" + +f.dirtMinHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.dirtMinHeight.ChunkProviderSettings = "field_177791_K" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.dirtMinHeight.ChunkProviderSettings$Factory = "field_177873_L" + +f.dioriteSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.dioriteSize.ChunkProviderSettings = "field_177792_U" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.dioriteSize.ChunkProviderSettings$Factory = "field_177884_V" + +f.graniteMaxHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.graniteMaxHeight.ChunkProviderSettings = "field_177793_T" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.graniteMaxHeight.ChunkProviderSettings$Factory = "field_177881_U" + +f.dioriteMinHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.dioriteMinHeight.ChunkProviderSettings = "field_177794_W" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.dioriteMinHeight.ChunkProviderSettings$Factory = "field_177891_X" + +f.dioriteCount = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.dioriteCount.ChunkProviderSettings = "field_177795_V" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.dioriteCount.ChunkProviderSettings$Factory = "field_177883_W" + +f.graniteSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.graniteSize.ChunkProviderSettings = "field_177796_Q" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.graniteSize.ChunkProviderSettings$Factory = "field_177888_R" + +f.gravelMaxHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.gravelMaxHeight.ChunkProviderSettings = "field_177797_P" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.gravelMaxHeight.ChunkProviderSettings$Factory = "field_177885_Q" + +f.graniteMinHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.graniteMinHeight.ChunkProviderSettings = "field_177798_S" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.graniteMinHeight.ChunkProviderSettings$Factory = "field_177882_T" + +f.graniteCount = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.graniteCount.ChunkProviderSettings = "field_177799_R" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.graniteCount.ChunkProviderSettings$Factory = "field_177887_S" + +f.andesiteSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.andesiteSize.ChunkProviderSettings = "field_177800_Y" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.andesiteSize.ChunkProviderSettings$Factory = "field_177892_Z" + +f.dioriteMaxHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.dioriteMaxHeight.ChunkProviderSettings = "field_177801_X" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.dioriteMaxHeight.ChunkProviderSettings$Factory = "field_177890_Y" + +f.andesiteCount = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.andesiteCount.ChunkProviderSettings = "field_177802_Z" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.andesiteCount.ChunkProviderSettings$Factory = "field_177936_aa" + +f.depthNoiseScaleZ = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.depthNoiseScaleZ.ChunkProviderSettings = "field_177803_f" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.depthNoiseScaleZ.ChunkProviderSettings$Factory = "field_177894_g" + +f.depthNoiseScaleExponent = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.depthNoiseScaleExponent.ChunkProviderSettings = "field_177804_g" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.depthNoiseScaleExponent.ChunkProviderSettings$Factory = "field_177915_h" + +f.lapisSpread = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.lapisSpread.ChunkProviderSettings = "field_177805_az" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.lapisSpread.ChunkProviderSettings$Factory = "field_177889_aA" + +f.lowerLimitScale = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.lowerLimitScale.ChunkProviderSettings = "field_177806_d" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.lowerLimitScale.ChunkProviderSettings$Factory = "field_177898_e" + +f.lapisCenterHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.lapisCenterHeight.ChunkProviderSettings = "field_177807_ay" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.lapisCenterHeight.ChunkProviderSettings$Factory = "field_177895_az" + +f.depthNoiseScaleX = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.depthNoiseScaleX.ChunkProviderSettings = "field_177808_e" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.depthNoiseScaleX.ChunkProviderSettings$Factory = "field_177893_f" + +f.heightScale = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.heightScale.ChunkProviderSettings = "field_177809_b" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.heightScale.ChunkProviderSettings$Factory = "field_177900_c" + +f.upperLimitScale = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.upperLimitScale.ChunkProviderSettings = "field_177810_c" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.upperLimitScale.ChunkProviderSettings$Factory = "field_177896_d" + +f.coordinateScale = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.coordinateScale.ChunkProviderSettings = "field_177811_a" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.coordinateScale.ChunkProviderSettings$Factory = "field_177899_b" + +f.diamondCount = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.diamondCount.ChunkProviderSettings = "field_177812_at" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.diamondCount.ChunkProviderSettings$Factory = "field_177916_au" + +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.biomeDepthOffSet = "field_177813_n" +f.diamondSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.diamondSize.ChunkProviderSettings = "field_177814_as" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.diamondSize.ChunkProviderSettings$Factory = "field_177902_at" + +f.biomeScaleWeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.biomeScaleWeight.ChunkProviderSettings = "field_177815_o" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.biomeScaleWeight.ChunkProviderSettings$Factory = "field_177933_p" + +f.redstoneMaxHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.redstoneMaxHeight.ChunkProviderSettings = "field_177816_ar" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.redstoneMaxHeight.ChunkProviderSettings$Factory = "field_177904_as" + +f.stretchY = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.stretchY.ChunkProviderSettings = "field_177817_l" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.stretchY.ChunkProviderSettings$Factory = "field_177909_m" + +f.redstoneMinHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.redstoneMinHeight.ChunkProviderSettings = "field_177818_aq" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.redstoneMinHeight.ChunkProviderSettings$Factory = "field_177906_ar" + +f.biomeDepthWeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.biomeDepthWeight.ChunkProviderSettings = "field_177819_m" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.biomeDepthWeight.ChunkProviderSettings$Factory = "field_177903_n" + +f.lapisCount = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.lapisCount.ChunkProviderSettings = "field_177820_ax" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.lapisCount.ChunkProviderSettings$Factory = "field_177897_ay" + +f.mainNoiseScaleZ = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.mainNoiseScaleZ.ChunkProviderSettings = "field_177821_j" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.mainNoiseScaleZ.ChunkProviderSettings$Factory = "field_177913_k" + +f.lapisSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.lapisSize.ChunkProviderSettings = "field_177822_aw" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.lapisSize.ChunkProviderSettings$Factory = "field_177910_ax" + +f.baseSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.baseSize.ChunkProviderSettings = "field_177823_k" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.baseSize.ChunkProviderSettings$Factory = "field_177907_l" + +f.diamondMaxHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.diamondMaxHeight.ChunkProviderSettings = "field_177824_av" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.diamondMaxHeight.ChunkProviderSettings$Factory = "field_177912_aw" + +f.mainNoiseScaleX = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.mainNoiseScaleX.ChunkProviderSettings = "field_177825_h" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.mainNoiseScaleX.ChunkProviderSettings$Factory = "field_177917_i" + +f.diamondMinHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.diamondMinHeight.ChunkProviderSettings = "field_177826_au" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.diamondMinHeight.ChunkProviderSettings$Factory = "field_177914_av" + +f.mainNoiseScaleY = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.mainNoiseScaleY.ChunkProviderSettings = "field_177827_i" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.mainNoiseScaleY.ChunkProviderSettings$Factory = "field_177911_j" + +f.goldSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.goldSize.ChunkProviderSettings = "field_177828_ak" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.goldSize.ChunkProviderSettings$Factory = "field_177920_al" + +f.useMineShafts = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.useMineShafts.ChunkProviderSettings = "field_177829_w" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.useMineShafts.ChunkProviderSettings$Factory = "field_177944_x" + +f.goldCount = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.goldCount.ChunkProviderSettings = "field_177830_al" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.goldCount.ChunkProviderSettings$Factory = "field_177930_am" + +f.useVillages = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.useVillages.ChunkProviderSettings = "field_177831_v" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.useVillages.ChunkProviderSettings$Factory = "field_177919_w" + +f.ironMinHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.ironMinHeight.ChunkProviderSettings = "field_177832_ai" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.ironMinHeight.ChunkProviderSettings$Factory = "field_177924_aj" + +f.useStrongholds = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.useStrongholds.ChunkProviderSettings = "field_177833_u" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.useStrongholds.ChunkProviderSettings$Factory = "field_177921_v" + +f.ironMaxHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.ironMaxHeight.ChunkProviderSettings = "field_177834_aj" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.ironMaxHeight.ChunkProviderSettings$Factory = "field_177918_ak" + +f.dungeonChance = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.dungeonChance.ChunkProviderSettings = "field_177835_t" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.dungeonChance.ChunkProviderSettings$Factory = "field_177923_u" + +f.redstoneSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.redstoneSize.ChunkProviderSettings = "field_177836_ao" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.redstoneSize.ChunkProviderSettings$Factory = "field_177928_ap" + +f.useDungeons = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.useDungeons.ChunkProviderSettings = "field_177837_s" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.useDungeons.ChunkProviderSettings$Factory = "field_177925_t" + +f.redstoneCount = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.redstoneCount.ChunkProviderSettings = "field_177838_ap" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.redstoneCount.ChunkProviderSettings$Factory = "field_177908_aq" + +f.useCaves = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.useCaves.ChunkProviderSettings = "field_177839_r" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.useCaves.ChunkProviderSettings$Factory = "field_177927_s" + +f.goldMinHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.goldMinHeight.ChunkProviderSettings = "field_177840_am" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.goldMinHeight.ChunkProviderSettings$Factory = "field_177932_an" + +f.seaLevel = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.seaLevel.ChunkProviderSettings = "field_177841_q" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.seaLevel.ChunkProviderSettings$Factory = "field_177929_r" +/** + * + * + * Parent Class: World + */ +f.seaLevel.World = "field_181546_a" + +f.goldMaxHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.goldMaxHeight.ChunkProviderSettings = "field_177842_an" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.goldMaxHeight.ChunkProviderSettings$Factory = "field_177926_ao" + +f.biomeScaleOffset = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.biomeScaleOffset.ChunkProviderSettings = "field_177843_p" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.biomeScaleOffset.ChunkProviderSettings$Factory = "field_177931_q" + +f.coalSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.coalSize.ChunkProviderSettings = "field_177844_ac" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.coalSize.ChunkProviderSettings$Factory = "field_177935_ad" + +f.coalCount = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.coalCount.ChunkProviderSettings = "field_177845_ad" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.coalCount.ChunkProviderSettings$Factory = "field_177941_ae" + +f.andesiteMinHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.andesiteMinHeight.ChunkProviderSettings = "field_177846_aa" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.andesiteMinHeight.ChunkProviderSettings$Factory = "field_177937_ab" + +f.andesiteMaxHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.andesiteMaxHeight.ChunkProviderSettings = "field_177847_ab" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.andesiteMaxHeight.ChunkProviderSettings$Factory = "field_177934_ac" + +f.ironSize = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.ironSize.ChunkProviderSettings = "field_177848_ag" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.ironSize.ChunkProviderSettings$Factory = "field_177939_ah" + +f.ironCount = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.ironCount.ChunkProviderSettings = "field_177849_ah" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.ironCount.ChunkProviderSettings$Factory = "field_177922_ai" + +f.useRavines = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.useRavines.ChunkProviderSettings = "field_177850_z" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.useRavines.ChunkProviderSettings$Factory = "field_177870_A" + +f.coalMinHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.coalMinHeight.ChunkProviderSettings = "field_177851_ae" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.coalMinHeight.ChunkProviderSettings$Factory = "field_177943_af" + +f.useMonuments = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.useMonuments.ChunkProviderSettings = "field_177852_y" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.useMonuments.ChunkProviderSettings$Factory = "field_177940_z" + +f.coalMaxHeight = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.coalMaxHeight.ChunkProviderSettings = "field_177853_af" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.coalMaxHeight.ChunkProviderSettings$Factory = "field_177938_ag" + +f.useTemples = {} +/** + * + * + * Parent Class: ChunkProviderSettings + */ +f.useTemples.ChunkProviderSettings = "field_177854_x" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.useTemples.ChunkProviderSettings$Factory = "field_177942_y" + +/** + * + * + * Parent Class: ChunkPrimer + */ +f.defaultState = "field_177859_b" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.JSON_ADAPTER = "field_177901_a" +/** + * + * + * Parent Class: ChunkProviderSettings$Factory + */ +f.biomeDepthOffset = "field_177905_o" +/** + * The stream callback instance + * + * Parent Class: BroadcastController + */ +f.streamCallback = "field_177948_B" +/** + * "The Null vector constant (0 + * + * Parent Class: Vec3i + */ +f.NULL_VECTOR = "field_177959_e" +/** + * + * + * Parent Class: BlockPos + */ +f.Y_SHIFT = "field_177987_f" +/** + * + * + * Parent Class: BlockPos + */ +f.X_SHIFT = "field_177988_g" +/** + * + * + * Parent Class: BlockPos + */ +f.NUM_Y_BITS = "field_177989_d" +/** + * + * + * Parent Class: BlockPos + */ +f.NUM_X_BITS = "field_177990_b" +/** + * + * + * Parent Class: BlockPos + */ +f.NUM_Z_BITS = "field_177991_c" +/** + * The BlockPos with all coordinates 0 + * + * Parent Class: BlockPos + */ +f.ORIGIN = "field_177992_a" +/** + * + * + * Parent Class: BlockPos + */ +f.Z_MASK = "field_177993_j" +/** + * + * + * Parent Class: BlockPos + */ +f.X_MASK = "field_177994_h" +/** + * + * + * Parent Class: BlockPos + */ +f.Y_MASK = "field_177995_i" +/** + * + * + * Parent Class: ChunkRenderContainer + */ +f.viewEntityY = "field_178005_d" +/** + * + * + * Parent Class: ChunkRenderContainer + */ +f.viewEntityZ = "field_178006_e" +/** + * + * + * Parent Class: ChunkRenderContainer + */ +f.viewEntityX = "field_178008_c" +f.renderChunks = {} +/** + * + * + * Parent Class: ChunkRenderContainer + */ +f.renderChunks.ChunkRenderContainer = "field_178009_a" +/** + * + * + * Parent Class: ViewFrustum + */ +f.renderChunks.ViewFrustum = "field_178164_f" + +/** + * + * + * Parent Class: ServerListEntryNormal + */ +f.SERVER_SELECTION_BUTTONS = "field_178014_d" +/** + * + * + * Parent Class: ServerListEntryNormal + */ +f.UNKNOWN_SERVER = "field_178015_c" +f.counter = {} +/** + * + * + * Parent Class: RenderGlobal$ContainerLocalRenderInformation + */ +f.counter.RenderGlobal$ContainerLocalRenderInformation = "field_178032_d" +/** + * A counter + * + * Parent Class: FrameTimer + */ +f.counter.FrameTimer = "field_181754_c" +/** + * "Increase per 1 every tick + * + * Parent Class: Timer + */ +f.counter.Timer = "field_74285_i" + +/** + * + * + * Parent Class: RenderGlobal$ContainerLocalRenderInformation + */ +f.setFacing = "field_178035_c" +f.renderChunk = {} +/** + * + * + * Parent Class: RenderGlobal$ContainerLocalRenderInformation + */ +f.renderChunk.RenderGlobal$ContainerLocalRenderInformation = "field_178036_a" +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +f.renderChunk.ChunkCompileTaskGenerator = "field_178553_a" + +/** + * + * + * Parent Class: ItemModelMesher + */ +f.simpleShapesCache = "field_178091_b" +/** + * + * + * Parent Class: ItemModelMesher + */ +f.shapers = "field_178092_c" +/** + * + * + * Parent Class: ItemModelMesher + */ +f.simpleShapes = "field_178093_a" +/** + * + * + * Parent Class: BlockModelShapes + */ +f.blockStateMapper = "field_178127_b" +/** + * + * + * Parent Class: BlockModelShapes + */ +f.bakedModelStore = "field_178129_a" +/** + * + * + * Parent Class: StateMapperBase + */ +f.mapStateModelLocations = "field_178133_b" +f.ignored = {} +/** + * + * + * Parent Class: StateMap + */ +f.ignored.StateMap = "field_178140_d" +/** + * + * + * Parent Class: StateMap$Builder + */ +f.ignored.StateMap$Builder = "field_178444_c" + +/** + * + * + * Parent Class: ContainerEnchantment + */ +f.enchantmentIds = "field_178151_h" +/** + * + * + * Parent Class: ContainerRepair + */ +f.selfPosition = "field_178156_j" +/** + * + * + * Parent Class: ViewFrustum + */ +f.countChunksX = "field_178165_d" +/** + * + * + * Parent Class: ViewFrustum + */ +f.countChunksZ = "field_178166_e" +/** + * + * + * Parent Class: ViewFrustum + */ +f.countChunksY = "field_178168_c" +f.renderGlobal = {} +/** + * + * + * Parent Class: ViewFrustum + */ +f.renderGlobal.ViewFrustum = "field_178169_a" +/** + * + * + * Parent Class: RenderChunk + */ +f.renderGlobal.RenderChunk = "field_178589_e" +/** + * + * + * Parent Class: Minecraft + */ +f.renderGlobal.Minecraft = "field_71438_f" + +/** + * + * + * Parent Class: VertexBufferUploader + */ +f.vertexBuffer = "field_178179_a" +/** + * + * + * Parent Class: Tessellator + */ +f.vboUploader = "field_178182_b" +/** + * + * + * Parent Class: Tessellator + */ +f.worldRenderer = "field_178183_a" +f.VALUES = {} +/** + * + * + * Parent Class: BlockModelRenderer$VertexTranslations + */ +f.VALUES.BlockModelRenderer$VertexTranslations = "field_178199_k" +/** + * + * + * Parent Class: BlockModelRenderer$EnumNeighborInfo + */ +f.VALUES.BlockModelRenderer$EnumNeighborInfo = "field_178282_n" +/** + * All facings in D-U-N-S-W-E order + * + * Parent Class: EnumFacing + */ +f.VALUES.EnumFacing = "field_82609_l" + +/** + * + * + * Parent Class: BlockModelRenderer$AmbientOcclusionFace + */ +f.vertexColorMultiplier = "field_178206_b" +/** + * + * + * Parent Class: BlockModelRenderer$AmbientOcclusionFace + */ +f.vertexBrightness = "field_178207_c" +f.tintIndex = {} +/** + * + * + * Parent Class: BakedQuad + */ +f.tintIndex.BakedQuad = "field_178213_b" +/** + * + * + * Parent Class: BlockPartFace + */ +f.tintIndex.BlockPartFace = "field_178245_c" + +f.face = {} +/** + * + * + * Parent Class: BakedQuad + */ +f.face.BakedQuad = "field_178214_c" +/** + * + * + * Parent Class: GlStateManager$ColorMaterialState + */ +f.face.GlStateManager$ColorMaterialState = "field_179189_b" + +/** + * "Joined 4 vertex records + * + * Parent Class: BakedQuad + */ +f.vertexData = "field_178215_a" +/** + * + * + * Parent Class: BlockPart + */ +f.partRotation = "field_178237_d" +/** + * + * + * Parent Class: BlockPart + */ +f.shade = "field_178238_e" +/** + * + * + * Parent Class: BlockPart + */ +f.positionTo = "field_178239_b" +/** + * + * + * Parent Class: BlockPart + */ +f.mapFaces = "field_178240_c" +/** + * + * + * Parent Class: BlockPart + */ +f.positionFrom = "field_178241_a" +/** + * + * + * Parent Class: BlockPartFace + */ +f.blockFaceUV = "field_178243_e" +f.cullFace = {} +/** + * + * + * Parent Class: BlockPartFace + */ +f.cullFace.BlockPartFace = "field_178244_b" +/** + * + * + * Parent Class: GlStateManager$CullState + */ +f.cullFace.GlStateManager$CullState = "field_179054_a" + +/** + * + * + * Parent Class: BlockPartFace + */ +f.FACING_DEFAULT = "field_178246_a" +/** + * + * + * Parent Class: BlockFluidRenderer + */ +f.atlasSpritesWater = "field_178271_b" +/** + * + * + * Parent Class: BlockFluidRenderer + */ +f.atlasSpritesLava = "field_178272_a" +f.parent = {} +/** + * + * + * Parent Class: ModelBlock + */ +f.parent.ModelBlock = "field_178315_d" +/** + * parent GenLayer that was provided via the constructor + * + * Parent Class: GenLayer + */ +f.parent.GenLayer = "field_75909_a" + +/** + * + * + * Parent Class: ModelBlock + */ +f.parentLocation = "field_178316_e" +/** + * + * + * Parent Class: ModelBlock + */ +f.textures = "field_178318_c" +/** + * + * + * Parent Class: ModelBlock + */ +f.SERIALIZER = "field_178319_a" +/** + * + * + * Parent Class: ModelBlock$Bookkeep + */ +f.modelExt = "field_178323_b" +/** + * + * + * Parent Class: ModelBlockDefinition + */ +f.mapVariants = "field_178332_b" +/** + * + * + * Parent Class: BlockPartRotation + */ +f.rescale = "field_178341_d" +/** + * + * + * Parent Class: BlockPartRotation + */ +f.angle = "field_178343_c" +/** + * + * + * Parent Class: BlockPartRotation + */ +f.origin = "field_178344_a" +f.rotation = {} +/** + * + * + * Parent Class: BlockFaceUV + */ +f.rotation.BlockFaceUV = "field_178350_b" +/** + * + * + * Parent Class: ItemTransformVec3f + */ +f.rotation.ItemTransformVec3f = "field_178364_b" + +/** + * + * + * Parent Class: BlockFaceUV + */ +f.uvs = "field_178351_a" +/** + * + * + * Parent Class: ItemCameraTransforms + */ +f.gui = "field_178354_e" +/** + * + * + * Parent Class: ItemCameraTransforms + */ +f.thirdPerson = "field_178355_b" +/** + * + * + * Parent Class: ItemCameraTransforms + */ +f.firstPerson = "field_178356_c" +f.DEFAULT = {} +/** + * + * + * Parent Class: ItemCameraTransforms + */ +f.DEFAULT.ItemCameraTransforms = "field_178357_a" +/** + * + * + * Parent Class: ItemTransformVec3f + */ +f.DEFAULT.ItemTransformVec3f = "field_178366_a" +/** + * Default world type. + * + * Parent Class: WorldType + */ +f.DEFAULT.WorldType = "field_77137_b" + +/** + * + * + * Parent Class: ItemTransformVec3f$Deserializer + */ +f.TRANSLATION_DEFAULT = "field_178360_b" +/** + * + * + * Parent Class: ItemTransformVec3f$Deserializer + */ +f.SCALE_DEFAULT = "field_178361_c" +/** + * + * + * Parent Class: ItemTransformVec3f$Deserializer + */ +f.ROTATION_DEFAULT = "field_178362_a" +f.scale = {} +/** + * + * + * Parent Class: ItemTransformVec3f + */ +f.scale.ItemTransformVec3f = "field_178363_d" +/** + * + * + * Parent Class: MapData + */ +f.scale.MapData = "field_76197_d" +/** + * + * + * Parent Class: RenderFireball + */ +f.scale.RenderFireball = "field_77002_a" +/** + * Scale of the model to use + * + * Parent Class: RenderGiantZombie + */ +f.scale.RenderGiantZombie = "field_77073_a" + +/** + * + * + * Parent Class: ItemTransformVec3f + */ +f.translation = "field_178365_c" +/** + * + * + * Parent Class: ItemModelGenerator$Span + */ +f.spanFacing = "field_178389_a" +/** + * + * + * Parent Class: FaceBakery + */ +f.SCALE_ROTATION_GENERAL = "field_178417_b" +/** + * + * + * Parent Class: FaceBakery + */ +f.SCALE_ROTATION_22_5 = "field_178418_a" +/** + * + * + * Parent Class: ModelBlockDefinition$Variants + */ +f.listVariants = "field_178422_b" +/** + * + * + * Parent Class: ModelBlockDefinition$Variant + */ +f.modelRotation = "field_178435_b" +/** + * + * + * Parent Class: ModelBlockDefinition$Variant + */ +f.uvLock = "field_178436_c" +/** + * + * + * Parent Class: ModelBlockDefinition$Variant + */ +f.modelLocation = "field_178437_a" +/** + * + * + * Parent Class: BlockStateMapper + */ +f.setBuiltInBlocks = "field_178449_b" +/** + * + * + * Parent Class: BlockStateMapper + */ +f.blockStateMap = "field_178450_a" +/** + * + * + * Parent Class: TileEntitySpecialRenderer + */ +f.DESTROY_STAGES = "field_178460_a" +/** + * + * + * Parent Class: TileEntityPistonRenderer + */ +f.blockRenderer = "field_178462_c" +/** + * + * + * Parent Class: TileEntityBannerRenderer + */ +f.BANNERTEXTURES = "field_178464_d" +/** + * + * + * Parent Class: TileEntityBannerRenderer + */ +f.bannerModel = "field_178465_e" +/** + * An array of all the patterns that are being currently rendered. + * + * Parent Class: TileEntityBannerRenderer + */ +f.DESIGNS = "field_178466_c" +f.skeletonHead = {} +/** + * + * + * Parent Class: TileEntitySkullRenderer + */ +f.skeletonHead.TileEntitySkullRenderer = "field_178467_h" +/** + * + * + * Parent Class: ModelSkeletonHead + */ +f.skeletonHead.ModelSkeletonHead = "field_82896_a" + +/** + * + * + * Parent Class: TileEntitySkullRenderer + */ +f.humanoidHead = "field_178468_i" +/** + * The layered texture for the banner to render out. + * + * Parent Class: TileEntityBannerRenderer$TimedBannerTexture + */ +f.bannerTexture = "field_178471_b" +f.systemTime = {} +/** + * "The current system time + * + * Parent Class: TileEntityBannerRenderer$TimedBannerTexture + */ +f.systemTime.TileEntityBannerRenderer$TimedBannerTexture = "field_178472_a" +/** + * + * + * Parent Class: Minecraft + */ +f.systemTime.Minecraft = "field_71423_H" +/** + * The system's time represented in milliseconds. + * + * Parent Class: LoadingScreenRenderer + */ +f.systemTime.LoadingScreenRenderer = "field_73723_d" + +/** + * + * + * Parent Class: ChunkRenderWorker + */ +f.chunkRenderDispatcher = "field_178477_b" +f.regionRenderCacheBuilder = {} +/** + * + * + * Parent Class: ChunkRenderWorker + */ +f.regionRenderCacheBuilder.ChunkRenderWorker = "field_178478_c" +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +f.regionRenderCacheBuilder.ChunkCompileTaskGenerator = "field_178550_e" + +/** + * + * + * Parent Class: CompiledChunk + */ +f.setVisibility = "field_178496_f" +/** + * + * + * Parent Class: CompiledChunk + */ +f.empty = "field_178498_d" +/** + * + * + * Parent Class: CompiledChunk + */ +f.layersUsed = "field_178500_b" +/** + * + * + * Parent Class: CompiledChunk + */ +f.layersStarted = "field_178501_c" +f.DUMMY = {} +/** + * + * + * Parent Class: CompiledChunk + */ +f.DUMMY.CompiledChunk = "field_178502_a" +/** + * + * + * Parent Class: IScoreObjectiveCriteria + */ +f.DUMMY.IScoreObjectiveCriteria = "field_96641_b" + +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +f.worldVertexUploader = "field_178517_f" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +f.vertexUploader = "field_178518_g" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +f.queueChunkUpdates = "field_178519_d" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +f.queueFreeRenderBuilders = "field_178520_e" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +f.threadFactory = "field_178521_b" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +f.listThreadedWorkers = "field_178522_c" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +f.queueChunkUploads = "field_178524_h" +/** + * + * + * Parent Class: ChunkRenderDispatcher + */ +f.renderWorker = "field_178525_i" +f.compiledChunk = {} +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +f.compiledChunk.ChunkCompileTaskGenerator = "field_178547_f" +/** + * + * + * Parent Class: RenderChunk + */ +f.compiledChunk.RenderChunk = "field_178590_b" + +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +f.listFinishRunnables = "field_178552_c" +/** + * + * + * Parent Class: ChunkCompileTaskGenerator + */ +f.finished = "field_178554_h" +/** + * + * + * Parent Class: RenderChunk + */ +f.lockCompileTask = "field_178587_g" +f.boundingBox = {} +/** + * + * + * Parent Class: RenderChunk + */ +f.boundingBox.RenderChunk = "field_178591_c" +/** + * Axis aligned bounding box. + * + * Parent Class: Entity + */ +f.boundingBox.Entity = "field_70121_D" +/** + * + * + * Parent Class: StructureComponent + */ +f.boundingBox.StructureComponent = "field_74887_e" +/** + * + * + * Parent Class: StructureStart + */ +f.boundingBox.StructureStart = "field_75074_b" + +/** + * + * + * Parent Class: RenderChunk + */ +f.renderChunksUpdated = "field_178592_a" +/** + * + * + * Parent Class: RenderChunk + */ +f.vertexBuffers = "field_178594_l" +f.modelviewMatrix = {} +/** + * + * + * Parent Class: RenderChunk + */ +f.modelviewMatrix.RenderChunk = "field_178597_k" +/** + * + * + * Parent Class: ClippingHelper + */ +f.modelviewMatrix.ClippingHelper = "field_178626_c" + +/** + * + * + * Parent Class: RenderChunk + */ +f.lockCompiledChunk = "field_178598_h" +/** + * + * + * Parent Class: RenderChunk + */ +f.compileTask = "field_178599_i" +/** + * + * + * Parent Class: ListedRenderChunk + */ +f.baseDisplayList = "field_178601_d" +/** + * + * + * Parent Class: SetVisibility + */ +f.bitSet = "field_178622_b" +/** + * + * + * Parent Class: SetVisibility + */ +f.COUNT_FACES = "field_178623_a" +/** + * lists the various player skin types with their associated Renderer class instances. + * + * Parent Class: RenderManager + */ +f.skinMap = "field_178636_l" +/** + * + * + * Parent Class: RenderManager + */ +f.renderShadow = "field_178638_s" +/** + * + * + * Parent Class: PlayerMenuObject + */ +f.resourceLocation = "field_178667_b" +/** + * + * + * Parent Class: ModelBanner + */ +f.bannerStand = "field_178688_b" +/** + * + * + * Parent Class: ModelBanner + */ +f.bannerTop = "field_178689_c" +/** + * + * + * Parent Class: ModelBanner + */ +f.bannerSlate = "field_178690_a" +/** + * The Rabbit's Left Arm + * + * Parent Class: ModelRabbit + */ +f.rabbitLeftArm = "field_178692_f" +/** + * The Rabbit's Right Arm + * + * Parent Class: ModelRabbit + */ +f.rabbitRightArm = "field_178693_g" +/** + * The Rabbit's Right Thigh + * + * Parent Class: ModelRabbit + */ +f.rabbitRightThigh = "field_178694_d" +/** + * The Rabbit's Body + * + * Parent Class: ModelRabbit + */ +f.rabbitBody = "field_178695_e" +/** + * The Rabbit's Right Foot + * + * Parent Class: ModelRabbit + */ +f.rabbitRightFoot = "field_178696_b" +/** + * The Rabbit's Left Thigh + * + * Parent Class: ModelRabbit + */ +f.rabbitLeftThigh = "field_178697_c" +/** + * The Rabbit's Left Foot + * + * Parent Class: ModelRabbit + */ +f.rabbitLeftFoot = "field_178698_a" +/** + * The Rabbit's Nose + * + * Parent Class: ModelRabbit + */ +f.rabbitNose = "field_178700_l" +/** + * The Rabbit's Left Ear + * + * Parent Class: ModelRabbit + */ +f.rabbitLeftEar = "field_178702_j" +/** + * The Rabbit's Tail + * + * Parent Class: ModelRabbit + */ +f.rabbitTail = "field_178703_k" +/** + * The Rabbit's Head + * + * Parent Class: ModelRabbit + */ +f.rabbitHead = "field_178704_h" +/** + * The Rabbit's Right Ear + * + * Parent Class: ModelRabbit + */ +f.rabbitRightEar = "field_178705_i" +/** + * + * + * Parent Class: ModelGuardian + */ +f.guardianTail = "field_178707_d" +/** + * + * + * Parent Class: ModelGuardian + */ +f.guardianEye = "field_178708_b" +/** + * + * + * Parent Class: ModelGuardian + */ +f.guardianSpines = "field_178709_c" +/** + * + * + * Parent Class: ModelGuardian + */ +f.guardianBody = "field_178710_a" +/** + * The Biped's Headwear. Used for the outer layer of player skins. + * + * Parent Class: ModelBiped + */ +f.bipedHeadwear = "field_178720_f" +/** + * The Biped's Right Leg + * + * Parent Class: ModelBiped + */ +f.bipedRightLeg = "field_178721_j" +/** + * The Biped's Left Leg + * + * Parent Class: ModelBiped + */ +f.bipedLeftLeg = "field_178722_k" +/** + * The Biped's Right Arm + * + * Parent Class: ModelBiped + */ +f.bipedRightArm = "field_178723_h" +/** + * The Biped's Left Arm + * + * Parent Class: ModelBiped + */ +f.bipedLeftArm = "field_178724_i" +/** + * + * + * Parent Class: ModelPlayer + */ +f.bipedCape = "field_178729_w" +/** + * + * + * Parent Class: ModelPlayer + */ +f.bipedBodyWear = "field_178730_v" +/** + * + * + * Parent Class: ModelPlayer + */ +f.bipedRightLegwear = "field_178731_d" +/** + * + * + * Parent Class: ModelPlayer + */ +f.bipedRightArmwear = "field_178732_b" +/** + * + * + * Parent Class: ModelPlayer + */ +f.bipedLeftLegwear = "field_178733_c" +/** + * + * + * Parent Class: ModelPlayer + */ +f.bipedLeftArmwear = "field_178734_a" +/** + * + * + * Parent Class: ModelPlayer + */ +f.bipedDeadmau5Head = "field_178736_x" +/** + * + * + * Parent Class: ModelArmorStand + */ +f.standBase = "field_178737_d" +/** + * + * + * Parent Class: ModelArmorStand + */ +f.standLeftSide = "field_178738_b" +/** + * + * + * Parent Class: ModelArmorStand + */ +f.standWaist = "field_178739_c" +/** + * + * + * Parent Class: ModelArmorStand + */ +f.standRightSide = "field_178740_a" +/** + * + * + * Parent Class: GameConfiguration + */ +f.gameInfo = "field_178741_d" +/** + * + * + * Parent Class: GameConfiguration + */ +f.serverInfo = "field_178742_e" +/** + * + * + * Parent Class: GameConfiguration + */ +f.displayInfo = "field_178743_b" +/** + * + * + * Parent Class: GameConfiguration + */ +f.folderInfo = "field_178744_c" +/** + * + * + * Parent Class: GameConfiguration$UserInformation + */ +f.userProperties = "field_178750_b" +f.session = {} +/** + * + * + * Parent Class: GameConfiguration$UserInformation + */ +f.session.GameConfiguration$UserInformation = "field_178752_a" +/** + * + * + * Parent Class: Minecraft + */ +f.session.Minecraft = "field_71449_j" + +f.serverPort = {} +/** + * + * + * Parent Class: GameConfiguration$ServerInformation + */ +f.serverPort.GameConfiguration$ServerInformation = "field_178753_b" +/** + * The server's port. + * + * Parent Class: MinecraftServer + */ +f.serverPort.MinecraftServer = "field_71319_s" +/** + * + * + * Parent Class: Minecraft + */ +f.serverPort.Minecraft = "field_71477_af" +/** + * Port the server is running on + * + * Parent Class: RConThreadQuery + */ +f.serverPort.RConThreadQuery = "field_72637_i" +/** + * Port the server is running on + * + * Parent Class: RConThreadMain + */ +f.serverPort.RConThreadMain = "field_72651_h" +/** + * + * + * Parent Class: ServerAddress + */ +f.serverPort.ServerAddress = "field_78865_b" + +f.serverName = {} +/** + * + * + * Parent Class: GameConfiguration$ServerInformation + */ +f.serverName.GameConfiguration$ServerInformation = "field_178754_a" +/** + * + * + * Parent Class: Minecraft + */ +f.serverName.Minecraft = "field_71475_ae" +/** + * + * + * Parent Class: ServerData + */ +f.serverName.ServerData = "field_78847_a" + +f.version = {} +/** + * + * + * Parent Class: GameConfiguration$GameInformation + */ +f.version.GameConfiguration$GameInformation = "field_178755_b" +/** + * + * + * Parent Class: ServerData + */ +f.version.ServerData = "field_82821_f" + +f.isDemo = {} +/** + * + * + * Parent Class: GameConfiguration$GameInformation + */ +f.isDemo.GameConfiguration$GameInformation = "field_178756_a" +/** + * + * + * Parent Class: MinecraftServer + */ +f.isDemo.MinecraftServer = "field_71288_M" +/** + * + * + * Parent Class: Minecraft + */ +f.isDemo.Minecraft = "field_71459_aj" + +/** + * + * + * Parent Class: GameConfiguration$FolderInformation + */ +f.assetIndex = "field_178757_d" +/** + * + * + * Parent Class: GameConfiguration$FolderInformation + */ +f.resourcePacksDir = "field_178758_b" +/** + * + * + * Parent Class: GameConfiguration$FolderInformation + */ +f.assetsDir = "field_178759_c" +f.mcDataDir = {} +/** + * + * + * Parent Class: GameConfiguration$FolderInformation + */ +f.mcDataDir.GameConfiguration$FolderInformation = "field_178760_a" +/** + * + * + * Parent Class: Minecraft + */ +f.mcDataDir.Minecraft = "field_71412_D" + +/** + * + * + * Parent Class: GameConfiguration$DisplayInformation + */ +f.checkGlErrors = "field_178761_d" +f.fullscreen = {} +/** + * + * + * Parent Class: GameConfiguration$DisplayInformation + */ +f.fullscreen.GameConfiguration$DisplayInformation = "field_178763_c" +/** + * + * + * Parent Class: Minecraft + */ +f.fullscreen.Minecraft = "field_71431_Q" + +/** + * + * + * Parent Class: ScoreObjective + */ +f.renderType = "field_178768_d" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +f.deathMessageVisibility = "field_178776_j" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +f.chatFormat = "field_178777_k" +f.nameTagVisibility = {} +/** + * + * + * Parent Class: ScorePlayerTeam + */ +f.nameTagVisibility.ScorePlayerTeam = "field_178778_i" +/** + * + * + * Parent Class: S3EPacketTeams + */ +f.nameTagVisibility.S3EPacketTeams = "field_179816_e" + +f.blockPos = {} +/** + * + * + * Parent Class: MovingObjectPosition + */ +f.blockPos.MovingObjectPosition = "field_178783_e" +/** + * + * + * Parent Class: S33PacketUpdateSign + */ +f.blockPos.S33PacketUpdateSign = "field_179705_b" +/** + * + * + * Parent Class: S35PacketUpdateTileEntity + */ +f.blockPos.S35PacketUpdateTileEntity = "field_179824_a" + +/** + * + * + * Parent Class: MovingObjectPosition + */ +f.sideHit = "field_178784_b" +/** + * + * + * Parent Class: IScoreObjectiveCriteria + */ +f.TRIGGER = "field_178791_c" +/** + * + * + * Parent Class: GoalColor + */ +f.goalName = "field_178794_j" +/** + * The computed view object coordinates + * + * Parent Class: ActiveRenderInfo + */ +f.OBJECTCOORDS = "field_178810_d" +/** + * The current GL modelview matrix + * + * Parent Class: ActiveRenderInfo + */ +f.MODELVIEW = "field_178812_b" +/** + * The current GL projection matrix + * + * Parent Class: ActiveRenderInfo + */ +f.PROJECTION = "field_178813_c" +/** + * The current GL viewport + * + * Parent Class: ActiveRenderInfo + */ +f.VIEWPORT = "field_178814_a" +/** + * + * + * Parent Class: Score + */ +f.locked = "field_178817_f" +/** + * + * + * Parent Class: Score + */ +f.forceUpdate = "field_178818_g" +/** + * + * + * Parent Class: Team$EnumVisible + */ +f.internalName = "field_178830_e" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +f.locationCape = "field_178862_f" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +f.skinType = "field_178863_g" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +f.playerTexturesLoaded = "field_178864_d" +/** + * + * + * Parent Class: NetworkPlayerInfo + */ +f.locationSkin = "field_178865_e" +f.reducedDebugInfo = {} +/** + * + * + * Parent Class: GameSettings + */ +f.reducedDebugInfo.GameSettings = "field_178879_v" +/** + * + * + * Parent Class: S01PacketJoinGame + */ +f.reducedDebugInfo.S01PacketJoinGame = "field_179745_h" + +/** + * + * + * Parent Class: GameSettings + */ +f.allowBlockAlternatives = "field_178880_u" +/** + * + * + * Parent Class: GameSettings + */ +f.useVbo = "field_178881_t" +/** + * + * + * Parent Class: GameSettings + */ +f.setModelParts = "field_178882_aU" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindSpectatorOutlines = "field_178883_an" +/** + * + * + * Parent Class: PlayerControllerMP + */ +f.currentBlock = "field_178895_c" +/** + * + * + * Parent Class: EffectRenderer + */ +f.particleEmitters = "field_178933_d" +/** + * + * + * Parent Class: WorldRenderer + */ +f.vertexCount = "field_178997_d" +/** + * + * + * Parent Class: WorldRenderer + */ +f.rawIntBuffer = "field_178999_b" +/** + * + * + * Parent Class: WorldRenderer + */ +f.rawFloatBuffer = "field_179000_c" +/** + * + * + * Parent Class: WorldRenderer + */ +f.byteBuffer = "field_179001_a" +/** + * + * + * Parent Class: WorldRenderer + */ +f.drawMode = "field_179006_k" +/** + * + * + * Parent Class: WorldRenderer + */ +f.isDrawing = "field_179010_r" +/** + * + * + * Parent Class: WorldRenderer$State + */ +f.stateVertexFormat = "field_179018_e" +/** + * + * + * Parent Class: WorldRenderer$State + */ +f.stateRawBuffer = "field_179019_b" +f.banner = {} +/** + * + * + * Parent Class: TileEntityItemStackRenderer + */ +f.banner.TileEntityItemStackRenderer = "field_179024_e" +/** + * + * + * Parent Class: Items + */ +f.banner.Items = "field_179564_cE" + +/** + * + * + * Parent Class: EnumFaceDirection + */ +f.facings = "field_179029_g" +/** + * + * + * Parent Class: EnumFaceDirection + */ +f.vertexInfos = "field_179035_h" +/** + * + * + * Parent Class: RegionRenderCacheBuilder + */ +f.worldRenderers = "field_179040_a" +/** + * + * + * Parent Class: GlStateManager$PolygonOffsetState + */ +f.units = "field_179041_d" +/** + * + * + * Parent Class: GlStateManager$PolygonOffsetState + */ +f.polygonOffsetLine = "field_179042_b" +/** + * + * + * Parent Class: GlStateManager$PolygonOffsetState + */ +f.factor = "field_179043_c" +/** + * + * + * Parent Class: GlStateManager$PolygonOffsetState + */ +f.polygonOffsetFill = "field_179044_a" +/** + * + * + * Parent Class: GlStateManager$FogState + */ +f.start = "field_179045_d" +/** + * + * + * Parent Class: GlStateManager$FogState + */ +f.end = "field_179046_e" +/** + * + * + * Parent Class: GlStateManager$FogState + */ +f.density = "field_179048_c" +/** + * + * + * Parent Class: GlStateManager$FogState + */ +f.fog = "field_179049_a" +/** + * + * + * Parent Class: GlStateManager$DepthState + */ +f.maskEnabled = "field_179050_b" +/** + * + * + * Parent Class: GlStateManager$DepthState + */ +f.depthFunc = "field_179051_c" +/** + * + * + * Parent Class: GlStateManager$DepthState + */ +f.depthTest = "field_179052_a" +/** + * + * + * Parent Class: GlStateManager$TextureState + */ +f.textureName = "field_179059_b" +/** + * + * + * Parent Class: GlStateManager$TextureState + */ +f.texture2DState = "field_179060_a" +/** + * + * + * Parent Class: GlStateManager$TexGenState + */ +f.q = "field_179061_d" +/** + * + * + * Parent Class: GlStateManager$TexGenState + */ +f.t = "field_179062_b" +/** + * + * + * Parent Class: GlStateManager$TexGenState + */ +f.r = "field_179063_c" +/** + * + * + * Parent Class: GlStateManager$TexGenState + */ +f.s = "field_179064_a" +/** + * + * + * Parent Class: GlStateManager$TexGenCoord + */ +f.coord = "field_179065_b" +/** + * + * + * Parent Class: GlStateManager$TexGenCoord + */ +f.param = "field_179066_c" +/** + * + * + * Parent Class: GlStateManager$TexGenCoord + */ +f.textureGen = "field_179067_a" +/** + * + * + * Parent Class: GlStateManager + */ +f.depthState = "field_179154_f" +/** + * + * + * Parent Class: GlStateManager + */ +f.fogState = "field_179155_g" +/** + * + * + * Parent Class: GlStateManager + */ +f.colorMaterialState = "field_179156_d" +/** + * + * + * Parent Class: GlStateManager + */ +f.blendState = "field_179157_e" +/** + * + * + * Parent Class: GlStateManager + */ +f.lightingState = "field_179158_b" +/** + * + * + * Parent Class: GlStateManager + */ +f.lightState = "field_179159_c" +/** + * + * + * Parent Class: GlStateManager + */ +f.alphaState = "field_179160_a" +/** + * + * + * Parent Class: GlStateManager + */ +f.normalizeState = "field_179161_n" +/** + * + * + * Parent Class: GlStateManager + */ +f.activeTextureUnit = "field_179162_o" +/** + * + * + * Parent Class: GlStateManager + */ +f.clearState = "field_179163_l" +/** + * + * + * Parent Class: GlStateManager + */ +f.stencilState = "field_179164_m" +/** + * + * + * Parent Class: GlStateManager + */ +f.colorLogicState = "field_179165_j" +/** + * + * + * Parent Class: GlStateManager + */ +f.texGenState = "field_179166_k" +/** + * + * + * Parent Class: GlStateManager + */ +f.cullState = "field_179167_h" +/** + * + * + * Parent Class: GlStateManager + */ +f.polygonOffsetState = "field_179168_i" +/** + * + * + * Parent Class: GlStateManager + */ +f.colorState = "field_179170_t" +/** + * + * + * Parent Class: GlStateManager + */ +f.colorMaskState = "field_179171_s" +/** + * + * + * Parent Class: GlStateManager + */ +f.rescaleNormalState = "field_179172_r" +/** + * + * + * Parent Class: GlStateManager + */ +f.activeShadeModel = "field_179173_q" +/** + * + * + * Parent Class: GlStateManager + */ +f.textureState = "field_179174_p" +/** + * + * + * Parent Class: EnumFaceDirection$Constants + */ +f.WEST_INDEX = "field_179176_f" +/** + * + * + * Parent Class: EnumFaceDirection$Constants + */ +f.NORTH_INDEX = "field_179177_d" +/** + * + * + * Parent Class: EnumFaceDirection$Constants + */ +f.DOWN_INDEX = "field_179178_e" +/** + * + * + * Parent Class: EnumFaceDirection$Constants + */ +f.UP_INDEX = "field_179179_b" +/** + * + * + * Parent Class: EnumFaceDirection$Constants + */ +f.EAST_INDEX = "field_179180_c" +/** + * + * + * Parent Class: EnumFaceDirection$Constants + */ +f.SOUTH_INDEX = "field_179181_a" +/** + * + * + * Parent Class: EnumFaceDirection$VertexInformation + */ +f.yIndex = "field_179182_b" +/** + * + * + * Parent Class: EnumFaceDirection$VertexInformation + */ +f.zIndex = "field_179183_c" +/** + * + * + * Parent Class: EnumFaceDirection$VertexInformation + */ +f.xIndex = "field_179184_a" +f.green = {} +/** + * + * + * Parent Class: GlStateManager$ColorMask + */ +f.green.GlStateManager$ColorMask = "field_179186_b" +/** + * + * + * Parent Class: GlStateManager$Color + */ +f.green.GlStateManager$Color = "field_179193_b" +/** + * Used to specify new green value for the current color. + * + * Parent Class: FontRenderer + */ +f.green.FontRenderer = "field_78306_p" + +f.blue = {} +/** + * + * + * Parent Class: GlStateManager$ColorMask + */ +f.blue.GlStateManager$ColorMask = "field_179187_c" +/** + * + * + * Parent Class: GlStateManager$Color + */ +f.blue.GlStateManager$Color = "field_179194_c" +/** + * Used to specify new blue value for the current color. + * + * Parent Class: FontRenderer + */ +f.blue.FontRenderer = "field_78292_o" + +f.red = {} +/** + * + * + * Parent Class: GlStateManager$ColorMask + */ +f.red.GlStateManager$ColorMask = "field_179188_a" +/** + * + * + * Parent Class: GlStateManager$Color + */ +f.red.GlStateManager$Color = "field_179195_a" +/** + * Used to specify new red value for the current color. + * + * Parent Class: FontRenderer + */ +f.red.FontRenderer = "field_78291_n" + +/** + * + * + * Parent Class: GlStateManager$ColorMaterialState + */ +f.colorMaterial = "field_179191_a" +/** + * + * + * Parent Class: GlStateManager$ColorLogicState + */ +f.opcode = "field_179196_b" +/** + * + * + * Parent Class: GlStateManager$ColorLogicState + */ +f.colorLogicOp = "field_179197_a" +/** + * + * + * Parent Class: GlStateManager$BooleanState + */ +f.currentState = "field_179201_b" +/** + * + * + * Parent Class: GlStateManager$BooleanState + */ +f.capability = "field_179202_a" +/** + * + * + * Parent Class: GlStateManager$AlphaState + */ +f.func = "field_179206_b" +/** + * + * + * Parent Class: GlStateManager$AlphaState + */ +f.ref = "field_179207_c" +/** + * + * + * Parent Class: GlStateManager$AlphaState + */ +f.alphaTest = "field_179208_a" +/** + * + * + * Parent Class: GlStateManager$BlendState + */ +f.srcFactorAlpha = "field_179209_d" +/** + * + * + * Parent Class: GlStateManager$BlendState + */ +f.dstFactorAlpha = "field_179210_e" +/** + * + * + * Parent Class: GlStateManager$BlendState + */ +f.srcFactor = "field_179211_b" +/** + * + * + * Parent Class: GlStateManager$BlendState + */ +f.dstFactor = "field_179212_c" +/** + * + * + * Parent Class: GlStateManager$BlendState + */ +f.blend = "field_179213_a" +/** + * + * + * Parent Class: Item + */ +f.BLOCK_TO_ITEM = "field_179220_a" +/** + * + * + * Parent Class: ItemSlab + */ +f.doubleSlab = "field_179226_c" +/** + * + * + * Parent Class: ItemMultiTexture + */ +f.theBlock = "field_179227_b" +/** + * + * + * Parent Class: ItemMultiTexture + */ +f.nameFunction = "field_179228_c" +/** + * + * + * Parent Class: EnumConnectionState + */ +f.directionMaps = "field_179247_h" +/** + * + * + * Parent Class: JsonToNBT$Primitive + */ +f.LONG = "field_179261_f" +/** + * + * + * Parent Class: JsonToNBT$Primitive + */ +f.FLOAT = "field_179263_d" +/** + * + * + * Parent Class: JsonToNBT$Primitive + */ +f.BYTE = "field_179264_e" +/** + * + * + * Parent Class: JsonToNBT$Primitive + */ +f.DOUBLE = "field_179265_c" +/** + * + * + * Parent Class: JsonToNBT$Primitive + */ +f.SPLITTER = "field_179266_j" +/** + * + * + * Parent Class: JsonToNBT$Primitive + */ +f.INTEGER = "field_179267_h" +/** + * + * + * Parent Class: JsonToNBT$Primitive + */ +f.DOUBLE_UNTYPED = "field_179268_i" +/** + * + * + * Parent Class: LazyLoadBase + */ +f.isLoaded = "field_179282_b" +/** + * + * + * Parent Class: NetworkManager + */ +f.CLIENT_NIO_EVENTLOOP = "field_179295_d" +/** + * + * + * Parent Class: NetworkManager + */ +f.CLIENT_LOCAL_EVENTLOOP = "field_179296_e" +/** + * + * + * Parent Class: NetworkManager + */ +f.disconnected = "field_179297_n" +/** + * + * + * Parent Class: NettyCompressionEncoder + */ +f.deflater = "field_179300_b" +f.treshold = {} +/** + * + * + * Parent Class: NettyCompressionEncoder + */ +f.treshold.NettyCompressionEncoder = "field_179301_c" +/** + * + * + * Parent Class: NettyCompressionDecoder + */ +f.treshold.NettyCompressionDecoder = "field_179304_b" + +f.buffer = {} +/** + * + * + * Parent Class: NettyCompressionEncoder + */ +f.buffer.NettyCompressionEncoder = "field_179302_a" +/** + * RCon string buffer for log. + * + * Parent Class: RConConsoleSource + */ +f.buffer.RConConsoleSource = "field_70009_b" +/** + * A buffer for incoming DatagramPackets + * + * Parent Class: RConThreadQuery + */ +f.buffer.RConThreadQuery = "field_72630_n" +/** + * A buffer for incoming Socket data + * + * Parent Class: RConThreadClient + */ +f.buffer.RConThreadClient = "field_72660_i" + +/** + * + * + * Parent Class: NettyCompressionDecoder + */ +f.inflater = "field_179305_a" +/** + * + * + * Parent Class: BlockPos$1$1 + */ +f.lastReturned = "field_179309_b" +/** + * + * + * Parent Class: BlockPos$2$1 + */ +f.theBlockPos = "field_179314_b" +/** + * + * + * Parent Class: EnumPlayerModelParts + */ +f.partId = "field_179340_h" +/** + * + * + * Parent Class: EnumPlayerModelParts + */ +f.partMask = "field_179341_i" +f.PARTICLES = {} +/** + * + * + * Parent Class: EnumParticleTypes + */ +f.PARTICLES.EnumParticleTypes = "field_179365_U" +/** + * + * + * Parent Class: GameSettings + */ +f.PARTICLES.GameSettings = "field_74364_ag" + +/** + * + * + * Parent Class: EnumParticleTypes + */ +f.argumentCount = "field_179366_T" +/** + * + * + * Parent Class: EnumParticleTypes + */ +f.PARTICLE_NAMES = "field_179368_V" +/** + * + * + * Parent Class: EnumParticleTypes + */ +f.particleName = "field_179369_Q" +/** + * + * + * Parent Class: EnumParticleTypes + */ +f.shouldIgnoreRange = "field_179371_S" +/** + * + * + * Parent Class: EnumParticleTypes + */ +f.particleID = "field_179372_R" +f.priceInfo = {} +/** + * "The price info for the amount of emeralds to sell for + * + * Parent Class: EntityVillager$ListItemForEmeralds + */ +f.priceInfo.EntityVillager$ListItemForEmeralds = "field_179402_b" +/** + * The price info determining the amount of emeralds to trade in for the enchanted item + * + * Parent Class: EntityVillager$ListEnchantedItemForEmeralds + */ +f.priceInfo.EntityVillager$ListEnchantedItemForEmeralds = "field_179406_b" + +f.itemToBuy = {} +/** + * The item that is being bought for emeralds + * + * Parent Class: EntityVillager$ListItemForEmeralds + */ +f.itemToBuy.EntityVillager$ListItemForEmeralds = "field_179403_a" +/** + * Item the Villager buys. + * + * Parent Class: MerchantRecipe + */ +f.itemToBuy.MerchantRecipe = "field_77403_a" + +/** + * + * + * Parent Class: EntityVillager$EmeraldForItems + */ +f.price = "field_179404_b" +/** + * + * + * Parent Class: EntityVillager$EmeraldForItems + */ +f.sellItem = "field_179405_a" +/** + * The enchanted item stack to sell + * + * Parent Class: EntityVillager$ListEnchantedItemForEmeralds + */ +f.enchantedItemStack = "field_179407_a" +/** + * The price info defining the amount of the buying item required with 1 emerald to match the selling item. + * + * Parent Class: EntityVillager$ItemAndEmeraldToItem + */ +f.buyingPriceInfo = "field_179409_b" +/** + * "The itemstack to sell. The item and damage value are used only + * + * Parent Class: EntityVillager$ItemAndEmeraldToItem + */ +f.sellingItemstack = "field_179410_c" +/** + * "The itemstack to buy with an emerald. The Item and damage value is used only + * + * Parent Class: EntityVillager$ItemAndEmeraldToItem + */ +f.buyingItemStack = "field_179411_a" +/** + * Array used as the result of next() + * + * Parent Class: Cartesian$Product$ProductIterator + */ +f.results = "field_179423_d" +f.iterables = {} +/** + * + * + * Parent Class: Cartesian$Product$ProductIterator + */ +f.iterables.Cartesian$Product$ProductIterator = "field_179424_b" +/** + * + * + * Parent Class: Cartesian$Product + */ +f.iterables.Cartesian$Product = "field_179428_b" + +/** + * + * + * Parent Class: Cartesian$Product$ProductIterator + */ +f.iterators = "field_179425_c" +/** + * + * + * Parent Class: EntityRabbit$RabbitTypeData + */ +f.typeData = "field_179427_a" +/** + * Used to compare two entities + * + * Parent Class: EntityAIFindEntityNearestPlayer + */ +f.sorter = "field_179432_d" +/** + * The current target + * + * Parent Class: EntityAIFindEntityNearestPlayer + */ +f.entityTarget = "field_179433_e" +f.entityLiving = {} +/** + * The entity that use this AI + * + * Parent Class: EntityAIFindEntityNearestPlayer + */ +f.entityLiving.EntityAIFindEntityNearestPlayer = "field_179434_b" +/** + * + * + * Parent Class: EnchantmentHelper$ModifierLiving + */ +f.entityLiving.EnchantmentHelper$ModifierLiving = "field_77494_b" + +/** + * + * + * Parent Class: EntityAIFindEntityNearest + */ +f.mob = "field_179442_b" +/** + * + * + * Parent Class: EntityAIHurtByTarget + */ +f.targetClasses = "field_179447_c" +f.enderman = {} +/** + * + * + * Parent Class: EntityEnderman$AIFindPlayer + */ +f.enderman.EntityEnderman$AIFindPlayer = "field_179449_j" +/** + * + * + * Parent Class: EntityEnderman$AITakeBlock + */ +f.enderman.EntityEnderman$AITakeBlock = "field_179473_a" +/** + * + * + * Parent Class: EntityEnderman$AIPlaceBlock + */ +f.enderman.EntityEnderman$AIPlaceBlock = "field_179475_a" + +f.parentEntity = {} +/** + * + * + * Parent Class: EntityGhast$AIRandomFly + */ +f.parentEntity.EntityGhast$AIRandomFly = "field_179454_a" +/** + * + * + * Parent Class: EntityGhast$AIFireballAttack + */ +f.parentEntity.EntityGhast$AIFireballAttack = "field_179470_b" +/** + * + * + * Parent Class: EntityGhast$AILookAround + */ +f.parentEntity.EntityGhast$AILookAround = "field_179472_a" +/** + * + * + * Parent Class: EntityGuardian$GuardianTargetSelector + */ +f.parentEntity.EntityGuardian$GuardianTargetSelector = "field_179916_a" +/** + * + * + * Parent Class: EntityGhast$GhastMoveHelper + */ +f.parentEntity.EntityGhast$GhastMoveHelper = "field_179927_g" + +f.theEntity = {} +/** + * + * + * Parent Class: EntityGuardian$AIGuardianAttack + */ +f.theEntity.EntityGuardian$AIGuardianAttack = "field_179456_a" +/** + * + * + * Parent Class: EntityRabbit$AIPanic + */ +f.theEntity.EntityRabbit$AIPanic = "field_179486_b" +/** + * + * + * Parent Class: EntityAIMoveToBlock + */ +f.theEntity.EntityAIMoveToBlock = "field_179495_c" +/** + * + * + * Parent Class: EntityRabbit$RabbitMoveHelper + */ +f.theEntity.EntityRabbit$RabbitMoveHelper = "field_179929_g" +/** + * + * + * Parent Class: EntityRabbit$RabbitJumpHelper + */ +f.theEntity.EntityRabbit$RabbitJumpHelper = "field_180070_c" +/** + * + * + * Parent Class: EntityAISit + */ +f.theEntity.EntityAISit = "field_75272_a" +/** + * + * + * Parent Class: EntityAIRestrictSun + */ +f.theEntity.EntityAIRestrictSun = "field_75273_a" +/** + * + * + * Parent Class: EntityAIDoorInteract + */ +f.theEntity.EntityAIDoorInteract = "field_75356_a" +/** + * + * + * Parent Class: EntityAISwimming + */ +f.theEntity.EntityAISwimming = "field_75373_a" +/** + * The entity we are attached to + * + * Parent Class: EntityAIAvoidEntity + */ +f.theEntity.EntityAIAvoidEntity = "field_75380_a" +/** + * + * + * Parent Class: EntityAIOcelotAttack + */ +f.theEntity.EntityAIOcelotAttack = "field_75409_b" +/** + * + * + * Parent Class: EntityAIMoveThroughVillage + */ +f.theEntity.EntityAIMoveThroughVillage = "field_75420_a" +/** + * + * + * Parent Class: EntityAIMoveTowardsTarget + */ +f.theEntity.EntityAIMoveTowardsTarget = "field_75431_a" +/** + * + * + * Parent Class: EntityAIMoveTowardsRestriction + */ +f.theEntity.EntityAIMoveTowardsRestriction = "field_75436_a" +/** + * + * + * Parent Class: EntityAINearestAttackableTarget$Sorter + */ +f.theEntity.EntityAINearestAttackableTarget$Sorter = "field_75459_b" +/** + * + * + * Parent Class: PathNavigate + */ +f.theEntity.PathNavigate = "field_75515_a" + +f.slime = {} +/** + * + * + * Parent Class: EntitySlime$AISlimeFloat + */ +f.slime.EntitySlime$AISlimeFloat = "field_179457_a" +/** + * + * + * Parent Class: EntitySlime$AISlimeHop + */ +f.slime.EntitySlime$AISlimeHop = "field_179458_a" +/** + * + * + * Parent Class: EntitySlime$AISlimeFaceRandom + */ +f.slime.EntitySlime$AISlimeFaceRandom = "field_179461_a" +/** + * + * + * Parent Class: EntitySlime$AISlimeAttack + */ +f.slime.EntitySlime$AISlimeAttack = "field_179466_a" +/** + * + * + * Parent Class: EntitySlime$SlimeMoveHelper + */ +f.slime.EntitySlime$SlimeMoveHelper = "field_179925_i" + +f.silverfish = {} +/** + * + * + * Parent Class: EntitySilverfish$AISummonSilverfish + */ +f.silverfish.EntitySilverfish$AISummonSilverfish = "field_179464_a" +/** + * + * + * Parent Class: EntitySilverfish$AIHideInStone + */ +f.silverfish.EntitySilverfish$AIHideInStone = "field_179485_a" + +/** + * + * + * Parent Class: EntityBlaze$AIFireballAttack + */ +f.blaze = "field_179469_a" +f.attackTimer = {} +/** + * + * + * Parent Class: EntityGhast$AIFireballAttack + */ +f.attackTimer.EntityGhast$AIFireballAttack = "field_179471_a" +/** + * + * + * Parent Class: EntityIronGolem + */ +f.attackTimer.EntityIronGolem = "field_70855_f" + +/** + * + * + * Parent Class: EntitySquid$AIMoveRandom + */ +f.squid = "field_179476_a" +f.villager = {} +/** + * + * + * Parent Class: EntityAIVillagerInteract + */ +f.villager.EntityAIVillagerInteract = "field_179477_f" +/** + * + * + * Parent Class: EntityAITradePlayer + */ +f.villager.EntityAITradePlayer = "field_75276_a" + +/** + * The delay before the villager throws an itemstack (in ticks) + * + * Parent Class: EntityAIVillagerInteract + */ +f.interactionDelay = "field_179478_e" +/** + * + * + * Parent Class: EntityAIWander + */ +f.executionChance = "field_179481_f" +/** + * + * + * Parent Class: EntityAIWander + */ +f.mustUpdate = "field_179482_g" +/** + * + * + * Parent Class: EntityAIMoveToBlock + */ +f.isAboveDestination = "field_179491_g" +f.timeoutCounter = {} +/** + * + * + * Parent Class: EntityAIMoveToBlock + */ +f.timeoutCounter.EntityAIMoveToBlock = "field_179493_e" +/** + * + * + * Parent Class: EntityAIBeg + */ +f.timeoutCounter.EntityAIBeg = "field_75384_e" + +/** + * Block to move to + * + * Parent Class: EntityAIMoveToBlock + */ +f.destinationBlock = "field_179494_b" +/** + * Controls task execution delay + * + * Parent Class: EntityAIMoveToBlock + */ +f.runDelay = "field_179496_a" +/** + * + * + * Parent Class: EntityAIMoveToBlock + */ +f.searchLength = "field_179497_h" +f.rabbit = {} +/** + * + * + * Parent Class: EntityRabbit$AIRaidFarm + */ +f.rabbit.EntityRabbit$AIRaidFarm = "field_179500_c" +/** + * + * + * Parent Class: Items + */ +f.rabbit.Items = "field_179558_bo" + +/** + * + * + * Parent Class: EntityAIHarvestFarmland + */ +f.hasFarmItem = "field_179502_d" +f.theVillager = {} +/** + * Villager that is harvesting + * + * Parent Class: EntityAIHarvestFarmland + */ +f.theVillager.EntityAIHarvestFarmland = "field_179504_c" +/** + * + * + * Parent Class: EntityAIFollowGolem + */ +f.theVillager.EntityAIFollowGolem = "field_75294_a" +/** + * + * + * Parent Class: EntityAILookAtVillager + */ +f.theVillager.EntityAILookAtVillager = "field_75395_b" + +/** + * + * + * Parent Class: EntityAIDoorInteract + */ +f.doorPosition = "field_179507_b" +/** + * + * + * Parent Class: EntityAIAvoidEntity + */ +f.avoidDistance = "field_179508_f" +/** + * + * + * Parent Class: EntityAIAvoidEntity + */ +f.canBeSeenSelector = "field_179509_a" +/** + * + * + * Parent Class: EntityAIAvoidEntity + */ +f.avoidTargetSelector = "field_179510_i" +/** + * + * + * Parent Class: EntityRabbit$AIAvoidEntity + */ +f.entityInstance = "field_179511_d" +/** + * + * + * Parent Class: EnumFacing$AxisDirection + */ +f.offset = "field_179528_c" +/** + * + * + * Parent Class: CommandClone$StaticCloneData + */ +f.compound = "field_179536_c" +/** + * + * + * Parent Class: PotionHelper + */ +f.rabbitFootEffect = "field_179538_n" +/** + * + * + * Parent Class: PotionHelper + */ +f.potionRequirements = "field_179539_o" +/** + * + * + * Parent Class: PotionHelper + */ +f.potionAmplifiers = "field_179540_p" +/** + * + * + * Parent Class: ItemStack + */ +f.canPlaceOnCacheBlock = "field_179550_j" +/** + * + * + * Parent Class: ItemStack + */ +f.canPlaceOnCacheResult = "field_179551_k" +/** + * + * + * Parent Class: ItemStack + */ +f.canDestroyCacheBlock = "field_179552_h" +/** + * + * + * Parent Class: ItemStack + */ +f.canDestroyCacheResult = "field_179553_i" +/** + * + * + * Parent Class: Items + */ +f.rabbit_hide = "field_179555_bs" +/** + * + * + * Parent Class: Items + */ +f.rabbit_foot = "field_179556_br" +/** + * + * + * Parent Class: Items + */ +f.cooked_mutton = "field_179557_bn" +/** + * + * + * Parent Class: Items + */ +f.cooked_rabbit = "field_179559_bp" +/** + * + * + * Parent Class: Items + */ +f.rabbit_stew = "field_179560_bq" +/** + * + * + * Parent Class: Items + */ +f.mutton = "field_179561_bm" +/** + * + * + * Parent Class: Items + */ +f.prismarine_shard = "field_179562_cC" +/** + * + * + * Parent Class: Items + */ +f.prismarine_crystals = "field_179563_cD" +/** + * + * + * Parent Class: Items + */ +f.armor_stand = "field_179565_cj" +/** + * + * + * Parent Class: Items + */ +f.cooked_fish = "field_179566_aV" +f.jungle_door = {} +/** + * + * + * Parent Class: Items + */ +f.jungle_door.Items = "field_179567_at" +/** + * + * + * Parent Class: Blocks + */ +f.jungle_door.Blocks = "field_180411_ar" + +f.birch_door = {} +/** + * + * + * Parent Class: Items + */ +f.birch_door.Items = "field_179568_as" +/** + * + * + * Parent Class: Blocks + */ +f.birch_door.Blocks = "field_180412_aq" + +f.spruce_door = {} +/** + * + * + * Parent Class: Items + */ +f.spruce_door.Items = "field_179569_ar" +/** + * + * + * Parent Class: Blocks + */ +f.spruce_door.Blocks = "field_180414_ap" + +f.oak_door = {} +/** + * + * + * Parent Class: Items + */ +f.oak_door.Items = "field_179570_aq" +/** + * + * + * Parent Class: Blocks + */ +f.oak_door.Blocks = "field_180413_ao" + +f.dark_oak_door = {} +/** + * + * + * Parent Class: Items + */ +f.dark_oak_door.Items = "field_179571_av" +/** + * + * + * Parent Class: Blocks + */ +f.dark_oak_door.Blocks = "field_180409_at" + +f.acacia_door = {} +/** + * + * + * Parent Class: Items + */ +f.acacia_door.Items = "field_179572_au" +/** + * + * + * Parent Class: Blocks + */ +f.acacia_door.Blocks = "field_180410_as" + +/** + * The integer ID of the Result Type. + * + * Parent Class: CommandResultStats$Type + */ +f.typeID = "field_179639_f" +/** + * The string representation of the type. + * + * Parent Class: CommandResultStats$Type + */ +f.typeName = "field_179640_g" +/** + * A set of arguments that will change the selector's world list to the sender's world instead of all the worlds when present + * + * Parent Class: PlayerSelector + */ +f.WORLD_BINDING_ARGS = "field_179666_d" +/** + * List of all the Objectives names + * + * Parent Class: CommandResultStats + */ +f.objectives = "field_179673_d" +/** + * + * + * Parent Class: CommandResultStats + */ +f.STRING_RESULT_TYPES = "field_179674_b" +/** + * "List of entityID who set a stat + * + * Parent Class: CommandResultStats + */ +f.entitiesID = "field_179675_c" +/** + * The number of result command result types that are possible. + * + * Parent Class: CommandResultStats + */ +f.NUM_RESULT_TYPES = "field_179676_a" +/** + * + * + * Parent Class: PathNavigate + */ +f.pathFinder = "field_179681_j" +/** + * + * + * Parent Class: PathNavigate + */ +f.heightRequirement = "field_179682_i" +/** + * + * + * Parent Class: PathNavigateGround + */ +f.shouldAvoidSun = "field_179694_f" +/** + * Current path navigation target + * + * Parent Class: PathNavigateClimber + */ +f.targetPosition = "field_179696_f" +/** + * + * + * Parent Class: S1DPacketEntityEffect + */ +f.hideParticles = "field_179708_e" +/** + * + * + * Parent Class: C14PacketTabComplete + */ +f.targetBlock = "field_179710_b" +/** + * + * + * Parent Class: C15PacketClientSettings + */ +f.modelPartFlags = "field_179711_e" +f.hitVec = {} +/** + * + * + * Parent Class: C02PacketUseEntity + */ +f.hitVec.C02PacketUseEntity = "field_179713_c" +/** + * The vector position of the hit + * + * Parent Class: MovingObjectPosition + */ +f.hitVec.MovingObjectPosition = "field_72307_f" + +f.hash = {} +/** + * + * + * Parent Class: C19PacketResourcePackStatus + */ +f.hash.C19PacketResourcePackStatus = "field_179720_a" +/** + * + * + * Parent Class: S48PacketResourcePackSend + */ +f.hash.S48PacketResourcePackSend = "field_179785_b" +/** + * + * + * Parent Class: KeyBinding + */ +f.hash.KeyBinding = "field_74514_b" +/** + * A hash of the coordinates used to identify this point + * + * Parent Class: PathPoint + */ +f.hash.PathPoint = "field_75840_j" +/** + * + * + * Parent Class: LongHashMap$Entry + */ +f.hash.LongHashMap$Entry = "field_76147_d" + +/** + * + * + * Parent Class: S03PacketEnableCompression + */ +f.compressionTreshold = "field_179733_a" +/** + * + * + * Parent Class: S34PacketMaps + */ +f.mapMaxX = "field_179735_f" +/** + * + * + * Parent Class: S34PacketMaps + */ +f.mapMaxY = "field_179736_g" +/** + * + * + * Parent Class: S34PacketMaps + */ +f.mapMinX = "field_179737_d" +/** + * + * + * Parent Class: S34PacketMaps + */ +f.mapMinY = "field_179738_e" +/** + * + * + * Parent Class: S34PacketMaps + */ +f.mapScale = "field_179739_b" +/** + * + * + * Parent Class: S34PacketMaps + */ +f.mapVisiblePlayersVec4b = "field_179740_c" +/** + * + * + * Parent Class: S34PacketMaps + */ +f.mapDataBytes = "field_179741_h" +/** + * + * + * Parent Class: S28PacketEffect + */ +f.soundPos = "field_179747_b" +/** + * + * + * Parent Class: S2APacketParticles + */ +f.particleType = "field_179751_a" +/** + * + * + * Parent Class: S2APacketParticles + */ +f.longDistance = "field_179752_j" +/** + * These are the block/item ids and possibly metaData ids that are used to color or texture the particle. + * + * Parent Class: S2APacketParticles + */ +f.particleArguments = "field_179753_k" +/** + * + * + * Parent Class: S26PacketMapChunkBulk + */ +f.chunksData = "field_179755_c" +/** + * + * + * Parent Class: S21PacketChunkData + */ +f.extractedData = "field_179758_c" +f.threshold = {} +/** + * + * + * Parent Class: S46PacketSetCompressionLevel + */ +f.threshold.S46PacketSetCompressionLevel = "field_179761_a" +/** + * The grow threshold + * + * Parent Class: IntHashMap + */ +f.threshold.IntHashMap = "field_76054_c" + +/** + * + * + * Parent Class: S42PacketCombatEvent + */ +f.deathMessage = "field_179773_e" +/** + * + * + * Parent Class: S42PacketCombatEvent + */ +f.eventType = "field_179776_a" +/** + * + * + * Parent Class: S36PacketSignEditorOpen + */ +f.signPosition = "field_179778_a" +/** + * + * + * Parent Class: S48PacketResourcePackSend + */ +f.url = "field_179786_a" +/** + * + * + * Parent Class: S44PacketWorldBorder + */ +f.diameter = "field_179789_f" +/** + * + * + * Parent Class: S44PacketWorldBorder + */ +f.timeUntilTarget = "field_179790_g" +/** + * + * + * Parent Class: S44PacketWorldBorder + */ +f.targetSize = "field_179792_e" +/** + * Block location of the head part of the bed + * + * Parent Class: S0APacketUseBed + */ +f.bedPos = "field_179799_b" +/** + * + * + * Parent Class: S05PacketSpawnPosition + */ +f.spawnBlockPos = "field_179801_a" +/** + * + * + * Parent Class: S45PacketTitle + */ +f.displayTime = "field_179808_d" +/** + * + * + * Parent Class: S45PacketTitle + */ +f.fadeOutTime = "field_179809_e" +/** + * + * + * Parent Class: S45PacketTitle + */ +f.fadeInTime = "field_179811_c" +/** + * + * + * Parent Class: S0CPacketSpawnPlayer + */ +f.playerId = "field_179820_b" +f.blockPosition = {} +/** + * + * + * Parent Class: S24PacketBlockAction + */ +f.blockPosition.S24PacketBlockAction = "field_179826_a" +/** + * + * + * Parent Class: S23PacketBlockChange + */ +f.blockPosition.S23PacketBlockChange = "field_179828_a" + +/** + * + * + * Parent Class: S22PacketMultiBlockChange + */ +f.changedBlocks = "field_179845_b" +/** + * + * + * Parent Class: VillageDoorInfo + */ +f.insideBlock = "field_179857_b" +/** + * the inside direction is where can see less sky + * + * Parent Class: VillageDoorInfo + */ +f.insideDirection = "field_179858_c" +/** + * a block representing the door. Could be either upper or lower part + * + * Parent Class: VillageDoorInfo + */ +f.doorBlockPos = "field_179859_a" +/** + * + * + * Parent Class: Bootstrap + */ +f.SYSOUT = "field_179872_a" +/** + * + * + * Parent Class: LoggingPrintStream + */ +f.domain = "field_179883_b" +/** + * + * + * Parent Class: ThreadQuickExitException + */ +f.INSTANCE = "field_179886_a" +/** + * + * + * Parent Class: EntityGhast$GhastMoveHelper + */ +f.courseChangeCooldown = "field_179928_h" +/** + * + * + * Parent Class: EntityGuardian$GuardianMoveHelper + */ +f.entityGuardian = "field_179930_g" +f.ping = {} +/** + * + * + * Parent Class: S38PacketPlayerListItem$AddPlayerData + */ +f.ping.S38PacketPlayerListItem$AddPlayerData = "field_179966_b" +/** + * + * + * Parent Class: EntityPlayerMP + */ +f.ping.EntityPlayerMP = "field_71138_i" + +/** + * + * + * Parent Class: S38PacketPlayerListItem$AddPlayerData + */ +f.gamemode = "field_179967_c" +/** + * + * + * Parent Class: ChatStyle + */ +f.insertion = "field_179990_j" +/** + * The selector used to find the matching entities of this text component + * + * Parent Class: ChatComponentSelector + */ +f.selector = "field_179993_b" +/** + * + * + * Parent Class: EntityMinecart$EnumMinecartType + */ +f.networkID = "field_180052_i" +/** + * contains the bitshifted location of the block in the chunk + * + * Parent Class: S22PacketMultiBlockChange$BlockUpdateData + */ +f.chunkPosCrammed = "field_180091_b" +/** + * + * + * Parent Class: EntitySpawnPlacementRegistry + */ +f.ENTITY_PLACEMENTS = "field_180110_a" +/** + * provides a mapping between a string and an entity ID + * + * Parent Class: EntityList + */ +f.stringToIDMapping = "field_180126_g" +/** + * Selects entities which are either not players or players that are not spectating + * + * Parent Class: EntitySelectors + */ +f.NOT_SPECTATING = "field_180132_d" +/** + * + * + * Parent Class: DamageSource + */ +f.lightningBolt = "field_180137_b" +/** + * Whether this EntityDamageSource is from an entity wearing Thorns-enchanted armor. + * + * Parent Class: EntityDamageSource + */ +f.isThornsDamage = "field_180140_r" +/** + * The health boost Potion object. + * + * Parent Class: Potion + */ +f.healthBoost = "field_180152_w" +/** + * + * + * Parent Class: PotionEffect + */ +f.showParticles = "field_180156_h" +/** + * + * + * Parent Class: LockCode + */ +f.EMPTY_CODE = "field_180162_a" +/** + * + * + * Parent Class: DifficultyInstance + */ +f.additionalDifficulty = "field_180171_b" +/** + * + * + * Parent Class: DifficultyInstance + */ +f.worldDifficulty = "field_180172_a" +/** + * + * + * Parent Class: MathHelper + */ +f.SQRT_2 = "field_180189_a" +/** + * + * + * Parent Class: LongHashMap + */ +f.mask = "field_180201_c" +/** + * + * + * Parent Class: StatList + */ +f.timesTalkedToVillagerStat = "field_180205_F" +/** + * + * + * Parent Class: StatList + */ +f.timesTradedWithVillagerStat = "field_180206_G" +/** + * + * + * Parent Class: StatList + */ +f.distanceCrouchedStat = "field_180207_j" +/** + * + * + * Parent Class: StatList + */ +f.distanceSprintedStat = "field_180208_k" +/** + * + * + * Parent Class: StatList + */ +f.timeSinceDeathStat = "field_180209_h" +/** + * + * + * Parent Class: ClassInheritanceMultiMap + */ +f.knownKeys = "field_180216_b" +/** + * + * + * Parent Class: ClassInheritanceMultiMap + */ +f.baseClass = "field_180217_c" +/** + * + * + * Parent Class: AchievementList + */ +f.overpowered = "field_180219_M" +/** + * + * + * Parent Class: NetworkSystem + */ +f.SERVER_LOCAL_EVENTLOOP = "field_180232_b" +/** + * + * + * Parent Class: ServerHangWatchdog + */ +f.maxTickTime = "field_180250_c" +/** + * + * + * Parent Class: SpawnerAnimals + */ +f.MOB_COUNT_DIV = "field_180268_a" +/** + * + * + * Parent Class: WorldType + */ +f.CUSTOMIZED = "field_180271_f" +/** + * + * + * Parent Class: WorldType + */ +f.DEBUG_WORLD = "field_180272_g" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.BIOME_ID_MAP = "field_180278_o" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.DOUBLE_PLANT_GENERATOR = "field_180280_ag" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.GRASS_COLOR_NOISE = "field_180281_af" +/** + * + * + * Parent Class: BiomeColorHelper + */ +f.FOLIAGE_COLOR = "field_180289_b" +/** + * + * + * Parent Class: BiomeColorHelper + */ +f.WATER_COLOR_MULTIPLIER = "field_180290_c" +/** + * + * + * Parent Class: BiomeColorHelper + */ +f.GRASS_COLOR = "field_180291_a" +/** + * + * + * Parent Class: BiomeDecorator + */ +f.chunkProviderSettings = "field_180293_d" +/** + * + * + * Parent Class: BiomeDecorator + */ +f.andesiteGen = "field_180295_l" +/** + * + * + * Parent Class: BiomeDecorator + */ +f.graniteGen = "field_180296_j" +/** + * + * + * Parent Class: BiomeDecorator + */ +f.dioriteGen = "field_180297_k" +/** + * + * + * Parent Class: BiomeDecorator + */ +f.diamondGen = "field_180298_q" +/** + * + * + * Parent Class: BiomeDecorator + */ +f.redstoneGen = "field_180299_p" +f.generatorOptions = {} +/** + * + * + * Parent Class: WorldChunkManager + */ +f.generatorOptions.WorldChunkManager = "field_180301_f" +/** + * + * + * Parent Class: WorldInfo + */ +f.generatorOptions.WorldInfo = "field_82576_c" + +/** + * + * + * Parent Class: Enchantment + */ +f.locationEnchantments = "field_180307_E" +/** + * + * + * Parent Class: Enchantment + */ +f.projectileProtection = "field_180308_g" +/** + * + * + * Parent Class: Enchantment + */ +f.featherFalling = "field_180309_e" +/** + * + * + * Parent Class: Enchantment + */ +f.protection = "field_180310_c" +/** + * + * + * Parent Class: Enchantment + */ +f.enchantmentsList = "field_180311_a" +/** + * + * + * Parent Class: Enchantment + */ +f.baneOfArthropods = "field_180312_n" +/** + * + * + * Parent Class: Enchantment + */ +f.knockback = "field_180313_o" +/** + * + * + * Parent Class: Enchantment + */ +f.sharpness = "field_180314_l" +/** + * + * + * Parent Class: Enchantment + */ +f.smite = "field_180315_m" +/** + * + * + * Parent Class: Enchantment + */ +f.depthStrider = "field_180316_k" +/** + * + * + * Parent Class: Enchantment + */ +f.respiration = "field_180317_h" +/** + * + * + * Parent Class: MerchantRecipe + */ +f.rewardsExp = "field_180323_f" +/** + * + * + * Parent Class: EnumWorldBlockLayer + */ +f.layerName = "field_180338_e" +/** + * + * + * Parent Class: Blocks + */ +f.piston_extension = "field_180384_M" +/** + * + * + * Parent Class: Blocks + */ +f.dark_oak_fence_gate = "field_180385_bs" +/** + * + * + * Parent Class: Blocks + */ +f.jungle_fence_gate = "field_180386_br" +/** + * + * + * Parent Class: Blocks + */ +f.acacia_fence_gate = "field_180387_bt" +/** + * + * + * Parent Class: Blocks + */ +f.double_stone_slab2 = "field_180388_cO" +/** + * + * + * Parent Class: Blocks + */ +f.stone_slab2 = "field_180389_cP" +/** + * + * + * Parent Class: Blocks + */ +f.oak_fence_gate = "field_180390_bo" +/** + * + * + * Parent Class: Blocks + */ +f.spruce_fence_gate = "field_180391_bp" +/** + * + * + * Parent Class: Blocks + */ +f.birch_fence_gate = "field_180392_bq" +/** + * + * + * Parent Class: Blocks + */ +f.standing_banner = "field_180393_cK" +/** + * + * + * Parent Class: Blocks + */ +f.wall_banner = "field_180394_cL" +/** + * + * + * Parent Class: Blocks + */ +f.red_sandstone = "field_180395_cM" +/** + * + * + * Parent Class: Blocks + */ +f.red_sandstone_stairs = "field_180396_cN" +/** + * + * + * Parent Class: Blocks + */ +f.prismarine = "field_180397_cI" +/** + * + * + * Parent Class: Blocks + */ +f.sea_lantern = "field_180398_cJ" +/** + * + * + * Parent Class: Blocks + */ +f.slime_block = "field_180399_cE" +/** + * + * + * Parent Class: Blocks + */ +f.iron_trapdoor = "field_180400_cw" +/** + * + * + * Parent Class: Blocks + */ +f.daylight_detector_inverted = "field_180402_cm" +/** + * + * + * Parent Class: Blocks + */ +f.jungle_fence = "field_180403_aR" +/** + * + * + * Parent Class: Blocks + */ +f.birch_fence = "field_180404_aQ" +/** + * + * + * Parent Class: Blocks + */ +f.acacia_fence = "field_180405_aT" +/** + * + * + * Parent Class: Blocks + */ +f.dark_oak_fence = "field_180406_aS" +/** + * + * + * Parent Class: Blocks + */ +f.oak_fence = "field_180407_aO" +/** + * + * + * Parent Class: Blocks + */ +f.spruce_fence = "field_180408_aP" +/** + * The position of the last portal the entity was in + * + * Parent Class: Entity + */ +f.lastPortalPos = "field_181016_an" +/** + * A horizontal vector related to the position of the last portal the entity was in + * + * Parent Class: Entity + */ +f.lastPortalVec = "field_181017_ao" +/** + * A direction related to the position of the last portal the entity was in + * + * Parent Class: Entity + */ +f.teleportDirection = "field_181018_ap" +/** + * + * + * Parent Class: EntityDiggingFX + */ +f.sourcePos = "field_181019_az" +f.setTileEntities = {} +/** + * + * + * Parent Class: RenderGlobal + */ +f.setTileEntities.RenderGlobal = "field_181024_n" +/** + * + * + * Parent Class: RenderChunk + */ +f.setTileEntities.RenderChunk = "field_181056_j" + +f.profileProperties = {} +/** + * The player's GameProfile properties + * + * Parent Class: Minecraft + */ +f.profileProperties.Minecraft = "field_181038_N" +/** + * + * + * Parent Class: GameConfiguration$UserInformation + */ +f.profileProperties.GameConfiguration$UserInformation = "field_181172_c" + +/** + * + * + * Parent Class: OpenGlHelper + */ +f.vboSupportedAti = "field_181062_Q" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.ati = "field_181063_b" +/** + * Class of entity this behavior seeks to avoid + * + * Parent Class: EntityAIAvoidEntity + */ +f.classToAvoid = "field_181064_i" +/** + * The Block's MapColor + * + * Parent Class: Block + */ +f.blockMapColor = "field_181083_K" +/** + * + * + * Parent Class: NetworkManager + */ +f.CLIENT_EPOLL_EVENTLOOP = "field_181125_e" +/** + * + * + * Parent Class: NetworkSystem + */ +f.SERVER_EPOLL_EVENTLOOP = "field_181141_b" +/** + * + * + * Parent Class: GameSettings + */ +f.CLOUDS_TYPES = "field_181149_aW" +/** + * + * + * Parent Class: GameSettings + */ +f.useNativeTransport = "field_181150_U" +/** + * + * + * Parent Class: GameSettings + */ +f.entityShadows = "field_181151_V" +/** + * True if the player is connected to a realms server + * + * Parent Class: Minecraft + */ +f.connectedToRealms = "field_181541_X" +/** + * The FrameTimer's instance + * + * Parent Class: Minecraft + */ +f.frameTimer = "field_181542_y" +/** + * Time in nanoseconds of when the class is loaded + * + * Parent Class: Minecraft + */ +f.startNanoTime = "field_181543_z" +/** + * + * + * Parent Class: GameSettings + */ +f.showLagometer = "field_181657_aC" +/** + * + * + * Parent Class: WorldRenderer + */ +f.rawShortBuffer = "field_181676_c" +/** + * + * + * Parent Class: WorldRenderer + */ +f.vertexFormatElement = "field_181677_f" +/** + * + * + * Parent Class: WorldRenderer + */ +f.vertexFormatIndex = "field_181678_g" +/** + * + * + * Parent Class: NetworkManager + */ +f.readWriteLock = "field_181680_j" +/** + * + * + * Parent Class: ItemCameraTransforms + */ +f.fixed = "field_181700_p" +/** + * + * + * Parent Class: RenderChunk + */ +f.mapEnumFacing = "field_181702_p" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.OLDMODEL_POSITION_TEX_NORMAL = "field_181703_c" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.PARTICLE_POSITION_TEX_COLOR_LMAP = "field_181704_d" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.POSITION = "field_181705_e" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.POSITION_COLOR = "field_181706_f" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.POSITION_TEX = "field_181707_g" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.POSITION_NORMAL = "field_181708_h" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.POSITION_TEX_COLOR = "field_181709_i" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.POSITION_TEX_NORMAL = "field_181710_j" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.POSITION_TEX_LMAP_COLOR = "field_181711_k" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.POSITION_TEX_COLOR_NORMAL = "field_181712_l" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.POSITION_3F = "field_181713_m" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.COLOR_4UB = "field_181714_n" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.TEX_2F = "field_181715_o" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.TEX_2S = "field_181716_p" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.NORMAL_3B = "field_181717_q" +/** + * + * + * Parent Class: DefaultVertexFormats + */ +f.PADDING_1B = "field_181718_r" +/** + * An array with the last 240 frames + * + * Parent Class: FrameTimer + */ +f.frames = "field_181752_a" +/** + * The last index used when 240 frames have been set + * + * Parent Class: FrameTimer + */ +f.lastIndex = "field_181753_b" +/** + * + * + * Parent Class: IntegerCache + */ +f.CACHE = "field_181757_a" +/** + * + * + * Parent Class: NetHandlerStatusServer + */ +f.EXIT_MESSAGE = "field_183007_a" +/** + * + * + * Parent Class: NetHandlerStatusServer + */ +f.handled = "field_183008_d" +/** + * + * + * Parent Class: GameSettings + */ +f.incompatibleResourcePacks = "field_183018_l" +/** + * + * + * Parent Class: UserListOpsEntry + */ +f.bypassesPlayerLimit = "field_183025_b" +/** + * + * + * Parent Class: OpenGlHelper + */ +f.cpu = "field_183030_aa" +/** + * + * + * Parent Class: undefined + */ +f.realmsNotifications = "field_183509_X" +/** + * + * + * Parent Class: Entity + */ +f.serverPosZ = "field_70116_cv" +/** + * + * + * Parent Class: Entity + */ +f.serverPosY = "field_70117_cu" +/** + * + * + * Parent Class: Entity + */ +f.serverPosX = "field_70118_ct" +/** + * True if after a move this entity has collided with something on X- or Z-axis + * + * Parent Class: Entity + */ +f.isCollidedHorizontally = "field_70123_F" +/** + * True if after a move this entity has collided with something on Y-axis + * + * Parent Class: Entity + */ +f.isCollidedVertically = "field_70124_G" +/** + * Entity rotation Pitch + * + * Parent Class: Entity + */ +f.rotationPitch = "field_70125_A" +/** + * + * + * Parent Class: Entity + */ +f.prevRotationYaw = "field_70126_B" +/** + * + * + * Parent Class: Entity + */ +f.prevRotationPitch = "field_70127_C" +/** + * "gets set by setEntityDead + * + * Parent Class: Entity + */ +f.isDead = "field_70128_L" +/** + * True if after a move this entity has collided with something either vertically or horizontally + * + * Parent Class: Entity + */ +f.isCollided = "field_70132_H" +/** + * + * + * Parent Class: Entity + */ +f.velocityChanged = "field_70133_I" +/** + * + * + * Parent Class: Entity + */ +f.isInWeb = "field_70134_J" +/** + * "The entity's Z coordinate at the previous tick + * + * Parent Class: Entity + */ +f.lastTickPosZ = "field_70136_U" +/** + * "The entity's Y coordinate at the previous tick + * + * Parent Class: Entity + */ +f.lastTickPosY = "field_70137_T" +/** + * How high this entity can step up when running into a block to try to get over it (currently make note the entity will always step up this amount and not just the amount needed) + * + * Parent Class: Entity + */ +f.stepHeight = "field_70138_W" +/** + * The distance walked multiplied by 0.6 + * + * Parent Class: Entity + */ +f.distanceWalkedModified = "field_70140_Q" +/** + * The previous ticks distance walked multiplied by 0.6 + * + * Parent Class: Entity + */ +f.prevDistanceWalkedModified = "field_70141_P" +/** + * "The entity's X coordinate at the previous tick + * + * Parent Class: Entity + */ +f.lastTickPosX = "field_70142_S" +f.fallDistance = {} +/** + * + * + * Parent Class: Entity + */ +f.fallDistance.Entity = "field_70143_R" +/** + * + * + * Parent Class: CombatEntry + */ +f.fallDistance.CombatEntry = "field_94564_f" + +/** + * Reduces the velocity applied by entity collisions by the specified percent. + * + * Parent Class: Entity + */ +f.entityCollisionReduction = "field_70144_Y" +/** + * Whether this entity won't clip with collision or not (make note it won't disable gravity) + * + * Parent Class: Entity + */ +f.noClip = "field_70145_X" +/** + * + * + * Parent Class: Entity + */ +f.entityRiderYawDelta = "field_70147_f" +/** + * + * + * Parent Class: Entity + */ +f.firstUpdate = "field_70148_d" +/** + * + * + * Parent Class: Entity + */ +f.entityRiderPitchDelta = "field_70149_e" +/** + * The distance that has to be exceeded in order to triger a new step sound and an onEntityWalking event on a block + * + * Parent Class: Entity + */ +f.nextStepDistance = "field_70150_b" +/** + * + * + * Parent Class: Entity + */ +f.nextEntityID = "field_70152_a" +/** + * The entity that is riding this entity + * + * Parent Class: Entity + */ +f.riddenByEntity = "field_70153_n" +f.ridingEntity = {} +/** + * The entity we are currently riding + * + * Parent Class: Entity + */ +f.ridingEntity.Entity = "field_70154_o" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.ridingEntity.EntityTrackerEntry = "field_73141_v" + +/** + * + * + * Parent Class: Entity + */ +f.renderDistanceWeight = "field_70155_l" +/** + * Blocks entities from spawning when they do their AABB check to make sure the spot is clear of entities that can prevent spawning. + * + * Parent Class: Entity + */ +f.preventEntitySpawning = "field_70156_m" +/** + * Render entity even if it is outside the camera frustum. Only true in EntityFish for now. Used in RenderGlobal: render if ignoreFrustumCheck or in frustum. + * + * Parent Class: Entity + */ +f.ignoreFrustumCheck = "field_70158_ak" +/** + * + * + * Parent Class: Entity + */ +f.isAirBorne = "field_70160_al" +/** + * + * + * Parent Class: Entity + */ +f.chunkCoordY = "field_70162_ai" +/** + * + * + * Parent Class: Entity + */ +f.chunkCoordZ = "field_70164_aj" +/** + * + * + * Parent Class: Entity + */ +f.prevPosZ = "field_70166_s" +/** + * + * + * Parent Class: Entity + */ +f.prevPosY = "field_70167_r" +/** + * + * + * Parent Class: Entity + */ +f.prevPosX = "field_70169_q" +/** + * Whether this entity is currently inside of water (if it handles water movement that is) + * + * Parent Class: Entity + */ +f.inWater = "field_70171_ac" +/** + * "Remaining time an entity will be ""immune"" to further damage after being hurt." + * + * Parent Class: Entity + */ +f.hurtResistantTime = "field_70172_ad" +/** + * How many ticks has this entity had ran since being alive + * + * Parent Class: Entity + */ +f.ticksExisted = "field_70173_aa" +f.fireResistance = {} +/** + * The amount of ticks you have to stand inside of fire before be set on fire + * + * Parent Class: Entity + */ +f.fireResistance.Entity = "field_70174_ab" +/** + * The fire resistance Potion object. + * + * Parent Class: Potion + */ +f.fireResistance.Potion = "field_76426_n" + +/** + * Has this entity been added to the chunk its within + * + * Parent Class: Entity + */ +f.addedToChunk = "field_70175_ag" +/** + * + * + * Parent Class: Entity + */ +f.chunkCoordX = "field_70176_ah" +/** + * Entity rotation Yaw + * + * Parent Class: Entity + */ +f.rotationYaw = "field_70177_z" +/** + * + * + * Parent Class: Entity + */ +f.isImmuneToFire = "field_70178_ae" +/** + * + * + * Parent Class: Entity + */ +f.dataWatcher = "field_70180_af" +/** + * + * + * Parent Class: EntityThrowable + */ +f.throwableShake = "field_70191_b" +/** + * The damage value of the thrown potion that this EntityPotion represents. + * + * Parent Class: EntityPotion + */ +f.potionDamage = "field_70197_d" +/** + * + * + * Parent Class: EntityEnderEye + */ +f.shatterOrDrop = "field_70221_f" +/** + * + * + * Parent Class: EntityEnderEye + */ +f.despawnTimer = "field_70223_e" +/** + * + * + * Parent Class: EntityFireball + */ +f.accelerationZ = "field_70230_d" +/** + * + * + * Parent Class: EntityFireball + */ +f.accelerationX = "field_70232_b" +/** + * + * + * Parent Class: EntityFireball + */ +f.accelerationY = "field_70233_c" +f.shootingEntity = {} +/** + * + * + * Parent Class: EntityFireball + */ +f.shootingEntity.EntityFireball = "field_70235_a" +/** + * The owner of this arrow. + * + * Parent Class: EntityArrow + */ +f.shootingEntity.EntityArrow = "field_70250_c" + +/** + * + * + * Parent Class: EntityFireball + */ +f.ticksAlive = "field_70236_j" +/** + * Seems to be some sort of timer for animating an arrow. + * + * Parent Class: EntityArrow + */ +f.arrowShake = "field_70249_b" +/** + * 1 if the player can pick up the arrow + * + * Parent Class: EntityArrow + */ +f.canBePickedUp = "field_70251_a" +/** + * + * + * Parent Class: EntityArrow + */ +f.inData = "field_70253_h" +f.damage = {} +/** + * + * + * Parent Class: EntityArrow + */ +f.damage.EntityArrow = "field_70255_ao" +/** + * + * + * Parent Class: CombatEntry + */ +f.damage.CombatEntry = "field_94568_c" + +/** + * The amount of knockback an arrow applies when it hits a mob. + * + * Parent Class: EntityArrow + */ +f.knockbackStrength = "field_70256_ap" +/** + * The dragon entity this dragon part belongs to + * + * Parent Class: EntityDragonPart + */ +f.entityDragonObj = "field_70259_a" +/** + * Used to create the rotation animation when rendering the crystal. + * + * Parent Class: EntityEnderCrystal + */ +f.innerRotation = "field_70261_a" +/** + * "Declares which state the lightning bolt is in. Whether it's in the air + * + * Parent Class: EntityLightningBolt + */ +f.lightningState = "field_70262_b" +/** + * Determines the time before the EntityLightningBolt is destroyed. It is a random integer decremented over time. + * + * Parent Class: EntityLightningBolt + */ +f.boltLivingTime = "field_70263_c" +/** + * A random long that is used to change the vertex of the lightning rendered in RenderLightningBolt + * + * Parent Class: EntityLightningBolt + */ +f.boltVertex = "field_70264_a" +/** + * + * + * Parent Class: EntityBoat + */ +f.boatZ = "field_70272_f" +/** + * + * + * Parent Class: EntityBoat + */ +f.boatYaw = "field_70273_g" +/** + * + * + * Parent Class: EntityBoat + */ +f.boatX = "field_70274_d" +/** + * + * + * Parent Class: EntityBoat + */ +f.boatY = "field_70275_e" +/** + * + * + * Parent Class: EntityBoat + */ +f.speedMultiplier = "field_70276_b" +/** + * + * + * Parent Class: EntityBoat + */ +f.boatPosRotationIncrements = "field_70277_c" +/** + * true if no player in boat + * + * Parent Class: EntityBoat + */ +f.isBoatEmpty = "field_70279_a" +/** + * + * + * Parent Class: EntityBoat + */ +f.boatPitch = "field_70281_h" +/** + * The EntityItem's random initial float height. + * + * Parent Class: EntityItem + */ +f.hoverStart = "field_70290_d" +/** + * Set true whenever the inventory changes. Nothing sets it false so you will have to write your own code to check it and reset the value. + * + * Parent Class: InventoryPlayer + */ +f.inventoryChanged = "field_70459_e" +/** + * An array of 4 item stacks containing the currently worn armor pieces. + * + * Parent Class: InventoryPlayer + */ +f.armorInventory = "field_70460_b" +/** + * An array of 36 item stacks indicating the main player inventory (including the visible bar). + * + * Parent Class: InventoryPlayer + */ +f.mainInventory = "field_70462_a" +/** + * the width of the crafting inventory + * + * Parent Class: InventoryCrafting + */ +f.inventoryWidth = "field_70464_b" +/** + * Class containing the callbacks for the events on_GUIClosed and on_CraftMaxtrixChanged. + * + * Parent Class: InventoryCrafting + */ +f.eventHandler = "field_70465_c" +/** + * List of the stacks in the crafting matrix. + * + * Parent Class: InventoryCrafting + */ +f.stackList = "field_70466_a" +/** + * A list of one item containing the result of the crafting formula + * + * Parent Class: InventoryCraftResult + */ +f.stackResult = "field_70467_a" +/** + * + * + * Parent Class: InventoryMerchant + */ +f.currentRecipe = "field_70472_d" +/** + * + * + * Parent Class: InventoryMerchant + */ +f.currentRecipeIndex = "field_70473_e" +/** + * + * + * Parent Class: InventoryMerchant + */ +f.theInventory = "field_70474_b" +f.thePlayer = {} +/** + * + * + * Parent Class: InventoryMerchant + */ +f.thePlayer.InventoryMerchant = "field_70475_c" +/** + * + * + * Parent Class: Minecraft + */ +f.thePlayer.Minecraft = "field_71439_g" +/** + * The player that is using the GUI where this slot resides. + * + * Parent Class: SlotFurnaceOutput + */ +f.thePlayer.SlotFurnaceOutput = "field_75229_a" +/** + * The Player whos trying to buy/sell stuff. + * + * Parent Class: SlotMerchantResult + */ +f.thePlayer.SlotMerchantResult = "field_75232_b" +/** + * The player that is using the GUI where this slot resides. + * + * Parent Class: SlotCrafting + */ +f.thePlayer.SlotCrafting = "field_75238_b" +/** + * + * + * Parent Class: EntityAIBeg + */ +f.thePlayer.EntityAIBeg = "field_75385_b" +/** + * The player that has this container open. + * + * Parent Class: ContainerRepair + */ +f.thePlayer.ContainerRepair = "field_82855_n" +/** + * + * + * Parent Class: ContainerPlayer + */ +f.thePlayer.ContainerPlayer = "field_82862_h" + +f.theMerchant = {} +/** + * + * + * Parent Class: InventoryMerchant + */ +f.theMerchant.InventoryMerchant = "field_70476_a" +/** + * Instance of Merchant. + * + * Parent Class: ContainerMerchant + */ +f.theMerchant.ContainerMerchant = "field_75178_e" +/** + * """Instance"" of the Merchant." + * + * Parent Class: SlotMerchantResult + */ +f.theMerchant.SlotMerchantResult = "field_75234_h" +/** + * + * + * Parent Class: EntityAILookAtTradePlayer + */ +f.theMerchant.EntityAILookAtTradePlayer = "field_75335_b" + +/** + * Inventory object corresponding to double chest upper part + * + * Parent Class: InventoryLargeChest + */ +f.upperChest = "field_70477_b" +/** + * Inventory object corresponding to double chest lower part + * + * Parent Class: InventoryLargeChest + */ +f.lowerChest = "field_70478_c" +/** + * Listeners notified when any item in this inventory is changed. + * + * Parent Class: InventoryBasic + */ +f.changeListeners = "field_70480_d" +/** + * + * + * Parent Class: InventoryBasic + */ +f.slotsCount = "field_70481_b" +/** + * + * + * Parent Class: InventoryBasic + */ +f.inventoryContents = "field_70482_c" +/** + * + * + * Parent Class: InventoryBasic + */ +f.inventoryTitle = "field_70483_a" +/** + * + * + * Parent Class: InventoryEnderChest + */ +f.associatedChest = "field_70488_a" +/** + * + * + * Parent Class: EntityMinecart + */ +f.isInReverse = "field_70499_f" +/** + * Minecart rotational logic matrix + * + * Parent Class: EntityMinecart + */ +f.matrix = "field_70500_g" +/** + * + * + * Parent Class: EntityMinecart + */ +f.minecartY = "field_70509_j" +/** + * appears to be the progress of the turn + * + * Parent Class: EntityMinecart + */ +f.turnProgress = "field_70510_h" +/** + * + * + * Parent Class: EntityMinecart + */ +f.minecartX = "field_70511_i" +/** + * + * + * Parent Class: EntityMinecart + */ +f.minecartYaw = "field_70512_ao" +/** + * + * + * Parent Class: EntityMinecart + */ +f.minecartPitch = "field_70513_ap" +/** + * + * + * Parent Class: EntityMinecart + */ +f.minecartZ = "field_70514_an" +/** + * How long the fuse is + * + * Parent Class: EntityTNTPrimed + */ +f.fuse = "field_70516_a" +/** + * + * + * Parent Class: EntityHanging + */ +f.tickCounter1 = "field_70520_f" +/** + * + * + * Parent Class: EntityPainting + */ +f.art = "field_70522_e" +/** + * The health of this XP orb. + * + * Parent Class: EntityXPOrb + */ +f.xpOrbHealth = "field_70529_d" +/** + * The age of the XP orb in ticks. + * + * Parent Class: EntityXPOrb + */ +f.xpOrbAge = "field_70531_b" +/** + * A constantly increasing value that RenderXPOrb uses to control the colour shifting (Green / yellow) + * + * Parent Class: EntityXPOrb + */ +f.xpColor = "field_70533_a" +/** + * + * + * Parent Class: EntityFX + */ +f.particleScale = "field_70544_f" +/** + * + * + * Parent Class: EntityFX + */ +f.particleGravity = "field_70545_g" +/** + * + * + * Parent Class: EntityFX + */ +f.particleAge = "field_70546_d" +/** + * + * + * Parent Class: EntityFX + */ +f.particleMaxAge = "field_70547_e" +/** + * + * + * Parent Class: EntityFX + */ +f.particleTextureJitterX = "field_70548_b" +/** + * + * + * Parent Class: EntityFX + */ +f.particleTextureJitterY = "field_70549_c" +/** + * The icon field from which the given particle pulls its texture. + * + * Parent Class: EntityFX + */ +f.particleIcon = "field_70550_a" +/** + * "The blue amount of color. Used as a percentage + * + * Parent Class: EntityFX + */ +f.particleBlue = "field_70551_j" +/** + * "The red amount of color. Used as a percentage + * + * Parent Class: EntityFX + */ +f.particleRed = "field_70552_h" +/** + * "The green amount of color. Used as a percentage + * + * Parent Class: EntityFX + */ +f.particleGreen = "field_70553_i" +/** + * + * + * Parent Class: EntityFX + */ +f.interpPosY = "field_70554_ao" +/** + * + * + * Parent Class: EntityFX + */ +f.interpPosZ = "field_70555_ap" +/** + * + * + * Parent Class: EntityFX + */ +f.interpPosX = "field_70556_an" +/** + * the scale of the flame FX + * + * Parent Class: EntityFlameFX + */ +f.flameScale = "field_70562_a" +/** + * the material type for dropped items/blocks + * + * Parent Class: EntityDropParticleFX + */ +f.materialType = "field_70563_a" +/** + * The height of the current bob + * + * Parent Class: EntityDropParticleFX + */ +f.bobTimer = "field_70564_aq" +/** + * + * + * Parent Class: EntityEnchantmentTableParticleFX + */ +f.coordZ = "field_70566_as" +/** + * + * + * Parent Class: EntityEnchantmentTableParticleFX + */ +f.coordY = "field_70567_ar" +/** + * + * + * Parent Class: EntityEnchantmentTableParticleFX + */ +f.coordX = "field_70568_aq" +/** + * + * + * Parent Class: EntityReddustFX + */ +f.reddustParticleScale = "field_70570_a" +/** + * + * + * Parent Class: EntityPortalFX + */ +f.portalParticleScale = "field_70571_a" +/** + * + * + * Parent Class: EntityPortalFX + */ +f.portalPosZ = "field_70572_as" +/** + * + * + * Parent Class: EntityPortalFX + */ +f.portalPosY = "field_70573_ar" +/** + * + * + * Parent Class: EntityPortalFX + */ +f.portalPosX = "field_70574_aq" +/** + * + * + * Parent Class: EntityHeartFX + */ +f.particleScaleOverTime = "field_70575_a" +/** + * + * + * Parent Class: EntityFootStepFX + */ +f.footstepAge = "field_70576_a" +/** + * + * + * Parent Class: EntityFootStepFX + */ +f.currentFootSteps = "field_70577_ar" +/** + * + * + * Parent Class: EntityFootStepFX + */ +f.footstepMaxAge = "field_70578_aq" +/** + * + * + * Parent Class: EntityHugeExplodeFX + */ +f.timeSinceStart = "field_70579_a" +/** + * the maximum time for the explosion + * + * Parent Class: EntityHugeExplodeFX + */ +f.maximumTime = "field_70580_aq" +/** + * The Rendering Engine. + * + * Parent Class: EntityLargeExplodeFX + */ +f.theRenderEngine = "field_70583_ar" +/** + * + * + * Parent Class: EntityNoteFX + */ +f.noteParticleScale = "field_70585_a" +/** + * + * + * Parent Class: EntityLavaFX + */ +f.lavaParticleScale = "field_70586_a" +/** + * + * + * Parent Class: EntitySmokeFX + */ +f.smokeParticleScale = "field_70587_a" +/** + * + * + * Parent Class: EntitySnowShovelFX + */ +f.snowDigParticleScale = "field_70588_a" +/** + * Base spell texture index + * + * Parent Class: EntitySpellParticleFX + */ +f.baseSpellTextureIndex = "field_70590_a" +/** + * + * + * Parent Class: EntityPickupFX + */ +f.maxAge = "field_70593_as" +f.attackTarget = {} +/** + * The active target the Task system uses for tracking + * + * Parent Class: EntityLiving + */ +f.attackTarget.EntityLiving = "field_70696_bz" +/** + * + * + * Parent Class: EntityAIArrowAttack + */ +f.attackTarget.EntityAIArrowAttack = "field_75323_c" + +/** + * + * + * Parent Class: EntityLiving + */ +f.navigator = "field_70699_by" +f.moveForward = {} +/** + * + * + * Parent Class: EntityLivingBase + */ +f.moveForward.EntityLivingBase = "field_70701_bs" +/** + * The speed at which the player is moving forward. Negative numbers will move backwards. + * + * Parent Class: MovementInput + */ +f.moveForward.MovementInput = "field_78900_b" + +/** + * + * + * Parent Class: EntityLivingBase + */ +f.moveStrafing = "field_70702_br" +f.isJumping = {} +/** + * used to check whether entity is jumping. + * + * Parent Class: EntityLivingBase + */ +f.isJumping.EntityLivingBase = "field_70703_bu" +/** + * + * + * Parent Class: EntityJumpHelper + */ +f.isJumping.EntityJumpHelper = "field_75662_b" + +/** + * + * + * Parent Class: EntityLivingBase + */ +f.randomYawVelocity = "field_70704_bt" +/** + * The new yaw rotation to be applied to the entity. + * + * Parent Class: EntityLivingBase + */ +f.newRotationPitch = "field_70705_bn" +/** + * The age of this EntityLiving (used to determine when it dies) + * + * Parent Class: EntityLivingBase + */ +f.entityAge = "field_70708_bq" +/** + * The new X position to be applied to the entity. + * + * Parent Class: EntityLivingBase + */ +f.newPosX = "field_70709_bj" +/** + * The new Y position to be applied to the entity. + * + * Parent Class: EntityLivingBase + */ +f.newPosY = "field_70710_bk" +/** + * The new yaw rotation to be applied to the entity. + * + * Parent Class: EntityLivingBase + */ +f.newRotationYaw = "field_70712_bm" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.activePotionsMap = "field_70713_bf" +/** + * "Passive tasks (wandering + * + * Parent Class: EntityLiving + */ +f.tasks = "field_70714_bg" +/** + * "Fighting tasks (used by monsters + * + * Parent Class: EntityLiving + */ +f.targetTasks = "field_70715_bh" +/** + * The number of updates over which the new position and rotation are to be applied to the entity. + * + * Parent Class: EntityLivingBase + */ +f.newPosRotationIncrements = "field_70716_bi" +/** + * The most recent player that has attacked this entity + * + * Parent Class: EntityLivingBase + */ +f.attackingPlayer = "field_70717_bb" +/** + * "Set to 60 when hit by the player or the player's wolf + * + * Parent Class: EntityLivingBase + */ +f.recentlyHit = "field_70718_bc" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.arrowHitTimer = "field_70720_be" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.limbSwingAmount = "field_70721_aZ" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.prevLimbSwingAmount = "field_70722_aY" +/** + * + * + * Parent Class: EntityLiving + */ +f.senses = "field_70723_bA" +/** + * "The amount of time remaining this entity should act 'dead' + * + * Parent Class: EntityLivingBase + */ +f.deathTime = "field_70725_aQ" +f.cameraPitch = {} +/** + * + * + * Parent Class: EntityLivingBase + */ +f.cameraPitch.EntityLivingBase = "field_70726_aT" +/** + * + * + * Parent Class: EntityRenderer + */ +f.cameraPitch.EntityRenderer = "field_78509_X" + +/** + * + * + * Parent Class: EntityLivingBase + */ +f.prevCameraPitch = "field_70727_aS" +/** + * The experience points the Entity gives. + * + * Parent Class: EntityLiving + */ +f.experienceValue = "field_70728_aV" +/** + * "This gets set on entity death + * + * Parent Class: EntityLivingBase + */ +f.dead = "field_70729_aU" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.prevSwingProgress = "field_70732_aI" +f.swingProgress = {} +/** + * + * + * Parent Class: EntityLivingBase + */ +f.swingProgress.EntityLivingBase = "field_70733_aJ" +/** + * + * + * Parent Class: ModelBase + */ +f.swingProgress.ModelBase = "field_78095_p" + +/** + * The amount of time remaining this entity should act 'hurt'. (Visual appearance of red tint) + * + * Parent Class: EntityLivingBase + */ +f.hurtTime = "field_70737_aN" +/** + * What the hurt time was max set to last. + * + * Parent Class: EntityLivingBase + */ +f.maxHurtTime = "field_70738_aO" +/** + * The yaw at which this entity was last attacked from. + * + * Parent Class: EntityLivingBase + */ +f.attackedAtYaw = "field_70739_aP" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.unused180 = "field_70741_aB" +/** + * "The score value of the Mob + * + * Parent Class: EntityLivingBase + */ +f.scoreValue = "field_70744_aE" +/** + * "A factor used to determine how far this entity will move each tick if it is walking on land. Adjusted by speed + * + * Parent Class: EntityLivingBase + */ +f.landMovementFactor = "field_70746_aG" +/** + * A factor used to determine how far this entity will move each tick if it is jumping or falling. + * + * Parent Class: EntityLivingBase + */ +f.jumpMovementFactor = "field_70747_aH" +/** + * + * + * Parent Class: EntityLiving + */ +f.lookHelper = "field_70749_g" +/** + * Whether the DataWatcher needs to be updated with the active potions + * + * Parent Class: EntityLivingBase + */ +f.potionsNeedUpdate = "field_70752_e" +/** + * Only relevant when limbYaw is not 0(the entity is moving). Influences where in its swing legs and arms currently are. + * + * Parent Class: EntityLivingBase + */ +f.limbSwing = "field_70754_ba" +/** + * "is only being set + * + * Parent Class: EntityLivingBase + */ +f.entityLivingToAttack = "field_70755_b" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.revengeTimer = "field_70756_c" +/** + * Number of ticks since this EntityLiving last produced its sound + * + * Parent Class: EntityLiving + */ +f.livingSoundTime = "field_70757_a" +/** + * Entity head rotation yaw at previous tick + * + * Parent Class: EntityLivingBase + */ +f.prevRotationYawHead = "field_70758_at" +/** + * Entity head rotation yaw + * + * Parent Class: EntityLivingBase + */ +f.rotationYawHead = "field_70759_as" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.prevRenderYawOffset = "field_70760_ar" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.renderYawOffset = "field_70761_aq" +/** + * + * + * Parent Class: EntityLiving + */ +f.bodyHelper = "field_70762_j" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.prevMovedDistance = "field_70763_ax" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.movedDistance = "field_70764_aw" +/** + * + * + * Parent Class: EntityLiving + */ +f.moveHelper = "field_70765_h" +/** + * Entity jumping helper + * + * Parent Class: EntityLiving + */ +f.jumpHelper = "field_70767_i" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.prevOnGroundSpeedFactor = "field_70768_au" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.randomUnused2 = "field_70769_ao" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.randomUnused1 = "field_70770_ap" +/** + * + * + * Parent Class: EntityLivingBase + */ +f.maxHurtResistantTime = "field_70771_an" +/** + * If -1 there is no maximum distance + * + * Parent Class: EntityCreature + */ +f.maximumHomeDistance = "field_70772_bD" +/** + * Number of ticks since last jump + * + * Parent Class: EntityLivingBase + */ +f.jumpTicks = "field_70773_bE" +/** + * + * + * Parent Class: EntityCreature + */ +f.homePosition = "field_70775_bC" +/** + * + * + * Parent Class: EntitySlime + */ +f.squishFactor = "field_70811_b" +/** + * + * + * Parent Class: EntitySlime + */ +f.prevSquishFactor = "field_70812_c" +/** + * + * + * Parent Class: EntitySlime + */ +f.squishAmount = "field_70813_a" +/** + * + * + * Parent Class: EntityEnderman + */ +f.carriableBlocks = "field_70827_d" +/** + * The amount of time since the creeper was close enough to the player to ignite + * + * Parent Class: EntityCreeper + */ +f.timeSinceIgnited = "field_70833_d" +/** + * "Time when this creeper was last in an active state (Messed up code here + * + * Parent Class: EntityCreeper + */ +f.lastActiveTime = "field_70834_e" +/** + * Above zero if this PigZombie is Angry. + * + * Parent Class: EntityPigZombie + */ +f.angerLevel = "field_70837_d" +/** + * A random delay until this PigZombie next makes a sound. + * + * Parent Class: EntityPigZombie + */ +f.randomSoundDelay = "field_70838_e" +/** + * Random offset used in floating behaviour + * + * Parent Class: EntityBlaze + */ +f.heightOffset = "field_70847_d" +/** + * ticks until heightOffset is randomized + * + * Parent Class: EntityBlaze + */ +f.heightOffsetUpdateTime = "field_70848_e" +/** + * + * + * Parent Class: EntityIronGolem + */ +f.holdRoseTick = "field_70856_g" +f.villageObj = {} +/** + * + * + * Parent Class: EntityIronGolem + */ +f.villageObj.EntityIronGolem = "field_70857_d" +/** + * + * + * Parent Class: EntityVillager + */ +f.villageObj.EntityVillager = "field_70954_d" +/** + * + * + * Parent Class: EntityAIVillagerMate + */ +f.villageObj.EntityAIVillagerMate = "field_75452_a" + +/** + * "deincrements + * + * Parent Class: EntityIronGolem + */ +f.homeCheckTimer = "field_70858_e" +/** + * + * + * Parent Class: EntitySquid + */ +f.squidYaw = "field_70859_f" +/** + * + * + * Parent Class: EntitySquid + */ +f.prevSquidYaw = "field_70860_g" +/** + * + * + * Parent Class: EntitySquid + */ +f.squidPitch = "field_70861_d" +/** + * + * + * Parent Class: EntitySquid + */ +f.prevSquidPitch = "field_70862_e" +/** + * + * + * Parent Class: EntitySquid + */ +f.randomMotionSpeed = "field_70863_bz" +/** + * change in squidRotation in radians. + * + * Parent Class: EntitySquid + */ +f.rotationVelocity = "field_70864_bA" +/** + * the last calculated angle of the tentacles in radians + * + * Parent Class: EntitySquid + */ +f.lastTentacleAngle = "field_70865_by" +/** + * angle of the tentacles in radians + * + * Parent Class: EntitySquid + */ +f.tentacleAngle = "field_70866_j" +/** + * "appears to be rotation in radians; we already have pitch & yaw + * + * Parent Class: EntitySquid + */ +f.squidRotation = "field_70867_h" +/** + * previous squidRotation in radians + * + * Parent Class: EntitySquid + */ +f.prevSquidRotation = "field_70868_i" +/** + * + * + * Parent Class: EntitySquid + */ +f.randomMotionVecY = "field_70869_bD" +/** + * + * + * Parent Class: EntitySquid + */ +f.randomMotionVecZ = "field_70870_bE" +/** + * + * + * Parent Class: EntitySquid + */ +f.randomMotionVecX = "field_70872_bC" +/** + * + * + * Parent Class: EntityAnimal + */ +f.inLove = "field_70881_d" +/** + * + * + * Parent Class: EntityChicken + */ +f.destPos = "field_70883_f" +/** + * + * + * Parent Class: EntityChicken + */ +f.wingRotation = "field_70886_e" +/** + * The time until the next egg is spawned. + * + * Parent Class: EntityChicken + */ +f.timeUntilNextEgg = "field_70887_j" +/** + * + * + * Parent Class: EntityChicken + */ +f.wingRotDelta = "field_70889_i" +/** + * Used to control movement as well as wool regrowth. Set to 40 on handleHealthUpdate and counts down with each tick. + * + * Parent Class: EntitySheep + */ +f.sheepTimer = "field_70899_e" +/** + * + * + * Parent Class: EntityTameable + */ +f.aiSit = "field_70911_d" +/** + * "The tempt AI task for this mob + * + * Parent Class: EntityOcelot + */ +f.aiTempt = "field_70914_e" +/** + * + * + * Parent Class: EntityWolf + */ +f.headRotationCourseOld = "field_70924_f" +/** + * true is the wolf is wet else false + * + * Parent Class: EntityWolf + */ +f.isWet = "field_70925_g" +/** + * Float used to smooth the rotation of the wolf head + * + * Parent Class: EntityWolf + */ +f.headRotationCourse = "field_70926_e" +/** + * + * + * Parent Class: EntityWolf + */ +f.prevTimeWolfIsShaking = "field_70927_j" +/** + * True if the wolf is shaking else False + * + * Parent Class: EntityWolf + */ +f.isShaking = "field_70928_h" +/** + * This time increases while wolf is shaking and emitting water particles. + * + * Parent Class: EntityWolf + */ +f.timeWolfIsShaking = "field_70929_i" +/** + * This merchant's current player customer. + * + * Parent Class: NpcMerchant + */ +f.customer = "field_70935_b" +/** + * The MerchantRecipeList instance. + * + * Parent Class: NpcMerchant + */ +f.recipeList = "field_70936_c" +f.theMerchantInventory = {} +/** + * Instance of Merchants Inventory. + * + * Parent Class: NpcMerchant + */ +f.theMerchantInventory.NpcMerchant = "field_70937_a" +/** + * Merchant's inventory. + * + * Parent Class: SlotMerchantResult + */ +f.theMerchantInventory.SlotMerchantResult = "field_75233_a" + +/** + * + * + * Parent Class: EntityVillager + */ +f.isMating = "field_70952_f" +/** + * + * + * Parent Class: EntityVillager + */ +f.isPlaying = "field_70953_g" +/** + * + * + * Parent Class: EntityVillager + */ +f.randomTickDivider = "field_70955_e" +/** + * + * + * Parent Class: EntityVillager + */ +f.wealth = "field_70956_bz" +/** + * addDefaultEquipmentAndRecipies is called if this is true + * + * Parent Class: EntityVillager + */ +f.needsInitilization = "field_70959_by" +/** + * + * + * Parent Class: EntityVillager + */ +f.timeUntilReset = "field_70961_j" +/** + * This villager's current customer. + * + * Parent Class: EntityVillager + */ +f.buyingPlayer = "field_70962_h" +/** + * Initialises the MerchantRecipeList.java + * + * Parent Class: EntityVillager + */ +f.buyingList = "field_70963_i" +/** + * Index into the ring buffer. Incremented once per tick and restarts at 0 once it reaches the end of the buffer. + * + * Parent Class: EntityDragon + */ +f.ringBufferIndex = "field_70976_f" +/** + * An array containing all body parts of this dragon + * + * Parent Class: EntityDragon + */ +f.dragonPartArray = "field_70977_g" +/** + * Ring buffer array for the last 64 Y-positions and yaw rotations. Used to calculate offsets for the animations. + * + * Parent Class: EntityDragon + */ +f.ringBuffer = "field_70979_e" +/** + * + * + * Parent Class: EntityDragon + */ +f.dragonPartTail3 = "field_70982_bz" +/** + * + * + * Parent Class: EntityDragon + */ +f.dragonPartWing1 = "field_70983_bA" +/** + * + * + * Parent Class: EntityDragon + */ +f.dragonPartTail2 = "field_70984_by" +/** + * + * + * Parent Class: EntityDragon + */ +f.dragonPartTail1 = "field_70985_j" +/** + * The head bounding box of a dragon + * + * Parent Class: EntityDragon + */ +f.dragonPartHead = "field_70986_h" +/** + * The body bounding box of a dragon + * + * Parent Class: EntityDragon + */ +f.dragonPartBody = "field_70987_i" +/** + * "Animation time + * + * Parent Class: EntityDragon + */ +f.animTime = "field_70988_bD" +/** + * Force selecting a new flight target at next tick if set to true. + * + * Parent Class: EntityDragon + */ +f.forceNewTarget = "field_70989_bE" +/** + * + * + * Parent Class: EntityDragon + */ +f.dragonPartWing2 = "field_70990_bB" +/** + * Animation time at previous tick. + * + * Parent Class: EntityDragon + */ +f.prevAnimTime = "field_70991_bC" +/** + * The current endercrystal that is healing this dragon + * + * Parent Class: EntityDragon + */ +f.healingEnderCrystal = "field_70992_bH" +/** + * "Activated if the dragon is flying though obsidian + * + * Parent Class: EntityDragon + */ +f.slowed = "field_70994_bF" +/** + * + * + * Parent Class: EntityDragon + */ +f.deathTicks = "field_70995_bG" +/** + * The total amount of experience the player has. This also includes the amount of experience within their Experience Bar. + * + * Parent Class: EntityPlayer + */ +f.experienceTotal = "field_71067_cb" +/** + * The current experience level the player is on. + * + * Parent Class: EntityPlayer + */ +f.experienceLevel = "field_71068_ca" +/** + * The Container for the player's inventory (which opens when they press E) + * + * Parent Class: EntityPlayer + */ +f.inventoryContainer = "field_71069_bz" +/** + * The Container the player has open. + * + * Parent Class: EntityPlayer + */ +f.openContainer = "field_71070_bA" +/** + * This field starts off equal to getMaxItemUseDuration and is decremented on each tick + * + * Parent Class: EntityPlayer + */ +f.itemInUseCount = "field_71072_f" +/** + * Holds the coordinate of the player when enter a minecraft to ride. + * + * Parent Class: EntityPlayer + */ +f.startMinecartRidingCoordinate = "field_71073_d" +/** + * "This is the item that is in use when the player is holding down the useItemButton (e.g. + * + * Parent Class: EntityPlayer + */ +f.itemInUse = "field_71074_e" +/** + * The player's capabilities. (See class PlayerCapabilities) + * + * Parent Class: EntityPlayer + */ +f.capabilities = "field_71075_bZ" +/** + * + * + * Parent Class: EntityPlayer + */ +f.sleepTimer = "field_71076_b" +/** + * holds the spawn chunk of the player + * + * Parent Class: EntityPlayer + */ +f.spawnChunk = "field_71077_c" +/** + * + * + * Parent Class: EntityPlayer + */ +f.theInventoryEnderChest = "field_71078_a" +/** + * + * + * Parent Class: EntityPlayer + */ +f.renderOffsetX = "field_71079_bU" +/** + * The amount of time an entity has been in a Portal the previous tick + * + * Parent Class: EntityPlayerSP + */ +f.prevTimeInPortal = "field_71080_cy" +/** + * the current location of the player + * + * Parent Class: EntityPlayer + */ +f.playerLocation = "field_71081_bT" +/** + * + * + * Parent Class: EntityPlayer + */ +f.renderOffsetY = "field_71082_cx" +/** + * Boolean value indicating weather a player is sleeping or not + * + * Parent Class: EntityPlayer + */ +f.sleeping = "field_71083_bS" +/** + * + * + * Parent Class: EntityPlayer + */ +f.chasingPosZ = "field_71085_bR" +/** + * The amount of time an entity has been in a Portal + * + * Parent Class: EntityPlayerSP + */ +f.timeInPortal = "field_71086_bY" +/** + * Whether the entity is inside a Portal + * + * Parent Class: Entity + */ +f.inPortal = "field_71087_bX" +/** + * + * + * Parent Class: Entity + */ +f.timeUntilPortal = "field_71088_bW" +/** + * + * + * Parent Class: EntityPlayer + */ +f.renderOffsetZ = "field_71089_bV" +/** + * Used by EntityPlayer to prevent too many xp orbs from getting absorbed at once. + * + * Parent Class: EntityPlayer + */ +f.xpCooldown = "field_71090_bL" +/** + * + * + * Parent Class: EntityPlayer + */ +f.prevChasingPosX = "field_71091_bM" +/** + * + * + * Parent Class: EntityPlayer + */ +f.chasingPosX = "field_71094_bP" +/** + * + * + * Parent Class: EntityPlayer + */ +f.chasingPosY = "field_71095_bQ" +/** + * + * + * Parent Class: EntityPlayer + */ +f.prevChasingPosY = "field_71096_bN" +/** + * + * + * Parent Class: EntityPlayer + */ +f.prevChasingPosZ = "field_71097_bO" +/** + * "The food object of the player + * + * Parent Class: EntityPlayer + */ +f.foodStats = "field_71100_bB" +/** + * "Used to tell if the player pressed jump twice. If this is at 0 and it's pressed (And they are allowed to fly + * + * Parent Class: EntityPlayer + */ +f.flyToggleTimer = "field_71101_bC" +/** + * + * + * Parent Class: EntityPlayer + */ +f.speedInAir = "field_71102_ce" +/** + * "An instance of a fishing rod's hook. If this isn't null + * + * Parent Class: EntityPlayer + */ +f.fishEntity = "field_71104_cf" +/** + * The current amount of experience the player has within their Experience Bar. + * + * Parent Class: EntityPlayer + */ +f.experience = "field_71106_cc" +/** + * + * + * Parent Class: EntityPlayer + */ +f.prevCameraYaw = "field_71107_bF" +/** + * + * + * Parent Class: EntityPlayer + */ +f.speedOnGround = "field_71108_cd" +f.cameraYaw = {} +/** + * + * + * Parent Class: EntityPlayer + */ +f.cameraYaw.EntityPlayer = "field_71109_bG" +/** + * + * + * Parent Class: EntityRenderer + */ +f.cameraYaw.EntityRenderer = "field_78502_W" + +f.loadedChunks = {} +/** + * LinkedList that holds the loaded chunks. + * + * Parent Class: EntityPlayerMP + */ +f.loadedChunks.EntityPlayerMP = "field_71129_f" +/** + * + * + * Parent Class: ChunkProviderServer + */ +f.loadedChunks.ChunkProviderServer = "field_73245_g" + +/** + * entities added to this list will be packet29'd to the player + * + * Parent Class: EntityPlayerMP + */ +f.destroyedItemsNetCache = "field_71130_g" +/** + * player X position as seen by PlayerManager + * + * Parent Class: EntityPlayerMP + */ +f.managedPosX = "field_71131_d" +/** + * player Z position as seen by PlayerManager + * + * Parent Class: EntityPlayerMP + */ +f.managedPosZ = "field_71132_e" +/** + * The ItemInWorldManager belonging to this player + * + * Parent Class: EntityPlayerMP + */ +f.theItemInWorldManager = "field_71134_c" +/** + * The NetServerHandler assigned to this player by the ServerConfigurationManager. + * + * Parent Class: EntityPlayerMP + */ +f.playerNetServerHandler = "field_71135_a" +/** + * "Set when a player beats the ender dragon + * + * Parent Class: EntityPlayerMP + */ +f.playerConqueredTheEnd = "field_71136_j" +/** + * set to true when player is moving quantity of items from one inventory to another(crafting) but item in either slot is not changed + * + * Parent Class: EntityPlayerMP + */ +f.isChangingQuantityOnly = "field_71137_h" +/** + * The currently in use window ID. Incremented every time a window is opened. + * + * Parent Class: EntityPlayerMP + */ +f.currentWindowId = "field_71139_cq" +f.chatColours = {} +/** + * + * + * Parent Class: EntityPlayerMP + */ +f.chatColours.EntityPlayerMP = "field_71140_co" +/** + * + * + * Parent Class: GameSettings + */ +f.chatColours.GameSettings = "field_74344_o" + +/** + * Amount of experience the client was last set to + * + * Parent Class: EntityPlayerMP + */ +f.lastExperience = "field_71144_ck" +/** + * set to foodStats.GetFoodLevel + * + * Parent Class: EntityPlayerMP + */ +f.lastFoodLevel = "field_71146_ci" +/** + * set to foodStats.getSaturationLevel() == 0.0F each tick + * + * Parent Class: EntityPlayerMP + */ +f.wasHungry = "field_71147_cj" +/** + * + * + * Parent Class: EntityPlayerMP + */ +f.translator = "field_71148_cg" +/** + * amount of health the client was last set to + * + * Parent Class: EntityPlayerMP + */ +f.lastHealth = "field_71149_ch" +/** + * + * + * Parent Class: EntityPlayerSP + */ +f.renderArmYaw = "field_71154_f" +/** + * + * + * Parent Class: EntityPlayerSP + */ +f.renderArmPitch = "field_71155_g" +/** + * "Used to tell if the player pressed forward twice. If this is at 0 and it's pressed (And they are allowed to sprint + * + * Parent Class: EntityPlayerSP + */ +f.sprintToggleTimer = "field_71156_d" +/** + * Ticks left before sprinting is disabled. + * + * Parent Class: EntityPlayerSP + */ +f.sprintingTicksLeft = "field_71157_e" +/** + * + * + * Parent Class: EntityPlayerSP + */ +f.movementInput = "field_71158_b" +/** + * + * + * Parent Class: EntityPlayerSP + */ +f.prevRenderArmYaw = "field_71163_h" +/** + * + * + * Parent Class: EntityPlayerSP + */ +f.prevRenderArmPitch = "field_71164_i" +f.sendQueue = {} +/** + * + * + * Parent Class: EntityPlayerSP + */ +f.sendQueue.EntityPlayerSP = "field_71174_a" +/** + * The packets that need to be sent to the server. + * + * Parent Class: WorldClient + */ +f.sendQueue.WorldClient = "field_73035_a" + +/** + * + * + * Parent Class: EntityOtherPlayerMP + */ +f.otherPlayerMPYaw = "field_71180_f" +/** + * + * + * Parent Class: EntityOtherPlayerMP + */ +f.otherPlayerMPPitch = "field_71181_g" +/** + * + * + * Parent Class: EntityOtherPlayerMP + */ +f.otherPlayerMPY = "field_71182_d" +/** + * + * + * Parent Class: EntityOtherPlayerMP + */ +f.otherPlayerMPZ = "field_71183_e" +/** + * + * + * Parent Class: EntityOtherPlayerMP + */ +f.otherPlayerMPPosRotationIncrements = "field_71184_b" +/** + * + * + * Parent Class: EntityOtherPlayerMP + */ +f.otherPlayerMPX = "field_71185_c" +/** + * + * + * Parent Class: EntityOtherPlayerMP + */ +f.isItemInUse = "field_71186_a" +/** + * Maximum build height. + * + * Parent Class: MinecraftServer + */ +f.buildLimit = "field_71280_D" +/** + * Indicates whether PvP is active on the server or not. + * + * Parent Class: MinecraftServer + */ +f.pvpEnabled = "field_71284_A" +/** + * Determines if flight is allowed or not. + * + * Parent Class: MinecraftServer + */ +f.allowFlight = "field_71285_B" +/** + * + * + * Parent Class: MinecraftServer + */ +f.enableBonusChest = "field_71289_N" +/** + * "If true + * + * Parent Class: MinecraftServer + */ +f.worldIsBeingDeleted = "field_71290_O" +/** + * + * + * Parent Class: MinecraftServer + */ +f.serverKeyPair = "field_71292_I" +/** + * Username of the server owner (for integrated servers) + * + * Parent Class: MinecraftServer + */ +f.serverOwner = "field_71293_J" +/** + * + * + * Parent Class: MinecraftServer + */ +f.folderName = "field_71294_K" +/** + * + * + * Parent Class: MinecraftServer + */ +f.startProfiling = "field_71295_T" +/** + * + * + * Parent Class: MinecraftServer + */ +f.serverIsRunning = "field_71296_Q" +/** + * + * + * Parent Class: MinecraftServer + */ +f.userMessage = "field_71298_S" +/** + * "Set when warned for ""Can't keep up"" + * + * Parent Class: MinecraftServer + */ +f.timeOfLastWarning = "field_71299_R" +/** + * The task the server is currently working on(and will output on outputPercentRemaining). + * + * Parent Class: MinecraftServer + */ +f.currentTask = "field_71302_d" +/** + * The percentage of the current task finished so far. + * + * Parent Class: MinecraftServer + */ +f.percentDone = "field_71303_e" +f.theProfiler = {} +/** + * + * + * Parent Class: MinecraftServer + */ +f.theProfiler.MinecraftServer = "field_71304_b" +/** + * + * + * Parent Class: World + */ +f.theProfiler.World = "field_72984_F" +/** + * Instance of Profiler. + * + * Parent Class: EntityAITasks + */ +f.theProfiler.EntityAITasks = "field_75781_c" + +/** + * The server world instances. + * + * Parent Class: MinecraftServer + */ +f.worldServers = "field_71305_c" +f.usageSnooper = {} +/** + * The PlayerUsageSnooper instance. + * + * Parent Class: MinecraftServer + */ +f.usageSnooper.MinecraftServer = "field_71307_n" +/** + * Instance of PlayerUsageSnooper. + * + * Parent Class: Minecraft + */ +f.usageSnooper.Minecraft = "field_71427_U" + +/** + * + * + * Parent Class: MinecraftServer + */ +f.anvilFile = "field_71308_o" +/** + * + * + * Parent Class: MinecraftServer + */ +f.anvilConverterForAnvilFile = "field_71310_m" +/** + * + * + * Parent Class: MinecraftServer + */ +f.tickTimeArray = "field_71311_j" +/** + * Stats are [dimension][tick%100] system.nanoTime is stored. + * + * Parent Class: MinecraftServer + */ +f.timeOfLastDimensionTick = "field_71312_k" +/** + * Indicates to other classes that the server is safely stopped. + * + * Parent Class: MinecraftServer + */ +f.serverStopped = "field_71316_v" +/** + * Indicates whether the server is running or not. Set to false to initiate a shutdown. + * + * Parent Class: MinecraftServer + */ +f.serverRunning = "field_71317_u" +/** + * The ServerConfigurationManager instance. + * + * Parent Class: MinecraftServer + */ +f.serverConfigManager = "field_71318_t" +f.hostname = {} +/** + * The server's hostname. + * + * Parent Class: MinecraftServer + */ +f.hostname.MinecraftServer = "field_71320_r" +/** + * Hostname RCon is running on + * + * Parent Class: RConThreadMain + */ +f.hostname.RConThreadMain = "field_72652_i" + +/** + * + * + * Parent Class: MinecraftServer + */ +f.commandManager = "field_71321_q" +/** + * List of names of players who are online. + * + * Parent Class: MinecraftServer + */ +f.playersOnline = "field_71322_p" +/** + * + * + * Parent Class: MinecraftServer + */ +f.canSpawnNPCs = "field_71323_z" +/** + * True if the server has animals turned on. + * + * Parent Class: MinecraftServer + */ +f.canSpawnAnimals = "field_71324_y" +/** + * True if the server is in online mode. + * + * Parent Class: MinecraftServer + */ +f.onlineMode = "field_71325_x" +/** + * + * + * Parent Class: DedicatedServer + */ +f.guiIsEnabled = "field_71335_s" +/** + * + * + * Parent Class: DedicatedServer + */ +f.canSpawnStructures = "field_71338_p" +/** + * + * + * Parent Class: DedicatedServer + */ +f.theRConThreadMain = "field_71339_n" +/** + * + * + * Parent Class: DedicatedServer + */ +f.pendingCommandList = "field_71341_l" +/** + * + * + * Parent Class: DedicatedServer + */ +f.theRConThreadQuery = "field_71342_m" +/** + * + * + * Parent Class: IntegratedServer + */ +f.lanServerPing = "field_71345_q" +/** + * + * + * Parent Class: IntegratedServer + */ +f.isPublic = "field_71346_p" +f.isGamePaused = {} +/** + * + * + * Parent Class: IntegratedServer + */ +f.isGamePaused.IntegratedServer = "field_71348_o" +/** + * + * + * Parent Class: Minecraft + */ +f.isGamePaused.Minecraft = "field_71445_n" + +/** + * + * + * Parent Class: IntegratedServer + */ +f.theWorldSettings = "field_71350_m" +/** + * Does the actual gameplay have focus. If so then mouse and keys will effect the player instead of menus. + * + * Parent Class: Minecraft + */ +f.inGameHasFocus = "field_71415_G" +/** + * Mouse helper instance. + * + * Parent Class: Minecraft + */ +f.mouseHelper = "field_71417_B" +/** + * Approximate time (in ms) of last update to debug string + * + * Parent Class: Minecraft + */ +f.debugUpdateTime = "field_71419_L" +/** + * holds the current fps + * + * Parent Class: Minecraft + */ +f.fpsCounter = "field_71420_M" +f.prevFrameTime = {} +/** + * + * + * Parent Class: Minecraft + */ +f.prevFrameTime.Minecraft = "field_71421_N" +/** + * Previous frame time in milliseconds + * + * Parent Class: EntityRenderer + */ +f.prevFrameTime.EntityRenderer = "field_78508_Y" + +/** + * + * + * Parent Class: Minecraft + */ +f.currentServerData = "field_71422_O" +/** + * The profiler instance + * + * Parent Class: Minecraft + */ +f.mcProfiler = "field_71424_I" +f.running = {} +/** + * Set to true to keep the game loop running. Set to false by shutdown() to allow the game loop to exit cleanly. + * + * Parent Class: Minecraft + */ +f.running.Minecraft = "field_71425_J" +/** + * "True if the Thread is running + * + * Parent Class: RConThreadBase + */ +f.running.RConThreadBase = "field_72619_a" + +/** + * String that shows the debug information + * + * Parent Class: Minecraft + */ +f.debug = "field_71426_K" +/** + * + * + * Parent Class: Minecraft + */ +f.timer = "field_71428_T" +/** + * Mouse left click counter + * + * Parent Class: Minecraft + */ +f.leftClickCounter = "field_71429_W" +/** + * Set to 'this' in Minecraft constructor; used by some settings get methods + * + * Parent Class: Minecraft + */ +f.theMinecraft = "field_71432_P" +/** + * Instance of CrashReport. + * + * Parent Class: Minecraft + */ +f.crashReporter = "field_71433_S" +/** + * + * + * Parent Class: Minecraft + */ +f.hasCrashed = "field_71434_R" +/** + * Display height + * + * Parent Class: Minecraft + */ +f.tempDisplayHeight = "field_71435_Y" +/** + * Display width + * + * Parent Class: Minecraft + */ +f.tempDisplayWidth = "field_71436_X" +/** + * Instance of IntegratedServer. + * + * Parent Class: Minecraft + */ +f.theIntegratedServer = "field_71437_Z" +/** + * + * + * Parent Class: Minecraft + */ +f.displayHeight = "field_71440_d" +f.theWorld = {} +/** + * + * + * Parent Class: Minecraft + */ +f.theWorld.Minecraft = "field_71441_e" +/** + * + * + * Parent Class: RenderGlobal + */ +f.theWorld.RenderGlobal = "field_72769_h" +/** + * + * + * Parent Class: EntityTracker + */ +f.theWorld.EntityTracker = "field_72795_a" +/** + * The world object that this object is connected to. + * + * Parent Class: ItemInWorldManager + */ +f.theWorld.ItemInWorldManager = "field_73092_a" +/** + * Instance of World. + * + * Parent Class: ContainerMerchant + */ +f.theWorld.ContainerMerchant = "field_75177_g" +/** + * + * + * Parent Class: EntityAIFollowOwner + */ +f.theWorld.EntityAIFollowOwner = "field_75342_a" +/** + * + * + * Parent Class: EntityAIFleeSun + */ +f.theWorld.EntityAIFleeSun = "field_75367_f" +/** + * + * + * Parent Class: EntityAIMate + */ +f.theWorld.EntityAIMate = "field_75394_a" +/** + * + * + * Parent Class: EntityAIOcelotAttack + */ +f.theWorld.EntityAIOcelotAttack = "field_75411_a" +/** + * + * + * Parent Class: ContainerRepair + */ +f.theWorld.ContainerRepair = "field_82860_h" + +/** + * + * + * Parent Class: Minecraft + */ +f.playerController = "field_71442_b" +/** + * + * + * Parent Class: Minecraft + */ +f.displayWidth = "field_71443_c" +/** + * A 10MiB preallocation to ensure the heap is reasonably sized. + * + * Parent Class: Minecraft + */ +f.memoryReserve = "field_71444_a" +/** + * + * + * Parent Class: Minecraft + */ +f.effectRenderer = "field_71452_i" +/** + * + * + * Parent Class: Minecraft + */ +f.myNetworkManager = "field_71453_ak" +/** + * Skip render world + * + * Parent Class: Minecraft + */ +f.skipRenderWorld = "field_71454_w" +/** + * + * + * Parent Class: Minecraft + */ +f.integratedServerIsRunning = "field_71455_al" +/** + * + * + * Parent Class: Minecraft + */ +f.ingameGUI = "field_71456_v" +/** + * Join player counter + * + * Parent Class: Minecraft + */ +f.joinPlayerCounter = "field_71457_ai" +/** + * Gui achievement + * + * Parent Class: Minecraft + */ +f.guiAchievement = "field_71458_u" +/** + * + * + * Parent Class: Minecraft + */ +f.entityRenderer = "field_71460_t" +/** + * + * + * Parent Class: Minecraft + */ +f.loadingScreen = "field_71461_s" +/** + * The GuiScreen that's being displayed at the moment. + * + * Parent Class: Minecraft + */ +f.currentScreen = "field_71462_r" +/** + * + * + * Parent Class: Minecraft + */ +f.standardGalacticFontRenderer = "field_71464_q" +/** + * Profiler currently displayed in the debug screen pie chart + * + * Parent Class: Minecraft + */ +f.debugProfilerName = "field_71465_an" +/** + * "When you place a block + * + * Parent Class: Minecraft + */ +f.rightClickDelayTimer = "field_71467_ac" +/** + * + * + * Parent Class: Minecraft + */ +f.saveLoader = "field_71469_aa" +/** + * "This is set to fpsCounter every debug screen update + * + * Parent Class: Minecraft + */ +f.debugFPS = "field_71470_ab" +/** + * The ray trace hit that the mouse is over. + * + * Parent Class: Minecraft + */ +f.objectMouseOver = "field_71476_x" +/** + * File of crash report. + * + * Parent Class: CrashReport + */ +f.crashReportFile = "field_71510_d" +/** + * "The Throwable that is the ""cause"" for this crash and Crash Report." + * + * Parent Class: CrashReport + */ +f.cause = "field_71511_b" +/** + * Holds the keys and values of all crash report sections. + * + * Parent Class: CrashReport + */ +f.crashReportSections = "field_71512_c" +/** + * + * + * Parent Class: CommandBase + */ +f.theAdmin = "field_71533_a" +/** + * The set of ICommand objects currently loaded. + * + * Parent Class: CommandHandler + */ +f.commandSet = "field_71561_b" +/** + * Map of Strings to the ICommand objects they represent + * + * Parent Class: CommandHandler + */ +f.commandMap = "field_71562_a" +/** + * Array of the special characters that are allowed in any text drawing of Minecraft. + * + * Parent Class: ChatAllowedCharacters + */ +f.allowedCharactersArray = "field_71567_b" +/** + * Instance of CrashReport. + * + * Parent Class: ReportedException + */ +f.theReportedExceptionCrashReport = "field_71576_a" +/** + * The hit entity + * + * Parent Class: MovingObjectPosition + */ +f.entityHit = "field_72308_g" +/** + * "What type of ray trace hit was this? 0 = block + * + * Parent Class: MovingObjectPosition + */ +f.typeOfHit = "field_72313_a" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +f.bannedPlayers = "field_72401_g" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +f.viewDistance = "field_72402_d" +/** + * A list of player entities that exist on this server. + * + * Parent Class: ServerConfigurationManager + */ +f.playerEntityList = "field_72404_b" +/** + * True if all players are allowed to use commands (cheats). + * + * Parent Class: ServerConfigurationManager + */ +f.commandsAllowedForAll = "field_72407_n" +/** + * "index into playerEntities of player to ping + * + * Parent Class: ServerConfigurationManager + */ +f.playerPingIndex = "field_72408_o" +/** + * Server setting to only allow OPs and whitelisted players to join the server. + * + * Parent Class: ServerConfigurationManager + */ +f.whiteListEnforced = "field_72409_l" +/** + * The Set of all whitelisted players. + * + * Parent Class: ServerConfigurationManager + */ +f.whiteListedPlayers = "field_72411_j" +/** + * Reference to the PlayerNBTManager object. + * + * Parent Class: ServerConfigurationManager + */ +f.playerNBTManagerObj = "field_72412_k" +/** + * + * + * Parent Class: ServerConfigurationManager + */ +f.bannedIPs = "field_72413_h" +/** + * A set containing the OPs. + * + * Parent Class: ServerConfigurationManager + */ +f.ops = "field_72414_i" +/** + * "Holds the NBT data for the host player's save file + * + * Parent Class: IntegratedPlayerList + */ +f.hostPlayerData = "field_72416_e" +/** + * The request ID stored as a String + * + * Parent Class: RConThreadQuery$Auth + */ +f.requestIdAsString = "field_72595_f" +/** + * A client-provided request ID associated with this query. + * + * Parent Class: RConThreadQuery$Auth + */ +f.requestId = "field_72596_d" +/** + * A unique string of bytes used to verify client auth + * + * Parent Class: RConThreadQuery$Auth + */ +f.challengeValue = "field_72597_e" +/** + * The creation timestamp for this auth + * + * Parent Class: RConThreadQuery$Auth + */ +f.timestamp = "field_72598_b" +/** + * A random integer value to be used for client response authentication + * + * Parent Class: RConThreadQuery$Auth + */ +f.randomChallenge = "field_72599_c" +/** + * A list of registered ServerSockets + * + * Parent Class: RConThreadBase + */ +f.serverSocketList = "field_72614_f" +/** + * A list of registered DatagramSockets + * + * Parent Class: RConThreadBase + */ +f.socketList = "field_72616_e" +/** + * Thread for this runnable class + * + * Parent Class: RConThreadBase + */ +f.rconThread = "field_72618_c" +/** + * The time of the last client auth check + * + * Parent Class: RConThreadQuery + */ +f.lastAuthCheckTime = "field_72629_g" +/** + * Storage for incoming DatagramPackets + * + * Parent Class: RConThreadQuery + */ +f.incomingPacket = "field_72631_o" +/** + * The remote socket querying the server + * + * Parent Class: RConThreadQuery + */ +f.querySocket = "field_72633_m" +/** + * The RCon query port + * + * Parent Class: RConThreadQuery + */ +f.queryPort = "field_72636_h" +/** + * The time of the last query response sent + * + * Parent Class: RConThreadQuery + */ +f.lastQueryResponseTime = "field_72638_v" +f.output = {} +/** + * The RConQuery output stream + * + * Parent Class: RConThreadQuery + */ +f.output.RConThreadQuery = "field_72639_u" +/** + * ByteArrayOutputStream wrapper + * + * Parent Class: RConOutputStream + */ +f.output.RConOutputStream = "field_72673_b" + +/** + * A map of SocketAddress objects to RConThreadQueryAuth objects + * + * Parent Class: RConThreadQuery + */ +f.queryClients = "field_72641_s" +/** + * The hostname of the running server + * + * Parent Class: RConThreadQuery + */ +f.serverHostname = "field_72642_r" +/** + * The hostname of this query server + * + * Parent Class: RConThreadQuery + */ +f.queryHostname = "field_72643_q" +/** + * Port RCon is running on + * + * Parent Class: RConThreadMain + */ +f.rconPort = "field_72647_g" +/** + * A map of client addresses to their running Threads + * + * Parent Class: RConThreadMain + */ +f.clientThreads = "field_72648_l" +/** + * The RCon ServerSocket. + * + * Parent Class: RConThreadMain + */ +f.serverSocket = "field_72649_j" +f.rconPassword = {} +/** + * The RCon password + * + * Parent Class: RConThreadMain + */ +f.rconPassword.RConThreadMain = "field_72650_k" +/** + * The RCon password + * + * Parent Class: RConThreadClient + */ +f.rconPassword.RConThreadClient = "field_72658_j" + +/** + * The client's Socket connection + * + * Parent Class: RConThreadClient + */ +f.clientSocket = "field_72659_h" +/** + * Translation array of decimal to hex digits + * + * Parent Class: RConUtils + */ +f.hexDigits = "field_72666_a" +/** + * Output stream + * + * Parent Class: RConOutputStream + */ +f.byteArrayOutput = "field_72674_a" +/** + * "x + * + * Parent Class: PlayerManager + */ +f.xzDirectionsConst = "field_72696_f" +/** + * the playerInstances(chunks) that need to be updated + * + * Parent Class: PlayerManager + */ +f.playerInstancesToUpdate = "field_72697_d" +/** + * Number of chunks the server sends to the client. Valid 3<=x<=15. In server.properties. + * + * Parent Class: PlayerManager + */ +f.playerViewRadius = "field_72698_e" +/** + * the hash of all playerInstances created + * + * Parent Class: PlayerManager + */ +f.playerInstances = "field_72700_c" +f.theWorldServer = {} +/** + * + * + * Parent Class: PlayerManager + */ +f.theWorldServer.PlayerManager = "field_72701_a" +/** + * The WorldServer object. + * + * Parent Class: WorldManager + */ +f.theWorldServer.WorldManager = "field_72782_b" + +/** + * Stores blocks currently being broken. Key is entity ID of the thing doing the breaking. Value is a DestroyBlockProgress + * + * Parent Class: RenderGlobal + */ +f.damagedBlocks = "field_72738_E" +/** + * Render entities startup counter (init value=2) + * + * Parent Class: RenderGlobal + */ +f.renderEntitiesStartupCounter = "field_72740_G" +/** + * Count entities total + * + * Parent Class: RenderGlobal + */ +f.countEntitiesTotal = "field_72748_H" +/** + * Count entities rendered + * + * Parent Class: RenderGlobal + */ +f.countEntitiesRendered = "field_72749_I" +/** + * Count entities hidden + * + * Parent Class: RenderGlobal + */ +f.countEntitiesHidden = "field_72750_J" +/** + * List of OpenGL lists for the current render pass + * + * Parent Class: RenderGlobal + */ +f.renderInfos = "field_72755_R" +/** + * OpenGL sky list + * + * Parent Class: RenderGlobal + */ +f.glSkyList = "field_72771_w" +/** + * The star GL Call list + * + * Parent Class: RenderGlobal + */ +f.starGLCallList = "field_72772_v" +/** + * counts the cloud render updates. Used with mod to stagger some updates + * + * Parent Class: RenderGlobal + */ +f.cloudTickCounter = "field_72773_u" +/** + * OpenGL sky list 2 + * + * Parent Class: RenderGlobal + */ +f.glSkyList2 = "field_72781_x" +/** + * + * + * Parent Class: EntityTracker + */ +f.maxTrackingDistanceThreshold = "field_72792_d" +/** + * "List of tracked entities + * + * Parent Class: EntityTracker + */ +f.trackedEntities = "field_72793_b" +/** + * Used for identity lookup of tracked entities. + * + * Parent Class: EntityTracker + */ +f.trackedEntityHashTable = "field_72794_c" +/** + * set by !chunk.getAreLevelsEmpty + * + * Parent Class: ChunkCache + */ +f.hasExtendedLevels = "field_72814_d" +/** + * + * + * Parent Class: ChunkCache + */ +f.chunkArray = "field_72817_c" +/** + * + * + * Parent Class: World + */ +f.villageCollectionObj = "field_72982_D" +/** + * indicates if enemies are spawned or not + * + * Parent Class: World + */ +f.spawnHostileMobs = "field_72985_G" +/** + * "holds information about a world (size on disk + * + * Parent Class: World + */ +f.worldInfo = "field_72986_A" +/** + * "if set + * + * Parent Class: World + */ +f.findingSpawnPoint = "field_72987_B" +/** + * + * + * Parent Class: World + */ +f.mapStorage = "field_72988_C" +/** + * number of ticks until the next random ambients play + * + * Parent Class: World + */ +f.ambientTickCountdown = "field_72990_M" +/** + * A flag indicating whether we should spawn peaceful mobs. + * + * Parent Class: World + */ +f.spawnPeacefulMobs = "field_72992_H" +/** + * populated by chunks that are within 9 chunks of any player + * + * Parent Class: World + */ +f.activeChunkSet = "field_72993_I" +/** + * "is a temporary list of blocks and light values used when updating light levels. Holds up to 32x32x32 blocks (the maximum influence of a light source.) Every element is a packed bit value: 0000000000LLLLzzzzzzyyyyyyxxxxxx. The 4-bit L is a light level used when darkening blocks. 6-bit numbers x + * + * Parent Class: World + */ +f.lightUpdateBlockList = "field_72994_J" +/** + * "True if the world is a 'slave' client; changes will not be saved or propagated from this world. For example + * + * Parent Class: World + */ +f.isRemote = "field_72995_K" +/** + * A list of all Entities in all currently-loaded chunks + * + * Parent Class: World + */ +f.loadedEntityList = "field_72996_f" +/** + * + * + * Parent Class: World + */ +f.unloadedEntityList = "field_72997_g" +/** + * boolean; if true updates scheduled by scheduleBlockUpdate happen immediately + * + * Parent Class: World + */ +f.scheduledUpdatesAreImmediate = "field_72999_e" +/** + * + * + * Parent Class: World + */ +f.cloudColour = "field_73001_c" +/** + * + * + * Parent Class: World + */ +f.prevRainingStrength = "field_73003_n" +/** + * + * + * Parent Class: World + */ +f.rainingStrength = "field_73004_o" +/** + * "Contains the current Linear Congruential Generator seed for block updates. Used with an A value of 3 and a C value of 0x3c6ef35f + * + * Parent Class: World + */ +f.updateLCG = "field_73005_l" +/** + * magic number used to generate fast random numbers for 3d distribution within a chunk + * + * Parent Class: World + */ +f.DIST_HASH_MAGIC = "field_73006_m" +/** + * a list of all the lightning entities + * + * Parent Class: World + */ +f.weatherEffects = "field_73007_j" +/** + * How much light is subtracted from full daylight + * + * Parent Class: World + */ +f.skylightSubtracted = "field_73008_k" +/** + * Array list of players in the world. + * + * Parent Class: World + */ +f.playerEntities = "field_73010_i" +/** + * The WorldProvider instance that World uses. + * + * Parent Class: World + */ +f.provider = "field_73011_w" +/** + * Set to 2 whenever a lightning bolt is generated in SSP. Decrements if > 0 in updateWeather(). Value appears to be unused. + * + * Parent Class: World + */ +f.lastLightningBolt = "field_73016_r" +/** + * + * + * Parent Class: World + */ +f.thunderingStrength = "field_73017_q" +/** + * + * + * Parent Class: World + */ +f.prevThunderingStrength = "field_73018_p" +f.saveHandler = {} +/** + * + * + * Parent Class: World + */ +f.saveHandler.World = "field_73019_z" +/** + * + * + * Parent Class: MapStorage + */ +f.saveHandler.MapStorage = "field_75751_a" + +/** + * Handles chunk operations and caching + * + * Parent Class: World + */ +f.chunkProvider = "field_73020_y" +/** + * + * + * Parent Class: World + */ +f.worldAccesses = "field_73021_x" +/** + * "Contains all entities for this client + * + * Parent Class: WorldClient + */ +f.entityList = "field_73032_d" +/** + * The ChunkProviderClient instance + * + * Parent Class: WorldClient + */ +f.clientChunkProvider = "field_73033_b" +/** + * Contains all entities for this client that were not spawned due to a non-present chunk. The game will attempt to spawn up to 10 pending entities with each subsequent tick until the spawn queue is empty. + * + * Parent Class: WorldClient + */ +f.entitySpawnQueue = "field_73036_L" +/** + * + * + * Parent Class: WorldClient + */ +f.previousActiveChunkSet = "field_73038_N" +/** + * Whether level saving is disabled or not + * + * Parent Class: WorldServer + */ +f.disableLevelSaving = "field_73058_d" +/** + * + * + * Parent Class: WorldServer + */ +f.theChunkProviderServer = "field_73059_b" +/** + * + * + * Parent Class: WorldServer + */ +f.theEntityTracker = "field_73062_L" +/** + * + * + * Parent Class: WorldServer + */ +f.thePlayerManager = "field_73063_M" +/** + * + * + * Parent Class: WorldServer + */ +f.pendingTickListEntriesHashSet = "field_73064_N" +/** + * All work to do in future ticks. + * + * Parent Class: WorldServer + */ +f.pendingTickListEntriesTreeSet = "field_73065_O" +/** + * is false if there are no players + * + * Parent Class: WorldServer + */ +f.allPlayersSleeping = "field_73068_P" +/** + * + * + * Parent Class: WorldServer + */ +f.bonusChestContent = "field_73069_S" +/** + * + * + * Parent Class: DemoWorldServer + */ +f.demoWorldSettings = "field_73071_a" +/** + * + * + * Parent Class: DemoWorldServer + */ +f.demoWorldSeed = "field_73072_L" +/** + * True if the player is destroying a block + * + * Parent Class: ItemInWorldManager + */ +f.isDestroyingBlock = "field_73088_d" +/** + * + * + * Parent Class: ItemInWorldManager + */ +f.initialDamage = "field_73089_e" +/** + * The EntityPlayerMP object that this object is connected to. + * + * Parent Class: ItemInWorldManager + */ +f.thisPlayerMP = "field_73090_b" +/** + * + * + * Parent Class: ItemInWorldManager + */ +f.initialBlockDamage = "field_73093_n" +/** + * + * + * Parent Class: ItemInWorldManager + */ +f.durabilityRemainingOnBlock = "field_73094_o" +/** + * "Set to true when the ""finished destroying block"" packet is received but the block wasn't fully damaged yet. The block will not be destroyed while this is false." + * + * Parent Class: ItemInWorldManager + */ +f.receivedFinishDiggingPacket = "field_73097_j" +/** + * + * + * Parent Class: ItemInWorldManager + */ +f.curblockDamage = "field_73100_i" +/** + * + * + * Parent Class: DemoWorldManager + */ +f.demoTimeExpired = "field_73103_d" +/** + * damage ranges from 1 to 10. -1 causes the client to delete the partial block renderer. + * + * Parent Class: DestroyBlockProgress + */ +f.partialBlockProgress = "field_73112_e" +/** + * "entity ID of the player associated with this partially destroyed Block. Used to identify the Blocks in the client Renderer + * + * Parent Class: DestroyBlockProgress + */ +f.miningPlayerEntId = "field_73115_a" +/** + * The encoded entity Z position. + * + * Parent Class: EntityTrackerEntry + */ +f.encodedPosZ = "field_73126_f" +/** + * The encoded entity yaw rotation. + * + * Parent Class: EntityTrackerEntry + */ +f.encodedRotationYaw = "field_73127_g" +/** + * The encoded entity X position. + * + * Parent Class: EntityTrackerEntry + */ +f.encodedPosX = "field_73128_d" +/** + * The encoded entity Y position. + * + * Parent Class: EntityTrackerEntry + */ +f.encodedPosY = "field_73129_e" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.trackingDistanceThreshold = "field_73130_b" +/** + * check for sync when ticks % updateFrequency==0 + * + * Parent Class: EntityTrackerEntry + */ +f.updateFrequency = "field_73131_c" +/** + * The entity that this EntityTrackerEntry tracks. + * + * Parent Class: EntityTrackerEntry + */ +f.trackedEntity = "field_73132_a" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.playerEntitiesUpdated = "field_73133_n" +/** + * Holds references to all the players that are currently receiving position updates for this entity. + * + * Parent Class: EntityTrackerEntry + */ +f.trackingPlayers = "field_73134_o" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.lastTrackedEntityMotionX = "field_73137_j" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.lastTrackedEntityMotionY = "field_73138_k" +/** + * The encoded entity pitch rotation. + * + * Parent Class: EntityTrackerEntry + */ +f.encodedRotationPitch = "field_73139_h" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.lastHeadMotion = "field_73140_i" +/** + * "every 400 ticks a full teleport packet is sent + * + * Parent Class: EntityTrackerEntry + */ +f.ticksSinceLastForcedTeleport = "field_73142_u" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.sendVelocityUpdates = "field_73143_t" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.firstUpdateDone = "field_73144_s" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.lastTrackedEntityPosZ = "field_73145_r" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.lastTrackedEntityPosY = "field_73146_q" +/** + * + * + * Parent Class: EntityTrackerEntry + */ +f.lastTrackedEntityPosX = "field_73147_p" +f.noiseData3 = {} +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.noiseData3.ChunkProviderHell = "field_73167_f" +/** + * + * + * Parent Class: ChunkProviderEnd + */ +f.noiseData3.ChunkProviderEnd = "field_73193_e" + +f.noiseData4 = {} +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.noiseData4.ChunkProviderHell = "field_73168_g" +/** + * + * + * Parent Class: ChunkProviderEnd + */ +f.noiseData4.ChunkProviderEnd = "field_73190_f" + +f.noiseData1 = {} +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.noiseData1.ChunkProviderHell = "field_73169_d" +/** + * + * + * Parent Class: ChunkProviderEnd + */ +f.noiseData1.ChunkProviderEnd = "field_73195_c" + +f.noiseData2 = {} +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.noiseData2.ChunkProviderHell = "field_73170_e" +/** + * + * + * Parent Class: ChunkProviderEnd + */ +f.noiseData2.ChunkProviderEnd = "field_73192_d" + +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.netherNoiseGen7 = "field_73171_b" +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.genNetherBridge = "field_73172_c" +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.netherNoiseGen6 = "field_73173_a" +/** + * Determines whether something other than nettherack can be generated at a location + * + * Parent Class: ChunkProviderHell + */ +f.netherrackExculsivityNoiseGen = "field_73174_n" +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.netherNoiseGen3 = "field_73176_l" +/** + * Determines whether slowsand or gravel can be generated at a location + * + * Parent Class: ChunkProviderHell + */ +f.slowsandGravelNoiseGen = "field_73177_m" +/** + * A NoiseGeneratorOctaves used in generating nether terrain + * + * Parent Class: ChunkProviderHell + */ +f.netherNoiseGen1 = "field_73178_j" +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.netherNoiseGen2 = "field_73179_k" +f.noiseData5 = {} +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.noiseData5.ChunkProviderHell = "field_73180_h" +/** + * + * + * Parent Class: ChunkProviderEnd + */ +f.noiseData5.ChunkProviderEnd = "field_73191_g" + +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.hellRNG = "field_73181_i" +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.netherCaveGenerator = "field_73182_t" +/** + * Holds the noise used to determine whether something other than netherrack can be generated at a location + * + * Parent Class: ChunkProviderHell + */ +f.netherrackExclusivityNoise = "field_73183_s" +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.gravelNoise = "field_73184_r" +/** + * Holds the noise used to determine whether slowsand can be generated at a location + * + * Parent Class: ChunkProviderHell + */ +f.slowsandNoise = "field_73185_q" +/** + * + * + * Parent Class: ChunkProviderHell + */ +f.noiseField = "field_73186_p" +f.noiseGen5 = {} +/** + * + * + * Parent Class: ChunkProviderEnd + */ +f.noiseGen5.ChunkProviderEnd = "field_73194_b" +/** + * A NoiseGeneratorOctaves used in generating terrain + * + * Parent Class: ChunkProviderGenerate + */ +f.noiseGen5.ChunkProviderGenerate = "field_73214_a" + +/** + * + * + * Parent Class: ChunkProviderEnd + */ +f.noiseGen4 = "field_73196_a" +/** + * + * + * Parent Class: ChunkProviderEnd + */ +f.densities = "field_73197_n" +f.biomesForGeneration = {} +/** + * The biomes that are used to generate the chunk + * + * Parent Class: ChunkProviderEnd + */ +f.biomesForGeneration.ChunkProviderEnd = "field_73198_o" +/** + * The biomes that are used to generate the chunk + * + * Parent Class: ChunkProviderGenerate + */ +f.biomesForGeneration.ChunkProviderGenerate = "field_73231_z" + +/** + * + * + * Parent Class: ChunkProviderEnd + */ +f.noiseGen3 = "field_73199_l" +/** + * + * + * Parent Class: ChunkProviderEnd + */ +f.endWorld = "field_73200_m" +/** + * + * + * Parent Class: ChunkProviderEnd + */ +f.noiseGen1 = "field_73201_j" +/** + * + * + * Parent Class: ChunkProviderEnd + */ +f.noiseGen2 = "field_73202_k" +/** + * + * + * Parent Class: ChunkProviderEnd + */ +f.endRNG = "field_73204_i" +/** + * A NoiseGeneratorOctaves used in generating terrain + * + * Parent Class: ChunkProviderGenerate + */ +f.noiseGen6 = "field_73212_b" +/** + * + * + * Parent Class: ChunkProviderGenerate + */ +f.mobSpawnerNoise = "field_73213_c" +/** + * Holds Mineshaft Generator + * + * Parent Class: ChunkProviderGenerate + */ +f.mineshaftGenerator = "field_73223_w" +/** + * Holds Village Generator + * + * Parent Class: ChunkProviderGenerate + */ +f.villageGenerator = "field_73224_v" +/** + * Holds Stronghold Generator + * + * Parent Class: ChunkProviderGenerate + */ +f.strongholdGenerator = "field_73225_u" +/** + * + * + * Parent Class: ChunkProviderGenerate + */ +f.caveGenerator = "field_73226_t" +/** + * + * + * Parent Class: ChunkProviderGenerate + */ +f.stoneNoise = "field_73227_s" +f.mapFeaturesEnabled = {} +/** + * are map structures going to be generated (e.g. strongholds) + * + * Parent Class: ChunkProviderGenerate + */ +f.mapFeaturesEnabled.ChunkProviderGenerate = "field_73229_q" +/** + * Whether the map features (e.g. strongholds) generation is enabled or disabled. + * + * Parent Class: WorldInfo + */ +f.mapFeaturesEnabled.WorldInfo = "field_76112_r" +/** + * "Switch for the map features. 'true' for enabled + * + * Parent Class: WorldSettings + */ +f.mapFeaturesEnabled.WorldSettings = "field_77173_c" + +/** + * Holds ravine generator + * + * Parent Class: ChunkProviderGenerate + */ +f.ravineGenerator = "field_73232_y" +/** + * + * + * Parent Class: ChunkProviderGenerate + */ +f.scatteredFeatureGenerator = "field_73233_x" +/** + * The mapping between ChunkCoordinates and Chunks that ChunkProviderClient maintains. + * + * Parent Class: ChunkProviderClient + */ +f.chunkMapping = "field_73236_b" +/** + * "An iterable list of all of the currently loaded chunks (MultiplayerChunkCache) + * + * Parent Class: ChunkProviderClient + */ +f.chunkListing = "field_73237_c" +/** + * The completely empty chunk used by ChunkProviderClient when field_73236_b doesn't contain the requested coordinates. + * + * Parent Class: ChunkProviderClient + */ +f.blankChunk = "field_73238_a" +/** + * map of chunk Id's to Chunk instances + * + * Parent Class: ChunkProviderServer + */ +f.id2ChunkMap = "field_73244_f" +/** + * chunk generator object. Calls to load nonexistent chunks are forwarded to this object. + * + * Parent Class: ChunkProviderServer + */ +f.serverChunkGenerator = "field_73246_d" +/** + * + * + * Parent Class: ChunkProviderServer + */ +f.chunkLoader = "field_73247_e" +/** + * + * + * Parent Class: ChunkProviderServer + */ +f.droppedChunksSet = "field_73248_b" +/** + * "a dummy chunk + * + * Parent Class: ChunkProviderServer + */ +f.dummyChunk = "field_73249_c" +/** + * "if set + * + * Parent Class: ChunkProviderServer + */ +f.chunkLoadOverride = "field_73250_a" +/** + * Integer field where each bit means to make update 16x16x16 division of chunk (from bottom). + * + * Parent Class: PlayerManager$PlayerInstance + */ +f.flagsYAreasToUpdate = "field_73260_f" +/** + * the number of blocks that need to be updated next tick + * + * Parent Class: PlayerManager$PlayerInstance + */ +f.numBlocksToUpdate = "field_73262_e" +/** + * the list of all players in this instance (chunk) + * + * Parent Class: PlayerManager$PlayerInstance + */ +f.playersWatchingChunk = "field_73263_b" +/** + * The chunk coordinates + * + * Parent Class: PlayerManager$PlayerInstance + */ +f.chunkCoords = "field_73264_c" +/** + * The server properties object. + * + * Parent Class: PropertyManager + */ +f.serverProperties = "field_73672_b" +/** + * The server properties file. + * + * Parent Class: PropertyManager + */ +f.serverPropertiesFile = "field_73673_c" +/** + * + * + * Parent Class: BanEntry + */ +f.banEndDate = "field_73692_f" +/** + * + * + * Parent Class: BanEntry + */ +f.banStartDate = "field_73694_d" +/** + * + * + * Parent Class: BanEntry + */ +f.bannedBy = "field_73695_e" +/** + * + * + * Parent Class: ServerCommand + */ +f.sender = "field_73701_b" +/** + * The command string. + * + * Parent Class: ServerCommand + */ +f.command = "field_73702_a" +/** + * True if the loading ended with a success + * + * Parent Class: LoadingScreenRenderer + */ +f.loadingSuccess = "field_73724_e" +/** + * The text currently displayed (i.e. the argument to the last call to printText or func_73722_d) + * + * Parent Class: LoadingScreenRenderer + */ +f.currentlyDisplayedText = "field_73726_c" +f.zLevel = {} +/** + * + * + * Parent Class: Gui + */ +f.zLevel.Gui = "field_73735_i" +/** + * Defines the zLevel of rendering of item on GUI. + * + * Parent Class: RenderItem + */ +f.zLevel.RenderItem = "field_77023_b" + +/** + * The string specifying which record music is playing + * + * Parent Class: GuiIngame + */ +f.recordPlaying = "field_73838_g" +/** + * ChatGUI instance that retains all previous chat data + * + * Parent Class: GuiIngame + */ +f.persistantChatGUI = "field_73840_e" +/** + * Previous frame vignette brightness (slowly changes by 1% each frame) + * + * Parent Class: GuiIngame + */ +f.prevVignetteBrightness = "field_73843_a" +/** + * + * + * Parent Class: GuiIngame + */ +f.recordIsPlaying = "field_73844_j" +/** + * How many ticks the record playing message will be displayed + * + * Parent Class: GuiIngame + */ +f.recordPlayingUpFor = "field_73845_h" +/** + * + * + * Parent Class: GuiMainMenu + */ +f.buttonResetDemo = "field_73973_d" +/** + * The splash message. + * + * Parent Class: GuiMainMenu + */ +f.splashText = "field_73975_c" +/** + * Texture allocated for the current viewport of the main menu's panorama background. + * + * Parent Class: GuiMainMenu + */ +f.viewportTexture = "field_73977_n" +/** + * An array of all the paths to the panorama pictures. + * + * Parent Class: GuiMainMenu + */ +f.titlePanoramaPaths = "field_73978_o" +/** + * "Timer used to rotate the panorama + * + * Parent Class: GuiMainMenu + */ +f.panoramaTimer = "field_73979_m" +/** + * "The time reported by the high-resolution clock at the last call of updateTimer() + * + * Parent Class: Timer + */ +f.lastHRTime = "field_74276_f" +/** + * "The time reported by the system clock at the last sync + * + * Parent Class: Timer + */ +f.lastSyncSysClock = "field_74277_g" +/** + * A multiplier to make the timer (and therefore the game) go faster or slower. 0.5 makes the game run at half-speed. + * + * Parent Class: Timer + */ +f.timerSpeed = "field_74278_d" +/** + * "How much time has elapsed since the last tick + * + * Parent Class: Timer + */ +f.elapsedPartialTicks = "field_74279_e" +/** + * "How many full ticks have turned over since the last call to updateTimer() + * + * Parent Class: Timer + */ +f.elapsedTicks = "field_74280_b" +/** + * "How much time has elapsed since the last tick + * + * Parent Class: Timer + */ +f.renderPartialTicks = "field_74281_c" +/** + * The number of timer ticks per second of real time + * + * Parent Class: Timer + */ +f.ticksPerSecond = "field_74282_a" +/** + * "A ratio used to sync the high-resolution clock to the system clock + * + * Parent Class: Timer + */ +f.timeSyncAdjustment = "field_74283_j" +/** + * "The time reported by the high-resolution clock at the last sync + * + * Parent Class: Timer + */ +f.lastSyncHRClock = "field_74284_h" +/** + * + * + * Parent Class: Session + */ +f.username = "field_74286_b" +/** + * A buffer to hold pixel values returned by OpenGL. + * + * Parent Class: ScreenShotHelper + */ +f.pixelBuffer = "field_74293_b" +/** + * The built-up array that contains all the pixel values returned by OpenGL. + * + * Parent Class: ScreenShotHelper + */ +f.pixelValues = "field_74294_c" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindChat = "field_74310_D" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindSneak = "field_74311_E" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindAttack = "field_74312_F" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindUseItem = "field_74313_G" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindJump = "field_74314_A" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindDrop = "field_74316_C" +/** + * + * + * Parent Class: GameSettings + */ +f.hideGUI = "field_74319_N" +/** + * + * + * Parent Class: GameSettings + */ +f.thirdPersonView = "field_74320_O" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindPlayerList = "field_74321_H" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindPickBlock = "field_74322_I" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindCommand = "field_74323_J" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindings = "field_74324_K" +/** + * + * + * Parent Class: GameSettings + */ +f.debugCamEnable = "field_74325_U" +/** + * Smooth Camera Toggle + * + * Parent Class: GameSettings + */ +f.smoothCamera = "field_74326_T" +/** + * + * + * Parent Class: GameSettings + */ +f.showDebugProfilerChart = "field_74329_Q" +/** + * true if debug info should be displayed instead of version + * + * Parent Class: GameSettings + */ +f.showDebugInfo = "field_74330_P" +/** + * The lastServer string. + * + * Parent Class: GameSettings + */ +f.lastServer = "field_74332_R" +/** + * + * + * Parent Class: GameSettings + */ +f.gammaSetting = "field_74333_Y" +/** + * + * + * Parent Class: GameSettings + */ +f.fovSetting = "field_74334_X" +/** + * GUI scale + * + * Parent Class: GameSettings + */ +f.guiScale = "field_74335_Z" +/** + * + * + * Parent Class: GameSettings + */ +f.viewBobbing = "field_74336_f" +/** + * + * + * Parent Class: GameSettings + */ +f.anaglyph = "field_74337_g" +/** + * + * + * Parent Class: GameSettings + */ +f.invertMouse = "field_74338_d" +/** + * + * + * Parent Class: GameSettings + */ +f.mouseSensitivity = "field_74341_c" +/** + * Clouds flag + * + * Parent Class: GameSettings + */ +f.clouds = "field_74345_l" +/** + * + * + * Parent Class: GameSettings + */ +f.limitFramerate = "field_74350_i" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindForward = "field_74351_w" +/** + * + * + * Parent Class: GameSettings + */ +f.enableVsync = "field_74352_v" +/** + * + * + * Parent Class: GameSettings + */ +f.fullScreen = "field_74353_u" +/** + * + * + * Parent Class: GameSettings + */ +f.optionsFile = "field_74354_ai" +/** + * + * + * Parent Class: GameSettings + */ +f.snooperEnabled = "field_74355_t" +/** + * + * + * Parent Class: GameSettings + */ +f.chatOpacity = "field_74357_r" +/** + * + * + * Parent Class: GameSettings + */ +f.chatLinksPrompt = "field_74358_q" +/** + * + * + * Parent Class: GameSettings + */ +f.chatLinks = "field_74359_p" +/** + * "Determines amount of particles. 0 = All + * + * Parent Class: GameSettings + */ +f.particleSetting = "field_74362_aa" +/** + * Game settings language + * + * Parent Class: GameSettings + */ +f.language = "field_74363_ab" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindRight = "field_74366_z" +/** + * GUI scale values + * + * Parent Class: GameSettings + */ +f.GUISCALES = "field_74367_ae" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindBack = "field_74368_y" +/** + * + * + * Parent Class: GameSettings + */ +f.keyBindLeft = "field_74370_x" +/** + * Mouse delta Y this frame + * + * Parent Class: MouseHelper + */ +f.deltaY = "field_74375_b" +/** + * Mouse delta X this frame + * + * Parent Class: MouseHelper + */ +f.deltaX = "field_74377_a" +/** + * + * + * Parent Class: GameSettings$Options + */ +f.enumFloat = "field_74385_A" +/** + * + * + * Parent Class: GameSettings$Options + */ +f.enumBoolean = "field_74386_B" +/** + * + * + * Parent Class: GameSettings$Options + */ +f.enumString = "field_74387_C" +/** + * + * + * Parent Class: KeyBinding + */ +f.keyCode = "field_74512_d" +/** + * Is the key held down? + * + * Parent Class: KeyBinding + */ +f.pressed = "field_74513_e" +/** + * + * + * Parent Class: KeyBinding + */ +f.keyDescription = "field_74515_c" +/** + * + * + * Parent Class: KeyBinding + */ +f.keybindArray = "field_74516_a" +/** + * Float buffer used to set OpenGL material colors + * + * Parent Class: RenderHelper + */ +f.colorBuffer = "field_74522_a" +/** + * + * + * Parent Class: ChatLine + */ +f.lineString = "field_74541_b" +/** + * "int value to refer to existing Chat Lines + * + * Parent Class: ChatLine + */ +f.chatLineID = "field_74542_c" +/** + * GUI Update Counter value this Line was created at + * + * Parent Class: ChatLine + */ +f.updateCounterCreated = "field_74543_a" +/** + * The Z component of the entity's yaw rotation + * + * Parent Class: ActiveRenderInfo + */ +f.rotationZ = "field_74586_f" +/** + * The Y component (scaled along the Z axis) of the entity's pitch rotation + * + * Parent Class: ActiveRenderInfo + */ +f.rotationYZ = "field_74587_g" +/** + * The X component of the entity's yaw rotation + * + * Parent Class: ActiveRenderInfo + */ +f.rotationX = "field_74588_d" +/** + * The combined X and Z components of the entity's pitch rotation + * + * Parent Class: ActiveRenderInfo + */ +f.rotationXZ = "field_74589_e" +/** + * The Y component (scaled along the X axis) of the entity's pitch rotation + * + * Parent Class: ActiveRenderInfo + */ +f.rotationXY = "field_74596_h" +/** + * The type byte for the tags in the list - they must all be of the same type. + * + * Parent Class: NBTTagList + */ +f.tagType = "field_74746_b" +/** + * The array list containing the tags encapsulated in this list. + * + * Parent Class: NBTTagList + */ +f.tagList = "field_74747_a" +/** + * The array of saved integers + * + * Parent Class: NBTTagIntArray + */ +f.intArray = "field_74749_a" +/** + * "The key-value pairs for the tag. Each key is a UTF string + * + * Parent Class: NBTTagCompound + */ +f.tagMap = "field_74784_a" +/** + * + * + * Parent Class: StringTranslate + */ +f.languageList = "field_74816_c" +/** + * + * + * Parent Class: StatCollector + */ +f.localizedName = "field_74839_a" +/** + * + * + * Parent Class: CommandException + */ +f.errorObjects = "field_74845_a" +/** + * switches the Coordinate System base off the Bounding Box + * + * Parent Class: StructureComponent + */ +f.coordBaseMode = "field_74885_f" +/** + * The type ID of this component. + * + * Parent Class: StructureComponent + */ +f.componentType = "field_74886_g" +/** + * The number of villagers that have been spawned in this component. + * + * Parent Class: StructureVillagePieces$Village + */ +f.villagersSpawned = "field_74896_a" +/** + * + * + * Parent Class: StructureVillagePieces$WoodHut + */ +f.isTallHouse = "field_74909_b" +/** + * + * + * Parent Class: StructureVillagePieces$WoodHut + */ +f.tablePosition = "field_74910_c" +/** + * + * + * Parent Class: StructureVillagePieces$House4Garden + */ +f.isRoofAccessible = "field_74913_b" +f.hasMadeChest = {} +/** + * + * + * Parent Class: StructureVillagePieces$House2 + */ +f.hasMadeChest.StructureVillagePieces$House2 = "field_74917_c" +/** + * + * + * Parent Class: StructureStrongholdPieces$ChestCorridor + */ +f.hasMadeChest.StructureStrongholdPieces$ChestCorridor = "field_75002_c" + +/** + * List of items that Village's Blacksmith chest can contain. + * + * Parent Class: StructureVillagePieces$House2 + */ +f.villageBlacksmithChestContents = "field_74918_a" +/** + * + * + * Parent Class: StructureVillagePieces$Start + */ +f.structVillagePieceWeight = "field_74926_d" +/** + * Boolean that determines if the village is in a desert or not. + * + * Parent Class: StructureVillagePieces$Start + */ +f.inDesert = "field_74927_b" +f.terrainType = {} +/** + * "World terrain type + * + * Parent Class: StructureVillagePieces$Start + */ +f.terrainType.StructureVillagePieces$Start = "field_74928_c" +/** + * "World terrain type + * + * Parent Class: MapGenVillage + */ +f.terrainType.MapGenVillage = "field_75054_f" +/** + * + * + * Parent Class: WorldInfo + */ +f.terrainType.WorldInfo = "field_76098_b" +/** + * + * + * Parent Class: WorldProvider + */ +f.terrainType.WorldProvider = "field_76577_b" +/** + * + * + * Parent Class: WorldSettings + */ +f.terrainType.WorldSettings = "field_77171_e" + +/** + * + * + * Parent Class: StructureVillagePieces$Start + */ +f.worldChunkMngr = "field_74929_a" +/** + * "Contains List of all spawnable Structure Piece Weights. If no more Pieces of a type can be spawned + * + * Parent Class: StructureVillagePieces$Start + */ +f.structureVillageWeightedPieceList = "field_74931_h" +/** + * + * + * Parent Class: StructureVillagePieces$Path + */ +f.length = "field_74934_a" +/** + * The size of the bounding box for this feature in the Y axis + * + * Parent Class: ComponentScatteredFeaturePieces$Feature + */ +f.scatteredFeatureSizeY = "field_74937_b" +/** + * The size of the bounding box for this feature in the Z axis + * + * Parent Class: ComponentScatteredFeaturePieces$Feature + */ +f.scatteredFeatureSizeZ = "field_74938_c" +/** + * The size of the bounding box for this feature in the X axis + * + * Parent Class: ComponentScatteredFeaturePieces$Feature + */ +f.scatteredFeatureSizeX = "field_74939_a" +/** + * + * + * Parent Class: ComponentScatteredFeaturePieces$DesertPyramid + */ +f.hasPlacedChest = "field_74940_h" +/** + * List of items to generate in chests of Temples. + * + * Parent Class: ComponentScatteredFeaturePieces$DesertPyramid + */ +f.itemsToGenerateInTemple = "field_74941_i" +/** + * List of random stones to be generated in the Jungle Pyramid. + * + * Parent Class: ComponentScatteredFeaturePieces$JunglePyramid + */ +f.junglePyramidsRandomScatteredStones = "field_74942_n" +/** + * + * + * Parent Class: ComponentScatteredFeaturePieces$JunglePyramid + */ +f.placedTrap1 = "field_74945_j" +/** + * + * + * Parent Class: ComponentScatteredFeaturePieces$JunglePyramid + */ +f.placedTrap2 = "field_74946_k" +/** + * + * + * Parent Class: ComponentScatteredFeaturePieces$JunglePyramid + */ +f.placedMainChest = "field_74947_h" +/** + * + * + * Parent Class: ComponentScatteredFeaturePieces$JunglePyramid + */ +f.placedHiddenChest = "field_74948_i" +/** + * List of other Mineshaft components linked to this room. + * + * Parent Class: StructureMineshaftPieces$Room + */ +f.roomsLinkedToTheRoom = "field_74949_a" +/** + * + * + * Parent Class: StructureMineshaftPieces$Cross + */ +f.isMultipleFloors = "field_74952_b" +/** + * + * + * Parent Class: StructureMineshaftPieces$Cross + */ +f.corridorDirection = "field_74953_a" +/** + * A count of the different sections of this mine. The space between ceiling supports. + * + * Parent Class: StructureMineshaftPieces$Corridor + */ +f.sectionCount = "field_74955_d" +/** + * + * + * Parent Class: StructureMineshaftPieces$Corridor + */ +f.hasSpiders = "field_74956_b" +/** + * + * + * Parent Class: StructureMineshaftPieces$Corridor + */ +f.spawnerPlaced = "field_74957_c" +/** + * + * + * Parent Class: StructureMineshaftPieces$Corridor + */ +f.hasRails = "field_74958_a" +/** + * Contains the list of valid piece weights for the set of nether bridge structure pieces. + * + * Parent Class: StructureNetherBridgePieces$Start + */ +f.primaryWeights = "field_74968_b" +/** + * Contains the list of valid piece weights for the secondary set of nether bridge structure pieces. + * + * Parent Class: StructureNetherBridgePieces$Start + */ +f.secondaryWeights = "field_74969_c" +/** + * Instance of StructureNetherBridgePieceWeight. + * + * Parent Class: StructureNetherBridgePieces$Start + */ +f.theNetherBridgePieceWeight = "field_74970_a" +/** + * + * + * Parent Class: StructureNetherBridgePieces$End + */ +f.fillSeed = "field_74972_a" +f.hasSpawner = {} +/** + * + * + * Parent Class: StructureNetherBridgePieces$Throne + */ +f.hasSpawner.StructureNetherBridgePieces$Throne = "field_74976_a" +/** + * + * + * Parent Class: StructureStrongholdPieces$PortalRoom + */ +f.hasSpawner.StructureStrongholdPieces$PortalRoom = "field_75005_a" + +/** + * List of items that Stronghold chests can contain. + * + * Parent Class: StructureStrongholdPieces$ChestCorridor + */ +f.strongholdChestContents = "field_75003_a" +/** + * List of items that Stronghold Library chests can contain. + * + * Parent Class: StructureStrongholdPieces$Library + */ +f.strongholdLibraryChestContents = "field_75007_b" +/** + * + * + * Parent Class: StructureStrongholdPieces$Library + */ +f.isLargeRoom = "field_75008_c" +/** + * + * + * Parent Class: StructureStrongholdPieces$RoomCrossing + */ +f.roomType = "field_75013_b" +/** + * Items that could generate in the chest that is located in Stronghold Room Crossing. + * + * Parent Class: StructureStrongholdPieces$RoomCrossing + */ +f.strongholdRoomCrossingChestContents = "field_75014_c" +/** + * + * + * Parent Class: StructureStrongholdPieces$Straight + */ +f.expandsX = "field_75019_b" +/** + * + * + * Parent Class: StructureStrongholdPieces$Straight + */ +f.expandsZ = "field_75020_c" +/** + * + * + * Parent Class: StructureStrongholdPieces$Stairs2 + */ +f.strongholdPortalRoom = "field_75025_b" +/** + * + * + * Parent Class: StructureStrongholdPieces$Stairs2 + */ +f.strongholdPieceWeight = "field_75027_a" +/** + * The number of Chunks to gen-check in any given direction. + * + * Parent Class: MapGenBase + */ +f.range = "field_75040_a" +/** + * "Used to store a list of all structures that have been recursively generated. Used so that during recursive generation + * + * Parent Class: MapGenStructure + */ +f.structureMap = "field_75053_d" +/** + * A list of all the biomes villages can spawn in. + * + * Parent Class: MapGenVillage + */ +f.villageSpawnBiomes = "field_75055_e" +/** + * is spawned false and set true once the defined BiomeGenBases were compared with the present ones + * + * Parent Class: MapGenStronghold + */ +f.ranBiomeCheck = "field_75056_f" +/** + * + * + * Parent Class: MapGenStronghold + */ +f.structureCoords = "field_75057_g" +/** + * + * + * Parent Class: MapGenNetherBridge + */ +f.spawnList = "field_75060_e" +/** + * + * + * Parent Class: MapGenScatteredFeature + */ +f.biomelist = "field_75061_e" +/** + * List of all StructureComponents that are part of this structure + * + * Parent Class: StructureStart + */ +f.components = "field_75075_a" +/** + * well ... thats what it does + * + * Parent Class: MapGenVillage$Start + */ +f.hasMoreThanTwoComponents = "field_75076_c" +/** + * + * + * Parent Class: StructureVillagePieces$PieceWeight + */ +f.villagePiecesLimit = "field_75087_d" +/** + * + * + * Parent Class: StructureVillagePieces$PieceWeight + */ +f.villagePieceWeight = "field_75088_b" +/** + * + * + * Parent Class: StructureVillagePieces$PieceWeight + */ +f.villagePiecesSpawned = "field_75089_c" +/** + * The Class object for the represantation of this village piece. + * + * Parent Class: StructureVillagePieces$PieceWeight + */ +f.villagePieceClass = "field_75090_a" +/** + * "Used to determine if creative mode is enabled + * + * Parent Class: PlayerCapabilities + */ +f.isCreativeMode = "field_75098_d" +/** + * Indicates whether the player is allowed to modify the surroundings + * + * Parent Class: PlayerCapabilities + */ +f.allowEdit = "field_75099_e" +/** + * Sets/indicates whether the player is flying. + * + * Parent Class: PlayerCapabilities + */ +f.isFlying = "field_75100_b" +/** + * Disables player damage. + * + * Parent Class: PlayerCapabilities + */ +f.disableDamage = "field_75102_a" +/** + * The player's food timer value. + * + * Parent Class: FoodStats + */ +f.foodTimer = "field_75123_d" +/** + * + * + * Parent Class: FoodStats + */ +f.prevFoodLevel = "field_75124_e" +/** + * The player's food saturation. + * + * Parent Class: FoodStats + */ +f.foodSaturationLevel = "field_75125_b" +/** + * The player's food exhaustion. + * + * Parent Class: FoodStats + */ +f.foodExhaustionLevel = "field_75126_c" +/** + * list of all people that need to be notified when this craftinventory changes + * + * Parent Class: Container + */ +f.crafters = "field_75149_d" +/** + * + * + * Parent Class: Container + */ +f.transactionID = "field_75150_e" +/** + * the list of all items(stacks) for the corresponding slot + * + * Parent Class: Container + */ +f.inventoryItemStacks = "field_75153_a" +/** + * + * + * Parent Class: ContainerChest + */ +f.numRows = "field_75154_f" +f.craftResult = {} +/** + * + * + * Parent Class: ContainerWorkbench + */ +f.craftResult.ContainerWorkbench = "field_75160_f" +/** + * + * + * Parent Class: ContainerPlayer + */ +f.craftResult.ContainerPlayer = "field_75179_f" + +f.craftMatrix = {} +/** + * The crafting matrix inventory (3x3). + * + * Parent Class: ContainerWorkbench + */ +f.craftMatrix.ContainerWorkbench = "field_75162_e" +/** + * The crafting matrix inventory. + * + * Parent Class: ContainerPlayer + */ +f.craftMatrix.ContainerPlayer = "field_75181_e" +/** + * The craft matrix inventory linked to this result slot. + * + * Parent Class: SlotCrafting + */ +f.craftMatrix.SlotCrafting = "field_75239_a" + +/** + * 3-member array storing the enchantment levels of each slot + * + * Parent Class: ContainerEnchantment + */ +f.enchantLevels = "field_75167_g" +/** + * SlotEnchantmentTable object with ItemStack to be enchanted + * + * Parent Class: ContainerEnchantment + */ +f.tableInventory = "field_75168_e" +/** + * current world (for bookshelf counting) + * + * Parent Class: ContainerEnchantment + */ +f.worldPointer = "field_75172_h" +/** + * + * + * Parent Class: ContainerMerchant + */ +f.merchantInventory = "field_75176_f" +/** + * Determines if inventory manipulation should be handled. + * + * Parent Class: ContainerPlayer + */ +f.isLocalWorld = "field_75180_g" +/** + * How many Structure Pieces of this type may spawn in a structure + * + * Parent Class: StructureStrongholdPieces$PieceWeight + */ +f.instancesLimit = "field_75191_d" +/** + * "This basically keeps track of the 'epicness' of a structure. Epic structure components have a higher 'weight' + * + * Parent Class: StructureStrongholdPieces$PieceWeight + */ +f.pieceWeight = "field_75192_b" +/** + * + * + * Parent Class: StructureStrongholdPieces$PieceWeight + */ +f.instancesSpawned = "field_75193_c" +/** + * + * + * Parent Class: StructureStrongholdPieces$PieceWeight + */ +f.pieceClass = "field_75194_a" +/** + * + * + * Parent Class: StructureStrongholdPieces + */ +f.strongComponentType = "field_75203_d" +/** + * + * + * Parent Class: StructureStrongholdPieces + */ +f.strongholdStones = "field_75204_e" +/** + * + * + * Parent Class: StructureStrongholdPieces + */ +f.pieceWeightArray = "field_75205_b" +/** + * + * + * Parent Class: StructureStrongholdPieces + */ +f.structurePieceList = "field_75206_c" +/** + * display position of the inventory slot on the screen y axis + * + * Parent Class: Slot + */ +f.yDisplayPosition = "field_75221_f" +/** + * the id of the slot(also the index in the inventory arraylist) + * + * Parent Class: Slot + */ +f.slotNumber = "field_75222_d" +/** + * display position of the inventory slot on the screen x axis + * + * Parent Class: Slot + */ +f.xDisplayPosition = "field_75223_e" +/** + * The index of the slot in the inventory. + * + * Parent Class: Slot + */ +f.slotIndex = "field_75225_a" +/** + * The number of items that have been crafted so far. Gets passed to ItemStack.onCrafting before being reset. + * + * Parent Class: SlotCrafting + */ +f.amountCrafted = "field_75237_g" +/** + * "A bitmask telling which other tasks may not run concurrently. The test is a simple bitwise AND - if it yields zero + * + * Parent Class: EntityAIBase + */ +f.mutexBits = "field_75254_a" +/** + * A decrementing tick that stops the entity from being idle once it reaches 0. + * + * Parent Class: EntityAILookIdle + */ +f.idleTime = "field_75255_d" +/** + * X offset to look at + * + * Parent Class: EntityAILookIdle + */ +f.lookX = "field_75256_b" +/** + * Z offset to look at + * + * Parent Class: EntityAILookIdle + */ +f.lookZ = "field_75257_c" +/** + * The entity that is looking idle. + * + * Parent Class: EntityAILookIdle + */ +f.idleEntity = "field_75258_a" +/** + * + * + * Parent Class: EntityAIPlay + */ +f.targetVillager = "field_75260_b" +f.villagerObj = {} +/** + * + * + * Parent Class: EntityAIPlay + */ +f.villagerObj.EntityAIPlay = "field_75262_a" +/** + * + * + * Parent Class: EntityAIVillagerMate + */ +f.villagerObj.EntityAIVillagerMate = "field_75450_b" + +/** + * + * + * Parent Class: EntityAIPanic + */ +f.randPosY = "field_75263_d" +/** + * + * + * Parent Class: EntityAIPanic + */ +f.randPosZ = "field_75264_e" +/** + * + * + * Parent Class: EntityAIPanic + */ +f.randPosX = "field_75266_c" +/** + * + * + * Parent Class: EntityAIPanic + */ +f.theEntityCreature = "field_75267_a" +/** + * The creeper's attack target. This is used for the changing of the creeper's state. + * + * Parent Class: EntityAICreeperSwell + */ +f.creeperAttackTarget = "field_75268_b" +/** + * The creeper that is swelling. + * + * Parent Class: EntityAICreeperSwell + */ +f.swellingCreeper = "field_75269_a" +/** + * If the EntityTameable is sitting. + * + * Parent Class: EntityAISit + */ +f.isSitting = "field_75271_b" +/** + * + * + * Parent Class: EntityAIRestrictOpenDoor + */ +f.frontDoor = "field_75274_b" +f.entityObj = {} +/** + * + * + * Parent Class: EntityAIRestrictOpenDoor + */ +f.entityObj.EntityAIRestrictOpenDoor = "field_75275_a" +/** + * + * + * Parent Class: EntityAIMoveIndoors + */ +f.entityObj.EntityAIMoveIndoors = "field_75424_a" +/** + * + * + * Parent Class: EntitySenses + */ +f.entityObj.EntitySenses = "field_75526_a" + +/** + * The entity using this AI that is tempted by the player. + * + * Parent Class: EntityAITempt + */ +f.temptedEntity = "field_75284_a" +/** + * Whether the entity using this AI will be scared by the tempter's sudden movement. + * + * Parent Class: EntityAITempt + */ +f.scaredByPlayerMovement = "field_75285_l" +/** + * + * + * Parent Class: EntityAITempt + */ +f.avoidWater = "field_75286_m" +f.isRunning = {} +/** + * True if this EntityAITempt task is running + * + * Parent Class: EntityAITempt + */ +f.isRunning.EntityAITempt = "field_75287_j" +/** + * + * + * Parent Class: PlayerUsageSnooper + */ +f.isRunning.PlayerUsageSnooper = "field_76477_g" + +/** + * The player that is tempting the entity that is using this AI. + * + * Parent Class: EntityAITempt + */ +f.temptingPlayer = "field_75289_h" +/** + * A counter that is decremented each time the shouldExecute method is called. The shouldExecute method will always return false if delayTemptCounter is greater than 0. + * + * Parent Class: EntityAITempt + */ +f.delayTemptCounter = "field_75290_i" +/** + * + * + * Parent Class: EntityAIFollowGolem + */ +f.tookGolemRose = "field_75291_d" +f.theGolem = {} +/** + * + * + * Parent Class: EntityAIFollowGolem + */ +f.theGolem.EntityAIFollowGolem = "field_75292_b" +/** + * + * + * Parent Class: EntityAILookAtVillager + */ +f.theGolem.EntityAILookAtVillager = "field_75397_a" + +/** + * + * + * Parent Class: EntityAIFollowGolem + */ +f.takeGolemRoseTick = "field_75293_c" +/** + * "If true + * + * Parent Class: EntityAITarget + */ +f.shouldCheckSight = "field_75297_f" +/** + * "If @shouldCheckSight is true + * + * Parent Class: EntityAITarget + */ +f.targetUnseenTicks = "field_75298_g" +/** + * The entity that this task belongs to + * + * Parent Class: EntityAITarget + */ +f.taskOwner = "field_75299_d" +/** + * "When nearbyOnly is true: 0 -> No target + * + * Parent Class: EntityAITarget + */ +f.targetSearchStatus = "field_75301_b" +/** + * "When nearbyOnly is true + * + * Parent Class: EntityAITarget + */ +f.targetSearchDelay = "field_75302_c" +/** + * "When true + * + * Parent Class: EntityAITarget + */ +f.nearbyOnly = "field_75303_a" +/** + * The aggressor of the iron golem's village which is now the golem's attack target. + * + * Parent Class: EntityAIDefendVillage + */ +f.villageAgressorTarget = "field_75304_b" +/** + * + * + * Parent Class: EntityAIDefendVillage + */ +f.irongolem = "field_75305_a" +/** + * Instance of EntityAINearestAttackableTargetSorter. + * + * Parent Class: EntityAINearestAttackableTarget + */ +f.theNearestAttackableTargetSorter = "field_75306_g" +/** + * + * + * Parent Class: EntityAINearestAttackableTarget + */ +f.targetClass = "field_75307_b" +/** + * + * + * Parent Class: EntityAINearestAttackableTarget + */ +f.targetChance = "field_75308_c" +f.targetEntity = {} +/** + * + * + * Parent Class: EntityAINearestAttackableTarget + */ +f.targetEntity.EntityAINearestAttackableTarget = "field_75309_a" +/** + * + * + * Parent Class: EntityAIMoveTowardsTarget + */ +f.targetEntity.EntityAIMoveTowardsTarget = "field_75429_b" + +/** + * + * + * Parent Class: EntityAITargetNonTamed + */ +f.theTameable = "field_75310_g" +/** + * + * + * Parent Class: EntityAIHurtByTarget + */ +f.entityCallsForHelp = "field_75312_a" +/** + * + * + * Parent Class: EntityAIOwnerHurtTarget + */ +f.theTarget = "field_75313_b" +/** + * + * + * Parent Class: EntityAIOwnerHurtTarget + */ +f.theEntityTameable = "field_75314_a" +/** + * + * + * Parent Class: EntityAIOwnerHurtByTarget + */ +f.theOwnerAttacker = "field_75315_b" +/** + * + * + * Parent Class: EntityAIOwnerHurtByTarget + */ +f.theDefendingTameable = "field_75316_a" +/** + * A decrementing tick that spawns a ranged attack once this value reaches 0. It is then set back to the maxRangedAttackTime. + * + * Parent Class: EntityAIArrowAttack + */ +f.rangedAttackTime = "field_75320_d" +/** + * + * + * Parent Class: EntityAIArrowAttack + */ +f.entityMoveSpeed = "field_75321_e" +/** + * The entity the AI instance has been applied to + * + * Parent Class: EntityAIArrowAttack + */ +f.entityHost = "field_75322_b" +/** + * The maximum time the AI has to wait before peforming another ranged attack. + * + * Parent Class: EntityAIArrowAttack + */ +f.maxRangedAttackTime = "field_75325_h" +/** + * The entity that the leaper is leaping towards. + * + * Parent Class: EntityAILeapAtTarget + */ +f.leapTarget = "field_75326_b" +/** + * The entity's motionY after leaping. + * + * Parent Class: EntityAILeapAtTarget + */ +f.leapMotionY = "field_75327_c" +/** + * The entity that is leaping. + * + * Parent Class: EntityAILeapAtTarget + */ +f.leaper = "field_75328_a" +/** + * + * + * Parent Class: EntityAIWatchClosest + */ +f.watchedClass = "field_75329_f" +f.lookTime = {} +/** + * + * + * Parent Class: EntityAIWatchClosest + */ +f.lookTime.EntityAIWatchClosest = "field_75330_d" +/** + * + * + * Parent Class: EntityAILookAtVillager + */ +f.lookTime.EntityAILookAtVillager = "field_75396_c" + +/** + * + * + * Parent Class: EntityAIWatchClosest + */ +f.chance = "field_75331_e" +/** + * + * + * Parent Class: EntityAIWatchClosest + */ +f.theWatcher = "field_75332_b" +/** + * This is the Maximum distance that the AI will look for the Entity + * + * Parent Class: EntityAIWatchClosest + */ +f.maxDistanceForPlayer = "field_75333_c" +/** + * The closest entity which is being watched by this one. + * + * Parent Class: EntityAIWatchClosest + */ +f.closestEntity = "field_75334_a" +/** + * + * + * Parent Class: EntityAIFollowOwner + */ +f.followSpeed = "field_75336_f" +/** + * + * + * Parent Class: EntityAIFollowOwner + */ +f.petPathfinder = "field_75337_g" +/** + * + * + * Parent Class: EntityAIFollowOwner + */ +f.thePet = "field_75338_d" +/** + * + * + * Parent Class: EntityAIFollowOwner + */ +f.theOwner = "field_75339_e" +/** + * + * + * Parent Class: EntityAIFollowOwner + */ +f.maxDist = "field_75340_b" +/** + * + * + * Parent Class: EntityAIFollowOwner + */ +f.minDist = "field_75341_c" +f.delayCounter = {} +/** + * + * + * Parent Class: EntityAIFollowParent + */ +f.delayCounter.EntityAIFollowParent = "field_75345_d" +/** + * + * + * Parent Class: EntityAIAttackOnCollide + */ +f.delayCounter.EntityAIAttackOnCollide = "field_75445_i" + +/** + * + * + * Parent Class: EntityAIFollowParent + */ +f.parentAnimal = "field_75346_b" +f.moveSpeed = {} +/** + * + * + * Parent Class: EntityAIFollowParent + */ +f.moveSpeed.EntityAIFollowParent = "field_75347_c" +/** + * The speed the creature moves at during mating behavior. + * + * Parent Class: EntityAIMate + */ +f.moveSpeed.EntityAIMate = "field_75393_c" +/** + * + * + * Parent Class: Potion + */ +f.moveSpeed.Potion = "field_76424_c" + +/** + * The child that is following its parent. + * + * Parent Class: EntityAIFollowParent + */ +f.childAnimal = "field_75348_a" +/** + * If is true then the Entity has stopped Door Interaction and compoleted the task. + * + * Parent Class: EntityAIDoorInteract + */ +f.hasStoppedDoorInteraction = "field_75350_f" +/** + * + * + * Parent Class: EntityAIDoorInteract + */ +f.entityPositionX = "field_75351_g" +/** + * + * + * Parent Class: EntityAIDoorInteract + */ +f.entityPositionZ = "field_75357_h" +/** + * + * + * Parent Class: EntityAIBreakDoor + */ +f.previousBreakProgress = "field_75358_j" +/** + * + * + * Parent Class: EntityAIBreakDoor + */ +f.breakingTime = "field_75359_i" +/** + * "The temporisation before the entity close the door (in ticks + * + * Parent Class: EntityAIOpenDoor + */ +f.closeDoorTemporisation = "field_75360_j" +/** + * If the entity close the door + * + * Parent Class: EntityAIOpenDoor + */ +f.closeDoor = "field_75361_i" +/** + * + * + * Parent Class: EntityAIFleeSun + */ +f.shelterZ = "field_75368_d" +/** + * + * + * Parent Class: EntityAIFleeSun + */ +f.shelterX = "field_75370_b" +/** + * + * + * Parent Class: EntityAIFleeSun + */ +f.shelterY = "field_75371_c" +/** + * + * + * Parent Class: EntityAIFleeSun + */ +f.theCreature = "field_75372_a" +f.entityPathEntity = {} +/** + * The PathEntity of our entity + * + * Parent Class: EntityAIAvoidEntity + */ +f.entityPathEntity.EntityAIAvoidEntity = "field_75374_f" +/** + * The PathEntity of our entity. + * + * Parent Class: EntityAIAttackOnCollide + */ +f.entityPathEntity.EntityAIAttackOnCollide = "field_75438_g" + +f.entityPathNavigate = {} +/** + * The PathNavigate of our entity + * + * Parent Class: EntityAIAvoidEntity + */ +f.entityPathNavigate.EntityAIAvoidEntity = "field_75375_g" +/** + * The PathNavigate of our entity. + * + * Parent Class: EntityAIMoveThroughVillage + */ +f.entityPathNavigate.EntityAIMoveThroughVillage = "field_75419_c" + +/** + * + * + * Parent Class: EntityAIAvoidEntity + */ +f.closestLivingEntity = "field_75376_d" +/** + * + * + * Parent Class: EntityAIAvoidEntity + */ +f.farSpeed = "field_75378_b" +/** + * + * + * Parent Class: EntityAIAvoidEntity + */ +f.nearSpeed = "field_75379_c" +/** + * + * + * Parent Class: EntityAIBeg + */ +f.minPlayerDistance = "field_75383_d" +/** + * + * + * Parent Class: EntityAIBeg + */ +f.worldObject = "field_75386_c" +/** + * + * + * Parent Class: EntityAIBeg + */ +f.theWolf = "field_75387_a" +/** + * + * + * Parent Class: EntityAIMate + */ +f.theAnimal = "field_75390_d" +/** + * + * + * Parent Class: EntityAIMate + */ +f.targetMate = "field_75391_e" +/** + * Delay preventing a baby from spawning immediately when two mate-able animals find each other. + * + * Parent Class: EntityAIMate + */ +f.spawnBabyDelay = "field_75392_b" +/** + * + * + * Parent Class: EntityAIOcelotAttack + */ +f.attackCountdown = "field_75408_d" +/** + * + * + * Parent Class: EntityAIOcelotAttack + */ +f.theVictim = "field_75410_c" +/** + * + * + * Parent Class: EntityAIMoveThroughVillage + */ +f.doorList = "field_75415_f" +f.doorInfo = {} +/** + * + * + * Parent Class: EntityAIMoveThroughVillage + */ +f.doorInfo.EntityAIMoveThroughVillage = "field_75416_d" +/** + * + * + * Parent Class: EntityAIMoveIndoors + */ +f.doorInfo.EntityAIMoveIndoors = "field_75422_b" + +/** + * + * + * Parent Class: EntityAIMoveThroughVillage + */ +f.isNocturnal = "field_75417_e" +/** + * + * + * Parent Class: EntityAIMoveIndoors + */ +f.insidePosZ = "field_75421_d" +/** + * + * + * Parent Class: EntityAIMoveIndoors + */ +f.insidePosX = "field_75423_c" +/** + * "If the distance to the target entity is further than this + * + * Parent Class: EntityAIMoveTowardsTarget + */ +f.maxTargetDistance = "field_75426_g" +f.movePosY = {} +/** + * + * + * Parent Class: EntityAIMoveTowardsTarget + */ +f.movePosY.EntityAIMoveTowardsTarget = "field_75427_d" +/** + * + * + * Parent Class: EntityAIMoveTowardsRestriction + */ +f.movePosY.EntityAIMoveTowardsRestriction = "field_75435_c" + +f.movePosZ = {} +/** + * + * + * Parent Class: EntityAIMoveTowardsTarget + */ +f.movePosZ.EntityAIMoveTowardsTarget = "field_75428_e" +/** + * + * + * Parent Class: EntityAIMoveTowardsRestriction + */ +f.movePosZ.EntityAIMoveTowardsRestriction = "field_75432_d" + +f.movePosX = {} +/** + * + * + * Parent Class: EntityAIMoveTowardsTarget + */ +f.movePosX.EntityAIMoveTowardsTarget = "field_75430_c" +/** + * + * + * Parent Class: EntityAIMoveTowardsRestriction + */ +f.movePosX.EntityAIMoveTowardsRestriction = "field_75434_b" + +/** + * "When true + * + * Parent Class: EntityAIAttackOnCollide + */ +f.longMemory = "field_75437_f" +/** + * An amount of decrementing ticks that allows the entity to attack once the tick reaches 0. + * + * Parent Class: EntityAIAttackOnCollide + */ +f.attackTick = "field_75439_d" +/** + * The speed with which the mob will approach the target + * + * Parent Class: EntityAIAttackOnCollide + */ +f.speedTowardsTarget = "field_75440_e" +/** + * + * + * Parent Class: EntityAIAttackOnCollide + */ +f.classTarget = "field_75444_h" +/** + * + * + * Parent Class: EntityAIVillagerMate + */ +f.matingTimeout = "field_75449_e" +/** + * + * + * Parent Class: EntityAIVillagerMate + */ +f.mate = "field_75451_c" +f.zPosition = {} +/** + * + * + * Parent Class: EntityAIWander + */ +f.zPosition.EntityAIWander = "field_75453_d" +/** + * The z coordinate of the chunk. + * + * Parent Class: Chunk + */ +f.zPosition.Chunk = "field_76647_h" +/** + * The z coordinate of the BiomeCacheBlock. + * + * Parent Class: BiomeCache$Block + */ +f.zPosition.BiomeCache$Block = "field_76889_e" +/** + * + * + * Parent Class: Frustum + */ +f.zPosition.Frustum = "field_78549_d" + +/** + * "used to store a driection when the user passes a point to move towards or away from. WARNING: NEVER THREAD SAFE. MULTIPLE findTowards and findAway calls + * + * Parent Class: RandomPositionGenerator + */ +f.staticVector = "field_75465_a" +/** + * + * + * Parent Class: VillageDoorInfo + */ +f.lastActivityTimestamp = "field_75475_f" +/** + * + * + * Parent Class: VillageDoorInfo + */ +f.isDetachedFromVillageFlag = "field_75476_g" +/** + * + * + * Parent Class: VillageDoorInfo + */ +f.doorOpeningRestrictionCounter = "field_75482_h" +/** + * "Time + * + * Parent Class: PathNavigate + */ +f.totalTicks = "field_75510_g" +/** + * The number of blocks (extra) +/- in each axis that get pulled out as cache for the pathfinder's search space + * + * Parent Class: PathNavigate + */ +f.pathSearchRange = "field_75512_e" +/** + * The PathEntity being followed. + * + * Parent Class: PathNavigate + */ +f.currentPath = "field_75514_c" +/** + * The time when the last position check was done (to detect successful movement) + * + * Parent Class: PathNavigate + */ +f.ticksAtLastPos = "field_75520_h" +/** + * Coordinates of the entity's position last time a check was done (part of monitoring getting 'stuck') + * + * Parent Class: PathNavigate + */ +f.lastPosCheck = "field_75521_i" +/** + * Cache of entities which we can see + * + * Parent Class: EntitySenses + */ +f.seenEntities = "field_75524_b" +/** + * Cache of entities which we cannot see + * + * Parent Class: EntitySenses + */ +f.unseenEntities = "field_75525_c" +/** + * Instance of Village. + * + * Parent Class: VillageSiege + */ +f.theVillage = "field_75531_f" +/** + * + * + * Parent Class: VillageCollection + */ +f.villageList = "field_75552_d" +/** + * "This is a black hole. You can add data to this list through a public interface + * + * Parent Class: VillageCollection + */ +f.villagerPositionsList = "field_75554_b" +/** + * + * + * Parent Class: VillageCollection + */ +f.newDoors = "field_75555_c" +/** + * + * + * Parent Class: Village + */ +f.lastAddDoorTimestamp = "field_75580_f" +/** + * This is the actual village center. + * + * Parent Class: Village + */ +f.center = "field_75582_d" +/** + * + * + * Parent Class: Village + */ +f.villageRadius = "field_75583_e" +/** + * list of VillageDoorInfo objects + * + * Parent Class: Village + */ +f.villageDoorInfoList = "field_75584_b" +/** + * This is the sum of all door coordinates and used to calculate the actual village center by dividing by the number of doors. + * + * Parent Class: Village + */ +f.centerHelper = "field_75585_c" +/** + * + * + * Parent Class: Village + */ +f.numIronGolems = "field_75587_j" +/** + * + * + * Parent Class: Village + */ +f.numVillagers = "field_75588_h" +/** + * + * + * Parent Class: Village + */ +f.villageAgressors = "field_75589_i" +/** + * + * + * Parent Class: Village$VillageAggressor + */ +f.agressionTime = "field_75590_b" +/** + * + * + * Parent Class: Village$VillageAggressor + */ +f.agressor = "field_75592_a" +/** + * + * + * Parent Class: EnumCreatureType + */ +f.creatureMaterial = "field_75603_f" +/** + * A flag indicating whether this creature type is peaceful. + * + * Parent Class: EnumCreatureType + */ +f.isPeacefulCreature = "field_75604_g" +/** + * "The root class of creatures associated with this EnumCreatureType (IMobs for aggressive creatures + * + * Parent Class: EnumCreatureType + */ +f.creatureClass = "field_75605_d" +/** + * + * + * Parent Class: EnumCreatureType + */ +f.maxNumberOfCreature = "field_75606_e" +/** + * Base color of the egg + * + * Parent Class: EntityList$EntityEggInfo + */ +f.primaryColor = "field_75611_b" +/** + * Color of the egg spots + * + * Parent Class: EntityList$EntityEggInfo + */ +f.secondaryColor = "field_75612_c" +/** + * The entityID of the spawned mob + * + * Parent Class: EntityList$EntityEggInfo + */ +f.spawnedID = "field_75613_a" +/** + * provides a mapping between an entityID and an Entity Class + * + * Parent Class: EntityList + */ +f.idToClassMapping = "field_75623_d" +/** + * provides a mapping between an Entity Class and an entity ID + * + * Parent Class: EntityList + */ +f.classToIDMapping = "field_75624_e" +/** + * Provides a mapping between entity classes and a string + * + * Parent Class: EntityList + */ +f.stringToClassMapping = "field_75625_b" +/** + * Provides a mapping between a string and an entity classes + * + * Parent Class: EntityList + */ +f.classToStringMapping = "field_75626_c" +/** + * This is a HashMap of the Creative Entity Eggs/Spawners. + * + * Parent Class: EntityList + */ +f.entityEggs = "field_75627_a" +/** + * + * + * Parent Class: EntityMoveHelper + */ +f.update = "field_75643_f" +/** + * Whether or not the entity is trying to look at something. + * + * Parent Class: EntityLookHelper + */ +f.isLooking = "field_75655_d" +/** + * The amount of change that is made each update for an entity facing a direction. + * + * Parent Class: EntityLookHelper + */ +f.deltaLookYaw = "field_75657_b" +/** + * The amount of change that is made each update for an entity facing a direction. + * + * Parent Class: EntityLookHelper + */ +f.deltaLookPitch = "field_75658_c" +/** + * Used to progressively ajust the rotation of the body to the rotation of the head + * + * Parent Class: EntityBodyHelper + */ +f.rotationTickCounter = "field_75666_b" +/** + * + * + * Parent Class: EntityBodyHelper + */ +f.prevRenderYawHead = "field_75667_c" +/** + * Instance of EntityLiving. + * + * Parent Class: EntityBodyHelper + */ +f.theLiving = "field_75668_a" +/** + * + * + * Parent Class: DataWatcher$WatchableObject + */ +f.watched = "field_75675_d" +/** + * id of max 31 + * + * Parent Class: DataWatcher$WatchableObject + */ +f.dataValueId = "field_75676_b" +/** + * + * + * Parent Class: DataWatcher$WatchableObject + */ +f.watchedObject = "field_75677_c" +/** + * + * + * Parent Class: DataWatcher$WatchableObject + */ +f.objectType = "field_75678_a" +/** + * + * + * Parent Class: DataWatcher + */ +f.watchedObjects = "field_75695_b" +/** + * true if one or more object was changed + * + * Parent Class: DataWatcher + */ +f.objectChanged = "field_75696_c" +/** + * + * + * Parent Class: DataWatcher + */ +f.dataTypes = "field_75697_a" +f.offsetX = {} +/** + * + * + * Parent Class: EntityPainting$EnumArt + */ +f.offsetX.EntityPainting$EnumArt = "field_75699_D" +/** + * + * + * Parent Class: ModelRenderer + */ +f.offsetX.ModelRenderer = "field_82906_o" + +f.offsetY = {} +/** + * + * + * Parent Class: EntityPainting$EnumArt + */ +f.offsetY.EntityPainting$EnumArt = "field_75700_E" +/** + * + * + * Parent Class: ModelRenderer + */ +f.offsetY.ModelRenderer = "field_82908_p" + +/** + * + * + * Parent Class: EntityPainting$EnumArt + */ +f.sizeX = "field_75703_B" +/** + * + * + * Parent Class: EntityPainting$EnumArt + */ +f.sizeY = "field_75704_C" +f.priority = {} +/** + * Priority of the EntityAIBase + * + * Parent Class: EntityAITasks$EntityAITaskEntry + */ +f.priority.EntityAITasks$EntityAITaskEntry = "field_75731_b" +/** + * + * + * Parent Class: NextTickListEntry + */ +f.priority.NextTickListEntry = "field_82754_f" + +/** + * + * + * Parent Class: ThreadedFileIOBase + */ +f.savedIOCounter = "field_75737_d" +/** + * + * + * Parent Class: ThreadedFileIOBase + */ +f.isThreadWaiting = "field_75738_e" +/** + * + * + * Parent Class: ThreadedFileIOBase + */ +f.threadedIOQueue = "field_75739_b" +/** + * + * + * Parent Class: ThreadedFileIOBase + */ +f.writeQueuedCounter = "field_75740_c" +/** + * Instance of ThreadedFileIOBase + * + * Parent Class: ThreadedFileIOBase + */ +f.threadedIOInstance = "field_75741_a" +/** + * Map of MapDataBase id String prefixes ('map' etc) to max known unique Short id (the 0 part etc) for that prefix + * + * Parent Class: MapStorage + */ +f.idCounts = "field_75748_d" +/** + * Map of item data String id to loaded MapDataBases + * + * Parent Class: MapStorage + */ +f.loadedDataMap = "field_75749_b" +/** + * List of loaded MapDataBases. + * + * Parent Class: MapStorage + */ +f.loadedDataList = "field_75750_c" +/** + * The directory name of the world + * + * Parent Class: SaveHandler + */ +f.saveDirectoryName = "field_75767_f" +/** + * + * + * Parent Class: SaveHandler + */ +f.mapDataDir = "field_75768_d" +/** + * The time in milliseconds when this field was initialized. Stored in the session lock file. + * + * Parent Class: SaveHandler + */ +f.initializationTime = "field_75769_e" +/** + * The directory in which to save world data. + * + * Parent Class: SaveHandler + */ +f.worldDirectory = "field_75770_b" +/** + * The directory in which to save player data. + * + * Parent Class: SaveHandler + */ +f.playersDirectory = "field_75771_c" +/** + * + * + * Parent Class: EntityAITasks + */ +f.tickRate = "field_75779_e" +/** + * A list of EntityAITaskEntrys that are currently being executed. + * + * Parent Class: EntityAITasks + */ +f.executingTaskEntries = "field_75780_b" +/** + * A list of EntityAITaskEntrys in EntityAITasks. + * + * Parent Class: EntityAITasks + */ +f.taskEntries = "field_75782_a" +/** + * Instance of EnumGameType. + * + * Parent Class: SaveFormatComparator + */ +f.theEnumGameType = "field_75791_f" +f.hardcore = {} +/** + * + * + * Parent Class: SaveFormatComparator + */ +f.hardcore.SaveFormatComparator = "field_75792_g" +/** + * Hardcore mode flag + * + * Parent Class: WorldInfo + */ +f.hardcore.WorldInfo = "field_76111_s" + +f.sizeOnDisk = {} +/** + * + * + * Parent Class: SaveFormatComparator + */ +f.sizeOnDisk.SaveFormatComparator = "field_75793_d" +/** + * "The size of entire save of current world on the disk + * + * Parent Class: WorldInfo + */ +f.sizeOnDisk.WorldInfo = "field_76107_h" + +/** + * + * + * Parent Class: SaveFormatComparator + */ +f.requiresConversion = "field_75794_e" +f.lastTimePlayed = {} +/** + * + * + * Parent Class: SaveFormatComparator + */ +f.lastTimePlayed.SaveFormatComparator = "field_75796_c" +/** + * The last time the player was in this world. + * + * Parent Class: WorldInfo + */ +f.lastTimePlayed.WorldInfo = "field_76095_g" + +f.fileName = {} +/** + * the file name of this save + * + * Parent Class: SaveFormatComparator + */ +f.fileName.SaveFormatComparator = "field_75797_a" +/** + * + * + * Parent Class: RegionFile + */ +f.fileName.RegionFile = "field_76718_b" + +/** + * + * + * Parent Class: SaveFormatComparator + */ +f.cheatsEnabled = "field_75798_h" +/** + * Reference to the File object representing the directory for the world saves + * + * Parent Class: SaveFormatOld + */ +f.savesDirectory = "field_75808_a" +/** + * Save directory for chunks using the Anvil format + * + * Parent Class: AnvilChunkLoader + */ +f.chunkSaveLocation = "field_75825_d" +/** + * + * + * Parent Class: AnvilChunkLoader + */ +f.pendingAnvilChunksCoordinates = "field_75826_b" +/** + * + * + * Parent Class: AnvilChunkLoader + */ +f.chunksToRemove = "field_75828_a" +/** + * The linear distance to the next point + * + * Parent Class: PathPoint + */ +f.distanceToNext = "field_75833_f" +/** + * The distance to the target + * + * Parent Class: PathPoint + */ +f.distanceToTarget = "field_75834_g" +/** + * The distance along the path to this point + * + * Parent Class: PathPoint + */ +f.totalPathDistance = "field_75836_e" +/** + * The point preceding this in its assigned path + * + * Parent Class: PathPoint + */ +f.previous = "field_75841_h" +/** + * True if the pathfinder has already visited this point + * + * Parent Class: PathPoint + */ +f.visited = "field_75842_i" +/** + * Contains the points in this path + * + * Parent Class: Path + */ +f.pathPoints = "field_75852_a" +/** + * Selection of path points to add to the path + * + * Parent Class: PathFinder + */ +f.pathOptions = "field_75864_d" +/** + * The path being generated + * + * Parent Class: PathFinder + */ +f.path = "field_75866_b" +/** + * PathEntity Array Index the Entity is currently targeting + * + * Parent Class: PathEntity + */ +f.currentPathIndex = "field_75882_b" +/** + * The total length of the path + * + * Parent Class: PathEntity + */ +f.pathLength = "field_75883_c" +/** + * The actual points in the path + * + * Parent Class: PathEntity + */ +f.points = "field_75884_a" +/** + * base seed to the LCG prng provided via the constructor + * + * Parent Class: GenLayer + */ +f.baseSeed = "field_75906_d" +/** + * seed from World#getWorldSeed that is used in the LCG prng + * + * Parent Class: GenLayer + */ +f.worldGenSeed = "field_75907_b" +/** + * "final part of the LCG prng that uses the chunk X + * + * Parent Class: GenLayer + */ +f.chunkSeed = "field_75908_c" +/** + * + * + * Parent Class: GenLayerRiverMix + */ +f.biomePatternGeneratorChain = "field_75910_b" +/** + * + * + * Parent Class: GenLayerRiverMix + */ +f.riverPatternGeneratorChain = "field_75911_c" +/** + * Tracks the number of items a given block or item has been crafted. + * + * Parent Class: StatList + */ +f.objectCraftStats = "field_75928_D" +/** + * Tracks the number of times a given block or item has been used. + * + * Parent Class: StatList + */ +f.objectUseStats = "field_75929_E" +/** + * Tracks the number of times a given block or item has been broken. + * + * Parent Class: StatList + */ +f.objectBreakStats = "field_75930_F" +/** + * counts the number of times you've killed a player + * + * Parent Class: StatList + */ +f.playerKillsStat = "field_75932_A" +/** + * + * + * Parent Class: StatList + */ +f.fishCaughtStat = "field_75933_B" +/** + * + * + * Parent Class: StatList + */ +f.mineBlockStatArray = "field_75934_C" +/** + * Tracks the number of times a given block or item has been mined. + * + * Parent Class: StatList + */ +f.objectMineStats = "field_75939_e" +/** + * + * + * Parent Class: StatList + */ +f.allStats = "field_75940_b" +/** + * Tracks one-off stats. + * + * Parent Class: StatList + */ +f.oneShotStats = "field_75942_a" +/** + * the distance you have fallen + * + * Parent Class: StatList + */ +f.distanceFallenStat = "field_75943_n" +/** + * the distance you've climbed + * + * Parent Class: StatList + */ +f.distanceClimbedStat = "field_75944_o" +/** + * distance you've walked + * + * Parent Class: StatList + */ +f.distanceWalkedStat = "field_75945_l" +/** + * distance you have swam + * + * Parent Class: StatList + */ +f.distanceSwumStat = "field_75946_m" +/** + * number of times you've left a game + * + * Parent Class: StatList + */ +f.leaveGameStat = "field_75947_j" +/** + * number of minutes you have played + * + * Parent Class: StatList + */ +f.minutesPlayedStat = "field_75948_k" +/** + * the amount of damage you've dealt + * + * Parent Class: StatList + */ +f.damageDealtStat = "field_75951_w" +/** + * the distance you've dropped (or times you've fallen?) + * + * Parent Class: StatList + */ +f.dropStat = "field_75952_v" +/** + * the times you've jumped + * + * Parent Class: StatList + */ +f.jumpStat = "field_75953_u" +/** + * the distance you've traveled by pig + * + * Parent Class: StatList + */ +f.distanceByPigStat = "field_75954_t" +/** + * the distance you've traveled by boat + * + * Parent Class: StatList + */ +f.distanceByBoatStat = "field_75955_s" +/** + * the distance you've traveled by minecart + * + * Parent Class: StatList + */ +f.distanceByMinecartStat = "field_75956_r" +/** + * the distance you've dived + * + * Parent Class: StatList + */ +f.distanceDoveStat = "field_75957_q" +/** + * the distance you've flown + * + * Parent Class: StatList + */ +f.distanceFlownStat = "field_75958_p" +/** + * the number of mobs you have killed + * + * Parent Class: StatList + */ +f.mobKillsStat = "field_75959_z" +/** + * the number of times you have died + * + * Parent Class: StatList + */ +f.deathsStat = "field_75960_y" +/** + * the amount of damage you have taken + * + * Parent Class: StatList + */ +f.damageTakenStat = "field_75961_x" +/** + * + * + * Parent Class: StatBase + */ +f.isIndependent = "field_75972_f" +/** + * + * + * Parent Class: StatBase + */ +f.decimalFormat = "field_75974_d" +/** + * The Stat ID + * + * Parent Class: StatBase + */ +f.statId = "field_75975_e" +/** + * + * + * Parent Class: StatBase + */ +f.numberFormat = "field_75977_c" +/** + * The Stat name + * + * Parent Class: StatBase + */ +f.statName = "field_75978_a" +/** + * + * + * Parent Class: StatBase + */ +f.distanceStatType = "field_75979_j" +/** + * + * + * Parent Class: StatBase + */ +f.simpleStatType = "field_75980_h" +/** + * + * + * Parent Class: StatBase + */ +f.timeStatType = "field_75981_i" +/** + * Holds the ItemStack that will be used to draw the achievement into the GUI. + * + * Parent Class: Achievement + */ +f.theItemStack = "field_75990_d" +/** + * "Is the row (related to center of achievement gui + * + * Parent Class: Achievement + */ +f.displayRow = "field_75991_b" +/** + * "Holds the parent achievement + * + * Parent Class: Achievement + */ +f.parentAchievement = "field_75992_c" +/** + * "Is the column (related to center of achievement gui + * + * Parent Class: Achievement + */ +f.displayColumn = "field_75993_a" +/** + * "Holds a string formatter for the achievement + * + * Parent Class: Achievement + */ +f.statStringFormatter = "field_75994_l" +/** + * "Special achievements have a 'spiked' (on normal texture pack) frame + * + * Parent Class: Achievement + */ +f.isSpecial = "field_75995_m" +/** + * Is the 'Enchanter' achievement + * + * Parent Class: AchievementList + */ +f.enchantments = "field_75998_D" +/** + * + * + * Parent Class: AchievementList + */ +f.overkill = "field_75999_E" +/** + * Is the 'Librarian' achievement + * + * Parent Class: AchievementList + */ +f.bookcase = "field_76000_F" +/** + * Is the 'Local Brewery' achievement + * + * Parent Class: AchievementList + */ +f.potion = "field_76001_A" +/** + * Is the 'The End?' achievement + * + * Parent Class: AchievementList + */ +f.theEnd = "field_76002_B" +/** + * Is the 'The End.' achievement + * + * Parent Class: AchievementList + */ +f.theEnd2 = "field_76003_C" +/** + * Is the 'open inventory' achievement. + * + * Parent Class: AchievementList + */ +f.openInventory = "field_76004_f" +/** + * Is the 'getting wood' achievement. + * + * Parent Class: AchievementList + */ +f.mineWood = "field_76005_g" +/** + * Is the biggest row used to display a achievement on the GUI. + * + * Parent Class: AchievementList + */ +f.maxDisplayRow = "field_76006_d" +/** + * The list holding all achievements + * + * Parent Class: AchievementList + */ +f.achievementList = "field_76007_e" +/** + * Is the smallest row used to display a achievement on the GUI. + * + * Parent Class: AchievementList + */ +f.minDisplayRow = "field_76008_b" +/** + * Is the biggest column used to display a achievement on the GUI. + * + * Parent Class: AchievementList + */ +f.maxDisplayColumn = "field_76009_c" +/** + * Is the smallest column used to display a achievement on the GUI. + * + * Parent Class: AchievementList + */ +f.minDisplayColumn = "field_76010_a" +/** + * Is the 'the lie' achievement. + * + * Parent Class: AchievementList + */ +f.bakeCake = "field_76011_n" +/** + * Is the 'getting a upgrade' achievement. + * + * Parent Class: AchievementList + */ +f.buildBetterPickaxe = "field_76012_o" +/** + * Is the 'time to farm' achievement. + * + * Parent Class: AchievementList + */ +f.buildHoe = "field_76013_l" +/** + * Is the 'bake bread' achievement. + * + * Parent Class: AchievementList + */ +f.makeBread = "field_76014_m" +/** + * Is the 'hot topic' achievement. + * + * Parent Class: AchievementList + */ +f.buildFurnace = "field_76015_j" +/** + * Is the 'acquire hardware' achievement. + * + * Parent Class: AchievementList + */ +f.acquireIron = "field_76016_k" +/** + * Is the 'benchmarking' achievement. + * + * Parent Class: AchievementList + */ +f.buildWorkBench = "field_76017_h" +/** + * Is the 'time to mine' achievement. + * + * Parent Class: AchievementList + */ +f.buildPickaxe = "field_76018_i" +/** + * Is the 'DIAMONDS!' achievement + * + * Parent Class: AchievementList + */ +f.diamonds = "field_76019_w" +/** + * The achievement for killing a Skeleton from 50 meters aways. + * + * Parent Class: AchievementList + */ +f.snipeSkeleton = "field_76020_v" +/** + * Is the 'when pig fly' achievement. + * + * Parent Class: AchievementList + */ +f.flyPig = "field_76021_u" +/** + * is the 'cow tipper' achievement. + * + * Parent Class: AchievementList + */ +f.killCow = "field_76022_t" +/** + * Is the 'monster hunter' achievement. + * + * Parent Class: AchievementList + */ +f.killEnemy = "field_76023_s" +/** + * Is the 'time to strike' achievement. + * + * Parent Class: AchievementList + */ +f.buildSword = "field_76024_r" +/** + * Is the 'on a rail' achievement + * + * Parent Class: AchievementList + */ +f.onARail = "field_76025_q" +/** + * Is the 'delicious fish' achievement. + * + * Parent Class: AchievementList + */ +f.cookFish = "field_76026_p" +/** + * Is the 'Into Fire' achievement + * + * Parent Class: AchievementList + */ +f.blazeRod = "field_76027_z" +/** + * Is the 'Return to Sender' achievement + * + * Parent Class: AchievementList + */ +f.ghast = "field_76028_y" +/** + * The id of the hash slot computed from the hash + * + * Parent Class: IntHashMap$Entry + */ +f.slotHash = "field_76032_d" +/** + * The object stored in this entry + * + * Parent Class: IntHashMap$Entry + */ +f.valueEntry = "field_76033_b" +f.nextEntry = {} +/** + * The next entry in this slot + * + * Parent Class: IntHashMap$Entry + */ +f.nextEntry.IntHashMap$Entry = "field_76034_c" +/** + * the next hashentry in the table + * + * Parent Class: LongHashMap$Entry + */ +f.nextEntry.LongHashMap$Entry = "field_76149_c" + +/** + * The hash code of this entry + * + * Parent Class: IntHashMap$Entry + */ +f.hashEntry = "field_76035_a" +/** + * The scale factor used to determine when to grow the table + * + * Parent Class: IntHashMap + */ +f.growFactor = "field_76051_d" +/** + * An array of HashEntries representing the heads of hash slot lists + * + * Parent Class: IntHashMap + */ +f.slots = "field_76055_a" +/** + * The spawn zone position Y coordinate. + * + * Parent Class: WorldInfo + */ +f.spawnY = "field_76096_d" +/** + * The spawn zone position Z coordinate. + * + * Parent Class: WorldInfo + */ +f.spawnZ = "field_76097_e" +/** + * The spawn zone position X coordinate. + * + * Parent Class: WorldInfo + */ +f.spawnX = "field_76099_c" +/** + * Holds the seed of the currently world. + * + * Parent Class: WorldInfo + */ +f.randomSeed = "field_76100_a" +/** + * Number of ticks until next rain. + * + * Parent Class: WorldInfo + */ +f.rainTime = "field_76101_n" +/** + * Is thunderbolts failing now? + * + * Parent Class: WorldInfo + */ +f.thundering = "field_76102_o" +/** + * "Introduced in beta 1.3 + * + * Parent Class: WorldInfo + */ +f.saveVersion = "field_76103_l" +/** + * "True if it's raining + * + * Parent Class: WorldInfo + */ +f.raining = "field_76104_m" +/** + * The name of the save defined at world creation. + * + * Parent Class: WorldInfo + */ +f.levelName = "field_76106_k" +/** + * + * + * Parent Class: WorldInfo + */ +f.playerTag = "field_76108_i" +/** + * + * + * Parent Class: WorldInfo + */ +f.allowCommands = "field_76110_t" +f.theGameType = {} +/** + * The Game Type. + * + * Parent Class: WorldInfo + */ +f.theGameType.WorldInfo = "field_76113_q" +/** + * The EnumGameType. + * + * Parent Class: WorldSettings + */ +f.theGameType.WorldSettings = "field_77172_b" + +/** + * Number of ticks untils next thunderbolt. + * + * Parent Class: WorldInfo + */ +f.thunderTime = "field_76114_p" +/** + * Instance of WorldInfo. + * + * Parent Class: DerivedWorldInfo + */ +f.theWorldInfo = "field_76115_a" +/** + * + * + * Parent Class: LowerStringMap + */ +f.internalMap = "field_76117_a" +/** + * "A table of sin values computed from 0 (inclusive) to 2*pi (exclusive) + * + * Parent Class: MathHelper + */ +f.SIN_TABLE = "field_76144_a" +/** + * percent of the hasharray that can be used without hash colliding probably + * + * Parent Class: LongHashMap + */ +f.percentUseable = "field_76165_d" +/** + * count of times elements have been added/removed + * + * Parent Class: LongHashMap + */ +f.modCount = "field_76166_e" +/** + * the number of elements in the hash array + * + * Parent Class: LongHashMap + */ +f.numHashElements = "field_76167_b" +/** + * the maximum amount of elements in the hash (probably 3/4 the size due to meh hashing function) + * + * Parent Class: LongHashMap + */ +f.capacity = "field_76168_c" +/** + * the array of all elements in the hash + * + * Parent Class: LongHashMap + */ +f.hashArray = "field_76169_a" +/** + * The name of the map data nbt + * + * Parent Class: WorldSavedData + */ +f.mapName = "field_76190_i" +/** + * Holds a reference to the MapInfo of the players who own a copy of the map + * + * Parent Class: MapData + */ +f.playersArrayList = "field_76196_g" +/** + * + * + * Parent Class: MapData + */ +f.zCenter = "field_76199_b" +/** + * + * + * Parent Class: MapData + */ +f.xCenter = "field_76201_a" +/** + * Holds a reference to the players who own a copy of the map and a reference to their MapInfo + * + * Parent Class: MapData + */ +f.playersHashMap = "field_76202_j" +/** + * + * + * Parent Class: MapData + */ +f.mapDecorations = "field_76203_h" +/** + * Reference for EntityPlayer object in MapInfo + * + * Parent Class: MapData$MapInfo + */ +f.entityplayerObj = "field_76211_a" +/** + * The color index used to draw the blocks of this material on maps. + * + * Parent Class: Material + */ +f.materialMapColor = "field_76234_F" +/** + * Bool defining if the block can burn or not. + * + * Parent Class: Material + */ +f.canBurn = "field_76235_G" +/** + * "Determines whether blocks with this material can be ""overwritten"" by other blocks when placed - eg snow + * + * Parent Class: Material + */ +f.replaceable = "field_76239_H" +/** + * Indicates if the material is translucent + * + * Parent Class: Material + */ +f.isTranslucent = "field_76240_I" +/** + * Determines if the material can be harvested without a tool (or with the wrong tool) + * + * Parent Class: Material + */ +f.requiresNoTool = "field_76241_J" +/** + * "Mobility information flag. 0 indicates that this block is normal + * + * Parent Class: Material + */ +f.mobilityFlag = "field_76242_K" +/** + * "Holds all the 16 colors used on maps + * + * Parent Class: MapColor + */ +f.mapColorArray = "field_76281_a" +/** + * Holds the color in RGB value that will be rendered on maps. + * + * Parent Class: MapColor + */ +f.colorValue = "field_76291_p" +/** + * The Weight is how often the item is chosen(higher number is higher chance(lower is lower)) + * + * Parent Class: WeightedRandom$Item + */ +f.itemWeight = "field_76292_a" +/** + * The minimum stack size of generated item. + * + * Parent Class: WeightedRandomChestContent + */ +f.minStackSize = "field_76295_d" +f.maxStackSize = {} +/** + * The maximum stack size of generated item. + * + * Parent Class: WeightedRandomChestContent + */ +f.maxStackSize.WeightedRandomChestContent = "field_76296_e" +/** + * Maximum size of the stack. + * + * Parent Class: Item + */ +f.maxStackSize.Item = "field_77777_bU" + +/** + * The Item/Block ID to generate in the Chest. + * + * Parent Class: WeightedRandomChestContent + */ +f.theItemId = "field_76297_b" +/** + * + * + * Parent Class: BiomeGenBase$SpawnListEntry + */ +f.maxGroupCount = "field_76299_d" +/** + * Holds the class of the entity to be spawned. + * + * Parent Class: BiomeGenBase$SpawnListEntry + */ +f.entityClass = "field_76300_b" +/** + * + * + * Parent Class: BiomeGenBase$SpawnListEntry + */ +f.minGroupCount = "field_76301_c" +/** + * Enchantment object associated with this EnchantmentData + * + * Parent Class: EnchantmentData + */ +f.enchantmentobj = "field_76302_b" +/** + * Enchantment level associated with this EnchantmentData + * + * Parent Class: EnchantmentData + */ +f.enchantmentLevel = "field_76303_c" +/** + * + * + * Parent Class: NoiseGeneratorOctaves + */ +f.octaves = "field_76306_b" +/** + * Collection of noise generation functions. Output is combined to produce different octaves of noise. + * + * Parent Class: NoiseGeneratorOctaves + */ +f.generatorCollection = "field_76307_a" +/** + * "An int[512] + * + * Parent Class: NoiseGeneratorImproved + */ +f.permutations = "field_76312_d" +/** + * Current profiling section + * + * Parent Class: Profiler + */ +f.profilingSection = "field_76323_d" +/** + * Profiling map + * + * Parent Class: Profiler + */ +f.profilingMap = "field_76324_e" +/** + * List of parent sections + * + * Parent Class: Profiler + */ +f.sectionList = "field_76325_b" +/** + * List of timestamps (System.nanoTime) + * + * Parent Class: Profiler + */ +f.timestampList = "field_76326_c" +/** + * Flag profiling enabled + * + * Parent Class: Profiler + */ +f.profilingEnabled = "field_76327_a" +/** + * + * + * Parent Class: StringUtils + */ +f.patternControlCode = "field_76339_a" +/** + * + * + * Parent Class: DamageSource + */ +f.starve = "field_76366_f" +/** + * + * + * Parent Class: DamageSource + */ +f.inWall = "field_76368_d" +/** + * + * + * Parent Class: DamageSource + */ +f.drown = "field_76369_e" +/** + * + * + * Parent Class: DamageSource + */ +f.onFire = "field_76370_b" +/** + * + * + * Parent Class: DamageSource + */ +f.inFire = "field_76372_a" +f.damageType = {} +/** + * + * + * Parent Class: DamageSource + */ +f.damageType.DamageSource = "field_76373_n" +/** + * "Defines the type of damage of the enchantment + * + * Parent Class: EnchantmentDamage + */ +f.damageType.EnchantmentDamage = "field_77361_a" + +/** + * This kind of damage can be blocked or not. + * + * Parent Class: DamageSource + */ +f.isUnblockable = "field_76374_o" +/** + * + * + * Parent Class: DamageSource + */ +f.magic = "field_76376_m" +/** + * + * + * Parent Class: DamageSource + */ +f.generic = "field_76377_j" +/** + * + * + * Parent Class: DamageSource + */ +f.explosion = "field_76378_k" +/** + * + * + * Parent Class: DamageSource + */ +f.fall = "field_76379_h" +/** + * + * + * Parent Class: DamageSource + */ +f.outOfWorld = "field_76380_i" +/** + * Whether this damage source will have its damage amount scaled based on the current difficulty. + * + * Parent Class: DamageSource + */ +f.difficultyScaled = "field_76381_t" +/** + * This kind of damage is based on a projectile or not. + * + * Parent Class: DamageSource + */ +f.projectile = "field_76382_s" +/** + * This kind of damage is based on fire or not. + * + * Parent Class: DamageSource + */ +f.fireDamage = "field_76383_r" +/** + * + * + * Parent Class: DamageSource + */ +f.hungerDamage = "field_76384_q" +/** + * + * + * Parent Class: DamageSource + */ +f.isDamageAllowedInCreativeMode = "field_76385_p" +/** + * + * + * Parent Class: EntityDamageSource + */ +f.damageSourceEntity = "field_76386_o" +/** + * + * + * Parent Class: EntityDamageSourceIndirect + */ +f.indirectEntity = "field_76387_p" +/** + * + * + * Parent Class: Potion + */ +f.effectiveness = "field_76412_L" +/** + * + * + * Parent Class: Potion + */ +f.usable = "field_76413_M" +/** + * Is the color of the liquid for this potion. + * + * Parent Class: Potion + */ +f.liquidColor = "field_76414_N" +/** + * The index for the icon displayed when the potion effect is active. + * + * Parent Class: Potion + */ +f.statusIconIndex = "field_76417_J" +/** + * This field indicated if the effect is 'bad' - negative - for the entity. + * + * Parent Class: Potion + */ +f.isBadEffect = "field_76418_K" +/** + * + * + * Parent Class: Potion + */ +f.digSlowdown = "field_76419_f" +/** + * + * + * Parent Class: Potion + */ +f.damageBoost = "field_76420_g" +/** + * + * + * Parent Class: Potion + */ +f.moveSlowdown = "field_76421_d" +/** + * + * + * Parent Class: Potion + */ +f.digSpeed = "field_76422_e" +/** + * The array of potion types. + * + * Parent Class: Potion + */ +f.potionTypes = "field_76425_a" +/** + * The water breathing Potion object. + * + * Parent Class: Potion + */ +f.waterBreathing = "field_76427_o" +/** + * The regeneration Potion object. + * + * Parent Class: Potion + */ +f.regeneration = "field_76428_l" +/** + * + * + * Parent Class: Potion + */ +f.resistance = "field_76429_m" +f.jump = {} +/** + * + * + * Parent Class: Potion + */ +f.jump.Potion = "field_76430_j" +/** + * + * + * Parent Class: MovementInput + */ +f.jump.MovementInput = "field_78901_c" + +/** + * + * + * Parent Class: Potion + */ +f.confusion = "field_76431_k" +/** + * + * + * Parent Class: Potion + */ +f.heal = "field_76432_h" +/** + * + * + * Parent Class: Potion + */ +f.harm = "field_76433_i" +/** + * The poison Potion object. + * + * Parent Class: Potion + */ +f.poison = "field_76436_u" +/** + * The weakness Potion object. + * + * Parent Class: Potion + */ +f.weakness = "field_76437_t" +/** + * The hunger Potion object. + * + * Parent Class: Potion + */ +f.hunger = "field_76438_s" +/** + * The night vision Potion object. + * + * Parent Class: Potion + */ +f.nightVision = "field_76439_r" +/** + * The blindness Potion object. + * + * Parent Class: Potion + */ +f.blindness = "field_76440_q" +/** + * The invisibility Potion object. + * + * Parent Class: Potion + */ +f.invisibility = "field_76441_p" +/** + * The absorption Potion object. + * + * Parent Class: Potion + */ +f.absorption = "field_76444_x" +/** + * A list of pre-allocated int[cacheSize] arrays that are currently unused and can be returned by getIntCache() + * + * Parent Class: IntCache + */ +f.freeLargeArrays = "field_76447_d" +/** + * A list of pre-allocated int[cacheSize] arrays that were previously returned by getIntCache() and which will not be re-used again until resetIntCache() is called. + * + * Parent Class: IntCache + */ +f.inUseLargeArrays = "field_76448_e" +/** + * A list of pre-allocated int[256] arrays that are currently unused and can be returned by getIntCache() + * + * Parent Class: IntCache + */ +f.freeSmallArrays = "field_76449_b" +/** + * A list of pre-allocated int[256] arrays that were previously returned by getIntCache() and which will not be re-used again until resetIntCache() is called. + * + * Parent Class: IntCache + */ +f.inUseSmallArrays = "field_76450_c" +/** + * + * + * Parent Class: IntCache + */ +f.intCacheSize = "field_76451_a" +/** + * ID value of the potion this effect matches. + * + * Parent Class: PotionEffect + */ +f.potionID = "field_76462_a" +/** + * + * + * Parent Class: PlayerUsageSnooper + */ +f.playerStatsCollector = "field_76478_d" +/** + * set to fire the snooperThread every 15 mins + * + * Parent Class: PlayerUsageSnooper + */ +f.threadTrigger = "field_76479_e" +/** + * + * + * Parent Class: PlayerUsageSnooper + */ +f.uniqueID = "field_76480_b" +/** + * URL of the server to send the report to + * + * Parent Class: PlayerUsageSnooper + */ +f.serverUrl = "field_76481_c" +/** + * incremented on every getSelfCounterFor + * + * Parent Class: PlayerUsageSnooper + */ +f.selfCounter = "field_76483_h" +/** + * "Sets wither or not the generator should notify blocks of blocks it changes. When the world is first generated + * + * Parent Class: WorldGenerator + */ +f.doBlockNotify = "field_76488_a" +/** + * + * + * Parent Class: WorldGenBigTree + */ +f.heightAttenuation = "field_76502_g" +/** + * + * + * Parent Class: WorldGenBigTree + */ +f.heightLimit = "field_76504_e" +/** + * Sets the distance limit for how far away the generator will populate leaves from the base leaf node. + * + * Parent Class: WorldGenBigTree + */ +f.leafDistanceLimit = "field_76508_n" +/** + * + * + * Parent Class: WorldGenBigTree + */ +f.leafDensity = "field_76513_k" +f.numberOfBlocks = {} +/** + * The number of blocks to generate. + * + * Parent Class: WorldGenClay + */ +f.numberOfBlocks.WorldGenClay = "field_76517_b" +/** + * The number of blocks to generate. + * + * Parent Class: WorldGenMinable + */ +f.numberOfBlocks.WorldGenMinable = "field_76541_b" + +/** + * The base height of the tree + * + * Parent Class: WorldGenHugeTrees + */ +f.baseHeight = "field_76522_a" +/** + * "The mushroom type. 0 for brown + * + * Parent Class: WorldGenBigMushroom + */ +f.mushroomType = "field_76523_a" +/** + * The metadata value of the leaves to use in tree generation. + * + * Parent Class: WorldGenTrees + */ +f.metaLeaves = "field_76530_d" +/** + * True if this tree should grow Vines. + * + * Parent Class: WorldGenTrees + */ +f.vinesGrow = "field_76531_b" +/** + * The metadata value of the wood to use in tree generation. + * + * Parent Class: WorldGenTrees + */ +f.metaWood = "field_76532_c" +/** + * The minimum height of a generated tree. + * + * Parent Class: WorldGenTrees + */ +f.minTreeHeight = "field_76533_a" +/** + * The maximum radius used when generating a patch of blocks. + * + * Parent Class: WorldGenSand + */ +f.radius = "field_76539_b" +/** + * Value of this int will determine how much items gonna generate in Bonus Chest. + * + * Parent Class: WorldGeneratorBonusChest + */ +f.itemsToGenerateInBonusChest = "field_76545_b" +/** + * A map containing Files as keys and RegionFiles as values + * + * Parent Class: RegionFileCache + */ +f.regionsByFilename = "field_76553_a" +/** + * Light to brightness conversion table + * + * Parent Class: WorldProvider + */ +f.lightBrightnessTable = "field_76573_f" +/** + * "The id for the dimension (ex. -1: Nether + * + * Parent Class: WorldProvider + */ +f.dimensionId = "field_76574_g" +/** + * States whether the Hell world provider is used(true) or if the normal world provider is used(false) + * + * Parent Class: WorldProvider + */ +f.isHellWorld = "field_76575_d" +/** + * A boolean that tells if a world does not have a sky. Used in calculating weather and skylight + * + * Parent Class: WorldProvider + */ +f.hasNoSky = "field_76576_e" +/** + * World chunk manager being used to generate chunks + * + * Parent Class: WorldProvider + */ +f.worldChunkMgr = "field_76578_c" +/** + * Array for sunrise/sunset colors (RGBA) + * + * Parent Class: WorldProvider + */ +f.colorsSunriseSunset = "field_76580_h" +/** + * + * + * Parent Class: Chunk + */ +f.heightMap = "field_76634_f" +/** + * Whether or not this Chunk is currently loaded into the World + * + * Parent Class: Chunk + */ +f.isChunkLoaded = "field_76636_d" +/** + * "A map + * + * Parent Class: Chunk + */ +f.precipitationHeightMap = "field_76638_b" +/** + * Which columns need their skylightMaps updated. + * + * Parent Class: Chunk + */ +f.updateSkylightColumns = "field_76639_c" +/** + * The time according to World.worldTime when this chunk was last saved + * + * Parent Class: Chunk + */ +f.lastSaveTime = "field_76641_n" +/** + * Set to true if the chunk has been modified and needs to be updated internally. + * + * Parent Class: Chunk + */ +f.isModified = "field_76643_l" +/** + * Whether this Chunk has any Entities and thus requires saving on every tick + * + * Parent Class: Chunk + */ +f.hasEntities = "field_76644_m" +/** + * Array of Lists containing the entities in this Chunk. Each List represents a 16 block subchunk. + * + * Parent Class: Chunk + */ +f.entityLists = "field_76645_j" +/** + * Boolean value indicating if the terrain is populated. + * + * Parent Class: Chunk + */ +f.isTerrainPopulated = "field_76646_k" +/** + * "Contains the current round-robin relight check index + * + * Parent Class: Chunk + */ +f.queuedLightChecks = "field_76649_t" +/** + * + * + * Parent Class: Chunk + */ +f.isGapLightingUpdated = "field_76650_s" +/** + * Contains a 16x16 mapping on the X/Z plane of the biome ID to which each colum belongs. + * + * Parent Class: Chunk + */ +f.blockBiomeArray = "field_76651_r" +/** + * "Used to store block IDs + * + * Parent Class: Chunk + */ +f.storageArrays = "field_76652_q" +/** + * The NibbleArray containing a block of Block-light data. + * + * Parent Class: ExtendedBlockStorage + */ +f.blocklightArray = "field_76679_g" +/** + * A total count of the number of non-air blocks in this block storage's Chunk. + * + * Parent Class: ExtendedBlockStorage + */ +f.blockRefCount = "field_76682_b" +/** + * Contains the number of blocks in this block storage's parent chunk that require random ticking. Used to cull the Chunk from random tick updates for performance reasons. + * + * Parent Class: ExtendedBlockStorage + */ +f.tickRefCount = "field_76683_c" +/** + * Contains the bottom-most Y block represented by this ExtendedBlockStorage. Typically a multiple of 16. + * + * Parent Class: ExtendedBlockStorage + */ +f.yBase = "field_76684_a" +/** + * The NibbleArray containing a block of Sky-light data. + * + * Parent Class: ExtendedBlockStorage + */ +f.skylightArray = "field_76685_h" +/** + * + * + * Parent Class: NibbleArrayReader + */ +f.depthBits = "field_76687_b" +/** + * + * + * Parent Class: NibbleArrayReader + */ +f.depthBitsPlusFour = "field_76688_c" +/** + * + * + * Parent Class: ChunkLoader$AnvilConverterData + */ +f.blocks = "field_76693_g" +/** + * + * + * Parent Class: ChunkLoader$AnvilConverterData + */ +f.blockLight = "field_76694_d" +/** + * + * + * Parent Class: ChunkLoader$AnvilConverterData + */ +f.skyLight = "field_76695_e" +/** + * + * + * Parent Class: ChunkLoader$AnvilConverterData + */ +f.terrainPopulated = "field_76696_b" +/** + * + * + * Parent Class: ChunkLoader$AnvilConverterData + */ +f.heightmap = "field_76697_c" +/** + * + * + * Parent Class: ChunkLoader$AnvilConverterData + */ +f.lastUpdated = "field_76698_a" +/** + * + * + * Parent Class: ChunkLoader$AnvilConverterData + */ +f.entities = "field_76702_h" +/** + * + * + * Parent Class: RegionFile + */ +f.sectorFree = "field_76714_f" +/** + * McRegion sizeDelta + * + * Parent Class: RegionFile + */ +f.sizeDelta = "field_76715_g" +/** + * + * + * Parent Class: RegionFile + */ +f.chunkTimestamps = "field_76717_e" +/** + * + * + * Parent Class: RegionFile + */ +f.dataFile = "field_76719_c" +/** + * + * + * Parent Class: RegionFile + */ +f.emptySector = "field_76720_a" +/** + * + * + * Parent Class: RegionFile + */ +f.lastModified = "field_76721_h" +/** + * The minimum height of this biome. Default 0.1. + * + * Parent Class: BiomeGenBase + */ +f.minHeight = "field_76748_D" +f.maxHeight = {} +/** + * The maximum height of this biome. Default 0.3. + * + * Parent Class: BiomeGenBase + */ +f.maxHeight.BiomeGenBase = "field_76749_E" +/** + * + * + * Parent Class: Stitcher + */ +f.maxHeight.Stitcher = "field_94313_f" + +/** + * The temperature of this biome. + * + * Parent Class: BiomeGenBase + */ +f.temperature = "field_76750_F" +f.rainfall = {} +/** + * The rainfall in this biome. + * + * Parent Class: BiomeGenBase + */ +f.rainfall.BiomeGenBase = "field_76751_G" +/** + * The rainfall in the world + * + * Parent Class: WorldChunkManagerHell + */ +f.rainfall.WorldChunkManagerHell = "field_76946_f" + +/** + * The block expected to be on the top of this biome + * + * Parent Class: BiomeGenBase + */ +f.topBlock = "field_76752_A" +/** + * The block to fill spots in when not on the top + * + * Parent Class: BiomeGenBase + */ +f.fillerBlock = "field_76753_B" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.fillerBlockMetadata = "field_76754_C" +/** + * Holds the classes of any aquatic creature that can be spawned in the water of the biome. + * + * Parent Class: BiomeGenBase + */ +f.spawnableWaterCreatureList = "field_76755_L" +/** + * "The id number to this biome + * + * Parent Class: BiomeGenBase + */ +f.biomeID = "field_76756_M" +/** + * The tree generator. + * + * Parent Class: BiomeGenBase + */ +f.worldGeneratorTrees = "field_76757_N" +/** + * The big tree generator. + * + * Parent Class: BiomeGenBase + */ +f.worldGeneratorBigTree = "field_76758_O" +/** + * Color tint applied to water depending on biome + * + * Parent Class: BiomeGenBase + */ +f.waterColorMultiplier = "field_76759_H" +/** + * The biome decorator. + * + * Parent Class: BiomeGenBase + */ +f.theBiomeDecorator = "field_76760_I" +/** + * Holds the classes of IMobs (hostile mobs) that can be spawned in the biome. + * + * Parent Class: BiomeGenBase + */ +f.spawnableMonsterList = "field_76761_J" +/** + * Holds the classes of any creature that can be spawned in the biome as friendly creature. + * + * Parent Class: BiomeGenBase + */ +f.spawnableCreatureList = "field_76762_K" +/** + * The swamp tree generator. + * + * Parent Class: BiomeGenBase + */ +f.worldGeneratorSwamp = "field_76763_Q" +/** + * Is true (default) if the biome support rain (desert and nether can't have rain) + * + * Parent Class: BiomeGenBase + */ +f.enableRain = "field_76765_S" +/** + * Set to true if snow is enabled for this biome. + * + * Parent Class: BiomeGenBase + */ +f.enableSnow = "field_76766_R" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.forest = "field_76767_f" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.taiga = "field_76768_g" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.desert = "field_76769_d" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.extremeHills = "field_76770_e" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.ocean = "field_76771_b" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.plains = "field_76772_c" +/** + * "An array of all the biomes + * + * Parent Class: BiomeGenBase + */ +f.biomeList = "field_76773_a" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.icePlains = "field_76774_n" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.iceMountains = "field_76775_o" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.frozenOcean = "field_76776_l" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.frozenRiver = "field_76777_m" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.hell = "field_76778_j" +/** + * Is the biome used for sky world. + * + * Parent Class: BiomeGenBase + */ +f.sky = "field_76779_k" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.swampland = "field_76780_h" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.river = "field_76781_i" +/** + * Jungle biome identifier + * + * Parent Class: BiomeGenBase + */ +f.jungle = "field_76782_w" +/** + * Extreme Hills Edge biome. + * + * Parent Class: BiomeGenBase + */ +f.extremeHillsEdge = "field_76783_v" +/** + * Taiga Hills biome. + * + * Parent Class: BiomeGenBase + */ +f.taigaHills = "field_76784_u" +/** + * Forest Hills biome. + * + * Parent Class: BiomeGenBase + */ +f.forestHills = "field_76785_t" +/** + * Desert Hills biome. + * + * Parent Class: BiomeGenBase + */ +f.desertHills = "field_76786_s" +/** + * Beach biome. + * + * Parent Class: BiomeGenBase + */ +f.beach = "field_76787_r" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.mushroomIslandShore = "field_76788_q" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.mushroomIsland = "field_76789_p" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.biomeName = "field_76791_y" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.jungleHills = "field_76792_x" +/** + * "The number of extra mushroom patches per chunk. It generates 1/4 this number in brown mushroom patches + * + * Parent Class: BiomeDecorator + */ +f.mushroomsPerChunk = "field_76798_D" +/** + * The number of reeds to generate per chunk. Reeds won't generate if the randomly selected placement is unsuitable. + * + * Parent Class: BiomeDecorator + */ +f.reedsPerChunk = "field_76799_E" +/** + * The number of cactus plants to generate per chunk. Cacti only work on sand. + * + * Parent Class: BiomeDecorator + */ +f.cactiPerChunk = "field_76800_F" +/** + * The number of sand patches to generate per chunk. Sand patches only generate when part of it is underwater. + * + * Parent Class: BiomeDecorator + */ +f.sandPerChunk = "field_76801_G" +/** + * "The number of yellow flower patches to generate per chunk. The game generates much less than this number + * + * Parent Class: BiomeDecorator + */ +f.flowersPerChunk = "field_76802_A" +/** + * The amount of tall grass to generate per chunk. + * + * Parent Class: BiomeDecorator + */ +f.grassPerChunk = "field_76803_B" +/** + * The number of dead bushes to generate per chunk. Used in deserts and swamps. + * + * Parent Class: BiomeDecorator + */ +f.deadBushPerChunk = "field_76804_C" +/** + * The number of sand patches to generate per chunk. Sand patches only generate when part of it is underwater. There appear to be two separate fields for this. + * + * Parent Class: BiomeDecorator + */ +f.sandPerChunk2 = "field_76805_H" +/** + * The number of clay patches to generate per chunk. Only generates when part of it is underwater. + * + * Parent Class: BiomeDecorator + */ +f.clayPerChunk = "field_76806_I" +/** + * Amount of big mushrooms per chunk + * + * Parent Class: BiomeDecorator + */ +f.bigMushroomsPerChunk = "field_76807_J" +/** + * True if decorator should generate surface lava & water + * + * Parent Class: BiomeDecorator + */ +f.generateLakes = "field_76808_K" +/** + * The clay generator. + * + * Parent Class: BiomeDecorator + */ +f.clayGen = "field_76809_f" +/** + * The sand generator. + * + * Parent Class: BiomeDecorator + */ +f.sandGen = "field_76810_g" +/** + * The Biome Decorator's random number generator. + * + * Parent Class: BiomeDecorator + */ +f.randomGenerator = "field_76813_b" +/** + * The world the BiomeDecorator is currently decorating + * + * Parent Class: BiomeDecorator + */ +f.currentWorld = "field_76815_a" +/** + * + * + * Parent Class: BiomeDecorator + */ +f.ironGen = "field_76818_l" +/** + * Field that holds gold WorldGenMinable + * + * Parent Class: BiomeDecorator + */ +f.goldGen = "field_76819_m" +/** + * + * + * Parent Class: BiomeDecorator + */ +f.gravelGen = "field_76820_j" +/** + * + * + * Parent Class: BiomeDecorator + */ +f.coalGen = "field_76821_k" +/** + * The gravel generator. + * + * Parent Class: BiomeDecorator + */ +f.gravelAsSandGen = "field_76822_h" +/** + * The dirt generator. + * + * Parent Class: BiomeDecorator + */ +f.dirtGen = "field_76823_i" +/** + * Field that holds WorldGenCactus + * + * Parent Class: BiomeDecorator + */ +f.cactusGen = "field_76824_w" +/** + * Field that holds WorldGenReed + * + * Parent Class: BiomeDecorator + */ +f.reedGen = "field_76825_v" +/** + * Field that holds big mushroom generator + * + * Parent Class: BiomeDecorator + */ +f.bigMushroomGen = "field_76826_u" +/** + * Field that holds mushroomRed WorldGenFlowers + * + * Parent Class: BiomeDecorator + */ +f.mushroomRedGen = "field_76827_t" +/** + * Field that holds mushroomBrown WorldGenFlowers + * + * Parent Class: BiomeDecorator + */ +f.mushroomBrownGen = "field_76828_s" +/** + * Field that holds Lapis WorldGenMinable + * + * Parent Class: BiomeDecorator + */ +f.lapisGen = "field_76831_p" +/** + * "The number of trees to attempt to generate per chunk. Up to 10 in forests + * + * Parent Class: BiomeDecorator + */ +f.treesPerChunk = "field_76832_z" +/** + * Amount of waterlilys per chunk. + * + * Parent Class: BiomeDecorator + */ +f.waterlilyPerChunk = "field_76833_y" +/** + * The water lily generation! + * + * Parent Class: BiomeDecorator + */ +f.waterlilyGen = "field_76834_x" +/** + * + * + * Parent Class: BiomeEndDecorator + */ +f.spikeGen = "field_76835_L" +/** + * The list of cached BiomeCacheBlocks + * + * Parent Class: BiomeCache + */ +f.cache = "field_76841_d" +/** + * "The last time this BiomeCache was cleaned + * + * Parent Class: BiomeCache + */ +f.lastCleanupTime = "field_76842_b" +/** + * "The map of keys to BiomeCacheBlocks. Keys are based on the chunk x + * + * Parent Class: BiomeCache + */ +f.cacheMap = "field_76843_c" +/** + * Reference to the WorldChunkManager + * + * Parent Class: BiomeCache + */ +f.chunkManager = "field_76844_a" +/** + * "The last time this BiomeCacheBlock was accessed + * + * Parent Class: BiomeCache$Block + */ +f.lastAccessTime = "field_76886_f" +/** + * An array of chunk rainfall values saved by this cache. + * + * Parent Class: BiomeCache$Block + */ +f.rainfallValues = "field_76890_b" +/** + * The array of biome types stored in this BiomeCacheBlock. + * + * Parent Class: BiomeCache$Block + */ +f.biomes = "field_76891_c" +/** + * The biome list. + * + * Parent Class: WorldChunkManager + */ +f.biomeCache = "field_76942_f" +/** + * A list of biomes that the player can spawn in. + * + * Parent Class: WorldChunkManager + */ +f.biomesToSpawnIn = "field_76943_g" +/** + * + * + * Parent Class: WorldChunkManager + */ +f.genBiomes = "field_76944_d" +/** + * A GenLayer containing the indices into BiomeGenBase.biomeList[] + * + * Parent Class: WorldChunkManager + */ +f.biomeIndexLayer = "field_76945_e" +/** + * The biome generator object. + * + * Parent Class: WorldChunkManagerHell + */ +f.biomeGenerator = "field_76947_d" +/** + * Determines the darkness of the object's shadow. Higher value makes a darker shadow. + * + * Parent Class: Render + */ +f.shadowOpaque = "field_76987_f" +/** + * + * + * Parent Class: Render + */ +f.shadowSize = "field_76989_e" +/** + * + * + * Parent Class: RenderEnderCrystal + */ +f.modelEnderCrystal = "field_76995_b" +/** + * instance of ModelBoat for rendering + * + * Parent Class: RenderBoat + */ +f.modelBoat = "field_76998_a" +/** + * instance of ModelMinecart for rendering + * + * Parent Class: RenderMinecart + */ +f.modelMinecart = "field_77013_a" +/** + * + * + * Parent Class: RendererLivingEntity + */ +f.mainModel = "field_77045_g" +/** + * + * + * Parent Class: RenderBiped + */ +f.modelBipedMain = "field_77071_a" +/** + * The model of the enderman + * + * Parent Class: RenderEnderman + */ +f.endermanModel = "field_77078_a" +/** + * An instance of the dragon model in RenderDragon + * + * Parent Class: RenderDragon + */ +f.modelDragon = "field_77084_b" +/** + * The int version of the ChunkProvider that generated this world. + * + * Parent Class: WorldType + */ +f.generatorVersion = "field_77134_g" +/** + * Large Biome world Type. + * + * Parent Class: WorldType + */ +f.LARGE_BIOMES = "field_77135_d" +/** + * Default (1.1) world type. + * + * Parent Class: WorldType + */ +f.DEFAULT_1_1 = "field_77136_e" +/** + * Flat world type. + * + * Parent Class: WorldType + */ +f.FLAT = "field_77138_c" +/** + * List of world types. + * + * Parent Class: WorldType + */ +f.worldTypes = "field_77139_a" +/** + * Whether this world type can be generated. Normally true; set to false for out-of-date generator versions. + * + * Parent Class: WorldType + */ +f.canBeCreated = "field_77140_h" +/** + * Whether this WorldType has a version or not. + * + * Parent Class: WorldType + */ +f.isWorldTypeVersioned = "field_77141_i" +/** + * True if Commands (cheats) are allowed. + * + * Parent Class: WorldSettings + */ +f.commandsAllowed = "field_77168_f" +/** + * True if hardcore mode is enabled + * + * Parent Class: WorldSettings + */ +f.hardcoreEnabled = "field_77170_d" +/** + * The seed for the map. + * + * Parent Class: WorldSettings + */ +f.seed = "field_77174_a" +/** + * The id number for the next tick entry + * + * Parent Class: NextTickListEntry + */ +f.nextTickEntryID = "field_77177_f" +/** + * The id of the tick entry + * + * Parent Class: NextTickListEntry + */ +f.tickEntryID = "field_77178_g" +/** + * Time this tick is scheduled to occur at + * + * Parent Class: NextTickListEntry + */ +f.scheduledTime = "field_77180_e" +/** + * The 17x17 area around the player where mobs can spawn + * + * Parent Class: SpawnerAnimals + */ +f.eligibleChunksForSpawning = "field_77193_b" +/** + * + * + * Parent Class: EnumSkyBlock + */ +f.defaultLightValue = "field_77198_c" +/** + * The Z position of this Chunk Coordinate Pair + * + * Parent Class: ChunkCoordIntPair + */ +f.chunkZPos = "field_77275_b" +/** + * The X position of this Chunk Coordinate Pair + * + * Parent Class: ChunkCoordIntPair + */ +f.chunkXPos = "field_77276_a" +/** + * + * + * Parent Class: Explosion + */ +f.explosionSize = "field_77280_f" +/** + * + * + * Parent Class: Explosion + */ +f.explosionZ = "field_77282_d" +/** + * + * + * Parent Class: Explosion + */ +f.exploder = "field_77283_e" +/** + * + * + * Parent Class: Explosion + */ +f.explosionX = "field_77284_b" +/** + * + * + * Parent Class: Explosion + */ +f.explosionY = "field_77285_c" +/** + * whether or not the explosion sets fire to blocks around it + * + * Parent Class: Explosion + */ +f.isFlaming = "field_77286_a" +/** + * "Maps players to the knockback vector applied by the explosion + * + * Parent Class: Explosion + */ +f.playerKnockbackMap = "field_77288_k" +/** + * + * + * Parent Class: Explosion + */ +f.explosionRNG = "field_77290_i" +/** + * Protection against explosions + * + * Parent Class: Enchantment + */ +f.blastProtection = "field_77327_f" +/** + * Protection against fire + * + * Parent Class: Enchantment + */ +f.fireProtection = "field_77329_d" +/** + * + * + * Parent Class: Enchantment + */ +f.enchantmentsBookList = "field_77331_b" +/** + * Lights mobs on fire + * + * Parent Class: Enchantment + */ +f.fireAspect = "field_77334_n" +/** + * Mobs have a chance to drop more loot + * + * Parent Class: Enchantment + */ +f.looting = "field_77335_o" +/** + * Increases underwater mining rate + * + * Parent Class: Enchantment + */ +f.aquaAffinity = "field_77341_i" +/** + * "Infinity enchantment for bows. The bow will not consume arrows anymore + * + * Parent Class: Enchantment + */ +f.infinity = "field_77342_w" +/** + * Flame enchantment for bows. Arrows fired by the bow will be on fire. Any target hit will also set on fire. + * + * Parent Class: Enchantment + */ +f.flame = "field_77343_v" +/** + * "Knockback enchantments for bows + * + * Parent Class: Enchantment + */ +f.punch = "field_77344_u" +/** + * "Power enchantment for bows + * + * Parent Class: Enchantment + */ +f.power = "field_77345_t" +/** + * Can multiply the drop rate of items from blocks + * + * Parent Class: Enchantment + */ +f.fortune = "field_77346_s" +/** + * "Sometimes + * + * Parent Class: Enchantment + */ +f.unbreaking = "field_77347_r" +/** + * "Blocks mined will drop themselves + * + * Parent Class: Enchantment + */ +f.silkTouch = "field_77348_q" +/** + * Faster resource gathering while in use + * + * Parent Class: Enchantment + */ +f.efficiency = "field_77349_p" +f.thresholdEnchantability = {} +/** + * "Used on the formula of base enchantability + * + * Parent Class: EnchantmentProtection + */ +f.thresholdEnchantability.EnchantmentProtection = "field_77353_D" +/** + * "Used on the formula of base enchantability + * + * Parent Class: EnchantmentDamage + */ +f.thresholdEnchantability.EnchantmentDamage = "field_77358_D" + +f.protectionName = {} +/** + * Holds the name to be translated of each protection type. + * + * Parent Class: EnchantmentProtection + */ +f.protectionName.EnchantmentProtection = "field_77354_A" +/** + * Holds the name to be translated of each protection type. + * + * Parent Class: EnchantmentDamage + */ +f.protectionName.EnchantmentDamage = "field_77359_A" + +f.baseEnchantability = {} +/** + * Holds the base factor of enchantability needed to be able to use the enchant. + * + * Parent Class: EnchantmentProtection + */ +f.baseEnchantability.EnchantmentProtection = "field_77355_B" +/** + * Holds the base factor of enchantability needed to be able to use the enchant. + * + * Parent Class: EnchantmentDamage + */ +f.baseEnchantability.EnchantmentDamage = "field_77360_B" + +/** + * "Defines the type of protection of the enchantment + * + * Parent Class: EnchantmentProtection + */ +f.protectionType = "field_77356_a" +f.levelEnchantability = {} +/** + * Holds how much each level increased the enchantability factor to be able to use this enchant. + * + * Parent Class: EnchantmentProtection + */ +f.levelEnchantability.EnchantmentProtection = "field_77357_C" +/** + * Holds how much each level increased the enchantability factor to be able to use this enchant. + * + * Parent Class: EnchantmentDamage + */ +f.levelEnchantability.EnchantmentDamage = "field_77362_C" + +/** + * Saves how much has been tool used when put into to slot to be enchanted. + * + * Parent Class: MerchantRecipe + */ +f.toolUses = "field_77400_d" +/** + * Second Item the Villager buys. + * + * Parent Class: MerchantRecipe + */ +f.secondItemToBuy = "field_77401_b" +/** + * Item the Villager sells. + * + * Parent Class: MerchantRecipe + */ +f.itemToSell = "field_77402_c" +/** + * Color buffer for foliage + * + * Parent Class: ColorizerFoliage + */ +f.foliageBuffer = "field_77471_a" +/** + * "An OpenGL constant corresponding to GL_TEXTURE1 + * + * Parent Class: OpenGlHelper + */ +f.lightmapTexUnit = "field_77476_b" +/** + * "An OpenGL constant corresponding to GL_TEXTURE0 + * + * Parent Class: OpenGlHelper + */ +f.defaultTexUnit = "field_77478_a" +/** + * Color buffer for grass + * + * Parent Class: ColorizerGrass + */ +f.grassBuffer = "field_77481_a" +/** + * + * + * Parent Class: LanServerDetector$LanServer + */ +f.lanServerIpPort = "field_77490_b" +/** + * Last time this LanServer was seen. + * + * Parent Class: LanServerDetector$LanServer + */ +f.timeLastSeen = "field_77491_c" +/** + * + * + * Parent Class: LanServerDetector$LanServer + */ +f.lanServerMotd = "field_77492_a" +/** + * Used to calculate the (magic) extra damage based on enchantments of current equipped player item. + * + * Parent Class: EnchantmentHelper$ModifierLiving + */ +f.livingModifier = "field_77495_a" +/** + * Used as parameter to calculate the damage modifier (extra armor) on enchantments that the player have on equipped armors. + * + * Parent Class: EnchantmentHelper$ModifierDamage + */ +f.source = "field_77496_b" +/** + * Used to calculate the damage modifier (extra armor) on enchantments that the player have on equipped armors. + * + * Parent Class: EnchantmentHelper$ModifierDamage + */ +f.damageModifier = "field_77497_a" +/** + * InetAddress for 224.0.2.60 + * + * Parent Class: LanServerDetector$ThreadLanServerFind + */ +f.broadcastAddress = "field_77498_b" +f.socket = {} +/** + * The socket we're using to receive packets on. + * + * Parent Class: LanServerDetector$ThreadLanServerFind + */ +f.socket.LanServerDetector$ThreadLanServerFind = "field_77499_c" +/** + * The socket we're using to send packets on. + * + * Parent Class: ThreadLanServerPing + */ +f.socket.ThreadLanServerPing = "field_77529_c" + +/** + * The LanServerList + * + * Parent Class: LanServerDetector$ThreadLanServerFind + */ +f.localServerList = "field_77500_a" +/** + * Used to calculate the extra armor of enchantments on armors equipped on player. + * + * Parent Class: EnchantmentHelper + */ +f.enchantmentModifierDamage = "field_77520_b" +/** + * Used to calculate the (magic) extra damage done by enchantments on current equipped item of player. + * + * Parent Class: EnchantmentHelper + */ +f.enchantmentModifierLiving = "field_77521_c" +/** + * Is the random seed of enchantment effects. + * + * Parent Class: EnchantmentHelper + */ +f.enchantmentRand = "field_77522_a" +/** + * + * + * Parent Class: ThreadLanServerPing + */ +f.isStopping = "field_77526_d" +/** + * + * + * Parent Class: ThreadLanServerPing + */ +f.address = "field_77527_e" +/** + * + * + * Parent Class: LanServerDetector$LanServerList + */ +f.listOfLanServers = "field_77555_b" +/** + * + * + * Parent Class: LanServerDetector$LanServerList + */ +f.wasUpdated = "field_77556_a" +f.recipeItems = {} +/** + * Is a array of ItemStack that composes the recipe. + * + * Parent Class: ShapedRecipes + */ +f.recipeItems.ShapedRecipes = "field_77574_d" +/** + * Is a List of ItemStack that composes the recipe. + * + * Parent Class: ShapelessRecipes + */ +f.recipeItems.ShapelessRecipes = "field_77579_b" +/** + * + * + * Parent Class: RecipesWeapons + */ +f.recipeItems.RecipesWeapons = "field_77584_b" +/** + * + * + * Parent Class: RecipesTools + */ +f.recipeItems.RecipesTools = "field_77587_b" +/** + * + * + * Parent Class: RecipesIngots + */ +f.recipeItems.RecipesIngots = "field_77591_a" +/** + * + * + * Parent Class: RecipesArmor + */ +f.recipeItems.RecipesArmor = "field_77610_b" + +f.recipeOutput = {} +/** + * Is the ItemStack that you get when craft the recipe. + * + * Parent Class: ShapedRecipes + */ +f.recipeOutput.ShapedRecipes = "field_77575_e" +/** + * Is the ItemStack that you get when craft the recipe. + * + * Parent Class: ShapelessRecipes + */ +f.recipeOutput.ShapelessRecipes = "field_77580_a" + +/** + * How many horizontal slots this recipe is wide. + * + * Parent Class: ShapedRecipes + */ +f.recipeWidth = "field_77576_b" +/** + * How many vertical slots this recipe uses. + * + * Parent Class: ShapedRecipes + */ +f.recipeHeight = "field_77577_c" +f.recipePatterns = {} +/** + * + * + * Parent Class: RecipesWeapons + */ +f.recipePatterns.RecipesWeapons = "field_77585_a" +/** + * + * + * Parent Class: RecipesTools + */ +f.recipePatterns.RecipesTools = "field_77588_a" +/** + * + * + * Parent Class: RecipesArmor + */ +f.recipePatterns.RecipesArmor = "field_77611_a" + +/** + * A list of all the recipes added + * + * Parent Class: CraftingManager + */ +f.recipes = "field_77597_b" +/** + * The list of smelting results. + * + * Parent Class: FurnaceRecipes + */ +f.smeltingList = "field_77604_b" +/** + * A list which contains how many experience points each recipe output will give. + * + * Parent Class: FurnaceRecipes + */ +f.experienceList = "field_77605_c" +/** + * + * + * Parent Class: FurnaceRecipes + */ +f.smeltingBase = "field_77606_a" +/** + * The RNG used by the Item subclasses. + * + * Parent Class: Item + */ +f.itemRand = "field_77697_d" +/** + * Maximum damage an item can handle. + * + * Parent Class: Item + */ +f.maxDamage = "field_77699_b" +/** + * + * + * Parent Class: Item + */ +f.containerItem = "field_77700_c" +/** + * + * + * Parent Class: Item + */ +f.tabToDisplayOn = "field_77701_a" +/** + * The string representing this item's effect on a potion when used as an ingredient. + * + * Parent Class: Item + */ +f.potionEffect = "field_77785_bY" +/** + * "Some items (like dyes) have multiple subtypes on same item + * + * Parent Class: Item + */ +f.hasSubtypes = "field_77787_bX" +/** + * "If true + * + * Parent Class: Item + */ +f.bFull3D = "field_77789_bW" +/** + * + * + * Parent Class: ItemPotion + */ +f.SUB_ITEMS_CACHE = "field_77835_b" +/** + * Contains a map from integers to the list of potion effects that potions with that damage value confer (to prevent recalculating it). + * + * Parent Class: ItemPotion + */ +f.effectCache = "field_77836_a" +/** + * BlockID of the block the seeds can be planted on. + * + * Parent Class: ItemSeeds + */ +f.soilBlockID = "field_77838_b" +/** + * + * + * Parent Class: ItemMinecart + */ +f.minecartType = "field_77841_a" +/** + * + * + * Parent Class: ItemHoe + */ +f.theToolMaterial = "field_77843_a" +/** + * set by setPotionEffect + * + * Parent Class: ItemFood + */ +f.potionDuration = "field_77850_cb" +/** + * represents the potion effect that will occurr upon eating this food. Set by setPotionEffect + * + * Parent Class: ItemFood + */ +f.potionId = "field_77851_ca" +/** + * "If this field is true + * + * Parent Class: ItemFood + */ +f.alwaysEdible = "field_77852_bZ" +/** + * The amount this food item heals the player. + * + * Parent Class: ItemFood + */ +f.healAmount = "field_77853_b" +/** + * + * + * Parent Class: ItemFood + */ +f.saturationModifier = "field_77854_c" +/** + * Number of ticks to run while 'EnumAction'ing until result. + * + * Parent Class: ItemFood + */ +f.itemUseDuration = "field_77855_a" +/** + * Whether wolves like this food (true for raw and cooked porkchop). + * + * Parent Class: ItemFood + */ +f.isWolfsFavoriteMeat = "field_77856_bY" +/** + * set by setPotionEffect + * + * Parent Class: ItemFood + */ +f.potionAmplifier = "field_77857_cc" +/** + * probably of the set potion effect occurring + * + * Parent Class: ItemFood + */ +f.potionEffectProbability = "field_77858_cd" +/** + * The material this tool is made from. + * + * Parent Class: ItemTool + */ +f.toolMaterial = "field_77862_b" +f.efficiencyOnProperMaterial = {} +/** + * + * + * Parent Class: ItemTool + */ +f.efficiencyOnProperMaterial.ItemTool = "field_77864_a" +/** + * The strength of this tool material against blocks which it is effective against. + * + * Parent Class: Item$ToolMaterial + */ +f.efficiencyOnProperMaterial.Item$ToolMaterial = "field_78010_h" + +f.damageVsEntity = {} +/** + * Damage versus entities. + * + * Parent Class: ItemTool + */ +f.damageVsEntity.ItemTool = "field_77865_bY" +/** + * Damage versus entities. + * + * Parent Class: Item$ToolMaterial + */ +f.damageVsEntity.Item$ToolMaterial = "field_78011_i" + +/** + * field for checking if the bucket has been filled. + * + * Parent Class: ItemBucket + */ +f.isFull = "field_77876_a" +/** + * Holds the amount of damage that the armor reduces at full durability. + * + * Parent Class: ItemArmor + */ +f.damageReduceAmount = "field_77879_b" +/** + * "Used on RenderPlayer to select the correspondent armor to be rendered on the player: 0 is cloth + * + * Parent Class: ItemArmor + */ +f.renderIndex = "field_77880_c" +/** + * "Stores the armor type: 0 is helmet + * + * Parent Class: ItemArmor + */ +f.armorType = "field_77881_a" +/** + * Holds the 'base' maxDamage that each armorType have. + * + * Parent Class: ItemArmor + */ +f.maxDamageArray = "field_77882_bY" +/** + * + * + * Parent Class: PotionHelper + */ +f.speckledMelonEffect = "field_77918_f" +/** + * + * + * Parent Class: PotionHelper + */ +f.blazePowderEffect = "field_77919_g" +/** + * + * + * Parent Class: PotionHelper + */ +f.spiderEyeEffect = "field_77920_d" +/** + * + * + * Parent Class: PotionHelper + */ +f.fermentedSpiderEyeEffect = "field_77921_e" +/** + * + * + * Parent Class: PotionHelper + */ +f.sugarEffect = "field_77922_b" +/** + * + * + * Parent Class: PotionHelper + */ +f.ghastTearEffect = "field_77923_c" +/** + * + * + * Parent Class: PotionHelper + */ +f.unusedString = "field_77924_a" +/** + * + * + * Parent Class: PotionHelper + */ +f.DATAVALUE_COLORS = "field_77925_n" +/** + * "An array of possible potion prefix names + * + * Parent Class: PotionHelper + */ +f.potionPrefixes = "field_77926_o" +/** + * + * + * Parent Class: PotionHelper + */ +f.glowstoneEffect = "field_77929_j" +/** + * + * + * Parent Class: PotionHelper + */ +f.gunpowderEffect = "field_77930_k" +/** + * + * + * Parent Class: PotionHelper + */ +f.magmaCreamEffect = "field_77931_h" +/** + * + * + * Parent Class: PotionHelper + */ +f.redstoneEffect = "field_77932_i" +/** + * Rarity name. + * + * Parent Class: EnumRarity + */ +f.rarityName = "field_77934_f" +/** + * A decimal representation of the hex color codes of a the color assigned to this rarity type. (13 becomes d as in \247d which is light purple) + * + * Parent Class: EnumRarity + */ +f.rarityColor = "field_77937_e" +/** + * A NBTTagMap containing data about an ItemStack. Can only be used for non stackable items + * + * Parent Class: ItemStack + */ +f.stackTagCompound = "field_77990_d" +/** + * + * + * Parent Class: ItemStack + */ +f.itemDamage = "field_77991_e" +/** + * "Number of animation frames to go when receiving an item (by walking into it + * + * Parent Class: ItemStack + */ +f.animationsToGo = "field_77992_b" +/** + * Size of the stack. + * + * Parent Class: ItemStack + */ +f.stackSize = "field_77994_a" +/** + * "The level of material this tool can harvest (3 = DIAMOND + * + * Parent Class: Item$ToolMaterial + */ +f.harvestLevel = "field_78001_f" +/** + * "The number of uses this material allows. (wood = 59 + * + * Parent Class: Item$ToolMaterial + */ +f.maxUses = "field_78002_g" +f.enchantability = {} +/** + * Defines the natural enchantability factor of the material. + * + * Parent Class: Item$ToolMaterial + */ +f.enchantability.Item$ToolMaterial = "field_78008_j" +/** + * Return the enchantability factor of the material + * + * Parent Class: ItemArmor$ArmorMaterial + */ +f.enchantability.ItemArmor$ArmorMaterial = "field_78055_h" + +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabMisc = "field_78026_f" +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabAllSearch = "field_78027_g" +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabRedstone = "field_78028_d" +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabTransport = "field_78029_e" +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabBlock = "field_78030_b" +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabDecorations = "field_78031_c" +/** + * + * + * Parent Class: CreativeTabs + */ +f.creativeTabArray = "field_78032_a" +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabIndex = "field_78033_n" +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabLabel = "field_78034_o" +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabMaterials = "field_78035_l" +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabInventory = "field_78036_m" +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabCombat = "field_78037_j" +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabBrewing = "field_78038_k" +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabFood = "field_78039_h" +/** + * + * + * Parent Class: CreativeTabs + */ +f.tabTools = "field_78040_i" +/** + * Whether to draw the title in the foreground of the creative GUI + * + * Parent Class: CreativeTabs + */ +f.drawTitle = "field_78041_r" +/** + * + * + * Parent Class: CreativeTabs + */ +f.hasScrollbar = "field_78042_q" +f.theTexture = {} +/** + * Texture to use. + * + * Parent Class: CreativeTabs + */ +f.theTexture.CreativeTabs = "field_78043_p" +/** + * + * + * Parent Class: Stitcher$Holder + */ +f.theTexture.Stitcher$Holder = "field_98151_a" + +/** + * "Holds the maximum damage factor (each piece multiply this by it's own value) of the material + * + * Parent Class: ItemArmor$ArmorMaterial + */ +f.maxDamageFactor = "field_78048_f" +/** + * "Holds the damage reduction (each 1 points is half a shield on gui) of each piece of armor (helmet + * + * Parent Class: ItemArmor$ArmorMaterial + */ +f.damageReductionAmountArray = "field_78049_g" +f.textureHeight = {} +/** + * + * + * Parent Class: ModelBase + */ +f.textureHeight.ModelBase = "field_78089_u" +/** + * The size of the texture file's height in pixels. + * + * Parent Class: ModelRenderer + */ +f.textureHeight.ModelRenderer = "field_78799_b" + +f.textureWidth = {} +/** + * + * + * Parent Class: ModelBase + */ +f.textureWidth.ModelBase = "field_78090_t" +/** + * The size of the texture file's width in pixels. + * + * Parent Class: ModelRenderer + */ +f.textureWidth.ModelRenderer = "field_78801_a" + +/** + * This is a list of all the boxes (ModelRenderer.class) in the current model. + * + * Parent Class: ModelBase + */ +f.boxList = "field_78092_r" +/** + * + * + * Parent Class: ModelBase + */ +f.isRiding = "field_78093_q" +/** + * A mapping for all texture offsets + * + * Parent Class: ModelBase + */ +f.modelTextureMap = "field_78094_a" +/** + * Right cover renderer (when facing the book) + * + * Parent Class: ModelBook + */ +f.flippingPageLeft = "field_78096_f" +/** + * The renderer of spine of the book + * + * Parent Class: ModelBook + */ +f.bookSpine = "field_78097_g" +/** + * The left pages renderer (when facing the book) + * + * Parent Class: ModelBook + */ +f.pagesLeft = "field_78098_d" +/** + * Right cover renderer (when facing the book) + * + * Parent Class: ModelBook + */ +f.flippingPageRight = "field_78099_e" +/** + * Left cover renderer (when facing the book) + * + * Parent Class: ModelBook + */ +f.coverLeft = "field_78100_b" +/** + * The right pages renderer (when facing the book) + * + * Parent Class: ModelBook + */ +f.pagesRight = "field_78101_c" +/** + * Right cover renderer (when facing the book) + * + * Parent Class: ModelBook + */ +f.coverRight = "field_78102_a" +/** + * + * + * Parent Class: ModelBoat + */ +f.boatSides = "field_78103_a" +/** + * + * + * Parent Class: ModelBlaze + */ +f.blazeHead = "field_78105_b" +/** + * The sticks that fly around the Blaze. + * + * Parent Class: ModelBlaze + */ +f.blazeSticks = "field_78106_a" +/** + * + * + * Parent Class: ModelMagmaCube + */ +f.core = "field_78108_b" +/** + * + * + * Parent Class: ModelMagmaCube + */ +f.segments = "field_78109_a" +/** + * + * + * Parent Class: ModelBiped + */ +f.bipedBody = "field_78115_e" +/** + * + * + * Parent Class: ModelBiped + */ +f.bipedHead = "field_78116_c" +/** + * + * + * Parent Class: ModelBiped + */ +f.isSneak = "field_78117_n" +/** + * Records whether the model should be rendered aiming a bow. + * + * Parent Class: ModelBiped + */ +f.aimedBow = "field_78118_o" +/** + * "Records whether the model should be rendered holding an item in the left hand + * + * Parent Class: ModelBiped + */ +f.heldItemLeft = "field_78119_l" +/** + * "Records whether the model should be rendered holding an item in the right hand + * + * Parent Class: ModelBiped + */ +f.heldItemRight = "field_78120_m" +/** + * Is the enderman attacking an entity? + * + * Parent Class: ModelEnderman + */ +f.isAttacking = "field_78125_b" +/** + * Is the enderman carrying a block? + * + * Parent Class: ModelEnderman + */ +f.isCarrying = "field_78126_a" +/** + * + * + * Parent Class: ModelGhast + */ +f.tentacles = "field_78127_b" +f.leg3 = {} +/** + * + * + * Parent Class: ModelCreeper + */ +f.leg3.ModelCreeper = "field_78129_f" +/** + * + * + * Parent Class: ModelQuadruped + */ +f.leg3.ModelQuadruped = "field_78147_e" + +f.leg4 = {} +/** + * + * + * Parent Class: ModelCreeper + */ +f.leg4.ModelCreeper = "field_78130_g" +/** + * + * + * Parent Class: ModelQuadruped + */ +f.leg4.ModelQuadruped = "field_78144_f" + +f.leg1 = {} +/** + * + * + * Parent Class: ModelCreeper + */ +f.leg1.ModelCreeper = "field_78131_d" +/** + * + * + * Parent Class: ModelQuadruped + */ +f.leg1.ModelQuadruped = "field_78149_c" + +f.leg2 = {} +/** + * + * + * Parent Class: ModelCreeper + */ +f.leg2.ModelCreeper = "field_78132_e" +/** + * + * + * Parent Class: ModelQuadruped + */ +f.leg2.ModelQuadruped = "field_78146_d" + +/** + * + * + * Parent Class: ModelCreeper + */ +f.creeperArmor = "field_78133_b" +/** + * + * + * Parent Class: ModelChicken + */ +f.leftWing = "field_78136_f" +/** + * + * + * Parent Class: ModelChicken + */ +f.bill = "field_78137_g" +/** + * + * + * Parent Class: ModelChicken + */ +f.leftLeg = "field_78138_d" +/** + * + * + * Parent Class: ModelChicken + */ +f.rightWing = "field_78139_e" +/** + * + * + * Parent Class: ModelChicken + */ +f.rightLeg = "field_78141_c" +/** + * + * + * Parent Class: ModelChicken + */ +f.chin = "field_78143_h" +/** + * + * + * Parent Class: ModelQuadruped + */ +f.childYOffset = "field_78145_g" +/** + * + * + * Parent Class: ModelQuadruped + */ +f.childZOffset = "field_78151_h" +f.headRotationAngleX = {} +/** + * + * + * Parent Class: ModelSheep1 + */ +f.headRotationAngleX.ModelSheep1 = "field_78152_i" +/** + * + * + * Parent Class: ModelSheep2 + */ +f.headRotationAngleX.ModelSheep2 = "field_78153_i" + +/** + * + * + * Parent Class: ModelMinecart + */ +f.sideModels = "field_78154_a" +/** + * The second part of tail model for the Ocelot. + * + * Parent Class: ModelOcelot + */ +f.ocelotTail2 = "field_78155_f" +/** + * The head model for the Ocelot. + * + * Parent Class: ModelOcelot + */ +f.ocelotHead = "field_78156_g" +/** + * The front right leg model for the Ocelot. + * + * Parent Class: ModelOcelot + */ +f.ocelotFrontRightLeg = "field_78157_d" +/** + * The tail model for the Ocelot. + * + * Parent Class: ModelOcelot + */ +f.ocelotTail = "field_78158_e" +/** + * The back right leg model for the Ocelot. + * + * Parent Class: ModelOcelot + */ +f.ocelotBackRightLeg = "field_78159_b" +/** + * The front left leg model for the Ocelot. + * + * Parent Class: ModelOcelot + */ +f.ocelotFrontLeftLeg = "field_78160_c" +/** + * The back left leg model for the Ocelot. + * + * Parent Class: ModelOcelot + */ +f.ocelotBackLeftLeg = "field_78161_a" +/** + * The body model for the Ocelot. + * + * Parent Class: ModelOcelot + */ +f.ocelotBody = "field_78162_h" +/** + * The stick a sign stands on. + * + * Parent Class: ModelSign + */ +f.signStick = "field_78165_b" +/** + * The board on a sign that has the writing on it. + * + * Parent Class: ModelSign + */ +f.signBoard = "field_78166_a" +/** + * "The widths + * + * Parent Class: ModelSilverfish + */ +f.silverfishBoxLength = "field_78167_d" +/** + * The texture positions for the silverfish's model's boxes. + * + * Parent Class: ModelSilverfish + */ +f.silverfishTexturePositions = "field_78168_e" +/** + * The wings (dust-looking sprites) on the silverfish's model. + * + * Parent Class: ModelSilverfish + */ +f.silverfishWings = "field_78169_b" +/** + * The body parts of the silverfish's model. + * + * Parent Class: ModelSilverfish + */ +f.silverfishBodyParts = "field_78171_a" +/** + * The right leg model for the Iron Golem. + * + * Parent Class: ModelIronGolem + */ +f.ironGolemRightLeg = "field_78173_f" +/** + * The left arm model for the iron golem. + * + * Parent Class: ModelIronGolem + */ +f.ironGolemLeftArm = "field_78174_d" +/** + * The left leg model for the Iron Golem. + * + * Parent Class: ModelIronGolem + */ +f.ironGolemLeftLeg = "field_78175_e" +/** + * The body model for the iron golem. + * + * Parent Class: ModelIronGolem + */ +f.ironGolemBody = "field_78176_b" +/** + * The right arm model for the iron golem. + * + * Parent Class: ModelIronGolem + */ +f.ironGolemRightArm = "field_78177_c" +/** + * The head model for the iron golem. + * + * Parent Class: ModelIronGolem + */ +f.ironGolemHead = "field_78178_a" +/** + * Wolf's fourth leg + * + * Parent Class: ModelWolf + */ +f.wolfLeg4 = "field_78179_f" +/** + * The wolf's tail + * + * Parent Class: ModelWolf + */ +f.wolfTail = "field_78180_g" +/** + * Wolf's second leg + * + * Parent Class: ModelWolf + */ +f.wolfLeg2 = "field_78181_d" +/** + * Wolf's third leg + * + * Parent Class: ModelWolf + */ +f.wolfLeg3 = "field_78182_e" +/** + * The wolf's body + * + * Parent Class: ModelWolf + */ +f.wolfBody = "field_78183_b" +/** + * Wolf'se first leg + * + * Parent Class: ModelWolf + */ +f.wolfLeg1 = "field_78184_c" +/** + * main box for the wolf head + * + * Parent Class: ModelWolf + */ +f.wolfHeadMain = "field_78185_a" +/** + * The wolf's mane + * + * Parent Class: ModelWolf + */ +f.wolfMane = "field_78186_h" +/** + * The right leg of the VillagerModel + * + * Parent Class: ModelVillager + */ +f.rightVillagerLeg = "field_78187_d" +/** + * The left leg of the VillagerModel + * + * Parent Class: ModelVillager + */ +f.leftVillagerLeg = "field_78188_e" +/** + * The body of the VillagerModel + * + * Parent Class: ModelVillager + */ +f.villagerBody = "field_78189_b" +/** + * The arms of the VillagerModel + * + * Parent Class: ModelVillager + */ +f.villagerArms = "field_78190_c" +/** + * The head box of the VillagerModel + * + * Parent Class: ModelVillager + */ +f.villagerHead = "field_78191_a" +/** + * + * + * Parent Class: ModelSnowMan + */ +f.rightHand = "field_78192_d" +/** + * + * + * Parent Class: ModelSnowMan + */ +f.leftHand = "field_78193_e" +/** + * + * + * Parent Class: ModelSnowMan + */ +f.bottomBody = "field_78194_b" +/** + * The slime's mouth + * + * Parent Class: ModelSlime + */ +f.slimeMouth = "field_78197_d" +/** + * The slime's right eye + * + * Parent Class: ModelSlime + */ +f.slimeRightEye = "field_78198_b" +/** + * The slime's left eye + * + * Parent Class: ModelSlime + */ +f.slimeLeftEye = "field_78199_c" +/** + * "The slime's bodies + * + * Parent Class: ModelSlime + */ +f.slimeBodies = "field_78200_a" +/** + * The squid's tentacles + * + * Parent Class: ModelSquid + */ +f.squidTentacles = "field_78201_b" +/** + * The squid's body + * + * Parent Class: ModelSquid + */ +f.squidBody = "field_78202_a" +/** + * Spider's third leg + * + * Parent Class: ModelSpider + */ +f.spiderLeg3 = "field_78203_f" +/** + * Spider's fourth leg + * + * Parent Class: ModelSpider + */ +f.spiderLeg4 = "field_78204_g" +/** + * Spider's first leg + * + * Parent Class: ModelSpider + */ +f.spiderLeg1 = "field_78205_d" +/** + * Spider's second leg + * + * Parent Class: ModelSpider + */ +f.spiderLeg2 = "field_78206_e" +/** + * The spider's neck box + * + * Parent Class: ModelSpider + */ +f.spiderNeck = "field_78207_b" +/** + * The spider's body box + * + * Parent Class: ModelSpider + */ +f.spiderBody = "field_78208_c" +/** + * The spider's head box + * + * Parent Class: ModelSpider + */ +f.spiderHead = "field_78209_a" +/** + * Spider's seventh leg + * + * Parent Class: ModelSpider + */ +f.spiderLeg7 = "field_78210_j" +/** + * Spider's eight leg + * + * Parent Class: ModelSpider + */ +f.spiderLeg8 = "field_78211_k" +/** + * Spider's fifth leg + * + * Parent Class: ModelSpider + */ +f.spiderLeg5 = "field_78212_h" +/** + * Spider's sixth leg + * + * Parent Class: ModelSpider + */ +f.spiderLeg6 = "field_78213_i" +/** + * The front leg Model renderer of the dragon + * + * Parent Class: ModelDragon + */ +f.frontLeg = "field_78215_f" +/** + * The rear leg tip Model renderer of the dragon + * + * Parent Class: ModelDragon + */ +f.rearLegTip = "field_78216_g" +/** + * The rear leg Model renderer of the dragon + * + * Parent Class: ModelDragon + */ +f.rearLeg = "field_78218_e" +/** + * The spine Model renderer of the dragon + * + * Parent Class: ModelDragon + */ +f.spine = "field_78219_b" +/** + * The jaw Model renderer of the dragon + * + * Parent Class: ModelDragon + */ +f.jaw = "field_78220_c" +/** + * The wing tip Model renderer of the dragon + * + * Parent Class: ModelDragon + */ +f.wingTip = "field_78222_l" +/** + * + * + * Parent Class: ModelDragon + */ +f.partialTicks = "field_78223_m" +/** + * The front foot Model renderer of the dragon + * + * Parent Class: ModelDragon + */ +f.frontFoot = "field_78224_j" +/** + * The wing Model renderer of the dragon + * + * Parent Class: ModelDragon + */ +f.wing = "field_78225_k" +/** + * The front leg tip Model renderer of the dragon + * + * Parent Class: ModelDragon + */ +f.frontLegTip = "field_78226_h" +/** + * The rear foot Model renderer of the dragon + * + * Parent Class: ModelDragon + */ +f.rearFoot = "field_78227_i" +/** + * The base model for the Ender Crystal. + * + * Parent Class: ModelEnderCrystal + */ +f.base = "field_78229_c" +/** + * The cube model for the Ender Crystal. + * + * Parent Class: ModelEnderCrystal + */ +f.cube = "field_78230_a" +/** + * The model of the bottom of the chest. + * + * Parent Class: ModelChest + */ +f.chestBelow = "field_78232_b" +/** + * The chest's knob in the chest model. + * + * Parent Class: ModelChest + */ +f.chestKnob = "field_78233_c" +/** + * The chest lid in the chest's model. + * + * Parent Class: ModelChest + */ +f.chestLid = "field_78234_a" +/** + * + * + * Parent Class: TexturedQuad + */ +f.nVertices = "field_78237_b" +/** + * + * + * Parent Class: TexturedQuad + */ +f.invertNormal = "field_78238_c" +f.vertexPositions = {} +/** + * + * + * Parent Class: TexturedQuad + */ +f.vertexPositions.TexturedQuad = "field_78239_a" +/** + * "The (x + * + * Parent Class: ModelBox + */ +f.vertexPositions.ModelBox = "field_78253_h" + +/** + * + * + * Parent Class: PositionTextureVertex + */ +f.texturePositionX = "field_78241_b" +/** + * + * + * Parent Class: PositionTextureVertex + */ +f.texturePositionY = "field_78242_c" +/** + * + * + * Parent Class: PositionTextureVertex + */ +f.vector3D = "field_78243_a" +/** + * Z vertex coordinate of upper box corner + * + * Parent Class: ModelBox + */ +f.posZ2 = "field_78246_f" +f.boxName = {} +/** + * + * + * Parent Class: ModelBox + */ +f.boxName.ModelBox = "field_78247_g" +/** + * + * + * Parent Class: ModelRenderer + */ +f.boxName.ModelRenderer = "field_78802_n" + +/** + * X vertex coordinate of upper box corner + * + * Parent Class: ModelBox + */ +f.posX2 = "field_78248_d" +/** + * Y vertex coordinate of upper box corner + * + * Parent Class: ModelBox + */ +f.posY2 = "field_78249_e" +/** + * Y vertex coordinate of lower box corner + * + * Parent Class: ModelBox + */ +f.posY1 = "field_78250_b" +/** + * Z vertex coordinate of lower box corner + * + * Parent Class: ModelBox + */ +f.posZ1 = "field_78251_c" +/** + * X vertex coordinate of lower box corner + * + * Parent Class: ModelBox + */ +f.posX1 = "field_78252_a" +/** + * "An array of 6 TexturedQuads + * + * Parent Class: ModelBox + */ +f.quadList = "field_78254_i" +/** + * Array of RGB triplets defining the 16 standard chat colors followed by 16 darker version of the same colors for drop shadows. + * + * Parent Class: FontRenderer + */ +f.colorCode = "field_78285_g" +/** + * Array of width of all the characters in default.png + * + * Parent Class: FontRenderer + */ +f.charWidth = "field_78286_d" +/** + * Array of the start/end column (in upper/lower nibble) for every glyph in the /font directory. + * + * Parent Class: FontRenderer + */ +f.glyphWidth = "field_78287_e" +/** + * the height in pixels of default text + * + * Parent Class: FontRenderer + */ +f.FONT_HEIGHT = "field_78288_b" +/** + * + * + * Parent Class: FontRenderer + */ +f.fontRandom = "field_78289_c" +/** + * "If true + * + * Parent Class: FontRenderer + */ +f.unicodeFlag = "field_78293_l" +/** + * "If true + * + * Parent Class: FontRenderer + */ +f.bidiFlag = "field_78294_m" +/** + * "Set if the ""m"" style (strikethrough) is active in currently rendering string" + * + * Parent Class: FontRenderer + */ +f.strikethroughStyle = "field_78299_w" +/** + * "Set if the ""n"" style (underlined) is active in currently rendering string" + * + * Parent Class: FontRenderer + */ +f.underlineStyle = "field_78300_v" +/** + * "Set if the ""o"" style (italic) is active in currently rendering string" + * + * Parent Class: FontRenderer + */ +f.italicStyle = "field_78301_u" +/** + * "Set if the ""l"" style (bold) is active in currently rendering string" + * + * Parent Class: FontRenderer + */ +f.boldStyle = "field_78302_t" +/** + * "Set if the ""k"" style (random) is active in currently rendering string" + * + * Parent Class: FontRenderer + */ +f.randomStyle = "field_78303_s" +/** + * Text color of the currently rendering string. + * + * Parent Class: FontRenderer + */ +f.textColor = "field_78304_r" +/** + * + * + * Parent Class: ScaledResolution + */ +f.scaledHeightD = "field_78329_d" +f.scaleFactor = {} +/** + * + * + * Parent Class: ScaledResolution + */ +f.scaleFactor.ScaledResolution = "field_78330_e" +/** + * + * + * Parent Class: Stitcher$Holder + */ +f.scaleFactor.Stitcher$Holder = "field_94205_a" + +/** + * + * + * Parent Class: ScaledResolution + */ +f.scaledHeight = "field_78331_b" +/** + * + * + * Parent Class: ScaledResolution + */ +f.scaledWidthD = "field_78332_c" +/** + * + * + * Parent Class: ScaledResolution + */ +f.scaledWidth = "field_78333_a" +/** + * + * + * Parent Class: ImageBufferDownload + */ +f.imageWidth = "field_78436_b" +/** + * + * + * Parent Class: ImageBufferDownload + */ +f.imageHeight = "field_78437_c" +/** + * + * + * Parent Class: ImageBufferDownload + */ +f.imageData = "field_78438_a" +/** + * "The index of the currently held item (0-8 + * + * Parent Class: ItemRenderer + */ +f.equippedItemSlot = "field_78450_g" +/** + * + * + * Parent Class: ItemRenderer + */ +f.prevEquippedProgress = "field_78451_d" +/** + * + * + * Parent Class: ItemRenderer + */ +f.itemToRender = "field_78453_b" +/** + * How far the current item has been equipped (0 disequipped and 1 fully up) + * + * Parent Class: ItemRenderer + */ +f.equippedProgress = "field_78454_c" +/** + * + * + * Parent Class: EntityRenderer + */ +f.thirdPersonDistance = "field_78490_B" +/** + * Third person distance temp + * + * Parent Class: EntityRenderer + */ +f.thirdPersonDistanceTemp = "field_78491_C" +/** + * Smooth cam partial ticks + * + * Parent Class: EntityRenderer + */ +f.smoothCamPartialTicks = "field_78492_L" +/** + * Smooth cam yaw + * + * Parent Class: EntityRenderer + */ +f.smoothCamYaw = "field_78496_H" +/** + * Smooth cam pitch + * + * Parent Class: EntityRenderer + */ +f.smoothCamPitch = "field_78497_I" +/** + * Smooth cam filter X + * + * Parent Class: EntityRenderer + */ +f.smoothCamFilterX = "field_78498_J" +/** + * Smooth cam filter Y + * + * Parent Class: EntityRenderer + */ +f.smoothCamFilterY = "field_78499_K" +/** + * Cloud fog mode + * + * Parent Class: EntityRenderer + */ +f.cloudFog = "field_78500_U" +/** + * + * + * Parent Class: EntityRenderer + */ +f.cameraZoom = "field_78503_V" +/** + * Colors computed in updateLightmap() and loaded into the lightmap emptyTexture + * + * Parent Class: EntityRenderer + */ +f.lightmapColors = "field_78504_Q" +/** + * FOV modifier hand prev + * + * Parent Class: EntityRenderer + */ +f.fovModifierHandPrev = "field_78506_S" +/** + * FOV modifier hand + * + * Parent Class: EntityRenderer + */ +f.fovModifierHand = "field_78507_R" +/** + * End time of last render (ns) + * + * Parent Class: EntityRenderer + */ +f.renderEndNanoTime = "field_78510_Z" +/** + * The texture id of the blocklight/skylight texture used for lighting effects + * + * Parent Class: EntityRenderer + */ +f.lightmapTexture = "field_78513_d" +/** + * Torch flicker X + * + * Parent Class: EntityRenderer + */ +f.torchFlickerX = "field_78514_e" +/** + * "Anaglyph field (0=R + * + * Parent Class: EntityRenderer + */ +f.anaglyphField = "field_78515_b" +/** + * + * + * Parent Class: EntityRenderer + */ +f.anaglyphEnable = "field_78517_a" +/** + * Fog color buffer + * + * Parent Class: EntityRenderer + */ +f.fogColorBuffer = "field_78521_m" +/** + * + * + * Parent Class: EntityRenderer + */ +f.mouseFilterYAxis = "field_78526_w" +/** + * + * + * Parent Class: EntityRenderer + */ +f.mouseFilterXAxis = "field_78527_v" +/** + * Entity renderer update count + * + * Parent Class: EntityRenderer + */ +f.rendererUpdateCount = "field_78529_t" +/** + * + * + * Parent Class: EntityRenderer + */ +f.farPlaneDistance = "field_78530_s" +/** + * Rain sound counter + * + * Parent Class: EntityRenderer + */ +f.rainSoundCounter = "field_78534_ac" +/** + * Fog color 2 + * + * Parent Class: EntityRenderer + */ +f.fogColor2 = "field_78535_ad" +/** + * "Is set + * + * Parent Class: EntityRenderer + */ +f.lightmapUpdateNeeded = "field_78536_aa" +/** + * Fog color 1 + * + * Parent Class: EntityRenderer + */ +f.fogColor1 = "field_78539_ae" +/** + * + * + * Parent Class: Frustum + */ +f.clippingHelper = "field_78552_a" +/** + * + * + * Parent Class: ClippingHelper + */ +f.clippingMatrix = "field_78554_d" +/** + * + * + * Parent Class: ClippingHelper + */ +f.frustum = "field_78557_a" +/** + * + * + * Parent Class: ClippingHelperImpl + */ +f.projectionMatrixBuffer = "field_78561_f" +/** + * + * + * Parent Class: ClippingHelperImpl + */ +f.modelviewMatrixBuffer = "field_78562_g" +/** + * + * + * Parent Class: RenderManager + */ +f.renderPosZ = "field_78723_d" +/** + * + * + * Parent Class: RenderManager + */ +f.renderPosX = "field_78725_b" +/** + * + * + * Parent Class: RenderManager + */ +f.renderPosY = "field_78726_c" +/** + * + * + * Parent Class: RenderManager + */ +f.viewerPosZ = "field_78728_n" +/** + * A map of entity classes and the associated renderer. + * + * Parent Class: RenderManager + */ +f.entityRenderMap = "field_78729_o" +/** + * + * + * Parent Class: RenderManager + */ +f.viewerPosX = "field_78730_l" +/** + * + * + * Parent Class: RenderManager + */ +f.viewerPosY = "field_78731_m" +/** + * + * + * Parent Class: RenderManager + */ +f.playerViewX = "field_78732_j" +/** + * Rendermanager's variable for the player + * + * Parent Class: RenderManager + */ +f.livingPlayer = "field_78734_h" +/** + * + * + * Parent Class: RenderManager + */ +f.playerViewY = "field_78735_i" +/** + * Renders fonts + * + * Parent Class: RenderManager + */ +f.textRenderer = "field_78736_p" +/** + * + * + * Parent Class: StructureNetherBridgePieces + */ +f.secondaryComponents = "field_78741_b" +/** + * + * + * Parent Class: StructureNetherBridgePieces + */ +f.primaryComponents = "field_78742_a" +/** + * Current block damage (MP) + * + * Parent Class: PlayerControllerMP + */ +f.curBlockDamageMP = "field_78770_f" +/** + * + * + * Parent Class: PlayerControllerMP + */ +f.netClientHandler = "field_78774_b" +/** + * Index of the current item held by the player in the inventory hotbar + * + * Parent Class: PlayerControllerMP + */ +f.currentPlayerItem = "field_78777_l" +/** + * Tells if the player is hitting a block + * + * Parent Class: PlayerControllerMP + */ +f.isHittingBlock = "field_78778_j" +/** + * Current game type for the player + * + * Parent Class: PlayerControllerMP + */ +f.currentGameType = "field_78779_k" +/** + * "Tick counter + * + * Parent Class: PlayerControllerMP + */ +f.stepSoundTickCounter = "field_78780_h" +/** + * Delays the first damage on the block after the first click on the block + * + * Parent Class: PlayerControllerMP + */ +f.blockHitDelay = "field_78781_i" +f.textureOffsetY = {} +/** + * The y coordinate offset of the texture + * + * Parent Class: TextureOffset + */ +f.textureOffsetY.TextureOffset = "field_78782_b" +/** + * The Y offset into the texture used for displaying this model + * + * Parent Class: ModelRenderer + */ +f.textureOffsetY.ModelRenderer = "field_78813_p" + +f.textureOffsetX = {} +/** + * The x coordinate offset of the texture + * + * Parent Class: TextureOffset + */ +f.textureOffsetX.TextureOffset = "field_78783_a" +/** + * The X offset into the texture used for displaying this model + * + * Parent Class: ModelRenderer + */ +f.textureOffsetX.ModelRenderer = "field_78803_o" + +/** + * + * + * Parent Class: ModelRenderer + */ +f.rotateAngleX = "field_78795_f" +/** + * + * + * Parent Class: ModelRenderer + */ +f.rotateAngleY = "field_78796_g" +/** + * + * + * Parent Class: ModelRenderer + */ +f.rotationPointY = "field_78797_d" +/** + * + * + * Parent Class: ModelRenderer + */ +f.rotationPointZ = "field_78798_e" +/** + * + * + * Parent Class: ModelRenderer + */ +f.rotationPointX = "field_78800_c" +/** + * + * + * Parent Class: ModelRenderer + */ +f.cubeList = "field_78804_l" +/** + * + * + * Parent Class: ModelRenderer + */ +f.childModels = "field_78805_m" +/** + * + * + * Parent Class: ModelRenderer + */ +f.showModel = "field_78806_j" +/** + * Hides the model. + * + * Parent Class: ModelRenderer + */ +f.isHidden = "field_78807_k" +/** + * + * + * Parent Class: ModelRenderer + */ +f.rotateAngleZ = "field_78808_h" +/** + * + * + * Parent Class: ModelRenderer + */ +f.mirror = "field_78809_i" +/** + * The GL display list rendered by the Tessellator for this model + * + * Parent Class: ModelRenderer + */ +f.displayList = "field_78811_r" +/** + * + * + * Parent Class: ModelRenderer + */ +f.compiled = "field_78812_q" +/** + * The class of the StructureComponent to which this weight corresponds. + * + * Parent Class: StructureNetherBridgePieces$PieceWeight + */ +f.weightClass = "field_78828_a" +/** + * Player response time to server in milliseconds + * + * Parent Class: NetworkPlayerInfo + */ +f.responseTime = "field_78829_b" +/** + * (better variable name would be 'hostname') server name as displayed in the server browser's second line (grey text) + * + * Parent Class: ServerData + */ +f.serverMOTD = "field_78843_d" +/** + * last server ping that showed up in the server browser + * + * Parent Class: ServerData + */ +f.pingToServer = "field_78844_e" +/** + * + * + * Parent Class: ServerData + */ +f.serverIP = "field_78845_b" +/** + * "the string indicating number of players on and capacity of the server that is shown on the server browser (i.e. ""5/20"" meaning 5 slots used out of 20 slots total)" + * + * Parent Class: ServerData + */ +f.populationInfo = "field_78846_c" +/** + * List of ServerData instances. + * + * Parent Class: ServerList + */ +f.servers = "field_78858_b" +/** + * + * + * Parent Class: ServerAddress + */ +f.ipAddress = "field_78866_a" +/** + * + * + * Parent Class: EffectRenderer + */ +f.fxLayers = "field_78876_b" +/** + * + * + * Parent Class: MovementInput + */ +f.sneak = "field_78899_d" +/** + * The speed at which the player is strafing. Postive numbers to the left and negative to the right. + * + * Parent Class: MovementInput + */ +f.moveStrafe = "field_78902_a" +/** + * None + * + * Parent Class: WorldRenderer + */ +f.noColor = "field_78939_q" +/** + * The closest EntityPlayer to this orb. + * + * Parent Class: EntityXPOrb + */ +f.closestPlayer = "field_80001_f" +/** + * Threshold color for tracking players + * + * Parent Class: EntityXPOrb + */ +f.xpTargetColor = "field_80002_g" +/** + * + * + * Parent Class: WorldServer + */ +f.updateEntityTick = "field_80004_Q" +/** + * + * + * Parent Class: GameSettings + */ +f.hideServerAddress = "field_80005_w" +/** + * + * + * Parent Class: Entity + */ +f.distanceWalkedOnStepModified = "field_82151_R" +/** + * + * + * Parent Class: Entity + */ +f.portalCounter = "field_82153_h" +/** + * Whether this entity can pick up items from the ground. + * + * Parent Class: EntityLiving + */ +f.canPickUpLoot = "field_82172_bs" +/** + * Chances for each equipment piece from dropping when this entity dies. + * + * Parent Class: EntityLiving + */ +f.equipmentDropChances = "field_82174_bp" +/** + * Whether an arm swing is currently in progress. + * + * Parent Class: EntityLivingBase + */ +f.isSwingInProgress = "field_82175_bq" +/** + * Whether this entity should NOT despawn. + * + * Parent Class: EntityLiving + */ +f.persistenceRequired = "field_82179_bU" +/** + * "The equipment this mob was previously wearing + * + * Parent Class: EntityLivingBase + */ +f.previousEquipment = "field_82180_bT" +/** + * Equipment (armor and held item) for this entity. + * + * Parent Class: EntityLiving + */ +f.equipment = "field_82182_bS" +/** + * AI task for player control. + * + * Parent Class: EntityPig + */ +f.aiControlledByPlayer = "field_82184_d" +/** + * "Last player to trade with this villager + * + * Parent Class: EntityVillager + */ +f.lastBuyingPlayer = "field_82189_bL" +/** + * + * + * Parent Class: EntityVillager + */ +f.isLookingForHome = "field_82190_bM" +/** + * Entity selector for IMob types. + * + * Parent Class: IMob + */ +f.mobSelector = "field_82192_a" +/** + * List of items a witch should drop on death. + * + * Parent Class: EntityWitch + */ +f.witchDrops = "field_82199_d" +/** + * "Timer used as interval for a witch's attack + * + * Parent Class: EntityWitch + */ +f.witchAttackTimer = "field_82200_e" +/** + * Selector used to determine the entities a wither boss should attack. + * + * Parent Class: EntityWither + */ +f.attackEntitySelector = "field_82219_bJ" +/** + * Time before the Wither tries to break blocks + * + * Parent Class: EntityWither + */ +f.blockBreakCounter = "field_82222_j" +/** + * + * + * Parent Class: EntityCreeper + */ +f.fuseTime = "field_82225_f" +/** + * Explosion radius for this creeper. + * + * Parent Class: EntityCreeper + */ +f.explosionRadius = "field_82226_g" +/** + * Ticker used to determine the time remaining for this zombie to convert into a villager when cured. + * + * Parent Class: EntityZombie + */ +f.conversionTime = "field_82234_d" +/** + * Coordinates of where the bat spawned. + * + * Parent Class: EntityBat + */ +f.spawnPosition = "field_82237_a" +/** + * "Whether this player's spawn point is forced + * + * Parent Class: EntityPlayer + */ +f.spawnForced = "field_82248_d" +/** + * + * + * Parent Class: EntityPlayer + */ +f.lastXPSound = "field_82249_h" +/** + * Chance for this item frame's item to drop from the frame. + * + * Parent Class: EntityItemFrame + */ +f.itemDropChance = "field_82337_e" +/** + * Particle alpha + * + * Parent Class: EntityFX + */ +f.particleAlpha = "field_82339_as" +/** + * "This matches things like ""-1 + * + * Parent Class: PlayerSelector + */ +f.intListPattern = "field_82387_b" +/** + * "This matches things like ""rm=4 + * + * Parent Class: PlayerSelector + */ +f.keyValueListPattern = "field_82388_c" +/** + * "This matches the at-tokens introduced for command blocks + * + * Parent Class: PlayerSelector + */ +f.tokenPattern = "field_82389_a" +/** + * The Skeleton's head model. + * + * Parent Class: RenderWitherSkull + */ +f.skeletonHeadModel = "field_82401_a" +/** + * + * + * Parent Class: RenderZombie + */ +f.zombieVillagerModel = "field_82432_p" +/** + * + * + * Parent Class: IBehaviorDispenseItem + */ +f.itemDispenseBehaviorProvider = "field_82483_a" +/** + * Total time for this world. + * + * Parent Class: WorldInfo + */ +f.totalTime = "field_82575_g" +f.theGameRules = {} +/** + * + * + * Parent Class: WorldInfo + */ +f.theGameRules.WorldInfo = "field_82577_x" +/** + * + * + * Parent Class: GameRules + */ +f.theGameRules.GameRules = "field_82771_a" + +/** + * + * + * Parent Class: NBTBase + */ +f.NBT_TYPES = "field_82578_b" +/** + * Objects registered on this registry. + * + * Parent Class: RegistrySimple + */ +f.registryObjects = "field_82596_a" +/** + * "Default object for this registry + * + * Parent Class: RegistryDefaulted + */ +f.defaultObject = "field_82597_b" +/** + * Maximum time the entity's speed should be boosted for. + * + * Parent Class: EntityAIControlledByPlayer + */ +f.maxSpeedBoostTime = "field_82635_f" +/** + * Whether the entity's speed is boosted. + * + * Parent Class: EntityAIControlledByPlayer + */ +f.speedBoosted = "field_82636_d" +/** + * "Counter for speed boosting + * + * Parent Class: EntityAIControlledByPlayer + */ +f.speedBoostTime = "field_82637_e" +/** + * + * + * Parent Class: EntityAIControlledByPlayer + */ +f.maxSpeed = "field_82638_b" +/** + * + * + * Parent Class: EntityAIControlledByPlayer + */ +f.currentSpeed = "field_82639_c" +/** + * + * + * Parent Class: EntityAIControlledByPlayer + */ +f.thisEntity = "field_82640_a" +/** + * The entity (as a RangedAttackMob) the AI instance has been applied to. + * + * Parent Class: EntityAIArrowAttack + */ +f.rangedAttackEntityHost = "field_82641_b" +/** + * + * + * Parent Class: EntityAIArrowAttack + */ +f.maxAttackDistance = "field_82642_h" +/** + * This filter is applied to the Entity search. Only matching entities will be targetted. (null -> no restrictions) + * + * Parent Class: EntityAINearestAttackableTarget + */ +f.targetEntitySelector = "field_82643_g" +/** + * List of world features enabled on this preset. + * + * Parent Class: FlatGeneratorInfo + */ +f.worldFeatures = "field_82653_b" +/** + * + * + * Parent Class: FlatGeneratorInfo + */ +f.biomeToUse = "field_82654_c" +/** + * List of layers on this preset. + * + * Parent Class: FlatGeneratorInfo + */ +f.flatLayers = "field_82655_a" +/** + * + * + * Parent Class: FlatLayerInfo + */ +f.layerMinimumY = "field_82661_d" +/** + * Amount of layers for this set of layers. + * + * Parent Class: FlatLayerInfo + */ +f.layerCount = "field_82664_a" +/** + * contains possible spawns for scattered features + * + * Parent Class: MapGenScatteredFeature + */ +f.scatteredFeatureSpawnList = "field_82668_f" +/** + * the maximum distance between scattered features + * + * Parent Class: MapGenScatteredFeature + */ +f.maxDistanceBetweenScatteredFeatures = "field_82669_g" +/** + * the minimum distance between scattered features + * + * Parent Class: MapGenScatteredFeature + */ +f.minDistanceBetweenScatteredFeatures = "field_82670_h" +f.cropTypeA = {} +/** + * First crop type for this field. + * + * Parent Class: StructureVillagePieces$Field2 + */ +f.cropTypeA.StructureVillagePieces$Field2 = "field_82675_b" +/** + * First crop type for this field. + * + * Parent Class: StructureVillagePieces$Field1 + */ +f.cropTypeA.StructureVillagePieces$Field1 = "field_82679_b" + +f.cropTypeB = {} +/** + * Second crop type for this field. + * + * Parent Class: StructureVillagePieces$Field2 + */ +f.cropTypeB.StructureVillagePieces$Field2 = "field_82676_c" +/** + * Second crop type for this field. + * + * Parent Class: StructureVillagePieces$Field1 + */ +f.cropTypeB.StructureVillagePieces$Field1 = "field_82680_c" + +/** + * Third crop type for this field. + * + * Parent Class: StructureVillagePieces$Field1 + */ +f.cropTypeC = "field_82678_d" +/** + * Fourth crop type for this field. + * + * Parent Class: StructureVillagePieces$Field1 + */ +f.cropTypeD = "field_82681_h" +/** + * Whether this swamp hut has a witch. + * + * Parent Class: ComponentScatteredFeaturePieces$SwampHut + */ +f.hasWitch = "field_82682_h" +/** + * List of player reputations with this village + * + * Parent Class: Village + */ +f.playerReputation = "field_82693_j" +/** + * Timestamp of tick count when villager last bred + * + * Parent Class: Village + */ +f.noBreedTicks = "field_82694_i" +/** + * + * + * Parent Class: ChunkProviderFlat + */ +f.structureGenerators = "field_82696_f" +/** + * + * + * Parent Class: ChunkProviderFlat + */ +f.hasDecoration = "field_82697_g" +/** + * + * + * Parent Class: ChunkProviderFlat + */ +f.flatWorldGenInfo = "field_82699_e" +/** + * + * + * Parent Class: ChunkProviderFlat + */ +f.cachedBlockIDs = "field_82700_c" +/** + * + * + * Parent Class: ChunkProviderFlat + */ +f.lavaLakeGenerator = "field_82701_j" +/** + * + * + * Parent Class: ChunkProviderFlat + */ +f.hasDungeons = "field_82702_h" +/** + * + * + * Parent Class: ChunkProviderFlat + */ +f.waterLakeGenerator = "field_82703_i" +/** + * Whether this creature type is an animal. + * + * Parent Class: EnumCreatureType + */ +f.isAnimal = "field_82707_i" +/** + * Whether the potion is a splash potion + * + * Parent Class: PotionEffect + */ +f.isSplashPotion = "field_82723_d" +/** + * Whether the potion effect came from a beacon + * + * Parent Class: PotionEffect + */ +f.isAmbient = "field_82724_e" +f.wither = {} +/** + * + * + * Parent Class: DamageSource + */ +f.wither.DamageSource = "field_82727_n" +/** + * The wither Potion object. + * + * Parent Class: Potion + */ +f.wither.Potion = "field_82731_v" + +/** + * + * + * Parent Class: DamageSource + */ +f.fallingBlock = "field_82729_p" +/** + * Whether the damage is magic based. + * + * Parent Class: DamageSource + */ +f.magicDamage = "field_82730_x" +/** + * keeps track of how many ticks this PartiallyDestroyedBlock already exists + * + * Parent Class: DestroyBlockProgress + */ +f.createdAtCloudUpdateTick = "field_82745_f" +/** + * ID for this world type. + * + * Parent Class: WorldType + */ +f.worldTypeId = "field_82748_f" +/** + * whether or not this explosion spawns smoke particles + * + * Parent Class: Explosion + */ +f.isSmoking = "field_82755_b" +/** + * + * + * Parent Class: GameRules$Value + */ +f.valueDouble = "field_82759_d" +/** + * + * + * Parent Class: GameRules$Value + */ +f.valueBoolean = "field_82760_b" +/** + * + * + * Parent Class: GameRules$Value + */ +f.valueInteger = "field_82761_c" +/** + * + * + * Parent Class: GameRules$Value + */ +f.valueString = "field_82762_a" +/** + * Maximum times this trade can be used. + * + * Parent Class: MerchantRecipe + */ +f.maxTradeUses = "field_82786_e" +/** + * + * + * Parent Class: ItemSkull + */ +f.skullTypes = "field_82807_a" +/** + * Block ID of the soil this seed food should be planted on. + * + * Parent Class: ItemSeedFood + */ +f.soilId = "field_82809_c" +/** + * + * + * Parent Class: ItemHangingEntity + */ +f.hangingEntityClass = "field_82811_a" +/** + * + * + * Parent Class: PotionHelper + */ +f.goldenCarrotEffect = "field_82818_l" +/** + * Game version for this server. + * + * Parent Class: ServerData + */ +f.gameVersion = "field_82822_g" +/** + * + * + * Parent Class: BossStatus + */ +f.hasColorModifier = "field_82825_d" +/** + * + * + * Parent Class: BossStatus + */ +f.statusBarTime = "field_82826_b" +/** + * + * + * Parent Class: BossStatus + */ +f.bossName = "field_82827_c" +/** + * + * + * Parent Class: BossStatus + */ +f.healthScale = "field_82828_a" +/** + * + * + * Parent Class: EntityRenderer + */ +f.bossColorModifier = "field_82831_U" +/** + * + * + * Parent Class: EntityRenderer + */ +f.bossColorModifierPrev = "field_82832_V" +/** + * "Item frame this stack is on + * + * Parent Class: ItemStack + */ +f.itemFrame = "field_82843_f" +/** + * Here comes out item you merged and/or renamed. + * + * Parent Class: ContainerRepair + */ +f.outputSlot = "field_82852_f" +/** + * The maximum cost of repairing/renaming in the anvil. + * + * Parent Class: ContainerRepair + */ +f.maximumCost = "field_82854_e" +/** + * determined by damage of input item and stackSize of repair materials + * + * Parent Class: ContainerRepair + */ +f.materialCost = "field_82856_l" +/** + * + * + * Parent Class: ContainerRepair + */ +f.repairedItemName = "field_82857_m" +/** + * "This beacon's slot where you put in Emerald + * + * Parent Class: ContainerBeacon + */ +f.beaconSlot = "field_82864_f" +/** + * "Whether to pause when the game loses focus + * + * Parent Class: GameSettings + */ +f.pauseOnLostFocus = "field_82881_y" +/** + * "Whether to show advanced information on item tooltips + * + * Parent Class: GameSettings + */ +f.advancedItemTooltips = "field_82882_x" +/** + * + * + * Parent Class: RenderHelper + */ +f.LIGHT0_POS = "field_82884_b" +/** + * + * + * Parent Class: RenderHelper + */ +f.LIGHT1_POS = "field_82885_c" +/** + * The outer left wing box of the bat model. + * + * Parent Class: ModelBat + */ +f.batOuterLeftWing = "field_82890_f" +/** + * The inner left wing box of the bat model. + * + * Parent Class: ModelBat + */ +f.batLeftWing = "field_82891_d" +/** + * The outer right wing box of the bat model. + * + * Parent Class: ModelBat + */ +f.batOuterRightWing = "field_82892_e" +/** + * The body box of the bat model. + * + * Parent Class: ModelBat + */ +f.batBody = "field_82893_b" +/** + * The inner right wing box of the bat model. + * + * Parent Class: ModelBat + */ +f.batRightWing = "field_82894_c" +/** + * + * + * Parent Class: ModelBat + */ +f.batHead = "field_82895_a" +/** + * + * + * Parent Class: ModelVillager + */ +f.villagerNose = "field_82898_f" +/** + * + * + * Parent Class: ModelWitch + */ +f.witchHat = "field_82902_i" +/** + * + * + * Parent Class: ModelRenderer + */ +f.offsetZ = "field_82907_q" +/** + * Lowest value in the heightmap. + * + * Parent Class: Chunk + */ +f.heightMapMinimum = "field_82912_p" +/** + * + * + * Parent Class: WorldProvider + */ +f.generatorSettings = "field_82913_c" +/** + * + * + * Parent Class: BiomeGenBase + */ +f.spawnableCaveCreatureList = "field_82914_M" +/** + * + * + * Parent Class: BiomeGenHills + */ +f.theWorldGenerator = "field_82915_S" +/** + * "Keeps track of how long the debug crash keycombo (F3+C) has been pressed for + * + * Parent Class: Minecraft + */ +f.debugCrashKeyPressTime = "field_83002_am" +/** + * + * + * Parent Class: World + */ +f.theCalendar = "field_83016_L" +/** + * + * + * Parent Class: EntitySkeleton + */ +f.aiArrowAttack = "field_85037_d" +/** + * + * + * Parent Class: EntitySkeleton + */ +f.aiAttackOnCollide = "field_85038_e" +/** + * + * + * Parent Class: EntityThrowable + */ +f.throwerName = "field_85053_h" +/** + * Is true when the current category is the first in the crash report + * + * Parent Class: CrashReport + */ +f.firstCategoryInCrashReport = "field_85059_f" +/** + * + * + * Parent Class: CrashReport + */ +f.stacktrace = "field_85060_g" +/** + * Category of crash + * + * Parent Class: CrashReport + */ +f.theReportCategory = "field_85061_c" +/** + * + * + * Parent Class: CrashReportCategory + */ +f.stackTrace = "field_85075_d" +/** + * + * + * Parent Class: CrashReportCategory + */ +f.crashReport = "field_85078_a" +/** + * The worldtime at which this PortalPosition was last verified + * + * Parent Class: Teleporter$PortalPosition + */ +f.lastUpdateTime = "field_85087_d" +/** + * whether bounding box should be rendered or not + * + * Parent Class: RenderManager + */ +f.debugBoundingBox = "field_85095_o" +/** + * + * + * Parent Class: Material + */ +f.isAdventureModeExempt = "field_85159_M" +/** + * the teleporter to use when the entity is being transferred into the dimension + * + * Parent Class: WorldServer + */ +f.worldTeleporter = "field_85177_Q" +/** + * The Item currently being used to destroy a block + * + * Parent Class: PlayerControllerMP + */ +f.currentItemHittingBlock = "field_85183_f" +/** + * + * + * Parent Class: GameSettings + */ +f.touchscreen = "field_85185_A" +/** + * A list of valid keys for the destinationCoordainteCache. These are based on the X & Z of the players initial location. + * + * Parent Class: Teleporter + */ +f.destinationCoordinateKeys = "field_85190_d" +/** + * Stores successful portal placement locations for rapid lookup. + * + * Parent Class: Teleporter + */ +f.destinationCoordinateCache = "field_85191_c" +/** + * + * + * Parent Class: Teleporter + */ +f.worldServerInstance = "field_85192_a" +/** + * Internal crafting inventory used to check the result of mixing dyes corresponding to the fleece color when breeding sheep. + * + * Parent Class: EntitySheep + */ +f.inventoryCrafting = "field_90016_e" +/** + * The explosion radius of spawned fireballs. + * + * Parent Class: EntityGhast + */ +f.explosionStrength = "field_92014_j" +/** + * The ItemStack that is currently being highlighted + * + * Parent Class: GuiIngame + */ +f.highlightingItemStack = "field_92016_l" +/** + * Remaining ticks the item highlight should be visible + * + * Parent Class: GuiIngame + */ +f.remainingHighlightTicks = "field_92017_k" +/** + * OpenGL graphics card warning. + * + * Parent Class: GuiMainMenu + */ +f.openGLWarning1 = "field_92025_p" +/** + * + * + * Parent Class: EntityFirework$StarterFX + */ +f.fireworkExplosions = "field_92039_az" +/** + * + * + * Parent Class: EntityFirework$StarterFX + */ +f.theEffectRenderer = "field_92040_ay" +f.twinkle = {} +/** + * + * + * Parent Class: EntityFirework$StarterFX + */ +f.twinkle.EntityFirework$StarterFX = "field_92041_a" +/** + * + * + * Parent Class: EntityFirework$SparkFX + */ +f.twinkle.EntityFirework$SparkFX = "field_92048_ay" + +f.fireworkAge = {} +/** + * + * + * Parent Class: EntityFirework$StarterFX + */ +f.fireworkAge.EntityFirework$StarterFX = "field_92042_ax" +/** + * The age of the firework in ticks. + * + * Parent Class: EntityFireworkRocket + */ +f.fireworkAge.EntityFireworkRocket = "field_92056_a" + +/** + * + * + * Parent Class: EntityFirework$SparkFX + */ +f.baseTextureIndex = "field_92049_a" +/** + * + * + * Parent Class: EntityFirework$SparkFX + */ +f.fadeColourRed = "field_92050_aA" +/** + * + * + * Parent Class: EntityFirework$SparkFX + */ +f.fadeColourGreen = "field_92051_aB" +/** + * + * + * Parent Class: EntityFirework$SparkFX + */ +f.fadeColourBlue = "field_92052_aC" +/** + * + * + * Parent Class: EntityFirework$SparkFX + */ +f.hasFadeColour = "field_92053_aD" +/** + * + * + * Parent Class: EntityFirework$SparkFX + */ +f.trail = "field_92054_ax" +/** + * + * + * Parent Class: EntityLargeFireball + */ +f.explosionPower = "field_92057_e" +/** + * When isBlank is true the DataWatcher is not watching any objects + * + * Parent Class: DataWatcher + */ +f.isBlank = "field_92086_a" +/** + * + * + * Parent Class: Enchantment + */ +f.thorns = "field_92091_k" +/** + * + * + * Parent Class: ShapedRecipes + */ +f.copyIngredientNBT = "field_92101_f" +/** + * + * + * Parent Class: GameSettings + */ +f.heldItemTooltips = "field_92117_D" +/** + * + * + * Parent Class: GameSettings + */ +f.overrideWidth = "field_92118_B" +/** + * + * + * Parent Class: GameSettings + */ +f.overrideHeight = "field_92119_C" +/** + * + * + * Parent Class: InventoryBasic + */ +f.hasCustomName = "field_94051_e" +/** + * + * + * Parent Class: EntityFX + */ +f.particleTextureIndexX = "field_94054_b" +/** + * + * + * Parent Class: EntityFX + */ +f.particleTextureIndexY = "field_94055_c" +/** + * + * + * Parent Class: EntityLivingBase + */ +f._combatTracker = "field_94063_bt" +/** + * + * + * Parent Class: EntityTNTPrimed + */ +f.tntPlacedBy = "field_94084_b" +/** + * + * + * Parent Class: EntityMinecart + */ +f.entityName = "field_94102_c" +/** + * + * + * Parent Class: EntityMinecartTNT + */ +f.minecartTNTFuse = "field_94106_a" +/** + * + * + * Parent Class: EntityMinecartFurnace + */ +f.pushZ = "field_94109_b" +/** + * + * + * Parent Class: EntityMinecartFurnace + */ +f.fuel = "field_94110_c" +/** + * + * + * Parent Class: EntityMinecartFurnace + */ +f.pushX = "field_94111_a" +/** + * "When set to true + * + * Parent Class: EntityMinecartContainer + */ +f.dropContentsWhenDead = "field_94112_b" +/** + * + * + * Parent Class: EntityMinecartContainer + */ +f.minecartContainerItems = "field_94113_a" +/** + * + * + * Parent Class: RenderGlobal + */ +f.destroyBlockIcons = "field_94141_F" +f.holder = {} +/** + * + * + * Parent Class: Stitcher$Slot + */ +f.holder.Stitcher$Slot = "field_94187_f" +/** + * + * + * Parent Class: StitcherException + */ +f.holder.StitcherException = "field_98149_a" + +/** + * + * + * Parent Class: Stitcher$Slot + */ +f.subSlots = "field_94189_e" +f.currentAngle = {} +/** + * + * + * Parent Class: TextureClock + */ +f.currentAngle.TextureClock = "field_94239_h" +/** + * Current compass heading in radians + * + * Parent Class: TextureCompass + */ +f.currentAngle.TextureCompass = "field_94244_i" + +f.angleDelta = {} +/** + * + * + * Parent Class: TextureClock + */ +f.angleDelta.TextureClock = "field_94240_i" +/** + * Speed and direction of compass rotation + * + * Parent Class: TextureCompass + */ +f.angleDelta.TextureCompass = "field_94242_j" + +/** + * + * + * Parent Class: TextureMap + */ +f.missingImage = "field_94249_f" +/** + * + * + * Parent Class: TextureMap + */ +f.mapUploadedSprites = "field_94252_e" +/** + * + * + * Parent Class: TextureMap + */ +f.basePath = "field_94254_c" +/** + * + * + * Parent Class: TextureMap + */ +f.listAnimatedSprites = "field_94258_i" +/** + * + * + * Parent Class: Stitcher + */ +f.forcePowerOf2 = "field_94314_g" +/** + * + * + * Parent Class: Stitcher + */ +f.currentHeight = "field_94315_d" +/** + * + * + * Parent Class: Stitcher + */ +f.maxWidth = "field_94316_e" +/** + * + * + * Parent Class: Stitcher + */ +f.stitchSlots = "field_94317_b" +/** + * + * + * Parent Class: Stitcher + */ +f.currentWidth = "field_94318_c" +/** + * + * + * Parent Class: Stitcher + */ +f.setStitchHolders = "field_94319_a" +/** + * Max size (width or height) of a single tile + * + * Parent Class: Stitcher + */ +f.maxTileDimension = "field_94323_h" +/** + * "The current drag mode (0 : evenly split + * + * Parent Class: Container + */ +f.dragMode = "field_94535_f" +/** + * "The current drag event (0 : start + * + * Parent Class: Container + */ +f.dragEvent = "field_94536_g" +/** + * The list of slots where the itemstack holds will be distributed + * + * Parent Class: Container + */ +f.dragSlots = "field_94537_h" +/** + * The entity tracked. + * + * Parent Class: CombatTracker + */ +f.fighter = "field_94554_b" +/** + * The CombatEntry objects that we've tracked so far. + * + * Parent Class: CombatTracker + */ +f.combatEntries = "field_94556_a" +/** + * + * + * Parent Class: EntitySelectors + */ +f.selectAnything = "field_94557_a" +/** + * + * + * Parent Class: CombatEntry + */ +f.damageSrc = "field_94569_a" +/** + * + * + * Parent Class: WorldServer + */ +f.pendingTickListEntriesThisTick = "field_94579_S" +/** + * + * + * Parent Class: ItemBow + */ +f.bowPullIconNameArray = "field_94601_a" +/** + * + * + * Parent Class: ItemArmor + */ +f.EMPTY_SLOT_NAMES = "field_94603_a" +/** + * + * + * Parent Class: Entity + */ +f.entityUniqueID = "field_96093_i" +/** + * Whether this hopper minecart is being blocked by an activator rail. + * + * Parent Class: EntityMinecartHopper + */ +f.isBlocked = "field_96113_a" +/** + * + * + * Parent Class: EnumChatFormatting + */ +f.fancyStyling = "field_96303_A" +/** + * The control string (section sign + formatting code) that can be inserted into client-side text to display subsequent text in this format. + * + * Parent Class: EnumChatFormatting + */ +f.controlString = "field_96304_B" +/** + * The formatting code that produces this format. + * + * Parent Class: EnumChatFormatting + */ +f.formattingCode = "field_96329_z" +/** + * "Matches formatting codes that indicate that the client should treat the following text as bold + * + * Parent Class: EnumChatFormatting + */ +f.formattingCodePattern = "field_96330_y" +/** + * + * + * Parent Class: World + */ +f.worldScoreboard = "field_96442_D" +/** + * + * + * Parent Class: ItemMinecart$1 + */ +f.behaviourDefaultDispenseItem = "field_96465_b" +/** + * + * + * Parent Class: ScoreboardSaveData + */ +f.delayedInitNbt = "field_96506_b" +f.theScoreboard = {} +/** + * + * + * Parent Class: ScoreboardSaveData + */ +f.theScoreboard.ScoreboardSaveData = "field_96507_a" +/** + * + * + * Parent Class: Score + */ +f.theScoreboard.Score = "field_96656_b" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +f.theScoreboard.ScorePlayerTeam = "field_96677_a" +/** + * + * + * Parent Class: ScoreObjective + */ +f.theScoreboard.ScoreObjective = "field_96686_a" + +/** + * Map of usernames to ScorePlayerTeam objects. + * + * Parent Class: Scoreboard + */ +f.teamMemberships = "field_96540_f" +/** + * "Index 0 is tab menu + * + * Parent Class: Scoreboard + */ +f.objectiveDisplaySlots = "field_96541_d" +/** + * Map of teamnames to ScorePlayerTeam instances + * + * Parent Class: Scoreboard + */ +f.teams = "field_96542_e" +/** + * Map of IScoreObjectiveCriteria objects to ScoreObjective objects. + * + * Parent Class: Scoreboard + */ +f.scoreObjectiveCriterias = "field_96543_b" +/** + * Map of entities name to ScoreObjective objects. + * + * Parent Class: Scoreboard + */ +f.entitiesScoreObjectives = "field_96544_c" +/** + * Map of objective names to ScoreObjective objects. + * + * Parent Class: Scoreboard + */ +f.scoreObjectives = "field_96545_a" +/** + * + * + * Parent Class: ServerScoreboard + */ +f.scoreboardSaveData = "field_96554_c" +/** + * + * + * Parent Class: ServerScoreboard + */ +f.scoreboardMCServer = "field_96555_a" +/** + * + * + * Parent Class: EntitySelectors + */ +f.selectInventories = "field_96566_b" +/** + * + * + * Parent Class: EntitySelectors$ArmoredMob + */ +f.armor = "field_96567_c" +/** + * + * + * Parent Class: ItemMinecart + */ +f.dispenserMinecartBehavior = "field_96602_b" +/** + * + * + * Parent Class: ItemArmor + */ +f.dispenserBehavior = "field_96605_cw" +/** + * + * + * Parent Class: IScoreObjectiveCriteria + */ +f.playerKillCount = "field_96639_d" +/** + * + * + * Parent Class: IScoreObjectiveCriteria + */ +f.totalKillCount = "field_96640_e" +/** + * + * + * Parent Class: IScoreObjectiveCriteria + */ +f.deathCount = "field_96642_c" +/** + * + * + * Parent Class: IScoreObjectiveCriteria + */ +f.INSTANCES = "field_96643_a" +/** + * + * + * Parent Class: ScoreDummyCriteria + */ +f.dummyName = "field_96644_g" +/** + * + * + * Parent Class: Score + */ +f.scorePlayerName = "field_96654_d" +/** + * + * + * Parent Class: Score + */ +f.scorePoints = "field_96655_e" +/** + * + * + * Parent Class: Score + */ +f.theScoreObjective = "field_96657_c" +/** + * Used for sorting score by points + * + * Parent Class: Score + */ +f.scoreComparator = "field_96658_a" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +f.colorSuffix = "field_96671_f" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +f.allowFriendlyFire = "field_96672_g" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +f.teamNameSPT = "field_96673_d" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +f.namePrefixSPT = "field_96674_e" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +f.registeredName = "field_96675_b" +/** + * A set of all team member usernames. + * + * Parent Class: ScorePlayerTeam + */ +f.membershipSet = "field_96676_c" +/** + * + * + * Parent Class: GameSettings + */ +f.chatScale = "field_96691_E" +/** + * + * + * Parent Class: GameSettings + */ +f.chatWidth = "field_96692_F" +/** + * + * + * Parent Class: GameSettings + */ +f.chatHeightUnfocused = "field_96693_G" +/** + * + * + * Parent Class: GameSettings + */ +f.chatHeightFocused = "field_96694_H" +/** + * + * + * Parent Class: Entity + */ +f.forceSpawn = "field_98038_p" +/** + * Mob spawner logic for this spawner minecart. + * + * Parent Class: EntityMinecartMobSpawner + */ +f.mobSpawnerLogic = "field_98040_a" +/** + * + * + * Parent Class: EntityMinecartHopper + */ +f.transferTicker = "field_98044_b" +/** + * + * + * Parent Class: EntityAgeable + */ +f.ageWidth = "field_98056_d" +/** + * + * + * Parent Class: EntityAgeable + */ +f.ageHeight = "field_98057_e" +/** + * + * + * Parent Class: MobSpawnerBaseLogic$WeightedRandomMinecart + */ +f.nbtData = "field_98222_b" +/** + * + * + * Parent Class: MobSpawnerBaseLogic$WeightedRandomMinecart + */ +f.entityType = "field_98223_c" +/** + * + * + * Parent Class: PlayerUsageSnooper + */ +f.minecraftStartTimeMilis = "field_98224_g" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +f.randomEntity = "field_98282_f" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +f.minSpawnDelay = "field_98283_g" +/** + * the previous rotation of the mob inside the mob spawner + * + * Parent Class: MobSpawnerBaseLogic + */ +f.prevMobRotation = "field_98284_d" +/** + * List of minecart to spawn. + * + * Parent Class: MobSpawnerBaseLogic + */ +f.minecartToSpawn = "field_98285_e" +/** + * The delay to spawn. + * + * Parent Class: MobSpawnerBaseLogic + */ +f.spawnDelay = "field_98286_b" +/** + * The rotation of the mob inside the mob spawner + * + * Parent Class: MobSpawnerBaseLogic + */ +f.mobRotation = "field_98287_c" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +f.mobID = "field_98288_a" +/** + * The distance from which a player activates the spawner. + * + * Parent Class: MobSpawnerBaseLogic + */ +f.activatingRangeFromPlayer = "field_98289_l" +/** + * The range coefficient for spawning entities around. + * + * Parent Class: MobSpawnerBaseLogic + */ +f.spawnRange = "field_98290_m" +/** + * Cached instance of the entity to render inside the spawner. + * + * Parent Class: MobSpawnerBaseLogic + */ +f.cachedEntity = "field_98291_j" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +f.maxNearbyEntities = "field_98292_k" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +f.maxSpawnDelay = "field_98293_h" +/** + * + * + * Parent Class: MobSpawnerBaseLogic + */ +f.spawnCount = "field_98294_i" +/** + * + * + * Parent Class: ScorePlayerTeam + */ +f.canSeeFriendlyInvisibles = "field_98301_h" +/** + * + * + * Parent Class: GameSettings + */ +f.AMBIENT_OCCLUSIONS = "field_98303_au" +/** + * + * + * Parent Class: undefined + */ +f.undefined = "" + +module.exports = {m:m,f:f} +}else{ +if(!global.soopyv2mappings){ + + let joinedFile = FileLib.read("SoopyV2", "mappings/data/joined.tsrg") + joinedFile = joinedFile.split("\n") + let joinedData = {} + let joinedData2 = {} + let currThing = [] + joinedFile.forEach(line=>{ + if(line.startsWith(" ")){ + line = line.split(" ") + let thingo = line.pop() + let thingo2 = line.pop() + joinedData[thingo] = currThing[1].split("/").pop() + if(thingo2.includes(")")){ + joinedData2[thingo] = thingo2.replace("(", "").replace(";", "").replace(")", "_") + } + }else{ + currThing = line.split(" ") + } + }) + let methodsFile = FileLib.read("SoopyV2", "mappings/data/methods.csv") + let methodsArr = methodsFile.split("\n") + methodsArr.shift() + let methodsData = {} + methodsArr.forEach(method => { + let [searge,name,side,desc] = method.split(",") + + if(!methodsData[name]) methodsData[name] = {} + methodsData[name][joinedData[searge]] = { + searge: searge, + name: name, + side: side, + desc: desc + } + }) + let fieldsFile = FileLib.read("SoopyV2", "mappings/data/fields.csv") + let fieldsArr = fieldsFile.split("\n") + fieldsArr.shift() + let fieldsData = {} + fieldsArr.forEach(method => { + let [searge,name,side,desc] = method.split(",") + + if(!fieldsData[name]) fieldsData[name] = {} + fieldsData[name][joinedData[searge]] = { + searge: searge, + name: name, + side: side, + desc: desc + } + }) + let methodNameKeys = Object.keys(methodsData) + methodNameKeys.forEach((methodName, i)=>{ + let keys = Object.keys(methodsData[methodName]) + if(keys.length === 1){ + m[methodName] = methodsData[methodName][keys[0]].searge + }else{ + m[methodName] = {} + let keysData = {} + keys.forEach(key=>{ + if(!keysData[key.split("_").pop()]) keysData[key.split("_").pop()] = [] + + keysData[key.split("_").pop()].push(methodsData[methodName][key]) + }) + keys.forEach(key=>{ + if(keysData[key.split("_").pop()].length === 0) return + if(keysData[key.split("_").pop()].length === 1){ + m[methodName][key.split("_").pop()] = methodsData[methodName][key].searge + }else{ + m[methodName][key.split("_").pop()] = {} + keysData[key.split("_").pop()].forEach((method)=>{ + m[methodName][key.split("_").pop()][joinedData2[method.searge]] = method.searge + }) + + keysData[key.split("_").pop()] = [] + } + }) + } + }) + let fieldNameKeys = Object.keys(fieldsData) + fieldNameKeys.forEach((fieldName, i)=>{ + let keys = Object.keys(fieldsData[fieldName]) + if(keys.length === 1){ + f[fieldName] = fieldsData[fieldName][keys[0]].searge + }else{ + f[fieldName] = {} + let keysData = {} + keys.forEach(key=>{ + if(!keysData[key.split("_").pop()]) keysData[key.split("_").pop()] = [] + + keysData[key.split("_").pop()].push(fieldsData[fieldName][key]) + }) + keys.forEach(key=>{ + if(keysData[key.split("_").pop()].length === 0) return + if(keysData[key.split("_").pop()].length === 1){ + f[fieldName][key.split("_").pop()] = fieldsData[fieldName][key].searge + }else{ + f[fieldName][key.split("_").pop()] = {} + keysData[key.split("_").pop()].forEach((field)=>{ + f[fieldName][key.split("_").pop()][joinedData2[field.searge]] = field.searge + }) + + keysData[key.split("_").pop()] = [] + } + }) + } + }) + global.soopyv2mappings = [m, f] +} +[m, f] = global.soopyv2mappings +} +module.exports = {m:m,f:f}
\ No newline at end of file diff --git a/mappings/mappingsTest.js b/mappings/mappingsTest.js new file mode 100644 index 0000000..67de8e1 --- /dev/null +++ b/mappings/mappingsTest.js @@ -0,0 +1,3 @@ +import { m, f } from "./mappings"; + +m.color.GlStateManager
\ No newline at end of file diff --git a/socketConnection.js b/socketConnection.js index 11339f1..23c72b0 100644 --- a/socketConnection.js +++ b/socketConnection.js @@ -57,6 +57,7 @@ class SoopyV2Server extends WebsiteCommunicator { } reportError(error, description){ + // ChatLib.chat(JSON.stringify(error)) if(this.reportErrorsSetting && !this.reportErrorsSetting.getValue()) return let data = { lineNumber: error.lineNumber, diff --git a/utils/renderLib2d.js b/utils/renderLib2d.js index 22dbca7..913475b 100644 --- a/utils/renderLib2d.js +++ b/utils/renderLib2d.js @@ -7,6 +7,8 @@ // Edit: iv added some features to this so might keep as is //-------------------------------------------------------------------------- +import { f, m } from "../mappings/mappings"; + const GL11 = Java.type("org.lwjgl.opengl.GL11"); @@ -24,7 +26,7 @@ const ScaledResolution = net.minecraft.client.gui.ScaledResolution; const AxisAlignedBB = Java.type("net.minecraft.util.AxisAlignedBB") register('renderWorld', () => { - GlStateManager.func_179094_E(); + GlStateManager[m.pushMatrix](); let x = Player.getX(); let y = Player.getY(); @@ -35,7 +37,7 @@ register('renderWorld', () => { GL11.glGetFloat(GL11.GL_MODELVIEW_MATRIX, modelViewMatrix); GL11.glGetFloat(GL11.GL_PROJECTION_MATRIX, projectionMatrix); - GlStateManager.func_179121_F(); + GlStateManager[m.popMatrix](); GL11.glGetInteger(GL11.GL_VIEWPORT, viewportDims); }); @@ -61,10 +63,10 @@ export default class RenderLib2D { const sr = new ScaledResolution(Client.getMinecraft()); - const x = coords.get(0) / sr.func_78325_e(); // getScaleFactor - let y = coords.get(1) / sr.func_78325_e(); // getScaleFactor + const x = coords.get(0) / sr[m.getScaleFactor](); // getScaleFactor + let y = coords.get(1) / sr[m.getScaleFactor](); // getScaleFactor // OpenGL starts at bottom left, mc starts at top left - y = sr.func_78328_b() - y; // getScaledHeight + y = sr[m.getScaledHeight]() - y; // getScaledHeight return { x, y, z }; } @@ -78,7 +80,7 @@ export default class RenderLib2D { let {x, y} = pos1 let {x:ox, y:oy} = pos2 - console.log(x, y, ox, oy, thickness) + // console.log(x, y, ox, oy, thickness) Renderer.drawLine(color, x, y, ox, oy, thickness); } @@ -110,14 +112,14 @@ export default class RenderLib2D { static getVertices = (box) => { let list = []; - list.push({ x: box.field_72340_a, y: box.field_72338_b, z: box.field_72339_c }); - list.push({ x: box.field_72336_d, y: box.field_72338_b, z: box.field_72339_c }); - list.push({ x: box.field_72336_d, y: box.field_72337_e, z: box.field_72339_c }); - list.push({ x: box.field_72340_a, y: box.field_72337_e, z: box.field_72339_c }); - list.push({ x: box.field_72340_a, y: box.field_72338_b, z: box.field_72334_f }); - list.push({ x: box.field_72336_d, y: box.field_72338_b, z: box.field_72334_f }); - list.push({ x: box.field_72336_d, y: box.field_72337_e, z: box.field_72334_f }); - list.push({ x: box.field_72340_a, y: box.field_72337_e, z: box.field_72334_f }); + list.push({ x: box[f.minX.AxisAlignedBB], y: box[f.minY.AxisAlignedBB], z: box[f.minZ.AxisAlignedBB] }); + list.push({ x: box[f.maxX.AxisAlignedBB], y: box[f.minY.AxisAlignedBB], z: box[f.minZ.AxisAlignedBB] }); + list.push({ x: box[f.maxX.AxisAlignedBB], y: box[f.maxY.AxisAlignedBB], z: box[f.minZ.AxisAlignedBB] }); + list.push({ x: box[f.minX.AxisAlignedBB], y: box[f.maxY.AxisAlignedBB], z: box[f.minZ.AxisAlignedBB] }); + list.push({ x: box[f.minX.AxisAlignedBB], y: box[f.minY.AxisAlignedBB], z: box[f.maxZ.AxisAlignedBB] }); + list.push({ x: box[f.maxX.AxisAlignedBB], y: box[f.minY.AxisAlignedBB], z: box[f.maxZ.AxisAlignedBB] }); + list.push({ x: box[f.maxX.AxisAlignedBB], y: box[f.maxY.AxisAlignedBB], z: box[f.maxZ.AxisAlignedBB] }); + list.push({ x: box[f.minX.AxisAlignedBB], y: box[f.maxY.AxisAlignedBB], z: box[f.maxZ.AxisAlignedBB] }); return list; } diff --git a/utils/renderUtils.js b/utils/renderUtils.js index 1c91b6a..216364e 100644 --- a/utils/renderUtils.js +++ b/utils/renderUtils.js @@ -45,8 +45,8 @@ module.exports = { Tessellator.begin(3).colorize(r, g, b); - Tessellator.pos(x, y, z).tex(0, 0); - Tessellator.pos(x2, y2, z2).tex(0, 0); + Tessellator.pos(x, y, z); + Tessellator.pos(x2, y2, z2); Tessellator.draw(); @@ -68,8 +68,8 @@ module.exports = { Tessellator.begin(3).colorize(r, g, b); - Tessellator.pos(x, y, z).tex(0, 0); - Tessellator.pos(x2, y2, z2).tex(0, 0); + Tessellator.pos(x, y, z); + Tessellator.pos(x2, y2, z2); Tessellator.draw(); @@ -83,8 +83,8 @@ module.exports = { Tessellator.begin(3).colorize(r, g, b); - Tessellator.pos(x, y, z).tex(0, 0); - Tessellator.pos(x2, y2, z2).tex(0, 0); + Tessellator.pos(x, y, z); + Tessellator.pos(x2, y2, z2); Tessellator.draw(); }, @@ -101,25 +101,25 @@ module.exports = { Tessellator.begin(3).colorize(colorR, colorG, colorB); - Tessellator.pos(x+1.01,y+1.01,z+1.01).tex(0, 0); - Tessellator.pos(x+1.01,y+1.01,z).tex(0, 0); - Tessellator.pos(x,y+1.01,z).tex(0, 0); - Tessellator.pos(x,y+1.01,z+1.01).tex(0, 0); - Tessellator.pos(x+1.01,y+1.01,z+1.01).tex(0, 0); - Tessellator.pos(x+1.01,y,z+1.01).tex(0, 0); - Tessellator.pos(x+1.01,y,z).tex(0, 0); - Tessellator.pos(x,y,z).tex(0, 0); - Tessellator.pos(x,y,z+1.01).tex(0, 0); - Tessellator.pos(x,y,z).tex(0, 0); - Tessellator.pos(x,y+1.01,z).tex(0, 0); - Tessellator.pos(x,y,z).tex(0, 0); - Tessellator.pos(x+1.01,y,z).tex(0, 0); - Tessellator.pos(x+1.01,y+1.01,z).tex(0, 0); - Tessellator.pos(x+1.01,y,z).tex(0, 0); - Tessellator.pos(x+1.01,y,z+1.01).tex(0, 0); - Tessellator.pos(x,y,z+1.01).tex(0, 0); - Tessellator.pos(x,y+1.01,z+1.01).tex(0, 0); - Tessellator.pos(x+1.01,y+1.01,z+1.01).tex(0, 0); + Tessellator.pos(x+1.01,y+1.01,z+1.01); + Tessellator.pos(x+1.01,y+1.01,z); + Tessellator.pos(x,y+1.01,z); + Tessellator.pos(x,y+1.01,z+1.01); + Tessellator.pos(x+1.01,y+1.01,z+1.01); + Tessellator.pos(x+1.01,y,z+1.01); + Tessellator.pos(x+1.01,y,z); + Tessellator.pos(x,y,z); + Tessellator.pos(x,y,z+1.01); + Tessellator.pos(x,y,z); + Tessellator.pos(x,y+1.01,z); + Tessellator.pos(x,y,z); + Tessellator.pos(x+1.01,y,z); + Tessellator.pos(x+1.01,y+1.01,z); + Tessellator.pos(x+1.01,y,z); + Tessellator.pos(x+1.01,y,z+1.01); + Tessellator.pos(x,y,z+1.01); + Tessellator.pos(x,y+1.01,z+1.01); + Tessellator.pos(x+1.01,y+1.01,z+1.01); Tessellator.draw(); @@ -140,25 +140,25 @@ module.exports = { Tessellator.begin(3).colorize(colorR, colorG, colorB); - Tessellator.pos(x+1,y+1,z+1).tex(0, 0); - Tessellator.pos(x+1,y+1,z).tex(0, 0); - Tessellator.pos(x,y+1,z).tex(0, 0); - Tessellator.pos(x,y+1,z+1).tex(0, 0); - Tessellator.pos(x+1,y+1,z+1).tex(0, 0); - Tessellator.pos(x+1,y,z+1).tex(0, 0); - Tessellator.pos(x+1,y,z).tex(0, 0); - Tessellator.pos(x,y,z).tex(0, 0); - Tessellator.pos(x,y,z+1).tex(0, 0); - Tessellator.pos(x,y,z).tex(0, 0); - Tessellator.pos(x,y+1,z).tex(0, 0); - Tessellator.pos(x,y,z).tex(0, 0); - Tessellator.pos(x+1,y,z).tex(0, 0); - Tessellator.pos(x+1,y+1,z).tex(0, 0); - Tessellator.pos(x+1,y,z).tex(0, 0); - Tessellator.pos(x+1,y,z+1).tex(0, 0); - Tessellator.pos(x,y,z+1).tex(0, 0); - Tessellator.pos(x,y+1,z+1).tex(0, 0); - Tessellator.pos(x+1,y+1,z+1).tex(0, 0); + Tessellator.pos(x+1,y+1,z+1); + Tessellator.pos(x+1,y+1,z); + Tessellator.pos(x,y+1,z); + Tessellator.pos(x,y+1,z+1); + Tessellator.pos(x+1,y+1,z+1); + Tessellator.pos(x+1,y,z+1); + Tessellator.pos(x+1,y,z); + Tessellator.pos(x,y,z); + Tessellator.pos(x,y,z+1); + Tessellator.pos(x,y,z); + Tessellator.pos(x,y+1,z); + Tessellator.pos(x,y,z); + Tessellator.pos(x+1,y,z); + Tessellator.pos(x+1,y+1,z); + Tessellator.pos(x+1,y,z); + Tessellator.pos(x+1,y,z+1); + Tessellator.pos(x,y,z+1); + Tessellator.pos(x,y+1,z+1); + Tessellator.pos(x+1,y+1,z+1); Tessellator.draw(); @@ -191,25 +191,25 @@ module.exports = { Tessellator.begin(3).colorize(colorR, colorG, colorB); - Tessellator.pos(x+width,y+height,z+width).tex(0, 0); - Tessellator.pos(x+width,y+height,z-width).tex(0, 0); - Tessellator.pos(x-width,y+height,z-width).tex(0, 0); - Tessellator.pos(x-width,y+height,z+width).tex(0, 0); - Tessellator.pos(x+width,y+height,z+width).tex(0, 0); - Tessellator.pos(x+width,y,z+width).tex(0, 0); - Tessellator.pos(x+width,y,z-width).tex(0, 0); - Tessellator.pos(x-width,y,z-width).tex(0, 0); - Tessellator.pos(x-width,y,z+width).tex(0, 0); - Tessellator.pos(x-width,y,z-width).tex(0, 0); - Tessellator.pos(x-width,y+height,z-width).tex(0, 0); - Tessellator.pos(x-width,y,z-width).tex(0, 0); - Tessellator.pos(x+width,y,z-width).tex(0, 0); - Tessellator.pos(x+width,y+height,z-width).tex(0, 0); - Tessellator.pos(x+width,y,z-width).tex(0, 0); - Tessellator.pos(x+width,y,z+width).tex(0, 0); - Tessellator.pos(x-width,y,z+width).tex(0, 0); - Tessellator.pos(x-width,y+height,z+width).tex(0, 0); - Tessellator.pos(x+width,y+height,z+width).tex(0, 0); + Tessellator.pos(x+width,y+height,z+width); + Tessellator.pos(x+width,y+height,z-width); + Tessellator.pos(x-width,y+height,z-width); + Tessellator.pos(x-width,y+height,z+width); + Tessellator.pos(x+width,y+height,z+width); + Tessellator.pos(x+width,y,z+width); + Tessellator.pos(x+width,y,z-width); + Tessellator.pos(x-width,y,z-width); + Tessellator.pos(x-width,y,z+width); + Tessellator.pos(x-width,y,z-width); + Tessellator.pos(x-width,y+height,z-width); + Tessellator.pos(x-width,y,z-width); + Tessellator.pos(x+width,y,z-width); + Tessellator.pos(x+width,y+height,z-width); + Tessellator.pos(x+width,y,z-width); + Tessellator.pos(x+width,y,z+width); + Tessellator.pos(x-width,y,z+width); + Tessellator.pos(x-width,y+height,z+width); + Tessellator.pos(x+width,y+height,z+width); Tessellator.draw(); |