Skip to content

Latest commit

 

History

History
407 lines (295 loc) · 272 KB

2020-01-25.md

File metadata and controls

407 lines (295 loc) · 272 KB

< 2020-01-25 >

1,228,777 events, 692,766 push events, 1,008,279 commit messages, 70,059,246 characters

Saturday 2020-01-25 00:00:29 by Derek Scarlett

Added title overlay and gave titles to buttons, switched out Video component with html5 video element to be able to add over lay to the back ground video, thoughts, I was thinking about keeping the buttons underneath but I want to look at some examples of what they should exactly look like im thinking for no a sold black with red for color is fine and then we can either find a footer online or coppy the nav and have like just the church name thats a like, more info like a un ordered list with place holder text


Saturday 2020-01-25 02:24:22 by 0xADADA

😗 new post Pizza/movie night, Birthday edition

Sausage, mushroom, & toasted red pepper, Chicago-style

A Garden of Words

And to Dan, wishes of love and joy and all that is good

Happy Birthday, @dgeb ❤️❤️❤️🎂🍕❤️❤️❤️


Saturday 2020-01-25 03:31:50 by kevans

loader.lua: re-arrange to load local.lua after config loading

The major problem with the current ordering is that loader.conf may contain all of the magic we need to actually setup the console, so loading local.lua prior to that can make it excessively difficult and annoying to debug (whoops, sorry Ravi & Warner).

The new ordering has some implications, but I suspect they are a non-issue. The first is that it's no longer possible for the local module to inject any logic prior to loading config -- I suspect no one has relied on this. The second implication is that the config.loaded hook is now useless, as the local module will always be included after that hook would have fired.

For config.loaded, I will opt to leave it in, just in case we add an early point for local lua to get injected or in case one wants to schedule some deferred logic in a custom loader.lua. The overhead of having it if no hooks will be invoked is relatively minimal.

Diagnosed by: imp Reported by: imp, rpokala (most likely) MFC after: 3 days

git-svn-id: svn+ssh://svn.freebsd.org/base/head@357103 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f


Saturday 2020-01-25 05:00:09 by kevinz000

Undocumented change: toxloss blood penalty nerf. Sorry, love you slimefolks but put this back in another PR if you want.


Saturday 2020-01-25 05:05:44 by dorthu

  • Bee Physics

Tonight, in our third Game Jam Friday (Friday Night Jam? Whatever it was called) Sara finished the graphics for the kitchen! Which is really exicting, and I'll publish the updated game tomorrow!

But that's not all - I spent like four hours working on bee physics. I've clearly been away from the mathy side of game development for a while, and after a few rough attempts at getting a bee to fly around correclty, I figured out an approach that should seem pretty natural: The bee has a point he wants to go, and an angle he's currently travelling in. Each step, he takes figures out the angle he wants to be travelling, then turns as far as he can in that direction. His velocity increases if he's not turning much, but decreases the harder the turn was. The point he wants to reach is fixed, but he'll avoid your mouse if possible unless you're holding the item he wants, in which case he'll travel toward your mouse instead.

That sounds pretty reasonable, but I think I'm doing something wrong geting the angle between two points, as it isn't working like I expect.

I also got an issue opened on github earlier this week asking for a license to be added to the game's repo, which is wild; I didn't realize anyone would care to look at the source. So that's coming soon too I guess.

It's now after midnight, my energy drink (bang! if you were wodnering) is wearing off, and I'm turning in. Update should be published tomorrow.


Saturday 2020-01-25 05:55:51 by Sen

Added Yotsuba B theme to the repo. Thank god Tiblar's CSS isn't retarded like Discord's. Like holy shit, how hard is it to make it readable?


Saturday 2020-01-25 06:23:41 by RadiantFlash7

Medbay Re-work, gunless vendors

Moves Ballestics guns from vendors to equipment area in front of armoury (Still for officer's use.) Reworks like. Most of medbay. (I pulled my hair out for you hawk. Love me ;-;) Most important feature: Emotional support Corgi named Mister Wiggles.


Saturday 2020-01-25 06:48:00 by HotOffThe Hamster

DX: Improve Makefile: DRY strings; Insist VENV; DEV Makefile; PLUS more.

  • DRY: Replace hardcoded project name strings with Makefile variable.
    • This decreases differences when comparing this Makefile against similar ones from similar projects, which helps maintain them contemporaneously.
  • DX: Harden: Insist some rules be run from a virtual environment.
    • (lb): One could conceivably develop from their normal user account, without using virtualenv. However, I sometimes find myself running a make task, forgetting to first activate my development venv, and make runs but fails -- and if I still haven't noticed I'm not in a venv, I start troubleshooting the unexpected failure! So it's much easier if make just tells me when I'm not setup correctly.
      • FUTURE: I'm guessing I'll have to make adjustments to this new behavior for CI tooling, but one has to check in code to break code! So once this commit is on Travis, and if it fails to run there because there's no virtualenv (or if I try moving my CI process to docker like I've been threatening), I imagine I'll be tweaking the insist-venv feature to sometimes run without.
  • Punctiliousness: Specify .PHONY: <rule> after every rule.
    • To avoid namespace clashes with local files, tell make that the rule names do not correspond to any files. (Not that we've had an issue with this, but we might as well be, shall I say, pedantic.)
  • Enhance: Update clean-docs to clean non-SCM files from docs/.
    • On make docs, docs/modules.rst is not rebuilt unless it is absent, even if the underlying source files have changed.
  • Feature: Optional private Makefile.local, for a DEV's own rules.
    • Add a help-local:: rule to append more text to the help.
    • Add other rules as appropriate.
  • Feature: New test-local rule, which tees test output to a local file, .make.out (that, e.g., a DEV could load into their Vim quickfix window, after running another new rule, quickfix).
  • Linting: I like my modelines up top, so moved it there.

Saturday 2020-01-25 08:38:20 by Mark Stephen Sobkow

2020-01-25 MSS Code Factory CFBam, MssCF 2.12.11130-202001250245 Phases 4-11: Complete

Thanks to the magic of scripting and 40+ years of experience slinging code, I was able to bang out phases 4-11 in a matter of hours.

I removed the Sybase ASE rules from MssCF, seeing as they aren't supported by 2.12. They still exist in 2.11, which does have hooks for Sybase ASE code generation.

I've also removed my stripped test data from MssCF's models, now that I have the pieces in place to test the BAM custom code hooks.

The CFSec 2.13 model with the custom code specifications loads successfully, but that doesn't come anywhere near to exercising all of the custom code elements. I'll need to code the SchemaRef handler and test it with migrated CFInt and CFDbTst 2.13 models to come anywhere near to being ready to release the C++ BAM parser into the wild.


Saturday 2020-01-25 10:04:22 by Alexei Lozovsky

Repackage for Ubuntu 12.04 LTS

I'll be publishing this at my PPA at first. Maybe some day it will be included into official Ubuntu repositories, but honestly I'm not that motivated at the moment to support even "offical" packages for more than one distribution -- I have no clue how much time that requires.

We use multi-layered versioning scheme so that upgrades work properly:

0.8.0  -1   ppa1   ~ubuntu12.04  ~rc1
+---+  +-+  +---+  +----------+  +---+
  |     |     |          |         |
  `------------------------------------ Chibi Scheme version
        `------------------------------ Debian package version
              `------------------------ PPA suffix + version
                         |         |    treated newer than 0.8.0-1
                         `------------- Ubuntu release version
                                   |    treated older than "0.8.0-1ppa1"
                                   `--- release-candidate version
                                        treated older than "0.8.0-1ppa1~ubuntu12.04"

Yeah, Debian versioning is a bit weird, but this does the job. I'll drop the "~rcN" from version when the package gets at least some testing.


Saturday 2020-01-25 11:12:56 by Lunchalunur

this pause shit is driving me insane, i can't figure it out and it's really getting on my fucking nerves. redid some of OVERCLOCK, added checks for isauthority for each entity state just to do stuff. i really need people to test the mod and give me feedback like holy fuck also networking some stuff for later. also i just realized it's 6am and i need sleep holy fuck lol


Saturday 2020-01-25 11:32:05 by Ruslan

fuck you, сука гребаная, блядь. add response to enable/disable in settings


Saturday 2020-01-25 11:41:37 by Marko Grdinić

"10:55am. I only got up 5m ago. Yeah, I'll definitely have that breakfast right away.

Today and tomorrow I won't be focusing too much on getting programming done as I have other things on my plate, but I'll try to get a little done.

https://blog.floydhub.com/gans-story-so-far/ Generative Adversarial Networks - The Story So Far

Yesterday I've been reading about GANs, and have spent a part of the night thinking about it. My usual habit would be to focus on the various issue with backprop and try to figure out how to fix them...but maybe that is the wrong way to go about it here.

For the first time I can feel it - maybe it is okay if the agent just dies during training. Maybe that is an intrinsic property of life.

My job isn't to fiddle with credit assignment. It is to break time and make the networks be capable of save/loading.

Deep down, I really am in awe at backprop. From a certain angle it really does all make sense and I cannot think of a better way to do credit assignment. It is both elegant, flexible and extremely resilient to attempts at displacing it.

11:05am. It absolutely is a brilliant idea to make the models continuous and then to calculate the effect of small changes. I'll give it that.

I am not going to worry or beat myself over not being able to figure out how to improve on that brilliant idea. Nature did it, but evolution's main trait its ability to emulate lateral thinking. Humans are much more focused in comparison, which has its benefits and weaknesses.

In the worst case, if the 20s turn out to be a bust and people can't do it, putting microscopes into the brain will clear things up eventually.

11:10am. I have to accept one thing though, every learning rule will have its weaknesses.

And what I will aim from here on out is to work around them at the meta level. My attempts to fix the bugs directly have all failed, so I will go for more inspired designs and hopefully make gains that way.

12:05pm. Done with breakfast.

Yeah, it is great that I can finally channel this feeling. I'd be really effective as ML user if I could stop myself from going down dead ends. I really needed this bitter medicine - sometimes the hardest lesson to learn is that something is irreducible. And sometimes reducing something even if possible results in a loss of structure, clarity and understanding.

12:25pm. Let me do the chores and then comes bath. After that I'll have the rest of the day to myself.

A bit by bit I am kindling this feeling into a flame. I will complete Spiral v0.2 and then I will be absolutely free to program the way I want.

I am going to ditch my nasty habits from the last two years and aim for my dream with what is my original power.

Without a doubt, all this work on PL has leveled me up in some ways, so even if I try to innovate, I can be sure that the things I will be doing will be out of reach for any kind of ML researcher. I am going to exploit this to it truest advantage.

I am going to stop messing around. When the time comes to make the ML library again, the first thing I will do replace the arrays in the allocator with weak arrays. I made a huge strategic blunder by not letting the GC manage memory. If necessary I will change compilation targets from .NET to something else if necessary in order to have that be robust.

12:35pm. This time there will be no more type leakiness, nor compilation slowdowns as the program gets big.

I will stop looking down on languages like C and take something good from them like the top level. I won't be arrogant and think that I can do without top-down typing either.

I am going to learn from the drumming that I've received and do things right this time.

Life is long and I still have time to do it properly.

The fundamentals of the situation have not changed. I am the one who has."


Saturday 2020-01-25 13:09:12 by skyblockz

Database update Changes: Changed the lower bound price of ender_pearl to 13, responsible user: Automated Price Update Changed the upper bound price of ender_pearl to 13, responsible user: Automated Price Update Changed the lower bound price of enchanted_blaze_rod to 518233, responsible user: Automated Price Update Changed the upper bound price of enchanted_blaze_rod to 518233, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1064, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1064, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 2166, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 2166, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 9773, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 9773, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 316610, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 316610, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 525722, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 525722, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 72513, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 72513, responsible user: Automated Price Update Changed the lower bound price of ender_boots to 28810, responsible user: Automated Price Update Changed the upper bound price of ender_boots to 28810, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_beef to 780, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_beef to 780, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 68206, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 68206, responsible user: Automated Price Update Changed the lower bound price of spider_artifact to 3675000, responsible user: Automated Price Update Changed the upper bound price of spider_artifact to 3675000, responsible user: Automated Price Update Changed the lower bound price of wolf_talisman to 57912, responsible user: Automated Price Update Changed the upper bound price of wolf_talisman to 57912, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_leggings to 162807, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_leggings to 162807, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 2037, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 2037, responsible user: Automated Price Update Changed the lower bound price of raider_axe to 129137, responsible user: Automated Price Update Changed the upper bound price of raider_axe to 129137, responsible user: Automated Price Update Changed the lower bound price of prismarine_blade to 1315, responsible user: Automated Price Update Changed the upper bound price of prismarine_blade to 1315, responsible user: Automated Price Update Changed the lower bound price of old_dragon_helmet to 241594, responsible user: Automated Price Update Changed the upper bound price of old_dragon_helmet to 241594, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 64329, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 64329, responsible user: Automated Price Update Changed the lower bound price of green_candy to 517, responsible user: Automated Price Update Changed the upper bound price of green_candy to 517, responsible user: Automated Price Update Changed the lower bound price of titanic_experience_bottle to 496864, responsible user: Automated Price Update Changed the upper bound price of titanic_experience_bottle to 496864, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 28706, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 28706, responsible user: Automated Price Update Changed the lower bound price of enchanted_spider_eye to 1554, responsible user: Automated Price Update Changed the upper bound price of enchanted_spider_eye to 1554, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 525150, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 525150, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 310249, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 310249, responsible user: Automated Price Update Changed the lower bound price of enchanted_blaze_rod to 513930, responsible user: Automated Price Update Changed the upper bound price of enchanted_blaze_rod to 513930, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 60840, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 60840, responsible user: Automated Price Update Changed the lower bound price of medium_backpack to 31634, responsible user: Automated Price Update Changed the upper bound price of medium_backpack to 31634, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 116141, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 116141, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_chestplate to 2378650, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_chestplate to 2378650, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_chestplate to 404222, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_chestplate to 404222, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 110277, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 110277, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 31950, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 31950, responsible user: Automated Price Update Changed the lower bound price of enchanted_bone to 1468, responsible user: Automated Price Update Changed the upper bound price of enchanted_bone to 1468, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 304524, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 304524, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2418, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2418, responsible user: Automated Price Update Changed the lower bound price of growth_v to 42046, responsible user: Automated Price Update Changed the upper bound price of growth_v to 42046, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_leggings to 1367, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_leggings to 1367, responsible user: Automated Price Update Changed the lower bound price of red_gift to 51553, responsible user: Automated Price Update Changed the upper bound price of red_gift to 51553, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 107299, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 107299, responsible user: Automated Price Update Changed the lower bound price of ember_fragment to 517, responsible user: Automated Price Update Changed the upper bound price of ember_fragment to 517, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 347, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 347, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 29230, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 29230, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 104619, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 104619, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 145201, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 145201, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 57700, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 57700, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 486845, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 486845, responsible user: Automated Price Update Changed the lower bound price of enchanted_dark_oak_wood to 1141, responsible user: Automated Price Update Changed the upper bound price of enchanted_dark_oak_wood to 1141, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 12932, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 12932, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 351, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 351, responsible user: Automated Price Update Changed the lower bound price of healing_ring to 577591, responsible user: Automated Price Update Changed the upper bound price of healing_ring to 577591, responsible user: Automated Price Update Changed the lower bound price of snow_block to 9, responsible user: Automated Price Update Changed the upper bound price of snow_block to 9, responsible user: Automated Price Update Changed the lower bound price of young_dragon_helmet to 487149, responsible user: Automated Price Update Changed the upper bound price of young_dragon_helmet to 487149, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 54874, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 54874, responsible user: Automated Price Update Changed the lower bound price of enchanted_spider_eye to 1555, responsible user: Automated Price Update Changed the upper bound price of enchanted_spider_eye to 1555, responsible user: Automated Price Update Changed the lower bound price of old_dragon_leggings to 207085, responsible user: Automated Price Update Changed the upper bound price of old_dragon_leggings to 207085, responsible user: Automated Price Update Changed the lower bound price of wand_of_mending to 40938, responsible user: Automated Price Update Changed the upper bound price of wand_of_mending to 40938, responsible user: Automated Price Update Changed the lower bound price of zombie_ring to 22583, responsible user: Automated Price Update Changed the upper bound price of zombie_ring to 22583, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 6133125, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 6133125, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 303167, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 303167, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 524635, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 524635, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 101157, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 101157, responsible user: Automated Price Update Changed the lower bound price of ember_helmet to 1726, responsible user: Automated Price Update Changed the upper bound price of ember_helmet to 1726, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 965, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 965, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_helmet to 984, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_helmet to 984, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 206060, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 206060, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 375, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 375, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 298150, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 298150, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 528522, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 528522, responsible user: Automated Price Update Changed the lower bound price of spider_talisman to 92168, responsible user: Automated Price Update Changed the upper bound price of spider_talisman to 92168, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 28519, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 28519, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_beef to 890, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_beef to 890, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 723, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 723, responsible user: Automated Price Update Changed the lower bound price of enchanted_red_mushroom to 577, responsible user: Automated Price Update Changed the upper bound price of enchanted_red_mushroom to 577, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_salmon to 1235, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_salmon to 1235, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 55637, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 55637, responsible user: Automated Price Update Changed the lower bound price of wolf_talisman to 61121, responsible user: Automated Price Update Changed the upper bound price of wolf_talisman to 61121, responsible user: Automated Price Update Changed the lower bound price of ember_helmet to 1653, responsible user: Automated Price Update Changed the upper bound price of ember_helmet to 1653, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 377, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 377, responsible user: Automated Price Update Changed the lower bound price of enchanted_sponge to 15836, responsible user: Automated Price Update Changed the upper bound price of enchanted_sponge to 15836, responsible user: Automated Price Update Changed the lower bound price of raider_axe to 128360, responsible user: Automated Price Update Changed the upper bound price of raider_axe to 128360, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 731, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 731, responsible user: Automated Price Update Changed the lower bound price of young_dragon_chestplate to 650572, responsible user: Automated Price Update Changed the upper bound price of young_dragon_chestplate to 650572, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1587, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1587, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 9411, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 9411, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 296335, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 296335, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 9517, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 9517, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 380, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 380, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 527670, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 527670, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 477160, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 477160, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 394, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 394, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 98041, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 98041, responsible user: Automated Price Update Changed the lower bound price of red_claw_egg to 1811049, responsible user: Automated Price Update Changed the upper bound price of red_claw_egg to 1811049, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 226, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 226, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 471994, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 471994, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 472520, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 472520, responsible user: Automated Price Update Changed the lower bound price of rogue_sword to 642, responsible user: Automated Price Update Changed the upper bound price of rogue_sword to 642, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 394, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 394, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 777, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 777, responsible user: Automated Price Update Changed the lower bound price of ender_helmet to 38781, responsible user: Automated Price Update Changed the upper bound price of ender_helmet to 38781, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 480152, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 480152, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 292202, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 292202, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 725, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 725, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 526014, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 526014, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 525413, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 525413, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 478137, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 478137, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4853, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4853, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 367, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 367, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 9715, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 9715, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 57261, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 57261, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_boots to 583098, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_boots to 583098, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1598, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1598, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 478623, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 478623, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 523983, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 523983, responsible user: Automated Price Update Changed the lower bound price of boots_of_growth to 423842, responsible user: Automated Price Update Changed the upper bound price of boots_of_growth to 423842, responsible user: Automated Price Update Changed the lower bound price of raw_porkchop to 26, responsible user: Automated Price Update Changed the upper bound price of raw_porkchop to 26, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 28067, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 28067, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 97825, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 97825, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 27560, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 27560, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 223, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 223, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 202014, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 202014, responsible user: Automated Price Update Changed the lower bound price of radiant_power_orb to 25845, responsible user: Automated Price Update Changed the upper bound price of radiant_power_orb to 25845, responsible user: Automated Price Update Changed the lower bound price of spider_talisman to 95088, responsible user: Automated Price Update Changed the upper bound price of spider_talisman to 95088, responsible user: Automated Price Update Changed the lower bound price of healing_talisman to 82198, responsible user: Automated Price Update Changed the upper bound price of healing_talisman to 82198, responsible user: Automated Price Update Changed the lower bound price of spider_talisman to 96133, responsible user: Automated Price Update Changed the upper bound price of spider_talisman to 96133, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 221, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 221, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 523585, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 523585, responsible user: Automated Price Update Changed the lower bound price of miner_leggings to 2076, responsible user: Automated Price Update Changed the upper bound price of miner_leggings to 2076, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 219, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 219, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 382, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 382, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 27535, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 27535, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 251863, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 251863, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1585, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1585, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 539996, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 539996, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 469761, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 469761, responsible user: Automated Price Update Changed the lower bound price of medium_backpack to 30971, responsible user: Automated Price Update Changed the upper bound price of medium_backpack to 30971, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537996, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537996, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1574, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1574, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_helmet to 343198, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_helmet to 343198, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 1080, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 1080, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 751, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 751, responsible user: Automated Price Update Changed the lower bound price of wood_singularity to 3792560, responsible user: Automated Price Update Changed the upper bound price of wood_singularity to 3792560, responsible user: Automated Price Update Changed the lower bound price of enchanted_feather to 986, responsible user: Automated Price Update Changed the upper bound price of enchanted_feather to 986, responsible user: Automated Price Update Changed the lower bound price of telekinesis_i to 30, responsible user: Automated Price Update Changed the upper bound price of telekinesis_i to 30, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 2026, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 2026, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4794, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4794, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 97300, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 97300, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 61535, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 61535, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 201, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 201, responsible user: Automated Price Update Changed the lower bound price of telekinesis_i to 28, responsible user: Automated Price Update Changed the upper bound price of telekinesis_i to 28, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1545, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1545, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 542974, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 542974, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 32341, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 32341, responsible user: Automated Price Update Changed the lower bound price of raw_porkchop to 25, responsible user: Automated Price Update Changed the upper bound price of raw_porkchop to 25, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 27182, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 27182, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 789, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 789, responsible user: Automated Price Update Changed the lower bound price of old_dragon_chestplate to 318937, responsible user: Automated Price Update Changed the upper bound price of old_dragon_chestplate to 318937, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 201, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 201, responsible user: Automated Price Update Changed the lower bound price of raw_porkchop to 25, responsible user: Automated Price Update Changed the upper bound price of raw_porkchop to 25, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 540677, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 540677, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 65382, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 65382, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 184, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 184, responsible user: Automated Price Update Changed the lower bound price of telekinesis_i to 26, responsible user: Automated Price Update Changed the upper bound price of telekinesis_i to 26, responsible user: Automated Price Update Changed the lower bound price of healing_talisman to 86426, responsible user: Automated Price Update Changed the upper bound price of healing_talisman to 86426, responsible user: Automated Price Update Changed the lower bound price of feather_artifact to 359808, responsible user: Automated Price Update Changed the upper bound price of feather_artifact to 359808, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 4734, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 4734, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 538609, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 538609, responsible user: Automated Price Update Changed the lower bound price of sea_creature_talisman to 1166, responsible user: Automated Price Update Changed the upper bound price of sea_creature_talisman to 1166, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 510808, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 510808, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 31055, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 31055, responsible user: Automated Price Update Changed the lower bound price of enchanted_blaze_rod to 515437, responsible user: Automated Price Update Changed the upper bound price of enchanted_blaze_rod to 515437, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 6300088, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 6300088, responsible user: Automated Price Update Changed the lower bound price of feather_artifact to 338715, responsible user: Automated Price Update Changed the upper bound price of feather_artifact to 338715, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 261482, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 261482, responsible user: Automated Price Update Changed the lower bound price of miner_helmet to 1444, responsible user: Automated Price Update Changed the upper bound price of miner_helmet to 1444, responsible user: Automated Price Update Changed the lower bound price of boots_of_growth to 416438, responsible user: Automated Price Update Changed the upper bound price of boots_of_growth to 416438, responsible user: Automated Price Update Changed the lower bound price of raider_axe to 125524, responsible user: Automated Price Update Changed the upper bound price of raider_axe to 125524, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 172, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 172, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_leggings to 1330, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_leggings to 1330, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 15488, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 15488, responsible user: Automated Price Update Changed the lower bound price of magical_water_bucket to 56, responsible user: Automated Price Update Changed the upper bound price of magical_water_bucket to 56, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 186, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 186, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 536748, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 536748, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 458785, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 458785, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 95570, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 95570, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 463823, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 463823, responsible user: Automated Price Update Changed the lower bound price of enchanted_eye_of_ender to 5303, responsible user: Automated Price Update Changed the upper bound price of enchanted_eye_of_ender to 5303, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4353, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4353, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 803, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 803, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_chestplate to 409823, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_chestplate to 409823, responsible user: Automated Price Update Changed the lower bound price of small_backpack to 932, responsible user: Automated Price Update Changed the upper bound price of small_backpack to 932, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535073, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535073, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 836, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 836, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_chestplate to 2350785, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_chestplate to 2350785, responsible user: Automated Price Update Changed the lower bound price of ember_boots to 9769, responsible user: Automated Price Update Changed the upper bound price of ember_boots to 9769, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 539066, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 539066, responsible user: Automated Price Update Changed the lower bound price of titanic_experience_bottle to 487178, responsible user: Automated Price Update Changed the upper bound price of titanic_experience_bottle to 487178, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535159, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535159, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 459441, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 459441, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 866, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 866, responsible user: Automated Price Update Changed the lower bound price of white_gift to 1796, responsible user: Automated Price Update Changed the upper bound price of white_gift to 1796, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 533643, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 533643, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537779, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537779, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 26, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 26, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 171, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 171, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 463497, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 463497, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 68844, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 68844, responsible user: Automated Price Update Changed the lower bound price of enchanted_flint to 1425, responsible user: Automated Price Update Changed the upper bound price of enchanted_flint to 1425, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 731, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 731, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 29832, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 29832, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1352, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1352, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 71960, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 71960, responsible user: Automated Price Update Changed the lower bound price of ember_fragment to 490, responsible user: Automated Price Update Changed the upper bound price of ember_fragment to 490, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 27135, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 27135, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 160, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 160, responsible user: Automated Price Update Changed the lower bound price of enchanted_pork to 1959, responsible user: Automated Price Update Changed the upper bound price of enchanted_pork to 1959, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_leggings to 968721, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_leggings to 968721, responsible user: Automated Price Update Changed the lower bound price of ender_pearl to 15, responsible user: Automated Price Update Changed the upper bound price of ender_pearl to 15, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2193, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2193, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 459147, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 459147, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_chestplate to 1450, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_chestplate to 1450, responsible user: Automated Price Update Changed the lower bound price of ember_chestplate to 1770, responsible user: Automated Price Update Changed the upper bound price of ember_chestplate to 1770, responsible user: Automated Price Update Changed the lower bound price of wolf_talisman to 69384, responsible user: Automated Price Update Changed the upper bound price of wolf_talisman to 69384, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 540351, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 540351, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 463257, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 463257, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_beef to 926, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_beef to 926, responsible user: Automated Price Update Changed the lower bound price of ender_pearl to 17, responsible user: Automated Price Update Changed the upper bound price of ender_pearl to 17, responsible user: Automated Price Update Changed the lower bound price of undead_catalyst to 536, responsible user: Automated Price Update Changed the upper bound price of undead_catalyst to 536, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 460056, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 460056, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 81779, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 81779, responsible user: Automated Price Update Changed the lower bound price of spider_catalyst to 260273, responsible user: Automated Price Update Changed the upper bound price of spider_catalyst to 260273, responsible user: Automated Price Update Changed the lower bound price of enchanted_fermented_spider_eye to 107570, responsible user: Automated Price Update Changed the upper bound price of enchanted_fermented_spider_eye to 107570, responsible user: Automated Price Update Changed the lower bound price of enchanted_oak_wood to 385, responsible user: Automated Price Update Changed the upper bound price of enchanted_oak_wood to 385, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 91763, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 91763, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 89087, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 89087, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 164, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 164, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3934, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3934, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 13257, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 13257, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 2063, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 2063, responsible user: Automated Price Update Changed the lower bound price of first_strike_iv to 19736, responsible user: Automated Price Update Changed the upper bound price of first_strike_iv to 19736, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 16439, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 16439, responsible user: Automated Price Update Changed the lower bound price of red_claw_talisman to 3126, responsible user: Automated Price Update Changed the upper bound price of red_claw_talisman to 3126, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 865, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 865, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 74764, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 74764, responsible user: Automated Price Update Changed the lower bound price of enchanted_dark_oak_wood to 1169, responsible user: Automated Price Update Changed the upper bound price of enchanted_dark_oak_wood to 1169, responsible user: Automated Price Update Changed the lower bound price of enchanted_eye_of_ender to 6023, responsible user: Automated Price Update Changed the upper bound price of enchanted_eye_of_ender to 6023, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 16946, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 16946, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 289382, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 289382, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_chestplate to 1509, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_chestplate to 1509, responsible user: Automated Price Update Changed the lower bound price of gravity_talisman to 2212, responsible user: Automated Price Update Changed the upper bound price of gravity_talisman to 2212, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 543816, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 543816, responsible user: Automated Price Update Changed the lower bound price of clay to 20, responsible user: Automated Price Update Changed the upper bound price of clay to 20, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 26745, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 26745, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 460050, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 460050, responsible user: Automated Price Update Changed the lower bound price of night_vision_charm to 44901, responsible user: Automated Price Update Changed the upper bound price of night_vision_charm to 44901, responsible user: Automated Price Update Changed the lower bound price of silver_fang to 3991, responsible user: Automated Price Update Changed the upper bound price of silver_fang to 3991, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 546934, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 546934, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 91178, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 91178, responsible user: Automated Price Update Changed the lower bound price of ender_pearl to 20, responsible user: Automated Price Update Changed the upper bound price of ender_pearl to 20, responsible user: Automated Price Update Changed the lower bound price of enchanted_grilled_pork to 178167, responsible user: Automated Price Update Changed the upper bound price of enchanted_grilled_pork to 178167, responsible user: Automated Price Update Changed the lower bound price of enchanted_spider_eye to 1556, responsible user: Automated Price Update Changed the upper bound price of enchanted_spider_eye to 1556, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 9744, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 9744, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 988, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 988, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 27556, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 27556, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 754, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 754, responsible user: Automated Price Update Changed the lower bound price of enchanted_spider_eye to 1557, responsible user: Automated Price Update Changed the upper bound price of enchanted_spider_eye to 1557, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 893, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 893, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 2003, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 2003, responsible user: Automated Price Update Changed the lower bound price of end_stone_bow to 5642, responsible user: Automated Price Update Changed the upper bound price of end_stone_bow to 5642, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_boots to 919, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_boots to 919, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond_block to 203651, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond_block to 203651, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_leggings to 2284650, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_leggings to 2284650, responsible user: Automated Price Update Changed the lower bound price of enchanted_grilled_pork to 173150, responsible user: Automated Price Update Changed the upper bound price of enchanted_grilled_pork to 173150, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 874, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 874, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 92640, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 92640, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 544241, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 544241, responsible user: Automated Price Update Changed the lower bound price of miner_chestplate to 2164, responsible user: Automated Price Update Changed the upper bound price of miner_chestplate to 2164, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 206279, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 206279, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 92001, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 92001, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 9770, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 9770, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1703, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1703, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_chestplate to 952917, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_chestplate to 952917, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 460045, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 460045, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 27136, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 27136, responsible user: Automated Price Update Changed the lower bound price of greater_backpack to 432472, responsible user: Automated Price Update Changed the upper bound price of greater_backpack to 432472, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 202211, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 202211, responsible user: Automated Price Update Changed the lower bound price of enchanted_grilled_pork to 182515, responsible user: Automated Price Update Changed the upper bound price of enchanted_grilled_pork to 182515, responsible user: Automated Price Update Changed the lower bound price of enchanted_grilled_pork to 189264, responsible user: Automated Price Update Changed the upper bound price of enchanted_grilled_pork to 189264, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 150518, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 150518, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 539817, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 539817, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 168, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 168, responsible user: Automated Price Update Changed the lower bound price of titanic_experience_bottle to 494778, responsible user: Automated Price Update Changed the upper bound price of titanic_experience_bottle to 494778, responsible user: Automated Price Update


Saturday 2020-01-25 16:55:50 by skyblockz

Database update Changes: Changed the lower bound price of grand_experience_bottle to 6032, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 6032, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 747, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 747, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 35, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 35, responsible user: Automated Price Update Changed the lower bound price of tarantula_chestplate to 883090, responsible user: Automated Price Update Changed the upper bound price of tarantula_chestplate to 883090, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 7071, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 7071, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 542654, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 542654, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 5798315, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 5798315, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 2024, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 2024, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 1488, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 1488, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 125260, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 125260, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11496, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11496, responsible user: Automated Price Update Changed the lower bound price of spider_talisman to 73437, responsible user: Automated Price Update Changed the upper bound price of spider_talisman to 73437, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 538389, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 538389, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 307668, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 307668, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 33, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 33, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 542050, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 542050, responsible user: Automated Price Update Changed the lower bound price of emerald_blade to 431410, responsible user: Automated Price Update Changed the upper bound price of emerald_blade to 431410, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1431, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1431, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 734, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 734, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 1422, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 1422, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 538845, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 538845, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 632, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 632, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 9874, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 9874, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 464042, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 464042, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 534960, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 534960, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 763, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 763, responsible user: Automated Price Update Changed the lower bound price of fish_affinity_talisman to 194069, responsible user: Automated Price Update Changed the upper bound price of fish_affinity_talisman to 194069, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 470868, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 470868, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11446, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11446, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 878, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 878, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 533464, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 533464, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1420, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1420, responsible user: Automated Price Update Changed the lower bound price of experience_artifact to 618452, responsible user: Automated Price Update Changed the upper bound price of experience_artifact to 618452, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537618, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537618, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 7102, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 7102, responsible user: Automated Price Update Changed the lower bound price of enchanted_bookshelf to 6876, responsible user: Automated Price Update Changed the upper bound price of enchanted_bookshelf to 6876, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2791, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2791, responsible user: Automated Price Update Changed the lower bound price of giant_killer_v to 2606, responsible user: Automated Price Update Changed the upper bound price of giant_killer_v to 2606, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 2025, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 2025, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1238, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1238, responsible user: Automated Price Update Changed the lower bound price of miner_leggings to 1734, responsible user: Automated Price Update Changed the upper bound price of miner_leggings to 1734, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 97870, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 97870, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 100504, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 100504, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 9387, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 9387, responsible user: Automated Price Update Changed the lower bound price of emerald_blade to 419043, responsible user: Automated Price Update Changed the upper bound price of emerald_blade to 419043, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11851, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11851, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_lazuli to 617, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_lazuli to 617, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 27957, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 27957, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 10471, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 10471, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 723, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 723, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 759, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 759, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1116, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1116, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_lazuli to 587, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_lazuli to 587, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 770, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 770, responsible user: Automated Price Update Changed the lower bound price of snow_suit_chestplate to 8786, responsible user: Automated Price Update Changed the upper bound price of snow_suit_chestplate to 8786, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 759, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 759, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 2931, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 2931, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1823, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1823, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 10754, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 10754, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 253217, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 253217, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 159132, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 159132, responsible user: Automated Price Update Changed the lower bound price of sharpness_vi to 6677972, responsible user: Automated Price Update Changed the upper bound price of sharpness_vi to 6677972, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 43848, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 43848, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 541356, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 541356, responsible user: Automated Price Update Changed the lower bound price of young_dragon_chestplate to 586962, responsible user: Automated Price Update Changed the upper bound price of young_dragon_chestplate to 586962, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_helmet to 774488, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_helmet to 774488, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond_block to 211043, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond_block to 211043, responsible user: Automated Price Update Changed the lower bound price of diamond_spreading to 1776, responsible user: Automated Price Update Changed the upper bound price of diamond_spreading to 1776, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2949, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2949, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 167254, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 167254, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 40540, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 40540, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 1546, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 1546, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 99079, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 99079, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2867, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2867, responsible user: Automated Price Update Changed the lower bound price of wand_of_healing to 1674, responsible user: Automated Price Update Changed the upper bound price of wand_of_healing to 1674, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 520, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 520, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_lazuli to 571, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_lazuli to 571, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1816, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1816, responsible user: Automated Price Update Changed the lower bound price of solar_panel to 249594, responsible user: Automated Price Update Changed the upper bound price of solar_panel to 249594, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 523, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 523, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 123292, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 123292, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 13328, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 13328, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 161734, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 161734, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537220, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537220, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535498, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535498, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 531948, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 531948, responsible user: Automated Price Update Changed the lower bound price of enchanted_block_of_coal to 182316, responsible user: Automated Price Update Changed the upper bound price of enchanted_block_of_coal to 182316, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 771, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 771, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_helmet to 351725, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_helmet to 351725, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 777, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 777, responsible user: Automated Price Update Changed the lower bound price of enchanted_magma_cream to 1483, responsible user: Automated Price Update Changed the upper bound price of enchanted_magma_cream to 1483, responsible user: Automated Price Update Changed the lower bound price of white_gift to 2168, responsible user: Automated Price Update Changed the upper bound price of white_gift to 2168, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_helmet to 934, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_helmet to 934, responsible user: Automated Price Update Changed the lower bound price of enchanted_golden_apple to 956, responsible user: Automated Price Update Changed the upper bound price of enchanted_golden_apple to 956, responsible user: Automated Price Update Changed the lower bound price of tarantula_chestplate to 894781, responsible user: Automated Price Update Changed the upper bound price of tarantula_chestplate to 894781, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 476681, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 476681, responsible user: Automated Price Update Changed the lower bound price of wood_singularity to 3789056, responsible user: Automated Price Update Changed the upper bound price of wood_singularity to 3789056, responsible user: Automated Price Update Changed the lower bound price of compactor to 1178, responsible user: Automated Price Update Changed the upper bound price of compactor to 1178, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 536253, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 536253, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 90471, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 90471, responsible user: Automated Price Update Changed the lower bound price of enchanted_dark_oak_wood to 1124, responsible user: Automated Price Update Changed the upper bound price of enchanted_dark_oak_wood to 1124, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar to 533, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar to 533, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_boots to 744, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_boots to 744, responsible user: Automated Price Update Changed the lower bound price of enchantment_table to 274, responsible user: Automated Price Update Changed the upper bound price of enchantment_table to 274, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 6082, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 6082, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 161852, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 161852, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 475013, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 475013, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 766, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 766, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 161767, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 161767, responsible user: Automated Price Update Changed the lower bound price of clay to 8, responsible user: Automated Price Update Changed the upper bound price of clay to 8, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2602, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2602, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 30, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 30, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 87424, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 87424, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 305651, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 305651, responsible user: Automated Price Update Changed the lower bound price of fish_affinity_talisman to 189662, responsible user: Automated Price Update Changed the upper bound price of fish_affinity_talisman to 189662, responsible user: Automated Price Update Changed the lower bound price of solar_panel to 244406, responsible user: Automated Price Update Changed the upper bound price of solar_panel to 244406, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1410, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1410, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5905, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5905, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1806, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1806, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 136195, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 136195, responsible user: Automated Price Update Changed the lower bound price of revenant_flesh to 11, responsible user: Automated Price Update Changed the upper bound price of revenant_flesh to 11, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 90918, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 90918, responsible user: Automated Price Update Changed the lower bound price of sunflower to 3, responsible user: Automated Price Update Changed the upper bound price of sunflower to 3, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_boots to 1278405, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_boots to 1278405, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 467512, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 467512, responsible user: Automated Price Update Changed the lower bound price of feather_ring to 24054, responsible user: Automated Price Update Changed the upper bound price of feather_ring to 24054, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond_block to 210419, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond_block to 210419, responsible user: Automated Price Update Changed the lower bound price of sugar_cane to 4, responsible user: Automated Price Update Changed the upper bound price of sugar_cane to 4, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 2004, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 2004, responsible user: Automated Price Update Changed the lower bound price of bat_talisman to 48281, responsible user: Automated Price Update Changed the upper bound price of bat_talisman to 48281, responsible user: Automated Price Update Changed the lower bound price of ender_bow to 2627, responsible user: Automated Price Update Changed the upper bound price of ender_bow to 2627, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 700, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 700, responsible user: Automated Price Update Changed the lower bound price of snow_block to 11, responsible user: Automated Price Update Changed the upper bound price of snow_block to 11, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 315086, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 315086, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond_block to 209857, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond_block to 209857, responsible user: Automated Price Update Changed the lower bound price of end_stone_bow to 6942, responsible user: Automated Price Update Changed the upper bound price of end_stone_bow to 6942, responsible user: Automated Price Update Changed the lower bound price of bat_talisman to 48743, responsible user: Automated Price Update Changed the upper bound price of bat_talisman to 48743, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1825, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1825, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1822, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1822, responsible user: Automated Price Update Changed the lower bound price of spider_talisman to 76093, responsible user: Automated Price Update Changed the upper bound price of spider_talisman to 76093, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_chestplate to 518909, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_chestplate to 518909, responsible user: Automated Price Update Changed the lower bound price of enchanted_oak_wood to 1353, responsible user: Automated Price Update Changed the upper bound price of enchanted_oak_wood to 1353, responsible user: Automated Price Update Changed the lower bound price of miner_leggings to 1611, responsible user: Automated Price Update Changed the upper bound price of miner_leggings to 1611, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 29187, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 29187, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond_block to 209351, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond_block to 209351, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 540128, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 540128, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 89876, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 89876, responsible user: Automated Price Update Changed the lower bound price of remnant_of_the_eye to 786, responsible user: Automated Price Update Changed the upper bound price of remnant_of_the_eye to 786, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 475761, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 475761, responsible user: Automated Price Update Changed the lower bound price of revenant_flesh to 10, responsible user: Automated Price Update Changed the upper bound price of revenant_flesh to 10, responsible user: Automated Price Update Changed the lower bound price of remnant_of_the_eye to 757, responsible user: Automated Price Update Changed the upper bound price of remnant_of_the_eye to 757, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 543615, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 543615, responsible user: Automated Price Update Changed the lower bound price of titanic_experience_bottle to 357165, responsible user: Automated Price Update Changed the upper bound price of titanic_experience_bottle to 357165, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_boots to 720, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_boots to 720, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 312327, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 312327, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 93131, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 93131, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 298584, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 298584, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 539254, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 539254, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 94168, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 94168, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2381, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2381, responsible user: Automated Price Update Changed the lower bound price of enchanted_fermented_spider_eye to 96464, responsible user: Automated Price Update Changed the upper bound price of enchanted_fermented_spider_eye to 96464, responsible user: Automated Price Update Changed the lower bound price of shaman_sword to 156398, responsible user: Automated Price Update Changed the upper bound price of shaman_sword to 156398, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 492025, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 492025, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 92801, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 92801, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 538329, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 538329, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 629, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 629, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 519, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 519, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 5839484, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 5839484, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 626, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 626, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 688, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 688, responsible user: Automated Price Update Changed the lower bound price of boots_of_growth to 303733, responsible user: Automated Price Update Changed the upper bound price of boots_of_growth to 303733, responsible user: Automated Price Update Changed the lower bound price of old_dragon_helmet to 208063, responsible user: Automated Price Update Changed the upper bound price of old_dragon_helmet to 208063, responsible user: Automated Price Update Changed the lower bound price of enchanted_magma_cream to 1482, responsible user: Automated Price Update Changed the upper bound price of enchanted_magma_cream to 1482, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 538512, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 538512, responsible user: Automated Price Update Changed the lower bound price of solar_panel to 239965, responsible user: Automated Price Update Changed the upper bound price of solar_panel to 239965, responsible user: Automated Price Update Changed the lower bound price of first_strike_iv to 23650, responsible user: Automated Price Update Changed the upper bound price of first_strike_iv to 23650, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 746, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 746, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 13795, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 13795, responsible user: Automated Price Update Changed the lower bound price of enchanted_grilled_pork to 193835, responsible user: Automated Price Update Changed the upper bound price of enchanted_grilled_pork to 193835, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 97407, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 97407, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 30291, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 30291, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1148, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1148, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 542161, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 542161, responsible user: Automated Price Update Changed the lower bound price of old_dragon_chestplate to 278360, responsible user: Automated Price Update Changed the upper bound price of old_dragon_chestplate to 278360, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 12187, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 12187, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 545445, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 545445, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 103636, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 103636, responsible user: Automated Price Update Changed the lower bound price of greater_backpack to 603104, responsible user: Automated Price Update Changed the upper bound price of greater_backpack to 603104, responsible user: Automated Price Update Changed the lower bound price of crystal_leggings to 110138, responsible user: Automated Price Update Changed the upper bound price of crystal_leggings to 110138, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 1665, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 1665, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 1376, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 1376, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_chicken to 1648, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_chicken to 1648, responsible user: Automated Price Update Changed the lower bound price of green_candy to 967, responsible user: Automated Price Update Changed the upper bound price of green_candy to 967, responsible user: Automated Price Update Changed the lower bound price of ender_helmet to 35500, responsible user: Automated Price Update Changed the upper bound price of ender_helmet to 35500, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 101272, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 101272, responsible user: Automated Price Update Changed the lower bound price of enchanted_magma_cream to 1528, responsible user: Automated Price Update Changed the upper bound price of enchanted_magma_cream to 1528, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 1366, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 1366, responsible user: Automated Price Update Changed the lower bound price of wood_singularity to 3816733, responsible user: Automated Price Update Changed the upper bound price of wood_singularity to 3816733, responsible user: Automated Price Update Changed the lower bound price of enchanted_paper to 390, responsible user: Automated Price Update Changed the upper bound price of enchanted_paper to 390, responsible user: Automated Price Update Changed the lower bound price of spider_talisman to 79884, responsible user: Automated Price Update Changed the upper bound price of spider_talisman to 79884, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 541900, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 541900, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 13497, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 13497, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 545210, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 545210, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 734, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 734, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 724, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 724, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5790, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5790, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1185, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1185, responsible user: Automated Price Update Changed the lower bound price of enchanted_quartz to 1079, responsible user: Automated Price Update Changed the upper bound price of enchanted_quartz to 1079, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5900, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5900, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 700, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 700, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 808, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 808, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 39869, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 39869, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 515, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 515, responsible user: Automated Price Update Changed the lower bound price of diamond_spreading to 1696, responsible user: Automated Price Update Changed the upper bound price of diamond_spreading to 1696, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 490322, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 490322, responsible user: Automated Price Update Changed the lower bound price of remnant_of_the_eye to 731, responsible user: Automated Price Update Changed the upper bound price of remnant_of_the_eye to 731, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 30137, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 30137, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 512, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 512, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 853, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 853, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 100270, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 100270, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_helmet to 1154393, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_helmet to 1154393, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_lazuli to 530, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_lazuli to 530, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 6033, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 6033, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 830, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 830, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 548189, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 548189, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 509, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 509, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 692, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 692, responsible user: Automated Price Update Changed the lower bound price of young_dragon_chestplate to 602686, responsible user: Automated Price Update Changed the upper bound price of young_dragon_chestplate to 602686, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 487577, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 487577, responsible user: Automated Price Update Changed the lower bound price of medium_backpack to 38446, responsible user: Automated Price Update Changed the upper bound price of medium_backpack to 38446, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 98293, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 98293, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 513, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 513, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2243, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2243, responsible user: Automated Price Update Changed the lower bound price of weak_wolf_catalyst to 860365, responsible user: Automated Price Update Changed the upper bound price of weak_wolf_catalyst to 860365, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 790, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 790, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 12956, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 12956, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 100464, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 100464, responsible user: Automated Price Update Changed the lower bound price of enchanted_nether_wart to 1012, responsible user: Automated Price Update Changed the upper bound price of enchanted_nether_wart to 1012, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1114, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1114, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 2145, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 2145, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 765, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 765, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 517, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 517, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 538, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 538, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 1870, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 1870, responsible user: Automated Price Update Changed the lower bound price of enchanted_flint to 1612, responsible user: Automated Price Update Changed the upper bound price of enchanted_flint to 1612, responsible user: Automated Price Update Changed the lower bound price of clay to 8, responsible user: Automated Price Update Changed the upper bound price of clay to 8, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 482519, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 482519, responsible user: Automated Price Update Changed the lower bound price of enchanted_emerald to 1631, responsible user: Automated Price Update Changed the upper bound price of enchanted_emerald to 1631, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 2166, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 2166, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 95129, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 95129, responsible user: Automated Price Update Changed the lower bound price of hamster_wheel to 18041, responsible user: Automated Price Update Changed the upper bound price of hamster_wheel to 18041, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 260849, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 260849, responsible user: Automated Price Update Changed the lower bound price of enchanted_emerald to 1649, responsible user: Automated Price Update Changed the upper bound price of enchanted_emerald to 1649, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 30457, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 30457, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 106508, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 106508, responsible user: Automated Price Update Changed the lower bound price of spiked_hook_vi to 14831, responsible user: Automated Price Update Changed the upper bound price of spiked_hook_vi to 14831, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 10466, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 10466, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 109657, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 109657, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 39928, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 39928, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 474862, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 474862, responsible user: Automated Price Update Changed the lower bound price of clay to 8, responsible user: Automated Price Update Changed the upper bound price of clay to 8, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3080, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3080, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 30056, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 30056, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 473376, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 473376, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 29550, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 29550, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 466038, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 466038, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 532, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 532, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 8227, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 8227, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5985, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5985, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 543370, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 543370, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 540033, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 540033, responsible user: Automated Price Update Changed the lower bound price of enchanted_grilled_pork to 189452, responsible user: Automated Price Update Changed the upper bound price of enchanted_grilled_pork to 189452, responsible user: Automated Price Update Changed the lower bound price of enchanted_pork to 3533, responsible user: Automated Price Update Changed the upper bound price of enchanted_pork to 3533, responsible user: Automated Price Update Changed the lower bound price of medium_backpack to 35751, responsible user: Automated Price Update Changed the upper bound price of medium_backpack to 35751, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 99991, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 99991, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 774, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 774, responsible user: Automated Price Update Changed the lower bound price of enchanted_pumpkin to 752, responsible user: Automated Price Update Changed the upper bound price of enchanted_pumpkin to 752, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 101992, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 101992, responsible user: Automated Price Update Changed the lower bound price of boots_of_growth to 313360, responsible user: Automated Price Update Changed the upper bound price of boots_of_growth to 313360, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 543530, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 543530, responsible user: Automated Price Update Changed the lower bound price of clay to 8, responsible user: Automated Price Update Changed the upper bound price of clay to 8, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 1874, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 1874, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 12717, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 12717, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1517, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1517, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 105785, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 105785, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5837, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5837, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 759, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 759, responsible user: Automated Price Update Changed the lower bound price of enchanted_pumpkin to 741, responsible user: Automated Price Update Changed the upper bound price of enchanted_pumpkin to 741, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 459109, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 459109, responsible user: Automated Price Update Changed the lower bound price of critical_vi to 342072, responsible user: Automated Price Update Changed the upper bound price of critical_vi to 342072, responsible user: Automated Price Update Changed the lower bound price of ender_helmet to 33100, responsible user: Automated Price Update Changed the upper bound price of ender_helmet to 33100, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 674, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 674, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 8904, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 8904, responsible user: Automated Price Update Changed the lower bound price of ender_boots to 38276, responsible user: Automated Price Update Changed the upper bound price of ender_boots to 38276, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 295326, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 295326, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 799, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 799, responsible user: Automated Price Update Changed the lower bound price of enchanted_flint to 1576, responsible user: Automated Price Update Changed the upper bound price of enchanted_flint to 1576, responsible user: Automated Price Update Changed the lower bound price of enchanted_hopper to 1168443, responsible user: Automated Price Update Changed the upper bound price of enchanted_hopper to 1168443, responsible user: Automated Price Update Changed the lower bound price of diamond_spreading to 1738, responsible user: Automated Price Update Changed the upper bound price of diamond_spreading to 1738, responsible user: Automated Price Update Changed the lower bound price of enchanted_magma_cream to 1522, responsible user: Automated Price Update Changed the upper bound price of enchanted_magma_cream to 1522, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 28895, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 28895, responsible user: Automated Price Update Changed the lower bound price of sunflower to 3, responsible user: Automated Price Update Changed the upper bound price of sunflower to 3, responsible user: Automated Price Update Changed the lower bound price of enchanted_hopper to 1111599, responsible user: Automated Price Update Changed the upper bound price of enchanted_hopper to 1111599, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 668, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 668, responsible user: Automated Price Update Changed the lower bound price of fish_affinity_talisman to 193896, responsible user: Automated Price Update Changed the upper bound price of fish_affinity_talisman to 193896, responsible user: Automated Price Update Changed the lower bound price of enchanted_baked_potato to 89560, responsible user: Automated Price Update Changed the upper bound price of enchanted_baked_potato to 89560, responsible user: Automated Price Update Changed the lower bound price of clay to 8, responsible user: Automated Price Update Changed the upper bound price of clay to 8, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 9014, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 9014, responsible user: Automated Price Update Changed the lower bound price of end_stone_bow to 7585, responsible user: Automated Price Update Changed the upper bound price of end_stone_bow to 7585, responsible user: Automated Price Update Changed the lower bound price of wand_of_healing to 1564, responsible user: Automated Price Update Changed the upper bound price of wand_of_healing to 1564, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 539177, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 539177, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1191, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1191, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2343, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2343, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 683, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 683, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 459198, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 459198, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2664, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2664, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 746, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 746, responsible user: Automated Price Update Changed the lower bound price of vampire_mask to 5529555, responsible user: Automated Price Update Changed the upper bound price of vampire_mask to 5529555, responsible user: Automated Price Update Changed the lower bound price of clay to 8, responsible user: Automated Price Update Changed the upper bound price of clay to 8, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 655, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 655, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 666, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 666, responsible user: Automated Price Update Changed the lower bound price of enchanted_flint to 1562, responsible user: Automated Price Update Changed the upper bound price of enchanted_flint to 1562, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 253606, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 253606, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_leggings t…


Saturday 2020-01-25 17:15:50 by skyblockz

Database update Changes: Changed the lower bound price of hot_potato_book to 103992, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 103992, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 103593, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 103593, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1864, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1864, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 104943, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 104943, responsible user: Automated Price Update Changed the lower bound price of ender_boots to 36545, responsible user: Automated Price Update Changed the upper bound price of ender_boots to 36545, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 72042, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 72042, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1732, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1732, responsible user: Automated Price Update Changed the lower bound price of crystal_chestplate to 83033, responsible user: Automated Price Update Changed the upper bound price of crystal_chestplate to 83033, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 402475, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 402475, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 163174, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 163174, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5471, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5471, responsible user: Automated Price Update Changed the lower bound price of growth_v to 23386, responsible user: Automated Price Update Changed the upper bound price of growth_v to 23386, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 403528, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 403528, responsible user: Automated Price Update Changed the lower bound price of wolf_talisman to 67796, responsible user: Automated Price Update Changed the upper bound price of wolf_talisman to 67796, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 1942, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 1942, responsible user: Automated Price Update Changed the lower bound price of raw_porkchop to 10, responsible user: Automated Price Update Changed the upper bound price of raw_porkchop to 10, responsible user: Automated Price Update Changed the lower bound price of growth_v to 23611, responsible user: Automated Price Update Changed the upper bound price of growth_v to 23611, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5224, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5224, responsible user: Automated Price Update Changed the lower bound price of old_dragon_boots to 157576, responsible user: Automated Price Update Changed the upper bound price of old_dragon_boots to 157576, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 499500, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 499500, responsible user: Automated Price Update Changed the lower bound price of raider_axe to 179010, responsible user: Automated Price Update Changed the upper bound price of raider_axe to 179010, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 1724, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 1724, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 11048, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 11048, responsible user: Automated Price Update Changed the lower bound price of crystal_leggings to 112615, responsible user: Automated Price Update Changed the upper bound price of crystal_leggings to 112615, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 6354, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 6354, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 36402, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 36402, responsible user: Automated Price Update Changed the lower bound price of potion_affinity_ring to 6172, responsible user: Automated Price Update Changed the upper bound price of potion_affinity_ring to 6172, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 320054, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 320054, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 482, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 482, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 409, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 409, responsible user: Automated Price Update Changed the lower bound price of enchanted_lily_pad to 81534, responsible user: Automated Price Update Changed the upper bound price of enchanted_lily_pad to 81534, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1765, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1765, responsible user: Automated Price Update Changed the lower bound price of enchanted_bone to 1165, responsible user: Automated Price Update Changed the upper bound price of enchanted_bone to 1165, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 642, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 642, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11796, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11796, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 100770, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 100770, responsible user: Automated Price Update Changed the lower bound price of raw_porkchop to 10, responsible user: Automated Price Update Changed the upper bound price of raw_porkchop to 10, responsible user: Automated Price Update Changed the lower bound price of rotten_flesh to 5, responsible user: Automated Price Update Changed the upper bound price of rotten_flesh to 5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 499550, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 499550, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 501595, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 501595, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11616, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11616, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 1571, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 1571, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1768, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1768, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 422, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 422, responsible user: Automated Price Update Changed the lower bound price of vampirism_v to 13932, responsible user: Automated Price Update Changed the upper bound price of vampirism_v to 13932, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1771, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1771, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 4983, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 4983, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 103471, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 103471, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 321049, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 321049, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 35075, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 35075, responsible user: Automated Price Update Changed the lower bound price of vampirism_v to 12654, responsible user: Automated Price Update Changed the upper bound price of vampirism_v to 12654, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 490, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 490, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 5851, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 5851, responsible user: Automated Price Update Changed the lower bound price of enchanted_rotten_flesh to 1860, responsible user: Automated Price Update Changed the upper bound price of enchanted_rotten_flesh to 1860, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 499436, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 499436, responsible user: Automated Price Update Changed the lower bound price of enchanted_bone to 1197, responsible user: Automated Price Update Changed the upper bound price of enchanted_bone to 1197, responsible user: Automated Price Update Changed the lower bound price of white_gift to 2479, responsible user: Automated Price Update Changed the upper bound price of white_gift to 2479, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 14035, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 14035, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5188, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5188, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 812, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 812, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 519, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 519, responsible user: Automated Price Update Changed the lower bound price of ender_helmet to 30475, responsible user: Automated Price Update Changed the upper bound price of ender_helmet to 30475, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 414925, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 414925, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 184084, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 184084, responsible user: Automated Price Update Changed the lower bound price of enchanted_rotten_flesh to 1768, responsible user: Automated Price Update Changed the upper bound price of enchanted_rotten_flesh to 1768, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1750, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1750, responsible user: Automated Price Update Changed the lower bound price of ice to 1, responsible user: Automated Price Update Changed the upper bound price of ice to 1, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_boots to 279782, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_boots to 279782, responsible user: Automated Price Update Changed the lower bound price of enchanted_emerald to 1734, responsible user: Automated Price Update Changed the upper bound price of enchanted_emerald to 1734, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 500492, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 500492, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 32995, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 32995, responsible user: Automated Price Update Changed the lower bound price of mastiff_chestplate to 1423330, responsible user: Automated Price Update Changed the upper bound price of mastiff_chestplate to 1423330, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 831, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 831, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1828, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1828, responsible user: Automated Price Update Changed the lower bound price of healing_ring to 506422, responsible user: Automated Price Update Changed the upper bound price of healing_ring to 506422, responsible user: Automated Price Update Changed the lower bound price of crystal_helmet to 54474, responsible user: Automated Price Update Changed the upper bound price of crystal_helmet to 54474, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 425, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 425, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 413432, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 413432, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 5568, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 5568, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 105902, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 105902, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 453, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 453, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 108234, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 108234, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 32340, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 32340, responsible user: Automated Price Update Changed the lower bound price of titanic_experience_bottle to 359851, responsible user: Automated Price Update Changed the upper bound price of titanic_experience_bottle to 359851, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 350, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 350, responsible user: Automated Price Update Changed the lower bound price of mastiff_leggings to 1289128, responsible user: Automated Price Update Changed the upper bound price of mastiff_leggings to 1289128, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11588, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11588, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 118800, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 118800, responsible user: Automated Price Update Changed the lower bound price of vampirism_v to 11889, responsible user: Automated Price Update Changed the upper bound price of vampirism_v to 11889, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 501443, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 501443, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 455, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 455, responsible user: Automated Price Update Changed the lower bound price of mastiff_crown to 1184980, responsible user: Automated Price Update Changed the upper bound price of mastiff_crown to 1184980, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 31, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 31, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 480, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 480, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_helmet to 1138954, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_helmet to 1138954, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 1525, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 1525, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4234, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4234, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1796, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1796, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 502, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 502, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 161190, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 161190, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 32148, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 32148, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 564, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 564, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5386, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5386, responsible user: Automated Price Update Changed the lower bound price of crystal_chestplate to 79730, responsible user: Automated Price Update Changed the upper bound price of crystal_chestplate to 79730, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 1258, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 1258, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 887, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 887, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 160021, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 160021, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 495, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 495, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5330, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5330, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 102312, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 102312, responsible user: Automated Price Update Changed the lower bound price of young_dragon_chestplate to 584967, responsible user: Automated Price Update Changed the upper bound price of young_dragon_chestplate to 584967, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 37721, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 37721, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 158019, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 158019, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 120411, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 120411, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11429, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11429, responsible user: Automated Price Update Changed the lower bound price of scavenger_iv to 1546, responsible user: Automated Price Update Changed the upper bound price of scavenger_iv to 1546, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 526, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 526, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1146, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1146, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1767, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1767, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1755, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1755, responsible user: Automated Price Update Changed the lower bound price of obsidian to 13, responsible user: Automated Price Update Changed the upper bound price of obsidian to 13, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3827, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3827, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 418350, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 418350, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 14493, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 14493, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 158317, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 158317, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 6082904, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 6082904, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 501065, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 501065, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4205, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4205, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3829, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3829, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 536579, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 536579, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 520, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 520, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5027, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5027, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 500958, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 500958, responsible user: Automated Price Update Changed the lower bound price of spooky_shard to 96613, responsible user: Automated Price Update Changed the upper bound price of spooky_shard to 96613, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 35949, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 35949, responsible user: Automated Price Update Changed the lower bound price of obsidian to 13, responsible user: Automated Price Update Changed the upper bound price of obsidian to 13, responsible user: Automated Price Update Changed the lower bound price of revenant_flesh to 16, responsible user: Automated Price Update Changed the upper bound price of revenant_flesh to 16, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 2208, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 2208, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 11473, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 11473, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 5330, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 5330, responsible user: Automated Price Update Changed the lower bound price of ender_boots to 35932, responsible user: Automated Price Update Changed the upper bound price of ender_boots to 35932, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 503, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 503, responsible user: Automated Price Update Changed the lower bound price of tarantula_silk to 96876, responsible user: Automated Price Update Changed the upper bound price of tarantula_silk to 96876, responsible user: Automated Price Update Changed the lower bound price of vampirism_v to 10800, responsible user: Automated Price Update Changed the upper bound price of vampirism_v to 10800, responsible user: Automated Price Update Changed the lower bound price of vampirism_v to 9820, responsible user: Automated Price Update Changed the upper bound price of vampirism_v to 9820, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 104149, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 104149, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3626, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3626, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 328619, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 328619, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 118370, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 118370, responsible user: Automated Price Update Changed the lower bound price of revenant_flesh to 17, responsible user: Automated Price Update Changed the upper bound price of revenant_flesh to 17, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 32267, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 32267, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 28728, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 28728, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 159678, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 159678, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 422515, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 422515, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 502862, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 502862, responsible user: Automated Price Update Changed the lower bound price of obsidian to 14, responsible user: Automated Price Update Changed the upper bound price of obsidian to 14, responsible user: Automated Price Update Changed the lower bound price of old_dragon_boots to 172409, responsible user: Automated Price Update Changed the upper bound price of old_dragon_boots to 172409, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 426264, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 426264, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 105855, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 105855, responsible user: Automated Price Update Changed the lower bound price of young_dragon_chestplate to 584297, responsible user: Automated Price Update Changed the upper bound price of young_dragon_chestplate to 584297, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 1879, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 1879, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 523, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 523, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 798, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 798, responsible user: Automated Price Update Changed the lower bound price of greater_backpack to 568478, responsible user: Automated Price Update Changed the upper bound price of greater_backpack to 568478, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 780, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 780, responsible user: Automated Price Update Changed the lower bound price of enchanted_emerald to 1597, responsible user: Automated Price Update Changed the upper bound price of enchanted_emerald to 1597, responsible user: Automated Price Update Changed the lower bound price of silver_fang to 6486, responsible user: Automated Price Update Changed the upper bound price of silver_fang to 6486, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 541, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 541, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 429638, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 429638, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 502576, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 502576, responsible user: Automated Price Update Changed the lower bound price of revenant_viscera to 73084, responsible user: Automated Price Update Changed the upper bound price of revenant_viscera to 73084, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 543, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 543, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 5797, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 5797, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 115533, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 115533, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 113980, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 113980, responsible user: Automated Price Update Changed the lower bound price of snow_block to 8, responsible user: Automated Price Update Changed the upper bound price of snow_block to 8, responsible user: Automated Price Update Changed the lower bound price of obsidian_chestplate to 11538, responsible user: Automated Price Update Changed the upper bound price of obsidian_chestplate to 11538, responsible user: Automated Price Update Changed the lower bound price of young_dragon_leggings to 572909, responsible user: Automated Price Update Changed the upper bound price of young_dragon_leggings to 572909, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 1205, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 1205, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 121282, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 121282, responsible user: Automated Price Update Changed the lower bound price of obsidian to 14, responsible user: Automated Price Update Changed the upper bound price of obsidian to 14, responsible user: Automated Price Update Changed the lower bound price of obsidian to 14, responsible user: Automated Price Update Changed the upper bound price of obsidian to 14, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 4764, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 4764, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 601, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 601, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1798, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1798, responsible user: Automated Price Update Changed the lower bound price of obsidian to 15, responsible user: Automated Price Update Changed the upper bound price of obsidian to 15, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1105, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1105, responsible user: Automated Price Update Changed the lower bound price of young_dragon_chestplate to 570867, responsible user: Automated Price Update Changed the upper bound price of young_dragon_chestplate to 570867, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 118154, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 118154, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1764, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1764, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_boots to 629713, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_boots to 629713, responsible user: Automated Price Update Changed the lower bound price of spider_catalyst to 216006, responsible user: Automated Price Update Changed the upper bound price of spider_catalyst to 216006, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 32040, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 32040, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 2131, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 2131, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 13619, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 13619, responsible user: Automated Price Update Changed the lower bound price of obsidian to 15, responsible user: Automated Price Update Changed the upper bound price of obsidian to 15, responsible user: Automated Price Update Changed the lower bound price of enchanted_rotten_flesh to 1699, responsible user: Automated Price Update Changed the upper bound price of enchanted_rotten_flesh to 1699, responsible user: Automated Price Update Changed the lower bound price of enchanted_flint to 1506, responsible user: Automated Price Update Changed the upper bound price of enchanted_flint to 1506, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 324507, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 324507, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 108957, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 108957, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 342056, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 342056, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 502318, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 502318, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 357850, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 357850, responsible user: Automated Price Update Changed the lower bound price of luck_vi to 6475, responsible user: Automated Price Update Changed the upper bound price of luck_vi to 6475, responsible user: Automated Price Update Changed the lower bound price of ender_helmet to 28428, responsible user: Automated Price Update Changed the upper bound price of ender_helmet to 28428, responsible user: Automated Price Update Changed the lower bound price of spider_catalyst to 208605, responsible user: Automated Price Update Changed the upper bound price of spider_catalyst to 208605, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 99734, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 99734, responsible user: Automated Price Update Changed the lower bound price of enchanted_nether_wart to 1176, responsible user: Automated Price Update Changed the upper bound price of enchanted_nether_wart to 1176, responsible user: Automated Price Update Changed the lower bound price of raw_porkchop to 10, responsible user: Automated Price Update Changed the upper bound price of raw_porkchop to 10, responsible user: Automated Price Update Changed the lower bound price of obsidian to 15, responsible user: Automated Price Update Changed the upper bound price of obsidian to 15, responsible user: Automated Price Update Changed the lower bound price of obsidian to 15, responsible user: Automated Price Update Changed the upper bound price of obsidian to 15, responsible user: Automated Price Update Changed the lower bound price of snow_block to 8, responsible user: Automated Price Update Changed the upper bound price of snow_block to 8, responsible user: Automated Price Update Changed the lower bound price of enchanted_nether_wart to 1220, responsible user: Automated Price Update Changed the upper bound price of enchanted_nether_wart to 1220, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1068, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1068, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 432560, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 432560, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 33451, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 33451, responsible user: Automated Price Update Changed the lower bound price of white_gift to 2537, responsible user: Automated Price Update Changed the upper bound price of white_gift to 2537, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 116396, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 116396, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 435304, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 435304, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 4488, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 4488, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1979, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1979, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 502591, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 502591, responsible user: Automated Price Update Changed the lower bound price of enchanted_oak_wood to 1508, responsible user: Automated Price Update Changed the upper bound price of enchanted_oak_wood to 1508, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 502332, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 502332, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1059, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1059, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 532, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 532, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 72442, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 72442, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 372065, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 372065, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 603, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 603, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 33360, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 33360, responsible user: Automated Price Update Changed the lower bound price of raider_axe to 166859, responsible user: Automated Price Update Changed the upper bound price of raider_axe to 166859, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1027, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1027, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 561, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 561, responsible user: Automated Price Update Changed the lower bound price of snow_block to 8, responsible user: Automated Price Update Changed the upper bound price of snow_block to 8, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 32861, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 32861, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 1549, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 1549, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 436739, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 436739, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2974, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2974, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 436708, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 436708, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 509, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 509, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 436737, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 436737, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 12526, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 12526, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 439324, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 439324, responsible user: Automated Price Update Changed the lower bound price of tarantula_silk to 98126, responsible user: Automated Price Update Changed the upper bound price of tarantula_silk to 98126, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_chestplate to 2436471, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_chestplate to 2436471, responsible user: Automated Price Update Changed the lower bound price of tarantula_silk to 99251, responsible user: Automated Price Update Changed the upper bound price of tarantula_silk to 99251, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 2062, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 2062, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 435642, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 435642, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 32617, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 32617, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 159810, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 159810, responsible user: Automated Price Update Changed the lower bound price of ember_chestplate to 1524, responsible user: Automated Price Update Changed the upper bound price of ember_chestplate to 1524, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 926, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 926, responsible user: Automated Price Update Changed the lower bound price of spider_talisman to 87995, responsible user: Automated Price Update Changed the upper bound price of spider_talisman to 87995, responsible user: Automated Price Update Changed the lower bound price of snow_block to 8, responsible user: Automated Price Update Changed the upper bound price of snow_block to 8, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 4406, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 4406, responsible user: Automated Price Update Changed the lower bound price of growth_v to 22572, responsible user: Automated Price Update Changed the upper bound price of growth_v to 22572, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 41417, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 41417, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 33542, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 33542, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 384858, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 384858, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 185176, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 185176, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 988, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 988, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 12773, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 12773, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 376272, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 376272, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 32397, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 32397, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 608, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 608, responsible user: Automated Price Update Changed the lower bound price of ender_helmet to 27585, responsible user: Automated Price Update Changed the upper bound price of ender_helmet to 27585, responsible user: Automated Price Update Changed the lower bound price of enchanted_cactus_green to 1677, responsible user: Automated Price Update Changed the upper bound price of enchanted_cactus_green to 1677, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 1509, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 1509, responsible user: Automated Price Update Changed the lower bound price of egg to 23, responsible user: Automated Price Update Changed the upper bound price of egg to 23, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 367050, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 367050, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 502099, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 502099, responsible user: Automated Price Update Changed the lower bound price of enchanted_cactus_green to 1525, responsible user: Automated Price Update Changed the upper bound price of enchanted_cactus_green to 1525, responsible user: Automated Price Update Changed the lower bound price of obsidian to 15, responsible user: Automated Price Update Changed the upper bound price of obsidian to 15, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 610, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 610, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 32199, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 32199, responsible user: Automated Price Update Changed the lower bound price of nether_quartz to 7, responsible user: Automated Price Update Changed the upper bound price of nether_quartz to 7, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 435778, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 435778, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 489, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 489, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 46275, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 46275, responsible user: Automated Price Update Changed the lower bound price of enchanted_coal to 705, responsible user: Automated Price Update Changed the upper bound price of enchanted_coal to 705, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 98886, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 98886, responsible user: Automated Price Update Changed the lower bound price of ember_chestplate to 1642, responsible user: Automated Price Update Changed the upper bound price of ember_chestplate to 1642, responsible user: Automated Price Update Changed the lower bound price of obsidian to 15, responsible user: Automated Price Update Changed the upper bound price of obsidian to 15, responsible user: Automated Price Update Changed the lower bound price of enchanted_pork to 3695, responsible user: Automated Price Update Changed the upper bound price of enchanted_pork to 3695, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 974, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 974, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 6096891, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 6096891, responsible user: Automated Price Update Changed the lower bound price of feather to 50, responsible user: Automated Price Update Changed the upper bound price of feather to 50, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 191658, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 191658, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 500889, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 500889, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 529, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 529, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 500800, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 500800, responsible user: Automated Price Update Changed the lower bound price of ember_chestplate to 1578, responsible user: Automated Price Update Changed the upper bound price of ember_chestplate to 1578, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 98123, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 98123, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 974, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 974, responsible user: Automated Price Update Changed the lower bound price of tarantula_chestplate to 1005975, responsible user: Automated Price Update Changed the upper bound price of tarantula_chestplate to 1005975, responsible user: Automated Price Update Changed the lower bound price of revenant_viscera to 71371, responsible user: Automated Price Update Changed the upper bound price of revenant_viscera to 71371, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 431300, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 431300, responsible user: Automated Price Update Changed the lower bound price of old_dragon_boots to 165168, responsible user: Automated Price Update Changed the upper bound price of old_dragon_boots to 165168, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 989, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 989, responsible user: Automated Price Update Changed the lower bound price of enchanted_melon to 358, responsible user: Automated Price Update Changed the upper bound price of enchanted_melon to 358, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 4494, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 4494, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 434170, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 434170, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 534, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 534, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 521, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 521, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 31624, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 31624, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond_block to 210275, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond_block to 210275, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_leggings to 1053268, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_leggings to 1053268, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 33188, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 33188, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 99811, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 99811, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 436753, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 436753, responsible user: Automated Price Update Changed the lower bound price of enchanted_melon to 338, responsible user: Automated Price Update Changed the upper bound price of enchanted_melon to 338, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11786, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11786, responsible user: Automated Price Update Changed the lower bound price of snow_block to 8, responsible user: Automated Price Update Changed the upper bound price of snow_block to 8, responsible user: Automated Price Update Changed the lower bound price of blessing_v to 18422, responsible user: Automated Price Update Changed the upper bound price of blessing_v to 18422, responsible user: Automated Price Update Changed the lower bound price of enchanted_grilled_pork to 206167, responsible user: Automated Price Update Changed the upper bound price of enchanted_grilled_pork to 206167, responsible user: Automated Price Update Changed the lower bound price of experience_artifact to 612097, responsible user: Automated Price Update Changed the upper bound price of experience_artifact to 612097, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 499720, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 499720, responsible user: Automated Price Update Changed the lower bound price of old_dragon_chestplate to 263050, responsible user: Automated Price Update Changed the upper bound price of old_dragon_chestplate to 263050, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 499748, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 499748, responsible user: Automated Price Update Changed the lower bound price of enchanted_emerald_block to 215010, responsible user: Automated Price Update Changed the upper bound price of enchanted_emerald_block to 215010, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 95830, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 95830, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 499773, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 499773, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 669, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 669, responsible user: Automated Price Update Changed the lower bound price of…


Saturday 2020-01-25 18:48:50 by skyblockz

Database update Changes: Changed the lower bound price of hot_potato_book to 81100, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 81100, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 587, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 587, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 22822, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 22822, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 426068, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 426068, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 425244, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 425244, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 419053, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 419053, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 5236, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 5236, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_chicken to 1326, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_chicken to 1326, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 9921, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 9921, responsible user: Automated Price Update Changed the lower bound price of lily_pad to 524, responsible user: Automated Price Update Changed the upper bound price of lily_pad to 524, responsible user: Automated Price Update Changed the lower bound price of enchanted_wet_sponge to 519699, responsible user: Automated Price Update Changed the upper bound price of enchanted_wet_sponge to 519699, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 606, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 606, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 413481, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 413481, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 25023, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 25023, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 553924, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 553924, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 93371, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 93371, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 151236, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 151236, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 80990, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 80990, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 557, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 557, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 567, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 567, responsible user: Automated Price Update Changed the lower bound price of snow_suit_leggings to 20189, responsible user: Automated Price Update Changed the upper bound price of snow_suit_leggings to 20189, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 548532, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 548532, responsible user: Automated Price Update Changed the lower bound price of snow_block to 11, responsible user: Automated Price Update Changed the upper bound price of snow_block to 11, responsible user: Automated Price Update Changed the lower bound price of snow_suit_chestplate to 6611, responsible user: Automated Price Update Changed the upper bound price of snow_suit_chestplate to 6611, responsible user: Automated Price Update Changed the lower bound price of compactor to 980, responsible user: Automated Price Update Changed the upper bound price of compactor to 980, responsible user: Automated Price Update Changed the lower bound price of purple_candy to 12814, responsible user: Automated Price Update Changed the upper bound price of purple_candy to 12814, responsible user: Automated Price Update Changed the lower bound price of night_vision_charm to 18415, responsible user: Automated Price Update Changed the upper bound price of night_vision_charm to 18415, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1852, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1852, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 543679, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 543679, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 416216, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 416216, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 2070, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 2070, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 546811, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 546811, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 542130, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 542130, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10366, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10366, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 581, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 581, responsible user: Automated Price Update Changed the lower bound price of ender_boots to 22313, responsible user: Automated Price Update Changed the upper bound price of ender_boots to 22313, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 511, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 511, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 415724, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 415724, responsible user: Automated Price Update Changed the lower bound price of young_dragon_boots to 329280, responsible user: Automated Price Update Changed the upper bound price of young_dragon_boots to 329280, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537917, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537917, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 149612, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 149612, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 524, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 524, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 411152, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 411152, responsible user: Automated Price Update Changed the lower bound price of enchanted_flint to 1238, responsible user: Automated Price Update Changed the upper bound price of enchanted_flint to 1238, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4567, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4567, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 5723, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 5723, responsible user: Automated Price Update Changed the lower bound price of lily_pad to 597, responsible user: Automated Price Update Changed the upper bound price of lily_pad to 597, responsible user: Automated Price Update Changed the lower bound price of enchanted_magma_cream to 1462, responsible user: Automated Price Update Changed the upper bound price of enchanted_magma_cream to 1462, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4446, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4446, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 95534, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 95534, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 31333, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 31333, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 10, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 10, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 541625, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 541625, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 23415, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 23415, responsible user: Automated Price Update Changed the lower bound price of experience_iii to 1776, responsible user: Automated Price Update Changed the upper bound price of experience_iii to 1776, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 1681, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 1681, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 544962, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 544962, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 3465, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 3465, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10479, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10479, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 80891, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 80891, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 9814, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 9814, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 93731, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 93731, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 289196, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 289196, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 10, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 10, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 524, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 524, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 3093, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 3093, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10113, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10113, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 540466, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 540466, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 538530, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 538530, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 14566, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 14566, responsible user: Automated Price Update Changed the lower bound price of enchanted_sponge to 12409, responsible user: Automated Price Update Changed the upper bound price of enchanted_sponge to 12409, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 418088, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 418088, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 26521, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 26521, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4271, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4271, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 534677, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 534677, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 1238, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 1238, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 426975, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 426975, responsible user: Automated Price Update Changed the lower bound price of fish_affinity_talisman to 154914, responsible user: Automated Price Update Changed the upper bound price of fish_affinity_talisman to 154914, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 442071, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 442071, responsible user: Automated Price Update Changed the lower bound price of spider_ring to 114788, responsible user: Automated Price Update Changed the upper bound price of spider_ring to 114788, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4548, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4548, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 538709, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 538709, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 534838, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 534838, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 441947, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 441947, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 619, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 619, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_lazuli to 1372, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_lazuli to 1372, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 100713, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 100713, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4212, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4212, responsible user: Automated Price Update Changed the lower bound price of old_dragon_boots to 209701, responsible user: Automated Price Update Changed the upper bound price of old_dragon_boots to 209701, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 10, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 10, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_chestplate to 2717, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_chestplate to 2717, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 82002, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 82002, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 633, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 633, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 81802, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 81802, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 473, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 473, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 10, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 10, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 436105, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 436105, responsible user: Automated Price Update Changed the lower bound price of mana_flux_power_orb to 4435036, responsible user: Automated Price Update Changed the upper bound price of mana_flux_power_orb to 4435036, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 531354, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 531354, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4591, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4591, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535719, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535719, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 1964, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 1964, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 285418, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 285418, responsible user: Automated Price Update Changed the lower bound price of haste_ring to 260954, responsible user: Automated Price Update Changed the upper bound price of haste_ring to 260954, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 539647, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 539647, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 295976, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 295976, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 81622, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 81622, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 934, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 934, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 81460, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 81460, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 488, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 488, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 950, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 950, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535682, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535682, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 511112, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 511112, responsible user: Automated Price Update Changed the lower bound price of compactor to 956, responsible user: Automated Price Update Changed the upper bound price of compactor to 956, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 981, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 981, responsible user: Automated Price Update Changed the lower bound price of mastiff_chestplate to 1134052, responsible user: Automated Price Update Changed the upper bound price of mastiff_chestplate to 1134052, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 532114, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 532114, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 148651, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 148651, responsible user: Automated Price Update Changed the lower bound price of enchanted_feather to 919, responsible user: Automated Price Update Changed the upper bound price of enchanted_feather to 919, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 78814, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 78814, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 536403, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 536403, responsible user: Automated Price Update Changed the lower bound price of enchanted_dark_oak_wood to 1324, responsible user: Automated Price Update Changed the upper bound price of enchanted_dark_oak_wood to 1324, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 203694, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 203694, responsible user: Automated Price Update Changed the lower bound price of spider_talisman to 109159, responsible user: Automated Price Update Changed the upper bound price of spider_talisman to 109159, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 456371, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 456371, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 78933, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 78933, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 25191, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 25191, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_chestplate to 134712, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_chestplate to 134712, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 79040, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 79040, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 14109, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 14109, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 1796, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 1796, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 6047217, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 6047217, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 23608, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 23608, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_chestplate to 1033533, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_chestplate to 1033533, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 10993, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 10993, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 3480, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 3480, responsible user: Automated Price Update Changed the lower bound price of compactor to 924, responsible user: Automated Price Update Changed the upper bound price of compactor to 924, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 532763, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 532763, responsible user: Automated Price Update Changed the lower bound price of diamond to 9, responsible user: Automated Price Update Changed the upper bound price of diamond to 9, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 510, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 510, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 94714, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 94714, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 3449, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 3449, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 522, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 522, responsible user: Automated Price Update Changed the lower bound price of end_stone_sword to 245380, responsible user: Automated Price Update Changed the upper bound price of end_stone_sword to 245380, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 451731, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 451731, responsible user: Automated Price Update Changed the lower bound price of bone to 5, responsible user: Automated Price Update Changed the upper bound price of bone to 5, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 836, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 836, responsible user: Automated Price Update Changed the lower bound price of silent_pearl to 371, responsible user: Automated Price Update Changed the upper bound price of silent_pearl to 371, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 3021, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 3021, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 96649, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 96649, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 96984, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 96984, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_boots to 257175, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_boots to 257175, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 1586, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 1586, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 29200, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 29200, responsible user: Automated Price Update Changed the lower bound price of enchanted_cactus_green to 1534, responsible user: Automated Price Update Changed the upper bound price of enchanted_cactus_green to 1534, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1851, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1851, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 496, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 496, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the lower bound price of diamond to 9, responsible user: Automated Price Update Changed the upper bound price of diamond to 9, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 529487, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 529487, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 79136, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 79136, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 9, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 9, responsible user: Automated Price Update Changed the lower bound price of candy_artifact to 782866, responsible user: Automated Price Update Changed the upper bound price of candy_artifact to 782866, responsible user: Automated Price Update Changed the lower bound price of enchanted_feather to 1079, responsible user: Automated Price Update Changed the upper bound price of enchanted_feather to 1079, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 13698, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 13698, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 867, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 867, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 526538, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 526538, responsible user: Automated Price Update Changed the lower bound price of revenant_flesh to 20, responsible user: Automated Price Update Changed the upper bound price of revenant_flesh to 20, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 101571, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 101571, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 214529, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 214529, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 506132, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 506132, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 471, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 471, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 633, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 633, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 150317, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 150317, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10435, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10435, responsible user: Automated Price Update Changed the lower bound price of fish_affinity_talisman to 155790, responsible user: Automated Price Update Changed the upper bound price of fish_affinity_talisman to 155790, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1842, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1842, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 79222, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 79222, responsible user: Automated Price Update Changed the lower bound price of weak_wolf_catalyst to 784338, responsible user: Automated Price Update Changed the upper bound price of weak_wolf_catalyst to 784338, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 904, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 904, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 670, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 670, responsible user: Automated Price Update Changed the lower bound price of medium_backpack to 32014, responsible user: Automated Price Update Changed the upper bound price of medium_backpack to 32014, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 24581, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 24581, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 425, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 425, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 531384, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 531384, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535746, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535746, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 532171, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 532171, responsible user: Automated Price Update Changed the lower bound price of day_saver to 49, responsible user: Automated Price Update Changed the upper bound price of day_saver to 49, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 2232, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 2232, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 529954, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 529954, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1366, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1366, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 77418, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 77418, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 110981, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 110981, responsible user: Automated Price Update Changed the lower bound price of blaze_rod to 14, responsible user: Automated Price Update Changed the upper bound price of blaze_rod to 14, responsible user: Automated Price Update Changed the lower bound price of obsidian_chestplate to 10307, responsible user: Automated Price Update Changed the upper bound price of obsidian_chestplate to 10307, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 75976, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 75976, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10558, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10558, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_helmet to 183982, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_helmet to 183982, responsible user: Automated Price Update Changed the lower bound price of end_stone_bow to 5168, responsible user: Automated Price Update Changed the upper bound price of end_stone_bow to 5168, responsible user: Automated Price Update Changed the lower bound price of explosive_bow to 510822, responsible user: Automated Price Update Changed the upper bound price of explosive_bow to 510822, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_helmet to 885, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_helmet to 885, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 73878, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 73878, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1009, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1009, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 666, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 666, responsible user: Automated Price Update Changed the lower bound price of hunk_of_ice to 199, responsible user: Automated Price Update Changed the upper bound price of hunk_of_ice to 199, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 526959, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 526959, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 111609, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 111609, responsible user: Automated Price Update Changed the lower bound price of compactor to 932, responsible user: Automated Price Update Changed the upper bound price of compactor to 932, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 115743, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 115743, responsible user: Automated Price Update Changed the lower bound price of diamond to 9, responsible user: Automated Price Update Changed the upper bound price of diamond to 9, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 454609, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 454609, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 13, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 299441, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 299441, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 459256, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 459256, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 466230, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 466230, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 454, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 454, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1017, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1017, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 71990, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 71990, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 1408, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 1408, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1041, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1041, responsible user: Automated Price Update Changed the lower bound price of enchanted_gunpowder to 2055, responsible user: Automated Price Update Changed the upper bound price of enchanted_gunpowder to 2055, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 9, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 9, responsible user: Automated Price Update Changed the lower bound price of cheap_tuxedo_jacket to 1172975, responsible user: Automated Price Update Changed the upper bound price of cheap_tuxedo_jacket to 1172975, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_boots to 250282, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_boots to 250282, responsible user: Automated Price Update Changed the lower bound price of enchanted_baked_potato to 97383, responsible user: Automated Price Update Changed the upper bound price of enchanted_baked_potato to 97383, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 470303, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 470303, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1261, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1261, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 6136808, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 6136808, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 101414, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 101414, responsible user: Automated Price Update Changed the lower bound price of creeper_pants to 341037, responsible user: Automated Price Update Changed the upper bound price of creeper_pants to 341037, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 3854, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 3854, responsible user: Automated Price Update Changed the lower bound price of hunk_of_blue_ice to 13122, responsible user: Automated Price Update Changed the upper bound price of hunk_of_blue_ice to 13122, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 524263, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 524263, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_lazuli to 1389, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_lazuli to 1389, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 1475, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 1475, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 424, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 424, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4404, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4404, responsible user: Automated Price Update Changed the lower bound price of fish_affinity_talisman to 151711, responsible user: Automated Price Update Changed the upper bound price of fish_affinity_talisman to 151711, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_boots to 237560, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_boots to 237560, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 529337, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 529337, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 383, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 383, responsible user: Automated Price Update Changed the lower bound price of medium_backpack to 33375, responsible user: Automated Price Update Changed the upper bound price of medium_backpack to 33375, responsible user: Automated Price Update Changed the lower bound price of emerald_blade to 446451, responsible user: Automated Price Update Changed the upper bound price of emerald_blade to 446451, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10382, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10382, responsible user: Automated Price Update Changed the lower bound price of growth_v to 20086, responsible user: Automated Price Update Changed the upper bound price of growth_v to 20086, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 509, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 509, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 675, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 675, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 68249, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 68249, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10344, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10344, responsible user: Automated Price Update Changed the lower bound price of potion_affinity_artifact to 441074, responsible user: Automated Price Update Changed the upper bound price of potion_affinity_artifact to 441074, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 13478, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 13478, responsible user: Automated Price Update Changed the lower bound price of spider_catalyst to 146316, responsible user: Automated Price Update Changed the upper bound price of spider_catalyst to 146316, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_leggings to 998047, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_leggings to 998047, responsible user: Automated Price Update Changed the lower bound price of crystal_helmet to 49624, responsible user: Automated Price Update Changed the upper bound price of crystal_helmet to 49624, responsible user: Automated Price Update Changed the lower bound price of enchanted_ink_sack to 38396, responsible user: Automated Price Update Changed the upper bound price of enchanted_ink_sack to 38396, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_lazuli to 1367, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_lazuli to 1367, responsible user: Automated Price Update Changed the lower bound price of feather to 41, responsible user: Automated Price Update Changed the upper bound price of feather to 41, responsible user: Automated Price Update Changed the lower bound price of medium_backpack to 33038, responsible user: Automated Price Update Changed the upper bound price of medium_backpack to 33038, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 533903, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 533903, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1457, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1457, responsible user: Automated Price Update Changed the lower bound price of candy_artifact to 771419, responsible user: Automated Price Update Changed the upper bound price of candy_artifact to 771419, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10329, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10329, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1336, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1336, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1839, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1839, responsible user: Automated Price Update Changed the lower bound price of enchanted_cactus_green to 1569, responsible user: Automated Price Update Changed the upper bound price of enchanted_cactus_green to 1569, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 500, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 500, responsible user: Automated Price Update Changed the lower bound price of enchanted_quartz_block to 282880, responsible user: Automated Price Update Changed the upper bound price of enchanted_quartz_block to 282880, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 671, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 671, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 346, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 346, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 2354, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 2354, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 676, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 676, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 101048, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 101048, responsible user: Automated Price Update Changed the lower bound price of farmer_orb to 151405, responsible user: Automated Price Update Changed the upper bound price of farmer_orb to 151405, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 24193, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 24193, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4466, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4466, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2894, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2894, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 104832, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 104832, responsible user: Automated Price Update Changed the lower bound price of medium_backpack to 32734, responsible user: Automated Price Update Changed the upper bound price of medium_backpack to 32734, responsible user: Automated Price Update Changed the lower bound price of bat_talisman to 51802, responsible user: Automated Price Update Changed the upper bound price of bat_talisman to 51802, responsible user: Automated Price Update Changed the lower bound price of magical_water_bucket to 46, responsible user: Automated Price Update Changed the upper bound price of magical_water_bucket to 46, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 11044, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 11044, responsible user: Automated Price Update Changed the lower bound price of enchanted_cactus_green to 1583, responsible user: Automated Price Update Changed the upper bound price of enchanted_cactus_green to 1583, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1535, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1535, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 680, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 680, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 538013, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 538013, responsible user: Automated Price Update Changed the lower bound price of miner_chestplate to 1149, responsible user: Automated Price Update Changed the upper bound price of miner_chestplate to 1149, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 105596, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 105596, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 2058, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 2058, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 312, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 312, responsible user: Automated Price Update Changed the lower bound price of enchanted_pork to 2270, responsible user: Automated Price Update Changed the upper bound price of enchanted_pork to 2270, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 70624, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 70624, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 299497, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 299497, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2724, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2724, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 373, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 373, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 151385, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 151385, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 469273, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 469273, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 10, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 10, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1296, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1296, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 468346, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 468346, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 541712, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 541712, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 684, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 684, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 467511, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 467511, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_beef to 1056, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_beef to 1056, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1529, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1529, responsible user: Automated Price Update Changed the lower bound price of experience_artifact to 509135, responsible user: Automated Price Update Changed the upper bound price of experience_artifact to 509135, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 309774, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 309774, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 25560, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 25560, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 545041, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 545041, responsible user: Automated Price Update Changed the lower bound price of enchanted_quartz to 1460, responsible user: Automated Price Update Changed the upper bound price of enchanted_quartz to 1460, responsible user: Automated Price Update Changed the lower bound price of medium_storage to 9881, responsible user: Automated Price Update Changed the upper bound price of medium_storage to 9881, responsible user: Automated Price Update Changed the lower bound price of bat_ring to 339433, responsible user: Automated Price Update Changed the upper bound price of bat_ring to 339433, responsible user: Automated Price Update Changed the lower bound price of night_vision_charm to 16861, responsible user: Automated Price Update Changed the upper bound price of night_vision_charm to 16861, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 548037, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 548037, responsible user: Automated Price Update Changed the lower bound price of prismarine_shard to 180, responsible user: Automated Price Update Changed the upper bound price of prismarine_shard to 180, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 1406, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 1406, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond_block to 210888, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond_block to 210888, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1264, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1264, responsible user: Automated Price Update Changed the lower bound price of enchanted_coal to 957, responsible user: Automated Price Update Changed the upper bound price of enchanted_coal t…


Saturday 2020-01-25 20:16:38 by clusterfack

Inventories (#61)

  • Bully the fuck out of inventory shit Inventory Stuff Inventories technically work It works technicaly speaking Yeah this part too Lets do it! Inventories completed Motherfucker

  • Remove unnecessary usings and fix one thing

  • Submodule update

  • Adds a bunch of various clothing prototypes for each current inventory slot


Saturday 2020-01-25 22:17:24 by Nemo

Ninety-seventh Amendment

See the PDF: http://legislative.gov.in/sites/default/files/amend97.pdf SOR: http://legislative.gov.in/sites/default/files/99%20SOR.pdf

SOR Follows:

STATEMENT OF OBJECTS AND REASONS The co-operative sector, over the years, has made significant contribution to various sectors of national economy and has achieved voluminous growth. However, it has shown weaknesses in safeguarding the interests of the members and fil.!fiIment of objects for which these institutions were organised. There have been instances where elections have been postponed indefinitely and nominated office bearers or administrators remaining in-charge of these institutions for a long time. This reduces the accountability of the management of co-operative societies to their members. Inadequate professionalism in management in many of the co-operative institutions has led to poor services and low productivity. Co-operatives need to run on well established democratic principles and elections held on time and in a free and fair manner. Therefore, there is a need to initiate fundamental reforms to revitalize these institutions in order to ensure their contribution in the economic development of the country and to serve the interests of members and public at large and also to ensure their autonomy, democratic functioning and professional management. 2. The "co-operative societies" is a subject enumerated in Entry 32 of the State List of the Seventh Schedule of the Constitution and the State Legislatures have accordingly enacted legislations on co-operative societies. Within the framework of State Acts, growth of co-operatives on large scale was envisaged as part of the efforts for securing social and economic justice and equitable distribution of the fruits of development. It has, however, been experienced that in spite of considerable expansion of co-operatives, their performance in qualitative terms has not been up to the desired level. Considering the need for reforms in the Co-operative Societies Acts of the States, consultations with the State Governments have been held at several occasions and in the conferences of State Co-operative Ministers. A strong need has been felt for amending the Constitution so as to keep the co-operatives free from unnecessary outside interferences and also to ensure, their autonomous organisational set up and their democratic functioning. 3. The Central Government is committed to ensure that the co-operative societies in the country function in a democratic, professional, autonomous and economically sound manner. With a view to bring the necessary reforms, itis proposed to incorporate a new Part in the Constitution so- as to provide for certain provisions covering the vital. aspects of working of co-operative societies like democratic, autonomous and professional functioning. A new article is also proposed to be inserted in Part IV of the Constitution (Directive Principles of State Policy) for the States to endeavour to promote voluntary formation, autonomous functioning, democratic control and professional management of cooperative societies. The proposed new Part in the Constitution, inter alia, seeks to empower the Parliament in respect of multi-State co-operative societies and the State Legislatures in case of other co-operative societies to make appropriate law, laying down the following matters, namely:(a) provisions for incorporation, regulation arid winding up of co-operative societies based on the principles of democratic member-control, member-economic participation and autonomous functioning; (b) specifying the maximum number of directors of a co-operative society to be not exceeding twenty-one members; (c) providing for a fixed term offive years from the date of election in respect of the elected members of the board and its office bearers; (d) providing for a maximum time limit of six months during which a board of

directors of co-operative

society could be kept under supersession or suspension;

(e) providing for independent professional

audit;

(f) providing for right of information to the members of the co-operative societies; 6

7 (g) empowering the State Governments and accounts of co-operative societies;

to obtain periodic

reports of activities

(h) providing for the reservation of one seat for the Scheduled Castes or the Scheduled Tribes and two seats for women on the board of every co-operative society, which have individuals as members from such categories;

(i) providing for offences relating to co-operative societies and penalties in respect of such offences.

  1. It is expected that these provisions will not only ensure the autonomous and democratic functioning of co-operatives, but also ensure the accountability of management to the members and other stakeholders and shall provide for deterrence for violation of the provisions of the law.

  2. The Bill seeks to achieve the above objectives.

NEW DELHI:

The 11thNovember, 2009. SHARAD PAWAR


< 2020-01-25 >